Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add small variation to button stories
  • Loading branch information
BrunoQuaresma committed Jan 6, 2025
commit 4fcd56f9afeefa8f307f308da9d85b90c09a8c59
27 changes: 27 additions & 0 deletions site/src/components/Button/Button.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ export const DefaultDisabled: Story = {
},
};

export const DefaultSmall: Story = {
args: {
size: "sm",
},
};

export const Outline: Story = {
args: {
variant: "outline",
Expand All @@ -39,6 +45,13 @@ export const OutlineDisabled: Story = {
},
};

export const OutlineSmall: Story = {
args: {
variant: "outline",
size: "sm",
},
};

export const Subtle: Story = {
args: {
variant: "subtle",
Expand All @@ -52,6 +65,13 @@ export const SubtleDisabled: Story = {
},
};

export const SubtleSmall: Story = {
args: {
variant: "subtle",
size: "sm",
},
};

export const Destructive: Story = {
args: {
variant: "destructive",
Expand All @@ -66,6 +86,13 @@ export const DestructiveDisabled: Story = {
},
};

export const DestructiveSmall: Story = {
args: {
...Destructive.args,
size: "sm",
},
};

export const IconButtonDefault: Story = {
args: {
variant: "default",
Expand Down