Skip to content

Commit

Permalink
Allow null stepper connector
Browse files Browse the repository at this point in the history
  • Loading branch information
varandasi committed Jun 21, 2021
1 parent 5944aed commit e91127e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Stepper/Stepper.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export interface StepperProps extends StandardProps<PaperProps> {
* An element to be placed between each step.
* @default <StepConnector />
*/
connector?: React.ReactElement<any, any>;
connector?: React.ReactElement<any, any> | null;
/**
* If set the `Stepper` will not assist in controlling steps for linear flow.
* @default false
Expand Down

0 comments on commit e91127e

Please sign in to comment.