import { FC } from 'react'; interface IconMailDotProps { className?: string; } const IconMailDot: FC = ({ className }) => { return ( ); }; export default IconMailDot;