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