Skip to content

Commit

Permalink
fix(navigation): icon size fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zouxuoz committed Aug 24, 2018
1 parent 34725e5 commit 45905e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/atoms/Navigation/NavigationItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const NavigationItemLabel = createStyledTag(`${name}Label`, {
const NavigationItem = ({ icon, label, ...rest }: NavigationItemProps) => (
<StyledTag { ...rest }>
<NavigationItemIcon>
<Icon name={ icon } color="white" />
<Icon name={ icon } color="white" size="lg" />
</NavigationItemIcon>
{ label && <NavigationItemLabel className="NavigationItem-label">{ label }</NavigationItemLabel> }
</StyledTag>
Expand Down
4 changes: 2 additions & 2 deletions storybook/__tests__/__snapshots__/storyshots.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -11029,8 +11029,8 @@ exports[`Storyshots ATOMS/Navigation without groups 1`] = `
display: -ms-inline-flexbox;
display: inline-flex;
color: #FFFFFF;
width: 1.8rem;
height: 1.8rem;
width: 2.4rem;
height: 2.4rem;
}
.emotion-2 {
Expand Down

0 comments on commit 45905e2

Please sign in to comment.