import { cn } from "@/lib/utils" interface StepIndicatorProps { currentStep: number steps: { id: number; title: string; subtitle: string }[] } export function StepIndicator({ currentStep, steps }: StepIndicatorProps) { return (