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