Skip to content

Commit

Permalink
fix: the size for Stepper separator icon was not defined and caused s…
Browse files Browse the repository at this point in the history
…pacing problems.
  • Loading branch information
soslayando committed Oct 17, 2024
1 parent 2239e1a commit 1dd6ef9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ export interface StepperItemDividerProps extends Omit<IconProps, 'children'> {}

export const StepperItemDivider: React.FC<StepperItemDividerProps> = ({
style,
size,
...restIconProps
}) => {
const theme = useTheme();
return (
<Icon
{...restIconProps}
size="xxxs"
style={{
color: theme.cmp.stepper.separator.color.background,
marginRight: theme.cmp.stepper.separator.space.marginHor,
Expand Down

0 comments on commit 1dd6ef9

Please sign in to comment.