Initial commit

This commit is contained in:
dk
2026-04-17 16:27:41 +00:00
commit eedc90b8ac
648 changed files with 80204 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
"use client";
import type { LucideIcon } from "lucide-react";
interface QuantityButtonProps {
onClick: (e: React.MouseEvent) => void;
ariaLabel: string;
Icon: LucideIcon;
}
const QuantityButton = ({ onClick, ariaLabel, Icon }: QuantityButtonProps) => (
<button
onClick={onClick}
className="secondary-button h-8 aspect-square rounded-theme flex items-center justify-center cursor-pointer"
aria-label={ariaLabel}
type="button"
>
<Icon className="relative h-4/10 text-secondary-cta-text" strokeWidth={1.5} />
</button>
);
export default QuantityButton;