TableFooter API
Documentação da API para o componente React TableFooter . Aprenda sobre as propriedades disponíveis e a API CSS.
Importação
import TableFooter from '@mui/material/TableFooter';
// ou
import { TableFooter } from '@mui/material';Nome do componente
The nameMuiTableFooter can be used when providing default props or style overrides in the theme.Propriedades
Props of the nativo component are also available.
| Nome | Tipo | Padrão | Descrição |
|---|---|---|---|
| children | node | The content of the component, normally TableRow. | |
| 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. | |
| sx | func | object | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. |
O
ref é encaminhado para o elemento raiz.CSS
| Nome da regra | Classe global | Descrição |
|---|---|---|
| root | .MuiTableFooter-root | Estilos aplicados ao elemento raiz. |
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
styleOverridesproperty in a custom theme.