import clsx from 'clsx'; import styles from './Stepper.module.css'; export interface Step { label: string; } interface Props { currentStep: number; steps: Step[]; } export function Stepper({ currentStep, steps }: Props) { return (
{steps.map((step, index) => (
{index + 1}
{step.label}
))}
); }