Skip to content

TableCell API

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

Import

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

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

Component name

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

Props

NameTypeDefaultDescription
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.
childrennodeThe table cell contents.
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'
Sets the padding applied to the cell. The prop defaults to the value ('default') inherited from the parent Table component.
scopestringSet scope attribute.
size'medium'
| 'small'
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.
variant'body'
| 'footer'
| 'head'
Specify the cell type. The prop defaults to the value inherited from the parent TableHead, TableBody, or TableFooter components.

The ref is forwarded to the root element.
Any other props supplied will be provided to the root element (native element).

CSS

Rule nameGlobal classDescription
root.MuiTableCell-rootStyles applied to the root element.
head.MuiTableCell-headStyles applied to the root element if variant="head" or context.table.head.
body.MuiTableCell-bodyStyles applied to the root element if variant="body" or context.table.body.
footer.MuiTableCell-footerStyles applied to the root element if variant="footer" or context.table.footer.
sizeSmall.MuiTableCell-sizeSmallStyles applied to the root element if size="small".
paddingCheckbox.MuiTableCell-paddingCheckboxStyles applied to the root element if padding="checkbox".
paddingNone.MuiTableCell-paddingNoneStyles applied to the root element if padding="none".
alignLeft.MuiTableCell-alignLeftStyles applied to the root element if align="left".
alignCenter.MuiTableCell-alignCenterStyles applied to the root element if align="center".
alignRight.MuiTableCell-alignRightStyles applied to the root element if align="right".
alignJustify.MuiTableCell-alignJustifyStyles applied to the root element if align="justify".
stickyHeader.MuiTableCell-stickyHeaderStyles applied to the root element if context.table.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