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