Skip to content

Commit

Permalink
change slider interface direction to optional parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
maksimgm committed Mar 30, 2020
1 parent 964f9ab commit 7aee0c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Slide/Slide.d.ts
Expand Up @@ -4,7 +4,7 @@ import { TransitionProps } from '../transitions/transition';

export interface SlideProps extends TransitionProps {
children?: React.ReactElement<any, any>;
direction: 'left' | 'right' | 'up' | 'down';
direction?: 'left' | 'right' | 'up' | 'down';
ref?: React.Ref<unknown>;
theme?: Theme;
}
Expand Down

0 comments on commit 7aee0c8

Please sign in to comment.