Pular para o conteúdo

Stepper API

Documentação da API para o componente React Stepper . Aprenda sobre as propriedades disponíveis e a API CSS.

Importação

import Stepper from '@mui/material/Stepper';
// ou
import { Stepper } from '@mui/material';
Você pode aprender sobre a diferença lendo este guia sobre como minimizar o tamanho do pacote.

Nome do componente

The name MuiStepper can be used when providing default props or style overrides in the theme.

Propriedades

Props of the nativo component are also available.

NomeTipoPadrãoDescrição
activeStepinteger0
Set the active step (zero based index). Set to -1 to disable all the steps.
alternativeLabelboolfalse
If set to 'true' and orientation is horizontal, then the step label will be positioned under the icon.
childrennode
Two or more <Step /> components.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
connectorelement<StepConnector />
An element to be placed between each step.
nonLinearboolfalse
If set the Stepper will not assist in controlling steps for linear flow.
orientation'horizontal'
| 'vertical'
'horizontal'
The group orientation (layout flow direction).
sxfunc
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiStepper-rootEstilos aplicados ao elemento raiz.
horizontal.MuiStepper-horizontalEstilos aplicados para o elemento raiz se orientation="horizontal".
vertical.MuiStepper-verticalEstilos aplicados para o elemento raiz se orientation="vertical".
alternativeLabel.MuiStepper-alternativeLabelEstilos aplicados para o elemento raiz se alternativeLabel={true}.

Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:

Demonstrações