Pular para o conteúdo

Table API

Documentação da API para o componente React Table . Aprenda sobre as propriedades disponíveis e a API CSS.

Importação

import Table from '@mui/material/Table';
// ou
import { Table } from '@mui/material';
Você pode aprender sobre a diferença lendo este guia sobre como minimizar o tamanho do pacote.

Nome do componente

The name MuiTable can be used when providing default props or style overrides in the theme.

Propriedades

Props of the nativo component are also available.

NomeTipoPadrãoDescrição
childrennode
The content of the table, normally TableHead and TableBody.
classesobject
Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes.
componentelementType
The component used for the root node. Either a string to use a HTML element or a component.
padding'checkbox'
| 'none'
| 'normal'
'normal'
Allows TableCells to inherit padding of the Table.
size'medium'
| 'small'
| string
'medium'
Allows TableCells to inherit size of the Table.
stickyHeaderboolfalse
Set the header sticky.
⚠️ It doesn't work with IE11.
sxfunc
| 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 regraClasse globalDescrição
root.MuiTable-rootEstilos aplicados ao elemento raiz.
stickyHeader.MuiTable-stickyHeaderEstilos aplicados para o elemento raiz se stickyHeader={true}.

Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:

Demonstrações