Skip to content

Commit

Permalink
✏️ Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed May 24, 2024
1 parent bf92fd6 commit aed0229
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/client-ts/src/components/ui/stepper/horizontal-step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,7 @@ const HorizontalStep = React.forwardRef<HTMLDivElement, StepSharedProps>(
},
);

HorizontalStep.displayName = 'HorizontalStep';


export { HorizontalStep };
3 changes: 3 additions & 0 deletions apps/client-ts/src/components/ui/stepper/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ const Stepper = React.forwardRef<HTMLDivElement, StepperProps>(
},
);

Stepper.displayName = 'Stepper';


Stepper.defaultProps = {
size: "md",
orientation: "horizontal",
Expand Down
2 changes: 2 additions & 0 deletions apps/client-ts/src/components/ui/stepper/step-icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,6 @@ const StepIcon = React.forwardRef<HTMLDivElement, StepIconProps>(
},
);

StepIcon.displayName = 'StepIcon';

export { StepIcon };
3 changes: 3 additions & 0 deletions apps/client-ts/src/components/ui/stepper/step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,7 @@ const Step = React.forwardRef<HTMLLIElement, StepProps>(
},
);

Step.displayName = 'Step';


export { Step };
3 changes: 3 additions & 0 deletions apps/client-ts/src/components/ui/stepper/vertical-step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,7 @@ const VerticalStep = React.forwardRef<HTMLDivElement, VerticalStepProps>(
},
);

VerticalStep.displayName = 'VerticalStep';


export { VerticalStep };

0 comments on commit aed0229

Please sign in to comment.