14 lines
449 B
Plaintext
14 lines
449 B
Plaintext
|
|
<Stepper alternativeLabel activeStep={1} connector={<QontoConnector />}>
|
||
|
|
{steps.map((label) => (
|
||
|
|
<Step key={label}>
|
||
|
|
<StepLabel StepIconComponent={QontoStepIcon}>{label}</StepLabel>
|
||
|
|
</Step>
|
||
|
|
))}
|
||
|
|
</Stepper>
|
||
|
|
<Stepper alternativeLabel activeStep={1} connector={<ColorlibConnector />}>
|
||
|
|
{steps.map((label) => (
|
||
|
|
<Step key={label}>
|
||
|
|
<StepLabel StepIconComponent={ColorlibStepIcon}>{label}</StepLabel>
|
||
|
|
</Step>
|
||
|
|
))}
|
||
|
|
</Stepper>
|