import { FC, SVGAttributes } from 'react'; import styles from './envelop.module.scss'; export type EnvelopProps = SVGAttributes; /** * Envelop Component * * Render an envelop svg icon. */ export const Envelop: FC = ({ className = '', ...props }) => { return ( ); };