import { Check } from "lucide-react"; import type { TipCoffeeType } from "@/lib/tip/tip_coffee"; import styles from "./tip-screen.module.css"; export interface TipCoffeeTierItem { type: TipCoffeeType; displayName: string; priceLabel: string; unavailable: boolean; } interface TipCoffeeTierSelectorProps { disabled: boolean; items: readonly TipCoffeeTierItem[]; onChange: (type: TipCoffeeType) => void; selectedType: TipCoffeeType; } export function TipCoffeeTierSelector({ disabled, items, onChange, selectedType, }: TipCoffeeTierSelectorProps) { return (
); }