import { Fragment } from "react"; import { Check } from "lucide-react"; import { cn } from "~/lib/utils"; export interface WizardStepperProps { currentStep: number; steps: string[]; onStepClick: (n: number) => void; } export function WizardStepper({ currentStep, steps, onStepClick }: WizardStepperProps) { return ( ); }