import * as React from 'react'; import Svg, { SvgProps, Path } from 'react-native-svg'; function SvgAtom( props: SvgProps, svgRef?: React.Ref> ) { return ( ); } const ForwardRef = React.forwardRef(SvgAtom); export default ForwardRef;