Tab API
The API documentation of the Tab React component. Learn more about the properties and the CSS customization points.
import Tab from '@material-ui/core/Tab';
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. | |
disabled | bool | false | If true , the tab will be disabled. |
icon | node | The icon element. | |
label | node | The label element. | |
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
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. |
labelIcon | Styles applied to the root element if both icon and label are provided. |
textColorInherit | Styles applied to the root element if textColor="inherit" . |
textColorPrimary | Styles applied to the root element if textColor="primary" . |
textColorSecondary | Styles applied to the root element if textColor="secondary" . |
selected | Styles applied to the root element if selected={true} (controlled by the Tabs component). |
disabled | Styles applied to the root element if disabled={true} (controlled by the Tabs component). |
fullWidth | Styles applied to the root element if fullWidth={true} (controlled by the Tabs component). |
wrapper | Styles applied to the icon and label 's wrapper element. |
labelContainer | Styles applied to the label container element if label is provided. |
label | Styles applied to the label wrapper element if label is provided. |
labelWrapped | Deprecated, the styles will be removed in v4. |
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,
you need to use the following style sheet name: MuiTab
.
Inheritance
The properties of the ButtonBase component are also available. You can take advantage of this behavior to target nested components.