import * as React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconSearch = React.forwardRef(function IconSearch( props: Props, ref: React.Ref ) { return ( ); }); IconSearch.displayName = 'IconSearch'; export {IconSearch};