MobileStepper API
API reference docs for the React MobileStepper component. Learn about the props, CSS, and other APIs of this exported module.
Component demos
Import
import MobileStepper from '@mui/material/MobileStepper';
// or
import { MobileStepper } from '@mui/material';
Props of the Paper component are also available.
Set the active step (zero based index). Defines which dot is highlighted when the variant is 'dots'.
Type:integer
Default:0
Override or extend the styles applied to the component.
See CSS API below for more details.
Type:object
The system prop that allows defining system overrides as well as additional CSS styles.
See the `sx` page for more details.
Type:Array<func
| object
| bool>
| func
| object
ref
is forwarded to the root element.Inheritance
While not explicitly documented above, the props of the Paper component are also available in MobileStepper. You can take advantage of this to target nested components.
Theme default props
You can use MuiMobileStepper
to change the default props of this component with the theme.
These class names are useful for styling with CSS. They are applied to the component's slots when specific states are triggered.
Styles applied to a dot if variant="dots"
and this is the active step.
Rule name:dotActive
Styles applied to the root element if position="bottom"
.
Rule name:positionBottom
Styles applied to the root element if position="static"
.
Rule name:positionStatic
Styles applied to the root element if position="top"
.
Rule name:positionTop
Styles applied to the Linear Progress component if variant="progress"
.
Rule name:progress
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.