import { cn } from "@/lib/utils"; type StepIndicatorProps = { steps: string[]; currentStep: number; }; export default function StepIndicator({ steps, currentStep, }: StepIndicatorProps) { return (