import * as React from 'react' import { Check } from 'lucide-react' export interface StepConfig { label: string description?: string } export interface StepIndicatorProps { steps: StepConfig[] currentIndex: number className?: string } export function StepIndicator({ steps, currentIndex, className = '' }: StepIndicatorProps) { return (