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