interface ProgressStepperProps { currentStep: number totalSteps: number stepLabel: string } export function ProgressStepper({ currentStep, totalSteps, stepLabel }: ProgressStepperProps) { const progress = (currentStep / totalSteps) * 100 return (
Step {currentStep} of {totalSteps}
Select Service Complete
{stepLabel}
) }