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