TableCell API
Importação
import TableCell from '@mui/material/TableCell';
// ou
import { TableCell } from '@mui/material';
The component renders a <th>
element when the parent context is a header
or otherwise a <td>
element.
Nome do componente
The nameMuiTableCell
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 |
---|---|---|---|
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. |
children | node | O conteúdo do componente. | |
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. | |
padding | 'checkbox' | 'none' | 'normal' | Sets the padding applied to the cell. The prop defaults to the value ( 'default' ) inherited from the parent Table component. | |
scope | string | 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. | |
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 | '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 regra | Classe global | Descrição |
---|---|---|
root | .MuiTableCell-root | Estilos aplicados ao elemento raiz. |
head | .MuiTableCell-head | Estilos aplicados para o elemento raiz se variant="head" or context.table.head . |
body | .MuiTableCell-body | Estilos aplicados para o elemento raiz se variant="body" or context.table.body . |
footer | .MuiTableCell-footer | Estilos aplicados para o elemento raiz se variant="footer" or context.table.footer . |
sizeSmall | .MuiTableCell-sizeSmall | Estilos aplicados para o elemento raiz se size="small" . |
sizeMedium | .MuiTableCell-sizeMedium | Estilos aplicados para o elemento raiz se size="medium" . |
paddingCheckbox | .MuiTableCell-paddingCheckbox | Estilos aplicados para o elemento raiz se padding="checkbox" . |
paddingNone | .MuiTableCell-paddingNone | Estilos aplicados para o elemento raiz se padding="none" . |
alignLeft | .MuiTableCell-alignLeft | Estilos aplicados para o elemento raiz se align="left" . |
alignCenter | .MuiTableCell-alignCenter | Estilos aplicados para o elemento raiz se align="center" . |
alignRight | .MuiTableCell-alignRight | Estilos aplicados para o elemento raiz se align="right" . |
alignJustify | .MuiTableCell-alignJustify | Estilos aplicados para o elemento raiz se align="justify" . |
stickyHeader | .MuiTableCell-stickyHeader | Estilos 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:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.