@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
12 lines (11 loc) • 501 B
TypeScript
import * as React from 'react';
import { CardMediaProperties } from '@blueeast/bluerain-ui-interfaces';
/**
* The props of CardMedia Component
* @param {Object} props.style style object for Card's style.
* @param {string} props.className className for styling component with css.
* @param {string} props.src src of the image.
* @param {number} props.height height of the image.
*/
declare const BlueRainCardMedia: React.StatelessComponent<CardMediaProperties>;
export default BlueRainCardMedia;