import { ShoppingCartIcon, XMarkIcon } from '@heroicons/react/24/outline'; import clsx from 'clsx'; export default function CartIcon({ className, quantity, icon }: { className?: string; quantity?: number; icon?: string; }) { return (
{icon === 'close' ? ( ) : ( )} {quantity ? (
{quantity}
) : null}
); }