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