orcs-design-system 3.2.4 → 3.2.6

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 (96) hide show
  1. package/es/GlobalStyles.js +1 -31
  2. package/es/SystemThemeProvider.js +11 -5
  3. package/es/assets/Colour/Colour.stories.js +211 -0
  4. package/es/assets/Colour/index.js +3 -3
  5. package/es/components/ActionsMenu/ActionsMenu.stories.js +260 -233
  6. package/es/components/ActionsMenu/index.js +144 -229
  7. package/es/components/Avatar/Avatar.stories.js +212 -196
  8. package/es/components/Avatar/index.js +280 -307
  9. package/es/components/Badge/Badge.stories.js +71 -46
  10. package/es/components/Badge/index.js +71 -74
  11. package/es/components/Box/Box.stories.js +51 -35
  12. package/es/components/Box/index.js +33 -34
  13. package/es/components/Button/Button.stories.js +161 -145
  14. package/es/components/Button/ButtonLink.stories.js +152 -139
  15. package/es/components/Button/index.js +79 -99
  16. package/es/components/ButtonGroup/ButtonGroup.stories.js +43 -42
  17. package/es/components/ButtonGroup/ButtonGroupItem.stories.js +11 -13
  18. package/es/components/ButtonGroup/index.js +103 -99
  19. package/es/components/Card/Card.stories.js +94 -62
  20. package/es/components/Card/index.js +50 -71
  21. package/es/components/Checkbox/Checkbox.stories.js +37 -43
  22. package/es/components/Checkbox/index.js +61 -76
  23. package/es/components/DatePicker/DatePicker.stories.js +86 -118
  24. package/es/components/DatePicker/index.js +71 -187
  25. package/es/components/Divider/Divider.stories.js +39 -42
  26. package/es/components/Divider/index.js +21 -27
  27. package/es/components/Expandable/Expandable.stories.js +46 -36
  28. package/es/components/Expandable/index.js +55 -82
  29. package/es/components/Flex/Flex.stories.js +19 -5
  30. package/es/components/Flex/FlexItem.stories.js +10 -9
  31. package/es/components/Flex/index.js +34 -27
  32. package/es/components/Grid/Grid.stories.js +129 -55
  33. package/es/components/Grid/index.js +25 -24
  34. package/es/components/Header/Header.stories.js +101 -92
  35. package/es/components/Header/index.js +433 -436
  36. package/es/components/HeaderSimple/HeaderSimple.stories.js +23 -27
  37. package/es/components/HeaderSimple/index.js +73 -68
  38. package/es/components/Icon/Icon.stories.js +58 -57
  39. package/es/components/Icon/index.js +48 -46
  40. package/es/components/Loading/Loading.stories.js +32 -39
  41. package/es/components/Loading/index.js +44 -51
  42. package/es/components/Modal/Modal.stories.js +172 -153
  43. package/es/components/Modal/index.js +126 -134
  44. package/es/components/Notification/Notification.stories.js +59 -58
  45. package/es/components/Notification/index.js +123 -133
  46. package/es/components/Popover/Popover.stories.js +134 -102
  47. package/es/components/Popover/index.js +65 -111
  48. package/es/components/ProgressBar/ProgressBar.stories.js +36 -39
  49. package/es/components/ProgressBar/index.js +29 -34
  50. package/es/components/RadioButton/RadioButton.stories.js +32 -37
  51. package/es/components/RadioButton/index.js +170 -184
  52. package/es/components/Range/Range.stories.js +19 -19
  53. package/es/components/Range/index.js +35 -45
  54. package/es/components/Select/Select.stories.js +107 -128
  55. package/es/components/Select/index.js +324 -336
  56. package/es/components/SideNav/NavItem.js +112 -122
  57. package/es/components/SideNav/SideNav.stories.js +84 -57
  58. package/es/components/SideNav/index.js +161 -185
  59. package/es/components/Sidebar/Sidebar.stories.js +50 -33
  60. package/es/components/Sidebar/index.js +152 -155
  61. package/es/components/Spacer/Spacer.stories.js +35 -32
  62. package/es/components/Spacer/index.js +20 -20
  63. package/es/components/StatusDot/StatusDot.stories.js +103 -90
  64. package/es/components/StatusDot/index.js +36 -38
  65. package/es/components/StyledLink/StyledLink.stories.js +68 -69
  66. package/es/components/StyledLink/index.js +47 -48
  67. package/es/components/Table/Table.stories.js +118 -112
  68. package/es/components/Table/getExpandColumnConfig.js +67 -62
  69. package/es/components/Table/index.js +24 -27
  70. package/es/components/Table/muiStyleOverrides.js +10 -8
  71. package/es/components/Tabs/Tab.stories.js +55 -38
  72. package/es/components/Tabs/TabsContainer.stories.js +30 -22
  73. package/es/components/Tabs/index.js +95 -92
  74. package/es/components/Tag/Tag.stories.js +250 -220
  75. package/es/components/Tag/index.js +118 -190
  76. package/es/components/TextArea/TextArea.stories.js +76 -89
  77. package/es/components/TextArea/index.js +117 -115
  78. package/es/components/TextInput/TextInput.stories.js +41 -61
  79. package/es/components/TextInput/index.js +127 -171
  80. package/es/components/Toggle/Toggle.stories.js +63 -62
  81. package/es/components/Toggle/index.js +43 -77
  82. package/es/components/TreeNav/TreeNav.stories.js +7 -8
  83. package/es/components/TreeNav/index.js +72 -69
  84. package/es/components/Typography/Typography.stories.js +174 -0
  85. package/es/components/Typography/index.js +252 -308
  86. package/es/components.test.js +1 -1
  87. package/es/hooks/isVisible.js +6 -10
  88. package/es/hooks/keepInView.js +27 -32
  89. package/es/hooks/keypress.js +14 -14
  90. package/es/hooks/useInputFocus.js +5 -5
  91. package/es/hooks/usePrevious.js +3 -3
  92. package/es/systemThemeCollapsed.js +53 -53
  93. package/es/systemtheme.js +53 -53
  94. package/es/utils/selectUtil.js +1 -1
  95. package/es/utils/selectUtil.test.js +6 -6
  96. package/package.json +29 -38
