BottomNavigationAction
The API documentation of the BottomNavigationAction React component.
Props
Name | Type | Default | Description |
---|---|---|---|
children | unsupportedProp | This property isn't supported. Use the component property if you need to change the children structure. |
|
classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | |
icon | node | The icon element. | |
label | node | The label element. | |
showLabel | bool | If true , the BottomNavigationAction will show its label. By default, only the selected BottomNavigationAction inside BottomNavigation will show its label. |
|
value | any | You can provide your own value. Otherwise, we fallback to the child position index. |
Any other properties supplied will be spread to the root element (ButtonBase).
CSS API
You can override all the class names injected by Material-UI thanks to the classes
property.
This property accepts the following keys:
Name | Description |
---|---|
root | Styles applied to the root element. |
selected | Styles applied to the root element if selected. |
iconOnly | Styles applied to the root element if showLabel={false} and not selected. |
wrapper | Styles applied to the span element that wraps the icon and label. |
label | Styles applied to the label's span element. |
Have a look at overriding with classes section and the implementation of the component for more detail.
If using the overrides
key of the theme as documented
here,
you need to use the following style sheet name: MuiBottomNavigationAction
.
Inheritance
The properties of the ButtonBase component are also available. You can take advantage of this behavior to target nested components.