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