mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
Small cleanup.
This commit is contained in:
@@ -4,7 +4,7 @@ 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">
|
||||
<XMarkIcon className={clsx('h-6 transition-all ease-in-out hover:scale-110 ', className)} />
|
||||
<XMarkIcon className={clsx('h-6 transition-all ease-in-out hover:scale-110', className)} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
@@ -11,7 +11,7 @@ export default function OpenCart({
|
||||
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">
|
||||
<ShoppingCartIcon
|
||||
className={clsx('h-4 transition-all ease-in-out hover:scale-110 ', className)}
|
||||
className={clsx('h-4 transition-all ease-in-out hover:scale-110', className)}
|
||||
/>
|
||||
|
||||
{quantity ? (
|
||||
|
Reference in New Issue
Block a user