forgeplus-react/node_modules/material-ui/Stepper/Stepper.d.ts

21 lines
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;