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