"use client" import { motion } from "motion/react" interface StepIndicatorProps { currentStep: number totalSteps: number } export default function StepIndicator({ currentStep, totalSteps, }: StepIndicatorProps) { return (
{Array.from({ length: totalSteps }).map((_, i) => ( ))}
) }