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