UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

21 lines (13 loc) 525 B
import * as React from 'react'; import { StandardProps } from '..'; export interface TableProps extends StandardProps<TableBaseProps, TableClassKey> { component?: React.ElementType<TableBaseProps>; padding?: Padding; size?: Size; } export type TableBaseProps = React.TableHTMLAttributes<HTMLTableElement>; export type Padding = 'default' | 'checkbox' | 'none'; export type Size = 'small' | 'medium'; export type TableClassKey = 'root'; declare const Table: React.ComponentType<TableProps>; export default Table;