Skip to content

Commit

Permalink
fix(storybook): typo fix (UserNameIcon -> UsernameIcon)
Browse files Browse the repository at this point in the history
  • Loading branch information
yangwooseong committed Jan 2, 2024
1 parent 9c86788 commit 693b702
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
PersonIcon,
SearchIcon,
TagIcon,
UserNameIcon,
UsernameIcon,
} from '@channel.io/bezier-icons'
import { css, Themes, Typography } from '~/src/foundation'
import { Badge, Tag, TagBadgeVariant } from '~/src/components/TagBadge'
Expand Down Expand Up @@ -501,10 +501,10 @@ Form 내에서 사용되는 필드가 구현할 수 있는 인터페이스입니

<Canvas>
<Story name="FormComponentProps:TextFieldProps.idle">
<TextField leftContent={<Icon source={UserNameIcon} />} value="channel" />
<TextField leftContent={<Icon source={UsernameIcon} />} value="channel" />
</Story>
<Story name="FormComponentProps:TextFieldProps.hasError">
<TextField leftContent={<Icon source={UserNameIcon} />} value="channel" hasError />
<TextField leftContent={<Icon source={UsernameIcon} />} value="channel" hasError />
</Story>
</Canvas>

Expand Down

0 comments on commit 693b702

Please sign in to comment.