UNPKG

@mui/material

Version:

React components that implement Google's Material Design.

11 lines (7 loc) 255 B
import * as React from 'react'; interface TableContextProps { padding: 'default' | 'checkbox' | 'none'; size: 'default' | 'checkbox' | 'none'; } declare const TableContext: React.Context<TableContextProps | undefined>; export default TableContext;