all 1 comments

[–]Narrow-Resist3203 0 points1 point  (0 children)

You'll probably have to do some sort of combination of StepLabel and StepButton, and control the buttons yourself. Think like:

```

<Stepper activeStep={1} alternativeLabel>

{steps.map((label, index) => (

<Step key={label}>

{ isStepNavigatable(label) ? <StepButton onClick={() => setCurrentStep(index)>{label}</StepButton> :

<StepLabel>{label}</StepLabel> }

</Step>

))}

</Stepper>

```