@@ -5,328 +5,344 @@ import Box from "../Box";
5
5
  import Spacer from "../Spacer";
6
6
  import StyledLink from "../StyledLink";
7
7
  import Avatar from ".";
8
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
8
9
  export default {
9
10
  title: "Components/Avatar",
10
11
  component: Avatar
11
12
  };
12
- export var defaultAvatar = function defaultAvatar() {
13
- return /*#__PURE__*/React.createElement(Avatar, {
14
- title: "Ayden Lundgre",
15
- initials: "AL",
16
- subtitle: "Senior Business Analyst",
17
- image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
18
- });
19
- };
13
+ export const defaultAvatar = () => /*#__PURE__*/_jsx(Avatar, {
14
+ title: "Ayden Lundgre",
15
+ initials: "AL",
16
+ subtitle: "Senior Business Analyst",
17
+ image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
18
+ });
20
19
  defaultAvatar.storyName = "Default";
21
- export var noImage = function noImage() {
22
- return /*#__PURE__*/React.createElement(Spacer, {
23
- my: "r"
24
- }, /*#__PURE__*/React.createElement(Avatar, {
20
+ export const noImage = () => /*#__PURE__*/_jsxs(Spacer, {
21
+ my: "r",
22
+ children: [/*#__PURE__*/_jsx(Avatar, {
25
23
  title: "Ayden Lundgre",
26
24
  subtitle: "Senior Business Analyst",
27
25
  initials: "AL"
28
- }), /*#__PURE__*/React.createElement(Avatar, {
26
+ }), /*#__PURE__*/_jsx(Avatar, {
29
27
  title: "Ayden Lundgre",
30
28
  subtitle: "Senior Business Analyst",
31
29
  initials: "AL",
32
30
  whiteInitials: true
33
- }));
34
- };
31
+ })]
32
+ });
35
33
  noImage.storyName = "No image";
36
- export var imageOnly = function imageOnly() {
37
- return /*#__PURE__*/React.createElement(Spacer, {
38
- my: 4
39
- }, /*#__PURE__*/React.createElement(Avatar, {
34
+ export const imageOnly = () => /*#__PURE__*/_jsx(Spacer, {
35
+ my: 4,
36
+ children: /*#__PURE__*/_jsx(Avatar, {
40
37
  image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
41
- }));
42
- };
38
+ })
39
+ });
43
40
  imageOnly.storyName = "Image only";
