From ab6e83507c7e16e3bda20edc8967541222458efc Mon Sep 17 00:00:00 2001 From: Rui Botto Date: Mon, 31 Dec 2018 16:50:44 +0100 Subject: [PATCH] [TableCell] Add align prop typing to typescript definition --- packages/material-ui/src/TableCell/TableCell.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/material-ui/src/TableCell/TableCell.d.ts b/packages/material-ui/src/TableCell/TableCell.d.ts index 51b16bb02d5981..9e1fb14f1fa14d 100644 --- a/packages/material-ui/src/TableCell/TableCell.d.ts +++ b/packages/material-ui/src/TableCell/TableCell.d.ts @@ -10,6 +10,7 @@ import { StandardProps } from '..'; * here. */ export interface TableCellProps extends StandardProps { + align?: 'inherit' | 'left' | 'center' | 'right' | 'justify'; component?: React.ReactType; numeric?: boolean; padding?: Padding;