UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

23 lines (18 loc) 616 B
import * as React from 'react'; import { StandardProps } from '..'; import { Orientation } from '../Stepper'; export interface StepProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>, StepClasskey> { active?: boolean; alternativeLabel?: boolean; children?: React.ReactNode; completed?: boolean; connector?: React.ReactElement; disabled?: boolean; index?: number; last?: boolean; orientation?: Orientation; } export type StepClasskey = 'root' | 'horizontal' | 'vertical' | 'alternativeLabel' | 'completed'; declare const Step: React.ComponentType<StepProps>; export default Step;