UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

12 lines (8 loc) 240 B
import { Context } from 'react'; import { Padding, Size } from './Table'; interface TableContextProps { padding: Padding; size: Size; } declare const TableContext: Context<TableContextProps | undefined>; export default TableContext;