mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 05:56:59 +00:00
11 lines
457 B
TypeScript
11 lines
457 B
TypeScript
import clsx from 'clsx';
|
|
import CloseIcon from 'components/icons/close';
|
|
|
|
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">
|
|
<CloseIcon className={clsx('h-6 transition-all ease-in-out hover:scale-110 ', className)} />
|
|
</div>
|
|
);
|
|
}
|