"use client" import type React from "react" import { cn } from "@/lib/utils" interface StepIndicatorProps { currentStep: number steps: { id: number title: string icon: React.ReactNode }[] } export default function StepIndicator({ currentStep, steps }: StepIndicatorProps) { return (
{steps.map((step, index) => (
{step.icon}
{step.title}
))}
) }