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

15 lines (14 loc) 436 B
import React from 'react'; export interface ExpansionPanelProps { children: React.ReactNode; title?: string; expandIcon?: React.ReactNode; collapsed?: boolean; onChange?: () => void; styles?: object; defaultExpanded?: boolean; detailStyle?: object; summeryStyle?: object; } declare const ExpansionPanelComponent: React.StatelessComponent<ExpansionPanelProps>; export default ExpansionPanelComponent;