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