Toolbar API
Importação
import Toolbar from '@mui/material/Toolbar';
// ou
import { Toolbar } from '@mui/material';
Nome do componente
The nameMuiToolbar
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 | The Toolbar children, usually a mixture of IconButton , Button and Typography . The Toolbar is a flex container, allowing flex item properites to be used to lay out the children. | |
classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
disableGutters | bool | false | If true , disables gutter padding. |
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 | 'dense' | 'regular' | string | 'regular' | A variante a usar. |
O
ref
é encaminhado para o elemento raiz.CSS
Nome da regra | Classe global | Descrição |
---|---|---|
root | .MuiToolbar-root | Estilos aplicados ao elemento raiz. |
gutters | .MuiToolbar-gutters | Estilos aplicados em o elemento raiz a menos que disableGutters={true} . |
regular | .MuiToolbar-regular | Estilos aplicados para o elemento raiz se variant="regular" . |
dense | .MuiToolbar-dense | Estilos aplicados para o elemento raiz se variant="dense" . |
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.