Skip to content

Commit

Permalink
[MobileStepper] Fix TypeScript props not aligning with prop-types (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
illusionalsagacity authored Feb 6, 2020
1 parent 3764e63 commit 5728e5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/material-ui/src/MobileStepper/MobileStepper.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { LinearProgressProps } from '../LinearProgress';
export interface MobileStepperProps
extends StandardProps<PaperProps, MobileStepperClassKey, 'variant'> {
activeStep?: number;
backButton: React.ReactElement;
backButton: React.ReactNode;
LinearProgressProps?: Partial<LinearProgressProps>;
nextButton: React.ReactElement;
nextButton: React.ReactNode;
position?: 'bottom' | 'top' | 'static';
steps: number;
variant?: 'text' | 'dots' | 'progress';
Expand Down

0 comments on commit 5728e5f

Please sign in to comment.