@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
22 lines (21 loc) • 626 B
TypeScript
/**
* Created by M.Ghaznfar on 3/3/18.
*/
import { ReactNode } from 'react';
import { CheckboxProperties } from '@blueeast/bluerain-ui-interfaces';
export interface MUIProps extends CheckboxProperties {
color?: 'primary' | 'secondary' | 'default';
type?: string;
inputRef?: () => {};
inputProps?: {};
indeterminateIcon?: ReactNode;
indeterminate?: boolean;
id?: string;
icon?: ReactNode;
disableRipple?: boolean;
classes?: object;
checkedIcon?: ReactNode;
label?: ReactNode;
}
declare const BlueRainCheckbox: (props: MUIProps) => JSX.Element;
export default BlueRainCheckbox;