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