@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
20 lines (19 loc) • 587 B
TypeScript
import * as React from 'react';
import { DrawerProperties } from '@blueeast/bluerain-ui-interfaces';
/**
* An interface that extends the DrawerProperties interface
*
* @export MUIDrawerProperties
* @interface MUIDrawerProperties
* @extends {DrawerProperties}
*/
export interface MUIDrawerProperties extends DrawerProperties {
PaperProps?: object;
SlideProps?: object;
ModalProps?: object;
variant?: 'permanent' | 'persistent' | 'temporary';
classes?: any;
elevation?: number;
}
declare const _default: React.FunctionComponent<any>;
export default _default;