TableCell API
Demos
For examples and details on the usage of this React component, visit the component demo pages:
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
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'
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.
Type:
Array<func | object | bool> | func | object
ref
is forwarded to the root element.Theme default props
You can useMuiTableCell
to change the default props of this component with the theme.CSS
The following class names are useful for styling with CSS (the state classes are marked).
To learn more, visit the component customization page.
Styles applied to the root element if variant="footer"
or context.table.footer
.
Styles applied to the root element if padding="checkbox"
.
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.