ButtonGroup API
Importação
import ButtonGroup from '@mui/material/ButtonGroup';
// ou
import { ButtonGroup } from '@mui/material';
Nome do componente
The nameMuiButtonGroup
can be used when providing default props or style overrides in the theme.Propriedades
Propriedades do componente nativo também estão disponíveis.
Nome | Tipo | Padrão | Descrição |
---|---|---|---|
children | node | O conteúdo do componente. | |
classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
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 | Se true , o componente está desabilitado. |
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 group orientation (layout flow direction). |
size | 'small' | 'medium' | 'large' | string | 'medium' | The size of the button. 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' | A variante a usar. |
O
ref
é encaminhado para o elemento raiz.CSS
Nome da regra | Classe global | Descrição |
---|---|---|
root | .MuiButtonGroup-root | Estilos aplicados ao elemento raiz. |
contained | .MuiButtonGroup-contained | Estilos aplicados para o elemento raiz se variant="contained" . |
outlined | .MuiButtonGroup-outlined | Estilos aplicados para o elemento raiz se variant="outlined" . |
text | .MuiButtonGroup-text | Estilos aplicados para o elemento raiz se variant="text" . |
disableElevation | .MuiButtonGroup-disableElevation | Estilos aplicados para o elemento raiz se disableElevation={true} . |
disabled | .Mui-disabled | Pseudo-class aplicada a the child elements se disabled={true} . |
fullWidth | .MuiButtonGroup-fullWidth | Estilos aplicados para o elemento raiz se fullWidth={true} . |
vertical | .MuiButtonGroup-vertical | Estilos aplicados para o elemento raiz se orientation="vertical" . |
grouped | .MuiButtonGroup-grouped | Estilos aplicados a the children. |
groupedHorizontal | .MuiButtonGroup-groupedHorizontal | Estilos aplicados para the children se orientation="horizontal" . |
groupedVertical | .MuiButtonGroup-groupedVertical | Estilos aplicados para the children se orientation="vertical" . |
groupedText | .MuiButtonGroup-groupedText | Estilos aplicados para the children se variant="text" . |
groupedTextHorizontal | .MuiButtonGroup-groupedTextHorizontal | Estilos aplicados para the children se variant="text" and orientation="horizontal" . |
groupedTextVertical | .MuiButtonGroup-groupedTextVertical | Estilos aplicados para the children se variant="text" and orientation="vertical" . |
groupedTextPrimary | .MuiButtonGroup-groupedTextPrimary | Estilos aplicados para the children se variant="text" and color="primary" . |
groupedTextSecondary | .MuiButtonGroup-groupedTextSecondary | Estilos aplicados para the children se variant="text" and color="secondary" . |
groupedOutlined | .MuiButtonGroup-groupedOutlined | Estilos aplicados para the children se variant="outlined" . |
groupedOutlinedHorizontal | .MuiButtonGroup-groupedOutlinedHorizontal | Estilos aplicados para the children se variant="outlined" and orientation="horizontal" . |
groupedOutlinedVertical | .MuiButtonGroup-groupedOutlinedVertical | Estilos aplicados para the children se variant="outlined" and orientation="vertical" . |
groupedOutlinedPrimary | .MuiButtonGroup-groupedOutlinedPrimary | Estilos aplicados para the children se variant="outlined" and color="primary" . |
groupedOutlinedSecondary | .MuiButtonGroup-groupedOutlinedSecondary | Estilos aplicados para the children se variant="outlined" and color="secondary" . |
groupedContained | .MuiButtonGroup-groupedContained | Estilos aplicados para the children se variant="contained" . |
groupedContainedHorizontal | .MuiButtonGroup-groupedContainedHorizontal | Estilos aplicados para the children se variant="contained" and orientation="horizontal" . |
groupedContainedVertical | .MuiButtonGroup-groupedContainedVertical | Estilos aplicados para the children se variant="contained" and orientation="vertical" . |
groupedContainedPrimary | .MuiButtonGroup-groupedContainedPrimary | Estilos aplicados para the children se variant="contained" and color="primary" . |
groupedContainedSecondary | .MuiButtonGroup-groupedContainedSecondary | Estilos aplicados para the children se variant="contained" and color="secondary" . |
Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.