@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) • 517 B
TypeScript
import * as React from 'react';
import { AppBarProperties } from '@blueeast/bluerain-ui-interfaces';
/**
* An interface that extends the AppBarProperties interface
*
* @export MUIAppBarProperties
* @interface MUIAppBarProperties
* @extends {AppBarProperties}
*/
export interface MUIAppBarProperties extends AppBarProperties {
color?: 'inherit' | 'primary' | 'default' | 'secondary' | undefined;
title?: string | any;
}
export declare const BlueRainAppBar: React.StatelessComponent<MUIAppBarProperties>;