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) 645 B
import * as React from 'react'; export interface CardviewMediaProperties { overlayTitle?: React.ReactNode; overlaySubTiltle?: React.ReactNode; overlayOverline?: React.ReactNode; src?: any; mediaHeight?: number; mediaWidth?: number; overlayColor?: string; mediaComponent?: 'video' | ' audio' | 'picture' | 'iframe' | 'img' | 'component'; overlayDirection?: 'bottomRight' | 'bottomLeft' | 'topRight' | 'topLeft'; } declare class CardViewMedia extends React.PureComponent<CardviewMediaProperties, any> { constructor(props: CardviewMediaProperties); render(): JSX.Element; } export default CardViewMedia;