Currently I have tried to use iconPosition but it only allow two values: left or right, but I haven't find a way to change the position of the label.
#Hi, is there a way to center the label of Stepper under the icon?
8 messages · Page 1 of 1 (latest)
you use styles api
<Stepper styles={{step:{
flexDirection:'column'
}}}>
{/* steps */}
</Stepper>
Hi, thank you for your response. This solve partially my problem: now I cannot align vertically the label with the step
what do you mean by vertically?
The label isn't center with the icon, it is as if the label has a default left margin
yes you are right
<Stepper styles={{
step:{
flexDirection:'column'
},
stepBody:{
marginLeft:0
}
}}>
{/* steps */}
</Stepper>