const DEFAULT_STEPS = ['Select Game', 'Configure Rules', 'Create Run'] interface StepIndicatorProps { currentStep: number onStepClick: (step: number) => void steps?: string[] } export function StepIndicator({ currentStep, onStepClick, steps = DEFAULT_STEPS, }: StepIndicatorProps) { return ( ) }