2023-07-24 21:40:29 -05:00
|
|
|
import { XMarkIcon } from '@heroicons/react/24/outline';
|
|
|
|
import clsx from 'clsx';
|
|
|
|
|
|
|
|
export default function CloseCart({ className }: { className?: string }) {
|
|
|
|
return (
|
|
|
|
<div className="relative flex h-11 w-11 items-center justify-center rounded-md border border-neutral-200 text-black transition-colors dark:border-neutral-700 dark:text-white">
|
2024-07-28 23:26:03 -05:00
|
|
|
<XMarkIcon className={clsx('h-6 transition-all ease-in-out hover:scale-110', className)} />
|
2023-07-24 21:40:29 -05:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|