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