UNPKG

@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

18 lines (17 loc) 686 B
import * as React from 'react'; import { CardBodyProperties } from '@blueeast/bluerain-ui-interfaces'; /** * The props of CardBody Component * @param {Object} props.style style object for Card's style. * @param {Node} props.children tag with which the Component will be rendered. * @param {string} props.className className for styling component with css. */ /** * Platform specific props * @param {Object} props.classes Usefull to extend the style for CardBody component. */ export interface MUICardBodyProperties extends CardBodyProperties { classes?: {}; } declare const BlueRainCardBody: React.StatelessComponent<MUICardBodyProperties>; export default BlueRainCardBody;