import {forwardRef} from 'react'; import {SvgIcon, SVGIconProps} from './svgIcon'; const IconSearch = forwardRef((props, ref) => { return ( ); }); IconSearch.displayName = 'IconSearch'; export {IconSearch};