-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstories.js
More file actions
84 lines (77 loc) · 2.09 KB
/
Copy pathstories.js
File metadata and controls
84 lines (77 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { h, render, Component } from "preact";
// Tell Babel to transform JSX into h() calls:
/** @jsx h */
import { storiesOf } from "@storybook/react";
import { action } from "@storybook/addon-actions";
import Button from ".";
import { buttons, sizes } from "@ocode/constants/lib/buttons";
import { css } from "fam";
const buttonHolder = css({
"& *": {
marginRight: "1rem",
marginBottom: "1rem"
}
});
storiesOf("Button", module).add("usage", () =>
<div>
<h1>Variants</h1>
<div className={buttonHolder}>
{Object.keys(buttons).map(key =>
<Button variant={key} onClick={action(`clicked ${key}`)}>
{key}
</Button>
)}
</div>
<div className={buttonHolder}>
{Object.keys(buttons).map(key =>
<Button ghost variant={key} onClick={action(`clicked ${key}`)}>
{key}
</Button>
)}
</div>
<div className={buttonHolder}>
{Object.keys(buttons).map(key =>
<Button circle variant={key} onClick={action(`clicked ${key}`)}>
a
</Button>
)}
</div>
<div className={buttonHolder}>
{Object.keys(buttons).map(key =>
<Button circle ghost variant={key} onClick={action(`clicked ${key}`)}>
a
</Button>
)}
</div>
<h1>Disabled</h1>
<div className={buttonHolder}>
{Object.keys(buttons).map(key =>
<Button disabled variant={key} onClick={action(`clicked ${key}`)}>
{key}
</Button>
)}
</div>
<div className={buttonHolder}>
{Object.keys(buttons).map(key =>
<Button ghost disabled variant={key} onClick={action(`clicked ${key}`)}>
{key}
</Button>
)}
</div>
<h1>Sizes</h1>
<div className={buttonHolder}>
{Object.keys(sizes).map(key =>
<Button size={key} onClick={action(`clicked ${key}`)}>
{key}
</Button>
)}
</div>
<div className={buttonHolder}>
{Object.keys(sizes).map(key =>
<Button ghost size={key} onClick={action(`clicked ${key}`)}>
{key}
</Button>
)}
</div>
</div>
);