import { Check } from 'lucide-react'; import { cn } from '@effigenix/ui'; export interface Step { label: string; state: 'done' | 'active' | 'pending'; } interface StepIndicatorProps { steps: Step[]; } export function StepIndicator({ steps }: StepIndicatorProps) { return (