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