diff --git a/packages/material-ui/src/Table/Table.d.ts b/packages/material-ui/src/Table/Table.d.ts index c35b7d615ce7e2..498f13d2578486 100644 --- a/packages/material-ui/src/Table/Table.d.ts +++ b/packages/material-ui/src/Table/Table.d.ts @@ -3,10 +3,13 @@ import { StandardProps } from '..'; export interface TableProps extends StandardProps { component?: React.ReactType; + padding?: Padding; } export type TableBaseProps = React.TableHTMLAttributes; +export type Padding = 'default' | 'checkbox' | 'dense' | 'none'; + export type TableClassKey = 'root'; declare const Table: React.ComponentType;