import React from 'react'; import { CheckIcon } from './icons/CheckIcon'; interface StepIndicatorProps { steps: string[]; currentStep: number; } export const StepIndicator: React.FC = ({ steps, currentStep }) => { return ( ); };