"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) => ( ); export default QuantityButton;