Skip to content

Commit

Permalink
fix: Badge story 이름 수정
Browse files Browse the repository at this point in the history
* Badge 관련 story 이름을 PascalCase에 맞게 수정했습니다
  • Loading branch information
nijuy committed Oct 4, 2023
1 parent b76d591 commit 0680e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Badge/Badge.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ const BadgeStory = ({ ...badgeProps }) => {
};

type Story = StoryObj<typeof Badge>;
export const withIcon: Story = {
export const WithIcon: Story = {
args: {
children: 'Badge',
leftIcon: <IcGroundLine />,
},
render: BadgeStory,
};

export const withoutIcon: Story = {
export const WithoutIcon: Story = {
args: {
children: 'Badge',
},
Expand Down

0 comments on commit 0680e79

Please sign in to comment.