@material-ui/core
Version:
React components that implement Google's Material Design.
21 lines (15 loc) • 610 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
import { PaperProps } from '../Paper';
export type Orientation = 'horizontal' | 'vertical';
export interface StepperProps extends StandardProps<PaperProps, StepperClasskey> {
activeStep?: number;
alternativeLabel?: boolean;
children: React.ReactNode;
connector?: React.ReactElement<any> | React.ReactNode;
nonLinear?: boolean;
orientation?: Orientation;
}
export type StepperClasskey = 'root' | 'horizontal' | 'vertical' | 'alternativeLabel';
declare const Stepper: React.ComponentType<StepperProps>;
export default Stepper;