Skip to content

Commit

Permalink
docs: change types in stories
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-js committed Mar 24, 2024
1 parent cd2eac9 commit 1c221b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/button/Button.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ type Story = StoryObj<typeof meta>;
// More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args
export const Primary: Story = {
args: {
primary: true,
isPrimary: true,
label: 'Button',
size: 'lg',
},
};

export const Secondary: Story = {
args: {
primary: false,
isPrimary: false,
label: 'Button',
size: 'lg',
},
Expand Down

0 comments on commit 1c221b8

Please sign in to comment.