Skip to content

Commit

Permalink
chore: updated storybook for button
Browse files Browse the repository at this point in the history
  • Loading branch information
aizad-deriv committed Feb 28, 2024
1 parent 813aa0e commit 7985886
Showing 1 changed file with 73 additions and 1 deletion.
74 changes: 73 additions & 1 deletion src/stories/Button.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export const Ghost: Story = {
args: {
variant: "ghost",
children: "Button",
size: "lg",
},
};

Expand All @@ -97,6 +96,7 @@ export const ContainedPrimaryLight: Story = {
variant: "contained",
children: "Button",
color: "primary-light",
size: "md",
},
};

Expand All @@ -117,3 +117,75 @@ export const ContainedWhite: Story = {
color: "white",
},
};

export const OutlinedPrimary: Story = {
name: "Outlined (Primary)",
args: {
variant: "outlined",
children: "Button",
color: "primary",
},
};

export const OutlinedPrimaryLight: Story = {
name: "Outlined (Primary Light)",
args: {
variant: "outlined",
children: "Button",
color: "primary-light",
},
};

export const OutlinedBlack: Story = {
name: "Outlined (Black)",
args: {
variant: "outlined",
children: "Button",
color: "black",
},
};

export const OutlinedWhite: Story = {
name: "Outlined (White)",
args: {
variant: "outlined",
children: "Button",
color: "white",
},
};

export const GhostPrimary: Story = {
name: "Ghost (Primary)",
args: {
variant: "ghost",
children: "Button",
color: "primary",
},
};

export const GhostPrimaryLight: Story = {
name: "Ghost (Primary Light)",
args: {
variant: "ghost",
children: "Button",
color: "primary-light",
},
};

export const GhostBlack: Story = {
name: "Ghost (Black)",
args: {
variant: "ghost",
children: "Button",
color: "black",
},
};

export const GhostWhite: Story = {
name: "Ghost (White)",
args: {
variant: "ghost",
children: "Button",
color: "white",
},
};

0 comments on commit 7985886

Please sign in to comment.