Fab API
Importação
import Fab from '@mui/material/Fab';
// ou
import { Fab } from '@mui/material';
Nome do componente
The nameMuiFab
can be used when providing default props or style overrides in the theme.Propriedades
Propriedades do componente ButtonBase 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 | 'default' | 'error' | 'info' | 'inherit' | 'primary' | 'secondary' | 'success' | 'warning' | string | 'default' | 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. |
disableFocusRipple | bool | false | If true , the keyboard focus ripple is disabled. |
disableRipple | bool | false | If true , the ripple effect is disabled. |
href | string | The URL to link to when the button is clicked. If defined, an a element will be used as the root node. | |
size | 'small' | 'medium' | 'large' | string | 'large' | 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 | 'circular' | 'extended' | string | 'circular' | A variante a usar. |
O
ref
é encaminhado para o elemento raiz.Herança
While not explicitly documented above, the props of the ButtonBase component are also available on Fab. You can take advantage of this to target nested components.CSS
Nome da regra | Classe global | Descrição |
---|---|---|
root | .MuiFab-root | Estilos aplicados ao elemento raiz. |
primary | .MuiFab-primary | Estilos aplicados para o elemento raiz se color="primary" . |
secondary | .MuiFab-secondary | Estilos aplicados para o elemento raiz se color="secondary" . |
extended | .MuiFab-extended | Estilos aplicados para o elemento raiz se variant="extended" . |
circular | .MuiFab-circular | Estilos aplicados para o elemento raiz se variant="circular" . |
focusVisible | .Mui-focusVisible | Pseudo-class aplicada a o elemento raiz ButtonBase se o botão está focado no teclado. |
disabled | .Mui-disabled | Pseudo-class aplicada a o elemento raiz se disabled={true} . |
colorInherit | .MuiFab-colorInherit | Estilos aplicados para o elemento raiz se color="inherit" . |
sizeSmall | .MuiFab-sizeSmall | Estilos aplicados para o elemento raiz se size="small" `. |
sizeMedium | .MuiFab-sizeMedium | Estilos aplicados para o elemento raiz se size="medium" `. |
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.