import * as React from 'react'; import Svg, { SvgProps, Path } from 'react-native-svg'; import { memo } from 'react'; const SvgComponent = (props: SvgProps) => ( ); const XCircle = memo(SvgComponent); export default XCircle;