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