@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
29 lines (28 loc) • 1.08 kB
TypeScript
import * as React from 'react';
import { BlueRain } from '@blueeast/bluerain-os';
import { AvatarProperties } from '@blueeast/bluerain-ui-interfaces';
/**
* The universal props of Avatar Component
* @param {Object} props.style Get the style object.
* @param {string} props.src src for Avatar.
* @param {Node} props.children children of Avatar.
* The specific libraray props of Badge Component
* @param {string} props.alt The enum color of Badge.
* @param {Object} props.classes the children on which the badge will append styles.
* @param {string or function} props.component The enum color of Badge.
* @param {Object} props.imgProps the children on which the badge will append styles.
* @param {string} props.sizes The sizes of image.
*/
export interface MUIAvatarProperties extends AvatarProperties {
alt?: string;
children?: React.ReactNode;
classes?: {};
component?: any;
imgProps?: {};
sizes?: string;
src?: string;
style?: {};
bluerain?: BlueRain;
}
declare const _default: React.ComponentType<any>;
export default _default;