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