44
- export var iconOnly = function iconOnly() {
45
- return /*#__PURE__*/React.createElement(Spacer, {
46
- my: 4
47
- }, /*#__PURE__*/React.createElement(Avatar, {
41
+ export const iconOnly = () => /*#__PURE__*/_jsx(Spacer, {
42
+ my: 4,
43
+ children: /*#__PURE__*/_jsx(Avatar, {
48
44
  title: "Ayden Lundgre",
49
45
  subtitle: "Senior Business Analyst"
50
- }));
51
- };
46
+ })
47
+ });
52
48
  iconOnly.storyName = "Icon only";
53
- export var nameLink = function nameLink() {
54
- return /*#__PURE__*/React.createElement(Avatar, {
55
- title: /*#__PURE__*/React.createElement(StyledLink, {
56
- href: "#"
57
- }, "Ayden Lundgre"),
58
- subtitle: "Senior Business Analyst",
59
- initials: "AL",
60
- image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
61
- imageAlt: "Avatar for Ayden Lundgre"
62
- });
63
- };
49
+ export const nameLink = () => /*#__PURE__*/_jsx(Avatar, {
50
+ title: /*#__PURE__*/_jsx(StyledLink, {
51
+ href: "#",
52
+ children: "Ayden Lundgre"
53
+ }),
54
+ subtitle: "Senior Business Analyst",
55
+ initials: "AL",
56
+ image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
57
+ imageAlt: "Avatar for Ayden Lundgre"
58
+ });
64
59
  nameLink.storyName = "Name as link";
65
- export var small = function small() {
66
- return /*#__PURE__*/React.createElement(Spacer, {
67
- my: 4
68
- }, /*#__PURE__*/React.createElement(Avatar, {
60
+ export const small = () => /*#__PURE__*/_jsxs(Spacer, {
61
+ my: 4,
62
+ children: [/*#__PURE__*/_jsx(Avatar, {
69
63
  sizing: "small",
70
64
  title: "Ayden Lundgre",
71
65
  subtitle: "Senior Business Analyst",
72
66
  initials: "AL"
73
- }), /*#__PURE__*/React.createElement(Avatar, {
67
+ }), /*#__PURE__*/_jsx(Avatar, {
74
68
  sizing: "small",
75
69
  title: "Ayden Lundgre",
76
70
  subtitle: "Senior Business Analyst",
77
71
  initials: "AL",
78
72
  image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
79
- }), /*#__PURE__*/React.createElement(Avatar, {
73
+ }), /*#__PURE__*/_jsx(Avatar, {
80
74
  sizing: "small",
81
- title: /*#__PURE__*/React.createElement(StyledLink, {
82
- href: "#"
83
- }, "Ayden Lundgre"),
75
+ title: /*#__PURE__*/_jsx(StyledLink, {
76
+ href: "#",
77
+ children: "Ayden Lundgre"
78
+ }),
84
79
  subtitle: "Senior Business Analyst",
85
80
  imageAlt: "Avatar for Ayden Lundgre",
86
81
  initials: "AL",
87
82
  image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
88
- }));
89
- };
83
+ })]
84
+ });
90
85
  small.storyName = "Small";
91
- export var large = function large() {
92
- return /*#__PURE__*/React.createElement(Spacer, {
93
- my: 4
94
- }, /*#__PURE__*/React.createElement(Avatar, {
86
+ export const large = () => /*#__PURE__*/_jsxs(Spacer, {
87
+ my: 4,
88
+ children: [/*#__PURE__*/_jsx(Avatar, {
95
89
  sizing: "large",
96
90
  title: "Ayden Lundgre",
97
91
  titleLevel: "H1",
98
92
  subtitle: "Senior Business Analyst",
99
93
  initials: "AL"
100
- }), /*#__PURE__*/React.createElement(Avatar, {
94
+ }), /*#__PURE__*/_jsx(Avatar, {
101
95
  sizing: "large",
102
96
  title: "Ayden Lundgre",
103
97
  subtitle: "Senior Business Analyst",
104
98
  initials: "AL",
105
99
  image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
106
- }), /*#__PURE__*/React.createElement(Avatar, {
100
+ }), /*#__PURE__*/_jsx(Avatar, {
107
101
  sizing: "large",
108
- title: /*#__PURE__*/React.createElement(StyledLink, {
109
- href: "#"
110
- }, "Ayden Lundgre"),
102
+ title: /*#__PURE__*/_jsx(StyledLink, {
103
+ href: "#",
104
+ children: "Ayden Lundgre"
105
+ }),
111
106
  subtitle: "Senior Business Analyst",
112
107
  imageAlt: "Avatar for Ayden Lundgre",
113
108
  initials: "AL",
114
109
  image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
115
- }));
116
- };
110
+ })]
111
+ });
117
112
  large.storyName = "Large";
