UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

11 lines (7 loc) 220 B
import { Context } from 'react'; import { Padding } from './Table'; interface TableContextProps { padding: Padding; } declare const TableContext: Context<TableContextProps | undefined>; export default TableContext;