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