Pular para o conteúdo

TableCell API

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

Importação

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

The component renders a <th> element when the parent context is a header or otherwise a <td> element.

Nome do componente

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

Propriedades

Propriedades do componente nativo também estão disponíveis.

NomeTipoPadrãoDescrição
align'center'
| 'inherit'
| 'justify'
| 'left'
| 'right'
'inherit'
Set the text-align on the table cell content.
Monetary or generally number fields should be right aligned as that allows you to add them up quickly in your head without having to worry about decimals.
childrennode
O conteúdo do componente.
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'
Sets the padding applied to the cell. The prop defaults to the value ('default') inherited from the parent Table component.
scopestring
Set scope attribute.
size'medium'
| 'small'
| string
Specify the size of the cell. The prop defaults to the value ('medium') inherited from the parent Table component.
sortDirection'asc'
| 'desc'
| false
Set aria-sort direction.
sxArray<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'body'
| 'footer'
| 'head'
| string
Specify the cell type. The prop defaults to the value inherited from the parent TableHead, TableBody, or TableFooter components.

O ref é encaminhado para o elemento raiz.

CSS

Nome da regraClasse globalDescrição
root.MuiTableCell-rootEstilos aplicados ao elemento raiz.
head.MuiTableCell-headEstilos aplicados para o elemento raiz se variant="head" or context.table.head.
body.MuiTableCell-bodyEstilos aplicados para o elemento raiz se variant="body" or context.table.body.
footer.MuiTableCell-footerEstilos aplicados para o elemento raiz se variant="footer" or context.table.footer.
sizeSmall.MuiTableCell-sizeSmallEstilos aplicados para o elemento raiz se size="small".
sizeMedium.MuiTableCell-sizeMediumEstilos aplicados para o elemento raiz se size="medium".
paddingCheckbox.MuiTableCell-paddingCheckboxEstilos aplicados para o elemento raiz se padding="checkbox".
paddingNone.MuiTableCell-paddingNoneEstilos aplicados para o elemento raiz se padding="none".
alignLeft.MuiTableCell-alignLeftEstilos aplicados para o elemento raiz se align="left".
alignCenter.MuiTableCell-alignCenterEstilos aplicados para o elemento raiz se align="center".
alignRight.MuiTableCell-alignRightEstilos aplicados para o elemento raiz se align="right".
alignJustify.MuiTableCell-alignJustifyEstilos aplicados para o elemento raiz se align="justify".
stickyHeader.MuiTableCell-stickyHeaderEstilos aplicados para o elemento raiz se context.table.stickyHeader={true}.

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

Demonstrações