Tab API
Demos
For examples and details on the usage of this React component, visit the component demo pages:
Import
import Tab from '@mui/material/Tab';
// or
import { Tab } from '@mui/material';
Props of the ButtonBase component are also available.
Name | Type | Default | Description |
---|---|---|---|
children | unsupportedProp | This prop isn't supported. Use the | |
classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | |
disabled | bool | false | If |
disableFocusRipple | bool | false | If |
disableRipple | bool | false | If |
icon | element | string | The icon to display. | |
iconPosition | 'bottom' | 'end' | 'start' | 'top' | 'top' | The position of the icon relative to the label. |
label | node | The label element. | |
sx | Array<func | object | bool> | func | object | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. | |
value | any | You can provide your own value. Otherwise, we fallback to the child position index. | |
wrapped | bool | false | Tab labels appear in a single row. They can use a second line if needed. |
ref
is forwarded to the root element.Inheritance
While not explicitly documented above, the props of the ButtonBase component are also available in Tab. You can take advantage of this to target nested components.
Theme default props
You can use MuiTab
to change the default props of this component with the theme.
The following class names are useful for styling with CSS (the state classes are marked).
To learn more, visit the component customization page.
Global class | Rule name | Description |
---|---|---|
.MuiTab-root | root | Styles applied to the root element. |
.MuiTab-labelIcon | labelIcon | Styles applied to the root element if both icon and label are provided. |
.MuiTab-textColorInherit | textColorInherit | Styles applied to the root element if the parent Tabs has textColor="inherit" . |
.MuiTab-textColorPrimary | textColorPrimary | Styles applied to the root element if the parent Tabs has textColor="primary" . |
.MuiTab-textColorSecondary | textColorSecondary | Styles applied to the root element if the parent Tabs has textColor="secondary" . |
.Mui-selected | selected | State class applied to the root element if selected={true} (controlled by the Tabs component). |
.Mui-disabled | disabled | State class applied to the root element if disabled={true} (controlled by the Tabs component). |
.MuiTab-fullWidth | fullWidth | Styles applied to the root element if fullWidth={true} (controlled by the Tabs component). |
.MuiTab-wrapped | wrapped | Styles applied to the root element if wrapped={true} . |
.MuiTab-iconWrapper | iconWrapper | Styles applied to the wrapper element of icon if icon is provided. |
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.