diff --git a/src/stories/Button.stories.ts b/src/stories/Button.stories.ts index f74e4b0..c4498b7 100644 --- a/src/stories/Button.stories.ts +++ b/src/stories/Button.stories.ts @@ -29,19 +29,19 @@ type Story = StoryObj; export const Primary: Story = { args: { primary: true, - label: 'Button', + label: 'Primary Button', }, }; export const Secondary: Story = { args: { - label: 'Button', + label: 'Secondary Button', }, }; export const Large: Story = { args: { - size: 'large', + size: 'Large large', label: 'Button', }, }; @@ -49,6 +49,6 @@ export const Large: Story = { export const Small: Story = { args: { size: 'small', - label: 'Button', + label: 'Small Button', }, };