import { Check } from "lucide-react"; import { cn } from "@/lib/utils"; /** Progress for the multi-step mobile completion (Brandbook ยง12.2). `current` is 1-based. */ export function StepIndicator({ steps, current, label }: { steps: string[]; current: number; label: string }) { return ( ); }