@blueeast/bluerain-plugin-material-ui
Version:
Adds [Material UI](http://www.material-ui.com/#/) theme Provider to BlueRain. Components of material-ui have been developed using a common interface. [https://blueeast.gitbook.io/bluerain-plugin-material-ui](https://blueeast.gitbook.io/bluerain-plugin-mat
15 lines (14 loc) • 476 B
TypeScript
import * as React from 'react';
export interface MUITableCellProperties {
component?: any;
classes?: object;
children?: React.ReactNode;
numeric?: boolean;
padding?: 'default' | 'checkbox' | 'dense' | 'none';
scope?: string;
sortDirection?: false | 'asc' | 'desc';
variant?: 'head' | 'body' | 'footer';
colSpan?: number;
}
declare const BluerainTableCell: React.StatelessComponent<MUITableCellProperties>;
export default BluerainTableCell;