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