UNPKG

material-ui-cordova

Version:

React components that implement Google's Material Design.

32 lines (27 loc) 741 B
import * as React from 'react'; import { StandardProps } from '..'; import { PaperProps, PaperClassKey } from '../Paper'; import { ButtonProps } from '../Button'; export interface MobileStepperProps extends StandardProps< PaperProps, MobileStepperClassKey > { activeStep?: number; backButton: React.ReactElement<any>; nextButton: React.ReactElement<any>; position?: 'bottom' | 'top' | 'static'; steps: number; type?: 'text' | 'dots' | 'progress'; } export type MobileStepperClassKey = | PaperClassKey | 'positionBottom' | 'positionTop' | 'positionStatic' | 'dots' | 'dot' | 'dotActive' | 'progress' ; declare const MobileStepper: React.ComponentType<MobileStepperProps>; export default MobileStepper;