import React from 'react'; // -- TYPES interface IAttachmentIconProps extends React.SVGAttributes {} // -- MAIN function AttachmentIcon(props: IAttachmentIconProps) { return ( ); } export default AttachmentIcon;