Skip to content

Commit

Permalink
stash
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Kordonets authored and DaleMcGrew committed Dec 9, 2023
1 parent 9340132 commit 4c5add9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/js/common/stories/Button.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ export const Primary = {
// More on writing stories with args: https://storybook.js.org/docs/writing-stories/args
export const AllButtons = (args) => (
<ButtonContainer>
<Button {...Primary.args} primary size="large" label="Primary Large Disabled Button" />
<Button {...Primary.args} primary={false} size="large" label="PrimaryLarge Disabled Button" />
<Button {...Primary.args} primary label="Primary Medium Button" />
<Button {...PrimaryDisabled.args} primary={false} label="Primary Medium Disabled Button" />
<Button {...Primary.args} primary size="small" label="Primary Small Button" />
<Button {...PrimaryDisabled.args} primary={false} size="small" label="Primary Small Disabled" />
<Button {...Secondary.args} secondary label="Secondary Button" />
<Button {...Primary.args} primary size="large" label="Primary Large Disabled Button" aria-label="Primary Large Disabled Button" />
<Button {...Primary.args} primary={false} size="large" label="PrimaryLarge Disabled Button" aria-label="PrimaryLarge Disabled Button" />
<Button {...Primary.args} primary label="Primary Medium Button" aria-label="Primary Medium Button" />
<Button {...PrimaryDisabled.args} primary={false} label="Primary Medium Disabled Button" aria-label="Primary Medium Disabled Button" />
<Button {...Primary.args} primary size="small" label="Primary Small Button" aria-label="Primary Small Button" />
<Button {...PrimaryDisabled.args} primary={false} size="small" label="Primary Small Disabled" aria-label="Primary Small Disabled" />
<Button {...Secondary.args} secondary label="Secondary Button" aria-label="Secondary Button" />
</ButtonContainer>
);

Expand Down

0 comments on commit 4c5add9

Please sign in to comment.