UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with 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;