118
- export var titleLevel = function titleLevel() {
119
- return /*#__PURE__*/React.createElement(Spacer, {
120
- my: 4
121
- }, /*#__PURE__*/React.createElement(Avatar, {
113
+ export const titleLevel = () => /*#__PURE__*/_jsx(Spacer, {
114
+ my: 4,
115
+ children: /*#__PURE__*/_jsx(Avatar, {
122
116
  sizing: "large",
123
117
  title: "Ayden Lundgre",
124
118
  titleLevel: "H1",
125
119
  subtitle: "Senior Business Analyst",
126
120
  initials: "AL"
127
- }));
128
- };
121
+ })
122
+ });
129
123
  titleLevel.storyName = "Title Level";
130
- export var subtitleContent = function subtitleContent() {
131
- return /*#__PURE__*/React.createElement(Spacer, {
132
- my: 4
133
- }, /*#__PURE__*/React.createElement(Avatar, {
124
+ export const subtitleContent = () => /*#__PURE__*/_jsxs(Spacer, {
125
+ my: 4,
126
+ children: [/*#__PURE__*/_jsx(Avatar, {
134
127
  sizing: "large",
135
- title: /*#__PURE__*/React.createElement(StyledLink, {
136
- href: "#"
137
- }, "Ayden Lundgre"),
128
+ title: /*#__PURE__*/_jsx(StyledLink, {
129
+ href: "#",
130
+ children: "Ayden Lundgre"
131
+ }),
138
132
  imageAlt: "Avatar for Ayden Lundgre",
139
133
  initials: "AL",
140
134
  image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
141
- subtitleContent: /*#__PURE__*/React.createElement(Badge, {
142
- mt: "xs"
143
- }, "Senior Business Analyst")
144
- }), /*#__PURE__*/React.createElement(Avatar, {
135
+ subtitleContent: /*#__PURE__*/_jsx(Badge, {
136
+ mt: "xs",
137
+ children: "Senior Business Analyst"
138
+ })
139
+ }), /*#__PURE__*/_jsx(Avatar, {
145
140
  sizing: "large",
146
- title: /*#__PURE__*/React.createElement(StyledLink, {
147
- href: "#"
148
- }, "Ayden Lundgre"),
141
+ title: /*#__PURE__*/_jsx(StyledLink, {
142
+ href: "#",
143
+ children: "Ayden Lundgre"
144
+ }),
149
145
  initials: "AL",
150
146
  image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
151
147
  imageAlt: "Avatar for Ayden Lundgre",
152
- subtitleContent: /*#__PURE__*/React.createElement(Flex, {
153
- flexWrap: "wrap"
154
- }, /*#__PURE__*/React.createElement(Spacer, {
155
- mr: "xs",
156
- mt: "xs"
157
- }, /*#__PURE__*/React.createElement(Badge, null, "Senior Business Analyst"), /*#__PURE__*/React.createElement(Badge, {
158
- variant: "warning"
159
- }, "Scrum Master")))
160
- }));
161
- };
148
+ subtitleContent: /*#__PURE__*/_jsx(Flex, {
149
+ flexWrap: "wrap",
150
+ children: /*#__PURE__*/_jsxs(Spacer, {
151
+ mr: "xs",
152
+ mt: "xs",
153
+ children: [/*#__PURE__*/_jsx(Badge, {
154
+ children: "Senior Business Analyst"
155
+ }), /*#__PURE__*/_jsx(Badge, {
156
+ variant: "warning",
157
+ children: "Scrum Master"
158
+ })]
159
+ })
160
+ })
161
+ })]
162
+ });
162
163
  subtitleContent.storyName = "Custom subtitle content";
