UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

47 lines (38 loc) 1.22 kB
import * as React from 'react'; import { StandardProps } from '..'; /** * `<TableCell>` will be rendered as an `<th>`or `<td>` depending * on the context it is used in. Where context literally is the * React `context`. * * Since it is not decided via prop, we have create loose typings * here. */ export interface TableCellProps extends StandardProps<TableCellBaseProps, TableCellClassKey, 'align'> { align?: 'inherit' | 'left' | 'center' | 'right' | 'justify'; component?: React.ElementType<TableCellBaseProps>; padding?: Padding; size?: Size; sortDirection?: SortDirection; variant?: 'head' | 'body' | 'footer'; } export type TableCellBaseProps = React.ThHTMLAttributes<HTMLTableHeaderCellElement> & React.TdHTMLAttributes<HTMLTableDataCellElement>; export type Padding = 'default' | 'checkbox' | 'none'; export type Size = 'small' | 'medium'; export type SortDirection = 'asc' | 'desc' | false; export type TableCellClassKey = | 'root' | 'head' | 'body' | 'footer' | 'alignLeft' | 'alignCenter' | 'alignRight' | 'alignJustify' | 'sizeSmall' | 'paddingCheckbox' | 'paddingNone'; declare const TableCell: React.ComponentType<TableCellProps>; export default TableCell;