ButtonGroup API
API reference docs for the React ButtonGroup component. Learn about the props, CSS, and other APIs of this exported module.
Demos
For examples and details on the usage of this React component, visit the component demo pages:
Import
import ButtonGroup from '@mui/material/ButtonGroup';
// or
import { ButtonGroup } from '@mui/material';
Component name
The nameMuiButtonGroup
can be used when providing default props or style overrides in the theme.Props
Props of the native component are also available.
Name | Type | Default | Description |
---|---|---|---|
children | node | The content of the component. | |
classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | |
color | 'inherit' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | string | 'primary' | The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide. |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
disabled | bool | false | If true , the component is disabled. |
disableElevation | bool | false | If true , no elevation is used. |
disableFocusRipple | bool | false | If true , the button keyboard focus ripple is disabled. |
disableRipple | bool | false | If true , the button ripple effect is disabled. |
fullWidth | bool | false | If true , the buttons will take up the full width of its container. |
orientation | 'horizontal' | 'vertical' | 'horizontal' | The component orientation (layout flow direction). |
size | 'small' | 'medium' | 'large' | string | 'medium' | The size of the component. small is equivalent to the dense button styling. |
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. | |
variant | 'contained' | 'outlined' | 'text' | string | 'outlined' | The variant to use. |
The
ref
is forwarded to the root element.CSS
Rule name | Global class | Description |
---|---|---|
root | .MuiButtonGroup-root | Styles applied to the root element. |
contained | .MuiButtonGroup-contained | Styles applied to the root element if variant="contained" . |
outlined | .MuiButtonGroup-outlined | Styles applied to the root element if variant="outlined" . |
text | .MuiButtonGroup-text | Styles applied to the root element if variant="text" . |
disableElevation | .MuiButtonGroup-disableElevation | Styles applied to the root element if disableElevation={true} . |
disabled | .Mui-disabled | State class applied to the child elements if disabled={true} . |
fullWidth | .MuiButtonGroup-fullWidth | Styles applied to the root element if fullWidth={true} . |
vertical | .MuiButtonGroup-vertical | Styles applied to the root element if orientation="vertical" . |
grouped | .MuiButtonGroup-grouped | Styles applied to the children. |
groupedHorizontal | .MuiButtonGroup-groupedHorizontal | Styles applied to the children if orientation="horizontal" . |
groupedVertical | .MuiButtonGroup-groupedVertical | Styles applied to the children if orientation="vertical" . |
groupedText | .MuiButtonGroup-groupedText | Styles applied to the children if variant="text" . |
groupedTextHorizontal | .MuiButtonGroup-groupedTextHorizontal | Styles applied to the children if variant="text" and orientation="horizontal" . |
groupedTextVertical | .MuiButtonGroup-groupedTextVertical | Styles applied to the children if variant="text" and orientation="vertical" . |
groupedTextPrimary | .MuiButtonGroup-groupedTextPrimary | Styles applied to the children if variant="text" and color="primary" . |
groupedTextSecondary | .MuiButtonGroup-groupedTextSecondary | Styles applied to the children if variant="text" and color="secondary" . |
groupedOutlined | .MuiButtonGroup-groupedOutlined | Styles applied to the children if variant="outlined" . |
groupedOutlinedHorizontal | .MuiButtonGroup-groupedOutlinedHorizontal | Styles applied to the children if variant="outlined" and orientation="horizontal" . |
groupedOutlinedVertical | .MuiButtonGroup-groupedOutlinedVertical | Styles applied to the children if variant="outlined" and orientation="vertical" . |
groupedOutlinedPrimary | .MuiButtonGroup-groupedOutlinedPrimary | Styles applied to the children if variant="outlined" and color="primary" . |
groupedOutlinedSecondary | .MuiButtonGroup-groupedOutlinedSecondary | Styles applied to the children if variant="outlined" and color="secondary" . |
groupedContained | .MuiButtonGroup-groupedContained | Styles applied to the children if variant="contained" . |
groupedContainedHorizontal | .MuiButtonGroup-groupedContainedHorizontal | Styles applied to the children if variant="contained" and orientation="horizontal" . |
groupedContainedVertical | .MuiButtonGroup-groupedContainedVertical | Styles applied to the children if variant="contained" and orientation="vertical" . |
groupedContainedPrimary | .MuiButtonGroup-groupedContainedPrimary | Styles applied to the children if variant="contained" and color="primary" . |
groupedContainedSecondary | .MuiButtonGroup-groupedContainedSecondary | Styles applied to the children if variant="contained" and color="secondary" . |
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.