import { FC } from 'react'; import styles from './envelop.module.scss'; export type EnvelopProps = { /** * Should the svg be hidden from assistive technologies? */ 'aria-hidden'?: boolean; /** * Set additional classnames to the icon. */ className?: string; }; /** * Envelop Component * * Render an envelop svg icon. */ const Envelop: FC = ({ className = '', ...props }) => { return ( ); }; export default Envelop;