import * as React from 'react' import { cn } from '@/utils/classnames' export type Step = { label: string value: string } type StepIndicatorProps = { currentStep: number steps: Step[] } const StepIndicator = ({ currentStep, steps, }: StepIndicatorProps) => { return (