Skip to content

Commit

Permalink
Merge pull request react95-io#43 from arturbien/christoshrousis-butto…
Browse files Browse the repository at this point in the history
…n-sizes

Christoshrousis button sizes
  • Loading branch information
arturbien authored Jun 3, 2019
2 parents 8d25453 + 8d66609 commit c0bd619
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions src/components/Button/Button.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,25 @@ storiesOf("Button", module)
🎂
</Button>
))
.add("size large", () => (
<Button {...actions} size={"lg"} square>
💖
</Button>
.add("sizes", () => (
<div
style={{
alignItems: "center",
display: "flex",
width: 200,
justifyContent: "space-between"
}}
>
<Button {...actions} size="sm">
small
</Button>
<Button {...actions} size="md">
medium
</Button>
<Button {...actions} size="lg">
large
</Button>
</div>
))
.add("menu button", () => <MenuButtonExample />)
.add("flat button", () => (
Expand Down

0 comments on commit c0bd619

Please sign in to comment.