TableCell API
API reference docs for the React TableCell component. Learn about the props, CSS, and other APIs of this exported module.
Component demos
Import
import TableCell from '@mui/material/TableCell';
// or
import { TableCell } from '@mui/material';
The component renders a <th>
element when the parent context is a header
or otherwise a <td>
element.
Props of the native component are also available.
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.
Type:'center'
| 'inherit'
| 'justify'
| 'left'
| 'right'
Default:'inherit'
Override or extend the styles applied to the component.
See CSS API below for more details.
Type:object
The component used for the root node. Either a string to use a HTML element or a component.
Type:elementType
Sets the padding applied to the cell. The prop defaults to the value ('default'
) inherited from the parent Table component.
Type:'checkbox'
| 'none'
| 'normal'
Specify the size of the cell. The prop defaults to the value ('medium'
) inherited from the parent Table component.
Type:'medium'
| 'small'
| string
The system prop that allows defining system overrides as well as additional CSS styles.
See the `sx` page for more details.
Type:Array<func
| object
| bool>
| func
| object
ref
is forwarded to the root element.Theme default props
You can use MuiTableCell
to change the default props of this component with the theme.
These class names are useful for styling with CSS. They are applied to the component's slots when specific states are triggered.
Styles applied to the root element if align="justify"
.
Rule name:alignJustify
Styles applied to the root element if variant="body"
or context.table.body
.
Rule name:body
Styles applied to the root element if variant="head"
or context.table.head
.
Rule name:head
Styles applied to the root element if padding="checkbox"
.
Rule name:paddingCheckbox
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.