@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) • 416 B
TypeScript
import React from 'react';
import { StepperProperties } from '@blueeast/bluerain-ui-interfaces';
export interface WebStepperProps extends StepperProperties {
variant?: 'text' | 'dots' | 'progress';
backButton?: any;
nextButton?: any;
position?: 'bottom' | 'top' | 'static';
children?: React.ReactNode;
steps: any;
}
export declare const WebStepper: React.StatelessComponent<WebStepperProps>;