@gsk_poc/untitled-ui-base 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +44 -0
  3. package/components/application/app-navigation/base-components/featured-cards.demo.tsx +86 -0
  4. package/components/application/app-navigation/base-components/featured-cards.story.tsx +49 -0
  5. package/components/application/app-navigation/header-navigation.demo.tsx +59 -0
  6. package/components/application/app-navigation/header-navigation.story.tsx +23 -0
  7. package/components/application/app-navigation/sidebar-navigation.demo.tsx +409 -0
  8. package/components/application/app-navigation/sidebar-navigation.story.tsx +47 -0
  9. package/components/application/carousel/carousel.demo.tsx +107 -0
  10. package/components/application/carousel/carousel.story.tsx +21 -0
  11. package/components/application/charts/activity-gauges.demo.tsx +251 -0
  12. package/components/application/charts/activity-gauges.story.tsx +27 -0
  13. package/components/application/charts/bar-charts.demo.tsx +506 -0
  14. package/components/application/charts/bar-charts.story.tsx +36 -0
  15. package/components/application/charts/line-charts.demo.tsx +604 -0
  16. package/components/application/charts/line-charts.story.tsx +43 -0
  17. package/components/application/charts/pie-charts.demo.tsx +193 -0
  18. package/components/application/charts/pie-charts.story.tsx +30 -0
  19. package/components/application/charts/progress-circles.demo.tsx +110 -0
  20. package/components/application/charts/progress-circles.story.tsx +33 -0
  21. package/components/application/charts/radar-charts.demo.tsx +203 -0
  22. package/components/application/charts/radar-charts.story.tsx +18 -0
  23. package/components/application/date-picker/date-picker.demo.tsx +217 -0
  24. package/components/application/date-picker/date-picker.story.tsx +44 -0
  25. package/components/application/file-upload/file-upload.demo.tsx +292 -0
  26. package/components/application/file-upload/file-upload.story.tsx +70 -0
  27. package/components/application/loading-indicator/loading-indicator.demo.tsx +73 -0
  28. package/components/application/loading-indicator/loading-indicator.story.tsx +22 -0
  29. package/components/application/pagination/pagination.demo.tsx +104 -0
  30. package/components/application/pagination/pagination.story.tsx +54 -0
  31. package/components/application/table/table.demo.tsx +1038 -0
  32. package/components/application/table/table.story.tsx +119 -0
  33. package/components/application/tabs/tabs.demo.tsx +322 -0
  34. package/components/application/tabs/tabs.story.tsx +43 -0
  35. package/components/base/avatar/avatar.demo.tsx +865 -0
  36. package/components/base/avatar/avatar.story.tsx +27 -0
  37. package/components/base/badges/badge-groups.demo.tsx +357 -0
  38. package/components/base/badges/badge-groups.story.tsx +25 -0
  39. package/components/base/badges/badges.demo.tsx +497 -0
  40. package/components/base/badges/badges.story.tsx +83 -0
  41. package/components/base/button-group/button-group.demo.tsx +131 -0
  42. package/components/base/button-group/button-group.story.tsx +16 -0
  43. package/components/base/buttons/app-store-buttons.demo.tsx +129 -0
  44. package/components/base/buttons/app-store-buttons.story.tsx +13 -0
  45. package/components/base/buttons/buttons.demo.tsx +1022 -0
  46. package/components/base/buttons/buttons.story.tsx +42 -0
  47. package/components/base/buttons/social-buttons.demo.tsx +432 -0
  48. package/components/base/buttons/social-buttons.story.tsx +20 -0
  49. package/components/base/checkbox/checkbox.demo.tsx +62 -0
  50. package/components/base/checkbox/checkbox.story.tsx +18 -0
  51. package/components/base/dropdown/dropdown.demo.tsx +137 -0
  52. package/components/base/dropdown/dropdown.story.tsx +22 -0
  53. package/components/base/input/inputs.demo.tsx +758 -0
  54. package/components/base/input/inputs.story.tsx +52 -0
  55. package/components/base/pin-input/pin-input.demo.tsx +126 -0
  56. package/components/base/pin-input/pin-input.story.tsx +22 -0
  57. package/components/base/progress-indicators/progress-indicators.demo.tsx +54 -0
  58. package/components/base/progress-indicators/progress-indicators.story.tsx +57 -0
  59. package/components/base/radio-buttons/radio-buttons.demo.tsx +77 -0
  60. package/components/base/radio-buttons/radio-buttons.story.tsx +19 -0
  61. package/components/base/select/select.demo.tsx +936 -0
  62. package/components/base/select/select.story.tsx +43 -0
  63. package/components/base/slider/slider.demo.tsx +19 -0
  64. package/components/base/slider/slider.story.tsx +26 -0
  65. package/components/base/tags/tags.demo.tsx +341 -0
  66. package/components/base/tags/tags.story.tsx +28 -0
  67. package/components/base/textarea/textarea.demo.tsx +25 -0
  68. package/components/base/textarea/textarea.story.tsx +15 -0
  69. package/components/base/toggle/toggle.demo.tsx +76 -0
  70. package/components/base/toggle/toggle.story.tsx +23 -0
  71. package/components/base/tooltip/tooltip.demo.tsx +125 -0
  72. package/components/base/tooltip/tooltip.story.tsx +21 -0
  73. package/components/foundations/featured-icon/featured-icon.demo.tsx +160 -0
  74. package/components/foundations/featured-icon/featured-icon.story.tsx +25 -0
  75. package/components/shared-assets/credit-card/credit-card.demo.tsx +106 -0
  76. package/components/shared-assets/credit-card/credit-card.story.tsx +41 -0
  77. package/dist/index.d.mts +1417 -0
  78. package/dist/index.d.ts +1417 -0
  79. package/dist/index.js +10435 -0
  80. package/dist/index.js.map +1 -0
  81. package/dist/index.mjs +10345 -0
  82. package/dist/index.mjs.map +1 -0
  83. package/package.json +126 -0
  84. package/styles/globals.css +65 -0
  85. package/styles/theme.css +430 -0
  86. package/styles/tokens-mapped.css +233 -0
  87. package/styles/tokens.css +807 -0
  88. package/styles/typography.css +430 -0
  89. package/tokens/design-tokens.dtcg.json +3515 -0
