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

27 lines (26 loc) 819 B
import * as React from 'react'; export interface TabIndicatorProps { color: 'secondary' | 'primary' | string; style: { left: number; width: number; }; } export interface TabsProps { action?: () => void; centered?: boolean; children?: React.ReactNode; component?: any; fullWidth?: boolean; indicatorColor?: 'secondary' | 'primary' | string; onChange?: (event: React.ChangeEvent<{}>, value: any) => void; scrollable?: boolean; ScrollButtonComponent?: React.ReactType; scrollButtons?: 'auto' | 'on' | 'off'; TabIndicatorProps?: Partial<TabIndicatorProps>; textColor?: 'secondary' | 'primary' | 'inherit' | string; value: any; width?: string; } declare const BluerainTabs: React.StatelessComponent<TabsProps>; export default BluerainTabs;