Pular para o conteúdo

Table API

API documentation for the React Table component. Learn about the available props, and the CSS API.

Import

import Table from '@material-ui/core/Table';
// ou
import { Table } from '@material-ui/core';
You can learn about the difference by reading this guide on minimizing bundle size.

Component name

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

Propriedades

NomeTipoPadrãoDescrição
childrennodeThe content of the table, normally TableHead and TableBody.
classesobjectOverride or extend the styles applied to the component. See CSS API below for more details.
componentelementTypeThe component used for the root node. Either a string to use a HTML element or a component.
padding'checkbox'
| 'default'
| 'none'
'default'Allows TableCells to inherit padding of the Table.
size'medium'
| 'small'
'medium'Allows TableCells to inherit size of the Table.
stickyHeaderboolfalseSet the header sticky.
⚠️ It doesn't work with IE11.

O ref é encaminhado para o elemento raiz.
Any other props supplied will be provided to the root element (native element).

CSS

Rule nameGlobal classDescrição
root.MuiTable-rootStyles applied to the root element.
stickyHeader.MuiTable-stickyHeaderStyles applied to the root element if stickyHeader={true}.

You can override the style of the component using one of these customization options: If that isn't sufficient, you can check the implementation of the component for more detail.

Demos