163
- export var localTime = function localTime() {
164
- return /*#__PURE__*/React.createElement(Spacer, {
165
- my: 4
166
- }, /*#__PURE__*/React.createElement(Avatar, {
164
+ export const localTime = () => /*#__PURE__*/_jsx(Spacer, {
165
+ my: 4,
166
+ children: /*#__PURE__*/_jsx(Avatar, {
167
167
  sizing: "large",
168
- title: /*#__PURE__*/React.createElement(StyledLink, {
169
- href: "#"
170
- }, "Ayden Lundgre"),
168
+ title: /*#__PURE__*/_jsx(StyledLink, {
169
+ href: "#",
170
+ children: "Ayden Lundgre"
171
+ }),
171
172
  initials: "AL",
172
173
  image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
173
174
  imageAlt: "Avatar for Ayden Lundgre",
174
- subtitleContent: /*#__PURE__*/React.createElement(Badge, {
175
- mt: "xs"
176
- }, "Senior Business Analyst"),
175
+ subtitleContent: /*#__PURE__*/_jsx(Badge, {
176
+ mt: "xs",
177
+ children: "Senior Business Analyst"
178
+ }),
177
179
  localTime: "12:03pm local time"
178
- }));
179
- };
180
+ })
181
+ });
180
182
  localTime.storyName = "With local time";
181
- export var inverted = function inverted() {
182
- return /*#__PURE__*/React.createElement(Box, {
183
- bg: "greyDarkest",
184
- p: "r"
185
- }, /*#__PURE__*/React.createElement(Spacer, {
186
- my: 4
187
- }, /*#__PURE__*/React.createElement(Avatar, {
188
- type: "inverted",
189
- title: "Ayden Lundgre",
190
- subtitle: "Senior Business Analyst",
191
- initials: "AL",
192
- image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
193
- }), /*#__PURE__*/React.createElement(Avatar, {
194
- type: "inverted",
195
- title: /*#__PURE__*/React.createElement(StyledLink, {
196
- href: "#"
197
- }, "Ayden Lundgre"),
198
- subtitle: "Senior Business Analyst",
199
- initials: "AL",
200
- image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
201
- imageAlt: "Avatar for Ayden Lundgre"
202
- }), /*#__PURE__*/React.createElement(Avatar, {
203
- type: "inverted",
204
- sizing: "small",
205
- title: "Ayden Lundgre",
206
- subtitle: "Senior Business Analyst",
207
- initials: /*#__PURE__*/React.createElement(StyledLink, {
208
- href: "#"
209
- }, "AL")
210
- }), /*#__PURE__*/React.createElement(Avatar, {
211
- type: "inverted",
212
- sizing: "small",
213
- title: /*#__PURE__*/React.createElement(StyledLink, {
214
- href: "#"
215
- }, "Ayden Lundgre"),
216
- subtitle: "Senior Business Analyst",
217
- initials: "AL",
218
- image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
219
- imageAlt: "Avatar for Ayden Lundgre"
220
- })));
221
- };
183
+ export const inverted = () => /*#__PURE__*/_jsx(Box, {
184
+ bg: "greyDarkest",
185
+ p: "r",
186
+ children: /*#__PURE__*/_jsxs(Spacer, {
187
+ my: 4,
188
+ children: [/*#__PURE__*/_jsx(Avatar, {
189
+ type: "inverted",
190
+ title: "Ayden Lundgre",
191
+ subtitle: "Senior Business Analyst",
192
+ initials: "AL",
193
+ image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos"
194
+ }), /*#__PURE__*/_jsx(Avatar, {
195
+ type: "inverted",
196
+ title: /*#__PURE__*/_jsx(StyledLink, {
197
+ href: "#",
198
+ children: "Ayden Lundgre"
199
+ }),
200
+ subtitle: "Senior Business Analyst",
201
+ initials: "AL",
202
+ image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
203
+ imageAlt: "Avatar for Ayden Lundgre"
204
+ }), /*#__PURE__*/_jsx(Avatar, {
205
+ type: "inverted",
206
+ sizing: "small",
207
+ title: "Ayden Lundgre",
208
+ subtitle: "Senior Business Analyst",
209
+ initials: /*#__PURE__*/_jsx(StyledLink, {
210
+ href: "#",
211
+ children: "AL"
212
+ })
213
+ }), /*#__PURE__*/_jsx(Avatar, {
214
+ type: "inverted",
215
+ sizing: "small",
216
+ title: /*#__PURE__*/_jsx(StyledLink, {
217
+ href: "#",
218
+ children: "Ayden Lundgre"
219
+ }),
220
+ subtitle: "Senior Business Analyst",
221
+ initials: "AL",
222
+ image: "https://api.dicebear.com/7.x/personas/svg?seed=aydos",
223
+ imageAlt: "Avatar for Ayden Lundgre"
224
+ })]
225
+ })
226
+ });
222
227
  inverted.storyName = "Inverted";
