UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

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