Skip to content

Commit

Permalink
docs(button): add example of disabled button
Browse files Browse the repository at this point in the history
  • Loading branch information
felipefialho committed Jul 15, 2023
1 parent 3121dfe commit ad30cd5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,11 @@ export const CircleButton: StoryObj = {
shape: 'circle',
},
}

export const Disabled: StoryObj = {
render: (args) => createButton(args),
args: {
...Primary.args,
disabled: true,
},
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,11 @@ export const CircleButton: StoryObj = {
shape: 'circle',
},
}

export const Disabled: StoryObj = {
render: (args) => createButton(args),
args: {
...Primary.args,
disabled: true,
},
}

0 comments on commit ad30cd5

Please sign in to comment.