223
- export var alternateShapes = function alternateShapes() {
224
- return /*#__PURE__*/React.createElement(Spacer, {
225
- my: 4
226
- }, /*#__PURE__*/React.createElement(Avatar, {
228
+ export const alternateShapes = () => /*#__PURE__*/_jsxs(Spacer, {
229
+ my: 4,
230
+ children: [/*#__PURE__*/_jsx(Avatar, {
227
231
  shape: "square",
228
- title: /*#__PURE__*/React.createElement(StyledLink, {
229
- href: "#"
230
- }, "Innovation Lab"),
232
+ title: /*#__PURE__*/_jsx(StyledLink, {
233
+ href: "#",
234
+ children: "Innovation Lab"
235
+ }),
231
236
  subtitle: "15 team members",
232
237
  image: "https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2370&q=80",
233
238
  imageAlt: "Avatar for Innovation Lab",
234
239
  sizing: "large"
235
- }), /*#__PURE__*/React.createElement(Avatar, {
240
+ }), /*#__PURE__*/_jsx(Avatar, {
236
241
  shape: "square",
237
- title: /*#__PURE__*/React.createElement(StyledLink, {
238
- href: "#"
239
- }, "Innovation Lab"),
242
+ title: /*#__PURE__*/_jsx(StyledLink, {
243
+ href: "#",
244
+ children: "Innovation Lab"
245
+ }),
240
246
  subtitle: "15 team members",
241
247
  image: "https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2370&q=80",
242
248
  imageAlt: "Avatar for Innovation Lab"
243
- }), /*#__PURE__*/React.createElement(Avatar, {
249
+ }), /*#__PURE__*/_jsx(Avatar, {
244
250
  shape: "square",
245
251
  sizing: "small",
246
- title: /*#__PURE__*/React.createElement(StyledLink, {
247
- href: "#"
248
- }, "Innovation Lab"),
252
+ title: /*#__PURE__*/_jsx(StyledLink, {
253
+ href: "#",
254
+ children: "Innovation Lab"
255
+ }),
249
256
  subtitle: "15 team members",
250
257
  initials: "IL",
251
258
  imageAlt: "Avatar for Innovation Lab"
252
- }), /*#__PURE__*/React.createElement(Avatar, {
259
+ }), /*#__PURE__*/_jsx(Avatar, {
253
260
  shape: "square",
254
261
  sizing: "small",
255
- title: /*#__PURE__*/React.createElement(StyledLink, {
256
- href: "#"
257
- }, "Innovation Lab"),
262
+ title: /*#__PURE__*/_jsx(StyledLink, {
263
+ href: "#",
264
+ children: "Innovation Lab"
265
+ }),
258
266
  subtitle: "15 team members",
259
267
  imageAlt: "Avatar for Innovation Lab"
260
- }), /*#__PURE__*/React.createElement(Avatar, {
268
+ }), /*#__PURE__*/_jsx(Avatar, {
261
269
  shape: "hexagon",
262
- title: /*#__PURE__*/React.createElement(StyledLink, {
263
- href: "#"
264
- }, "Innovation Lab"),
270
+ title: /*#__PURE__*/_jsx(StyledLink, {
271
+ href: "#",
272
+ children: "Innovation Lab"
273
+ }),
265
274
  subtitle: "15 team members",
266
275
  image: "https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2370&q=80",
267
276
  imageAlt: "Avatar for Innovation Lab",
268
277
  sizing: "large"
269
- }), /*#__PURE__*/React.createElement(Avatar, {
278
+ }), /*#__PURE__*/_jsx(Avatar, {
270
279
  shape: "hexagon",
271
- title: /*#__PURE__*/React.createElement(StyledLink, {
272
- href: "#"
273
- }, "Innovation Lab"),
280
+ title: /*#__PURE__*/_jsx(StyledLink, {
281
+ href: "#",
282
+ children: "Innovation Lab"
283
+ }),
274
284
  subtitle: "15 team members",
275
285
  image: "https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2370&q=80",
276
286
  imageAlt: "Avatar for Innovation Lab"
277
- }), /*#__PURE__*/React.createElement(Avatar, {
287
+ }), /*#__PURE__*/_jsx(Avatar, {
278
288
  shape: "hexagon",
279
289
  sizing: "small",
280
- title: /*#__PURE__*/React.createElement(StyledLink, {
281
- href: "#"
282
- }, "Innovation Lab"),
290
+ title: /*#__PURE__*/_jsx(StyledLink, {
291
+ href: "#",
292
+ children: "Innovation Lab"
293
+ }),
283
294
  subtitle: "15 team members",
284
295
  initials: "IL",
285
296
  imageAlt: "Avatar for Innovation Lab"
286
- }), /*#__PURE__*/React.createElement(Avatar, {
297
+ }), /*#__PURE__*/_jsx(Avatar, {
287
298
  shape: "hexagon",
288
299
  sizing: "small",
289
- title: /*#__PURE__*/React.createElement(StyledLink, {
290
- href: "#"
291
- }, "Innovation Lab"),
300
+ title: /*#__PURE__*/_jsx(StyledLink, {
301
+ href: "#",
302
+ children: "Innovation Lab"
303
+ }),
292
304
  subtitle: "15 team members",
293
305
  imageAlt: "Avatar for Innovation Lab"
294
- }), /*#__PURE__*/React.createElement(Avatar, {
306
+ }), /*#__PURE__*/_jsx(Avatar, {
295
307
  shape: "tag",
296
- title: /*#__PURE__*/React.createElement(StyledLink, {
297
- href: "#"
298
- }, "Javascript"),
308
+ title: /*#__PURE__*/_jsx(StyledLink, {
309
+ href: "#",
310
+ children: "Javascript"
311
+ }),
299
312
  subtitle: "Tagged 123 times",
300
313
  image: "https://images.unsplash.com/photo-1627398242454-45a1465c2479?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2148&q=80",
301
314
  imageAlt: "Avatar for Javascript",
302
315
  sizing: "large"
303
- }), /*#__PURE__*/React.createElement(Avatar, {
316
+ }), /*#__PURE__*/_jsx(Avatar, {
304
317
  shape: "tag",
305
- title: /*#__PURE__*/React.createElement(StyledLink, {
306
- href: "#"
307
- }, "Javascript"),
318
+ title: /*#__PURE__*/_jsx(StyledLink, {
319
+ href: "#",
320
+ children: "Javascript"
321
+ }),
308
322
  subtitle: "Tagged 123 times",
309
323
  image: "https://images.unsplash.com/photo-1627398242454-45a1465c2479?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2148&q=80",
310
324
  imageAlt: "Avatar for Javascript"
311
- }), /*#__PURE__*/React.createElement(Avatar, {
325
+ }), /*#__PURE__*/_jsx(Avatar, {
312
326
  shape: "tag",
313
327
  sizing: "small",
314
- title: /*#__PURE__*/React.createElement(StyledLink, {
315
- href: "#"
316
- }, "Javascript"),
328
+ title: /*#__PURE__*/_jsx(StyledLink, {
329
+ href: "#",
330
+ children: "Javascript"
331
+ }),
317
332
  subtitle: "Tagged 123 times",
318
333
  initials: "JS",
319
334
  imageAlt: "Avatar for Javascript"
320
- }), /*#__PURE__*/React.createElement(Avatar, {
335
+ }), /*#__PURE__*/_jsx(Avatar, {
321
336
  shape: "tag",
322
337
  sizing: "small",
323
- title: /*#__PURE__*/React.createElement(StyledLink, {
324
- href: "#"
325
- }, "Javascript"),
338
+ title: /*#__PURE__*/_jsx(StyledLink, {
339
+ href: "#",
340
+ children: "Javascript"
341
+ }),
326
342
  subtitle: "Tagged 123 times",
327
343
  imageAlt: "Avatar for Javascript"
328
- }));
329
- };
344
+ })]
345
+ });
330
346
  alternateShapes.storyName = "Alternate Shapes";
331
347
  defaultAvatar.__docgenInfo = {
332
348
  "description": "",