interface ProgressIndicatorProps { currentStep: number; totalSteps: number; } const ProgressIndicator = ({ currentStep, totalSteps }: ProgressIndicatorProps) => { return (
{Array.from({ length: totalSteps }).map((_, index) => (
))}
); }; export default ProgressIndicator;