import React from 'react'; type Props = { className?: string; }; const EnvelopeSolidIcon = (props: Props) => { const { className = '' } = props; return ( envelope-solid ); }; export default EnvelopeSolidIcon;