@@ -0,0 +1,119 @@
1
+ "use client";
2
+
3
+ import { withOverlayAware } from "@/components/internal/decorators";
4
+ import * as Tables from "./table.demo";
5
+
6
+ export default {
7
+ title: "Application/Tables",
8
+ decorators: [
9
+ withOverlayAware((Story) => (
10
+ <div className="min-h-screen bg-primary p-5">
11
+ <Story />
12
+ </div>
13
+ )),
14
+ ],
15
+ };
16
+
17
+ export const Table01DividerLine = () => <Tables.Table01DividerLine />;
18
+ Table01DividerLine.storyName = "Table 01 divider line";
19
+ Table01DividerLine.parameters = {
20
+ design: {
21
+ desktop: "1227-110480",
22
+ mobile: "1227-110588",
23
+ },
24
+ };
25
+
26
+ export const Table01AlternatingFills = () => <Tables.Table01AlternatingFills />;
27
+ Table01AlternatingFills.storyName = "Table 01 alternating fills";
28
+ Table01AlternatingFills.parameters = {
29
+ design: {
30
+ desktop: "1229-12388",
31
+ mobile: "1229-15727",
32
+ },
33
+ };
34
+
35
+ export const Table01DividerLineSm = () => <Tables.Table01DividerLineSm />;
36
+ Table01DividerLineSm.storyName = "Table 01 divider line sm";
37
+ Table01DividerLineSm.parameters = {
38
+ design: {
39
+ desktop: "1227-110480",
40
+ },
41
+ };
42
+
43
+ export const Table02DividerLine = () => <Tables.Table02DividerLine />;
44
+ Table02DividerLine.storyName = "Table 02 divider line";
45
+ Table02DividerLine.parameters = {
46
+ design: {
47
+ desktop: "1227-115509",
48
+ mobile: "1227-115298",
49
+ },
50
+ };
51
+
52
+ export const Table02AlternatingFills = () => <Tables.Table02AlternatingFills />;
53
+ Table02AlternatingFills.storyName = "Table 02 alternating fills";
54
+ Table02AlternatingFills.parameters = {
55
+ design: {
56
+ desktop: "1229-11893",
57
+ mobile: "1229-17412",
58
+ },
59
+ };
60
+
61
+ export const Table03DividerLine = () => <Tables.Table03DividerLine />;
62
+ Table03DividerLine.storyName = "Table 03 divider line";
63
+ Table03DividerLine.parameters = {
64
+ design: {
65
+ desktop: "1227-121348",
66
+ mobile: "1229-543",
67
+ },
68
+ };
69
+
70
+ export const Table03AlternatingFills = () => <Tables.Table03AlternatingFills />;
71
+ Table03AlternatingFills.storyName = "Table 03 alternating fills";
72
+ Table03AlternatingFills.parameters = {
73
+ design: {
74
+ desktop: "1229-12040",
75
+ mobile: "1229-18422",
76
+ },
77
+ };
78
+
79
+ export const Table04DividerLine = () => <Tables.Table04DividerLine />;
80
+ Table04DividerLine.storyName = "Table 04 divider line";
81
+ Table04DividerLine.parameters = {
82
+ design: {
83
+ desktop: "1229-2364",
84
+ mobile: "1229-7899",
85
+ },
86
+ };
87
+
88
+ export const Table04AlternatingFills = () => <Tables.Table04AlternatingFills />;
89
+ Table04AlternatingFills.storyName = "Table 04 alternating fills";
90
+ Table04AlternatingFills.parameters = {
91
+ design: {
92
+ desktop: "1229-12241",
93
+ mobile: "1229-19933",
94
+ },
95
+ };
96
+
97
+ export const TableNoVendorsFound = () => <Tables.TableNoVendorsFound />;
98
+ TableNoVendorsFound.storyName = "Table no vendors found";
99
+ TableNoVendorsFound.parameters = {
100
+ design: {
101
+ desktop: "2218-469191",
102
+ },
103
+ };
104
+
105
+ export const TableStartByUploadingFile = () => <Tables.TableStartByUploadingFile />;
106
+ TableStartByUploadingFile.storyName = "Table start by uploading file";
107
+ TableStartByUploadingFile.parameters = {
108
+ design: {
109
+ desktop: "2219-470358",
110
+ },
111
+ };
112
+
113
+ export const TableSomethingWentWrong = () => <Tables.TableSomethingWentWrong />;
114
+ TableSomethingWentWrong.storyName = "Table something went wrong";
115
+ TableSomethingWentWrong.parameters = {
116
+ design: {
117
+ desktop: "2219-472490",
118
+ },
119
+ };
@@ -0,0 +1,322 @@
1
+ "use client";
2
+
3
+ import { useState } from "react";
4
+ import type { Key } from "react-aria-components";
5
+ import { Tabs } from "@/components/application/tabs/tabs";
6
+ import { NativeSelect } from "@/components/base/select/select-native";
7
+
8
+ const tabs = [
9
+ { id: "details", label: "My details" },
10
+ { id: "profile", label: "Profile" },
11
+ { id: "password", label: "Password" },
12
+ { id: "team", label: "Team" },
13
+ { id: "notifications", label: "Notifications", badge: 2 },
14
+ { id: "integrations", label: "Integrations" },
15
+ { id: "api", label: "API" },
16
+ ];
17
+
18
+ export const ButtonBrandHorizontalDemo = () => {
19
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
20
+
21
+ return (
22
+ <>
23
+ <NativeSelect
24
+ aria-label="Tabs"
25
+ value={selectedTabIndex as string}
26
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
27
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
28
+ className="w-80 md:hidden"
29
+ />
30
+ <Tabs selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
31
+ <Tabs.List type="button-brand" items={tabs}>
32
+ {(tab) => <Tabs.Item {...tab} />}
33
+ </Tabs.List>
34
+ </Tabs>
35
+ </>
36
+ );
37
+ };
38
+
39
+ export const ButtonBrandVerticalDemo = () => {
40
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
41
+
42
+ return (
43
+ <>
44
+ <NativeSelect
45
+ aria-label="Tabs"
46
+ value={selectedTabIndex as string}
47
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
48
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
49
+ className="w-80 md:hidden"
50
+ />
51
+ <Tabs orientation="vertical" selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
52
+ <Tabs.List type="button-brand" items={tabs}>
53
+ {(tab) => <Tabs.Item {...tab} />}
54
+ </Tabs.List>
55
+ </Tabs>
56
+ </>
57
+ );
58
+ };
59
+
60
+ export const ButtonGrayHorizontalDemo = () => {
61
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
62
+
63
+ return (
64
+ <>
65
+ <NativeSelect
66
+ aria-label="Tabs"
67
+ value={selectedTabIndex as string}
68
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
69
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
70
+ className="w-80 md:hidden"
71
+ />
72
+ <Tabs selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
73
+ <Tabs.List type="button-gray" items={tabs}>
74
+ {(tab) => <Tabs.Item {...tab} />}
75
+ </Tabs.List>
76
+ </Tabs>
77
+ </>
78
+ );
79
+ };
80
+
81
+ export const ButtonGrayVerticalDemo = () => {
82
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
83
+
84
+ return (
85
+ <>
86
+ <NativeSelect
87
+ aria-label="Tabs"
88
+ value={selectedTabIndex as string}
89
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
90
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
91
+ className="w-80 md:hidden"
92
+ />
93
+ <Tabs orientation="vertical" selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
94
+ <Tabs.List type="button-gray" items={tabs}>
95
+ {(tab) => <Tabs.Item {...tab} />}
96
+ </Tabs.List>
97
+ </Tabs>
98
+ </>
99
+ );
100
+ };
101
+
102
+ export const UnderlineDemo = () => {
103
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
104
+
105
+ return (
106
+ <>
107
+ <NativeSelect
108
+ aria-label="Tabs"
109
+ value={selectedTabIndex as string}
110
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
111
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
112
+ className="w-80 md:hidden"
113
+ />
114
+ <Tabs selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
115
+ <Tabs.List type="underline" items={tabs}>
116
+ {(tab) => <Tabs.Item {...tab} />}
117
+ </Tabs.List>
118
+ </Tabs>
119
+ </>
120
+ );
121
+ };
122
+
123
+ export const LineDemo = () => {
124
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
125
+
126
+ return (
127
+ <>
128
+ <NativeSelect
129
+ aria-label="Tabs"
130
+ value={selectedTabIndex as string}
131
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
132
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
133
+ className="w-80 md:hidden"
134
+ />
135
+ <Tabs orientation="vertical" selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
136
+ <Tabs.List type="line" items={tabs}>
137
+ {(tab) => <Tabs.Item {...tab} />}
138
+ </Tabs.List>
139
+ </Tabs>
140
+ </>
141
+ );
142
+ };
143
+
144
+ export const ButtonBorderHorizontalDemo = () => {
145
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
146
+
147
+ return (
148
+ <>
149
+ <NativeSelect
150
+ aria-label="Tabs"
151
+ value={selectedTabIndex as string}
152
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
153
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
154
+ className="w-80 md:hidden"
155
+ />
156
+ <Tabs selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
157
+ <Tabs.List type="button-border" items={tabs}>
158
+ {(tab) => <Tabs.Item {...tab} />}
159
+ </Tabs.List>
160
+ </Tabs>
161
+ </>
162
+ );
163
+ };
164
+
165
+ export const ButtonBorderVerticalDemo = () => {
166
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
167
+
168
+ return (
169
+ <>
170
+ <NativeSelect
171
+ aria-label="Tabs"
172
+ value={selectedTabIndex as string}
173
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
174
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
175
+ className="w-80 md:hidden"
176
+ />
177
+ <Tabs orientation="vertical" selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
178
+ <Tabs.List type="button-border" items={tabs}>
179
+ {(tab) => <Tabs.Item {...tab} />}
180
+ </Tabs.List>
181
+ </Tabs>
182
+ </>
183
+ );
184
+ };
185
+
186
+ export const ButtonMinimalHorizontalDemo = () => {
187
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
188
+
189
+ return (
190
+ <>
191
+ <NativeSelect
192
+ aria-label="Tabs"
193
+ value={selectedTabIndex as string}
194
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
195
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
196
+ className="w-80 md:hidden"
197
+ />
198
+ <Tabs selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
199
+ <Tabs.List type="button-minimal" items={tabs}>
200
+ {(tab) => <Tabs.Item {...tab} />}
201
+ </Tabs.List>
202
+ </Tabs>
203
+ </>
204
+ );
205
+ };
206
+
207
+ export const ButtonMinimalVerticalDemo = () => {
208
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
209
+
210
+ return (
211
+ <>
212
+ <NativeSelect
213
+ aria-label="Tabs"
214
+ value={selectedTabIndex as string}
215
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
216
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
217
+ className="w-80 md:hidden"
218
+ />
219
+ <Tabs orientation="vertical" selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="w-max max-md:hidden">
220
+ <Tabs.List type="button-minimal" items={tabs}>
221
+ {(tab) => <Tabs.Item {...tab} />}
222
+ </Tabs.List>
223
+ </Tabs>
224
+ </>
225
+ );
226
+ };
227
+
228
+ const GenericTabs = (props: {
229
+ size?: "sm" | "md";
230
+ orientation?: "horizontal" | "vertical";
231
+ type: "underline" | "line" | "button-brand" | "button-gray" | "button-border" | "button-minimal";
232
+ }) => {
233
+ const [selectedTabIndex, setSelectedTabIndex] = useState<Key>("details");
234
+
235
+ return (
236
+ <>
237
+ <div className="md:hidden">
238
+ <NativeSelect
239
+ aria-label="Tabs"
240
+ value={selectedTabIndex as string}
241
+ onChange={(event) => setSelectedTabIndex(event.target.value)}
242
+ options={tabs.map((tab) => ({ label: tab.label, value: tab.id }))}
243
+ />
244
+ </div>
245
+ <Tabs orientation={props.orientation} selectedKey={selectedTabIndex} onSelectionChange={setSelectedTabIndex} className="max-md:hidden">
246
+ <Tabs.List {...props} type={props.type} items={tabs}>
247
+ {(tab) => <Tabs.Item {...tab} />}
248
+ </Tabs.List>
249
+ </Tabs>
250
+ </>
251
+ );
252
+ };
253
+
254
+ export const ButtonBrandHorizontal = () => (
255
+ <div className="flex flex-col gap-16">
256
+ <GenericTabs type="button-brand" />
257
+ <GenericTabs type="button-brand" size="md" />
258
+ </div>
259
+ );
260
+
261
+ export const ButtonBrandVertical = () => (
262
+ <div className="flex gap-16">
263
+ <GenericTabs type="button-brand" orientation="vertical" />
264
+ <GenericTabs type="button-brand" orientation="vertical" size="md" />
265
+ </div>
266
+ );
267
+
268
+ export const ButtonGrayHorizontal = () => (
269
+ <div className="flex flex-col gap-16">
270
+ <GenericTabs type="button-gray" />
271
+ <GenericTabs type="button-gray" size="md" />
272
+ </div>
273
+ );
274
+
275
+ export const ButtonGrayVertical = () => (
276
+ <div className="flex gap-16">
277
+ <GenericTabs type="button-gray" orientation="vertical" />
278
+ <GenericTabs type="button-gray" orientation="vertical" size="md" />
279
+ </div>
280
+ );
281
+
282
+ export const UnderlineHorizontal = () => (
283
+ <div className="flex flex-col gap-16">
284
+ <GenericTabs type="underline" />
285
+ <GenericTabs type="underline" size="md" />
286
+ </div>
287
+ );
288
+
289
+ export const UnderlineVertical = () => (
290
+ <div className="flex gap-16">
291
+ <GenericTabs type="line" orientation="vertical" />
292
+ <GenericTabs type="line" orientation="vertical" size="md" />
293
+ </div>
294
+ );
295
+
296
+ export const ButtonBorderHorizontal = () => (
297
+ <div className="flex flex-col gap-16">
298
+ <GenericTabs type="button-border" />
299
+ <GenericTabs type="button-border" size="md" />
300
+ </div>
301
+ );
302
+
303
+ export const ButtonBorderVertical = () => (
304
+ <div className="flex gap-16">
305
+ <GenericTabs type="button-border" orientation="vertical" />
306
+ <GenericTabs type="button-border" orientation="vertical" size="md" />
307
+ </div>
308
+ );
309
+
310
+ export const ButtonMinimalHorizontal = () => (
311
+ <div className="flex flex-col gap-16">
312
+ <GenericTabs type="button-minimal" />
313
+ <GenericTabs type="button-minimal" size="md" />
314
+ </div>
315
+ );
316
+
317
+ export const ButtonMinimalVertical = () => (
318
+ <div className="flex gap-16">
319
+ <GenericTabs type="button-minimal" orientation="vertical" />
320
+ <GenericTabs type="button-minimal" orientation="vertical" size="md" />
321
+ </div>
322
+ );
@@ -0,0 +1,43 @@
1
+ import type { FC } from "react";
2
+ import * as Demos from "./tabs.demo";
3
+
4
+ export default {
5
+ title: "Application/Tabs",
6
+ decorators: [
7
+ (Story: FC) => (
8
+ <div className="flex min-h-screen items-center justify-center bg-primary p-8">
9
+ <Story />
10
+ </div>
11
+ ),
12
+ ],
13
+ };
14
+
15
+ export const ButtonBrandHorizontal = () => <Demos.ButtonBrandHorizontal />;
16
+ ButtonBrandHorizontal.storyName = "Button brand horizontal";
17
+
18
+ export const ButtonBrandVertical = () => <Demos.ButtonBrandVertical />;
19
+ ButtonBrandVertical.storyName = "Button brand vertical";
20
+
21
+ export const ButtonGrayHorizontal = () => <Demos.ButtonGrayHorizontal />;
22
+ ButtonGrayHorizontal.storyName = "Button gray horizontal";
23
+
24
+ export const ButtonGrayVertical = () => <Demos.ButtonGrayVertical />;
25
+ ButtonGrayVertical.storyName = "Button gray vertical";
26
+
27
+ export const UnderlineHorizontal = () => <Demos.UnderlineHorizontal />;
28
+ UnderlineHorizontal.storyName = "Underline horizontal";
29
+
30
+ export const UnderlineVertical = () => <Demos.UnderlineVertical />;
31
+ UnderlineVertical.storyName = "Underline vertical";
32
+
33
+ export const ButtonBorderHorizontal = () => <Demos.ButtonBorderHorizontal />;
34
+ ButtonBorderHorizontal.storyName = "Button border horizontal";
35
+
36
+ export const ButtonBorderVertical = () => <Demos.ButtonBorderVertical />;
37
+ ButtonBorderVertical.storyName = "Button border vertical";
38
+
39
+ export const ButtonMinimalHorizontal = () => <Demos.ButtonMinimalHorizontal />;
40
+ ButtonMinimalHorizontal.storyName = "Button minimal horizontal";
41
+
42
+ export const ButtonMinimalVertical = () => <Demos.ButtonMinimalVertical />;
43
+ ButtonMinimalVertical.storyName = "Button minimal vertical";