imbric-theme 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- package/.babelrc.json +3 -0
- package/.commitlintrc.json +3 -0
- package/.editorconfig +13 -0
- package/.eslintcache +1 -0
- package/.eslintrc.json +36 -0
- package/.huskyrc.json +6 -0
- package/.lintstagedrc.json +5 -0
- package/.nvmrc +1 -0
- package/.prettierrc.json +4 -0
- package/.releaserc.json +13 -0
- package/.storybook/main.js +9 -0
- package/.storybook/preview-head.html +2 -0
- package/.storybook/preview.js +32 -0
- package/.stylelintrc.json +14 -0
- package/.vscode/launch.json +15 -0
- package/CHANGELOG.md +0 -0
- package/README.md +69 -0
- package/atoms/Avatar/Avatar.js +36 -0
- package/atoms/Avatar/Avatar.module.css +3 -0
- package/atoms/Avatar/Avatar.stories.js +29 -0
- package/atoms/Avatar/__snapshots__/Avatar.stories.js.snap +105 -0
- package/atoms/Avatar/constants.js +3 -0
- package/atoms/Avatar/helpers.js +7 -0
- package/atoms/Avatar/index.js +3 -0
- package/atoms/Button/Button.js +68 -0
- package/atoms/Button/Button.module.css +63 -0
- package/atoms/Button/Button.stories.js +47 -0
- package/atoms/Button/Button.test.js +60 -0
- package/atoms/Button/__snapshots__/Button.stories.js.snap +191 -0
- package/atoms/Button/constants.js +3 -0
- package/atoms/Button/index.js +3 -0
- package/atoms/Card/Card.js +48 -0
- package/atoms/Card/Card.module.css +52 -0
- package/atoms/Card/Card.stories.js +41 -0
- package/atoms/Card/__snapshots__/Card.stories.js.snap +136 -0
- package/atoms/Card/constants.js +4 -0
- package/atoms/Card/index.js +3 -0
- package/atoms/Check/Check.js +26 -0
- package/atoms/Check/Check.module.css +11 -0
- package/atoms/Check/Check.stories.js +15 -0
- package/atoms/Check/__snapshots__/Check.stories.js.snap +67 -0
- package/atoms/Check/index.js +2 -0
- package/atoms/Divider/Divider.js +19 -0
- package/atoms/Divider/Divider.module.css +5 -0
- package/atoms/Divider/Divider.stories.js +12 -0
- package/atoms/Divider/__snapshots__/Divider.stories.js.snap +22 -0
- package/atoms/Divider/index.js +2 -0
- package/atoms/Heading/Heading.js +37 -0
- package/atoms/Heading/Heading.module.css +66 -0
- package/atoms/Heading/Heading.stories.js +46 -0
- package/atoms/Heading/__snapshots__/Heading.stories.js.snap +189 -0
- package/atoms/Heading/constants.js +5 -0
- package/atoms/Heading/index.js +3 -0
- package/atoms/Icon/Icon.js +66 -0
- package/atoms/Icon/Icon.module.css +112 -0
- package/atoms/Icon/Icon.stories.js +48 -0
- package/atoms/Icon/__snapshots__/Icon.stories.js.snap +1311 -0
- package/atoms/Icon/constants.js +486 -0
- package/atoms/Icon/helpers.js +9 -0
- package/atoms/Icon/index.js +3 -0
- package/atoms/Input/Input.js +49 -0
- package/atoms/Input/Input.module.css +27 -0
- package/atoms/Input/Input.stories.js +32 -0
- package/atoms/Input/__snapshots__/Input.stories.js.snap +101 -0
- package/atoms/Input/constants.js +3 -0
- package/atoms/Input/index.js +3 -0
- package/atoms/Link/Link.js +33 -0
- package/atoms/Link/Link.module.css +14 -0
- package/atoms/Link/Link.stories.js +30 -0
- package/atoms/Link/__snapshots__/Link.stories.js.snap +118 -0
- package/atoms/Link/constants.js +5 -0
- package/atoms/Link/index.js +3 -0
- package/atoms/Loading/Loading.js +30 -0
- package/atoms/Loading/Loading.module.css +51 -0
- package/atoms/Loading/Loading.stories.js +17 -0
- package/atoms/Loading/__snapshots__/Loading.stories.js.snap +26 -0
- package/atoms/Loading/index.js +2 -0
- package/atoms/Modal/Modal.js +98 -0
- package/atoms/Modal/Modal.module.css +85 -0
- package/atoms/Modal/Modal.stories.js +43 -0
- package/atoms/Modal/__snapshots__/Modal.stories.js.snap +239 -0
- package/atoms/Modal/constants.js +1 -0
- package/atoms/Modal/index.js +3 -0
- package/atoms/Paragraph/Paragraph.js +56 -0
- package/atoms/Paragraph/Paragraph.module.css +68 -0
- package/atoms/Paragraph/Paragraph.stories.js +52 -0
- package/atoms/Paragraph/__snapshots__/Paragraph.stories.js.snap +230 -0
- package/atoms/Paragraph/constants.js +5 -0
- package/atoms/Paragraph/index.js +3 -0
- package/atoms/Picture/Picture.js +40 -0
- package/atoms/Picture/Picture.module.css +16 -0
- package/atoms/Picture/Picture.stories.js +32 -0
- package/atoms/Picture/__snapshots__/Picture.stories.js.snap +156 -0
- package/atoms/Picture/index.js +2 -0
- package/atoms/Textarea/Textarea.js +46 -0
- package/atoms/Textarea/Textarea.module.css +25 -0
- package/atoms/Textarea/Textarea.stories.js +16 -0
- package/atoms/Textarea/__snapshots__/Textarea.stories.js.snap +25 -0
- package/atoms/Textarea/index.js +2 -0
- package/codecov.yml +2 -0
- package/helpers/storybook.js +29 -0
- package/helpers/storybook.test.js +40 -0
- package/helpers/styles.js +37 -0
- package/helpers/styles.test.js +222 -0
- package/hocs/withStyles.js +17 -0
- package/hook/useMedia.js +22 -0
- package/index.js +31 -0
- package/jest.config.js +23 -0
- package/jest.setup.js +13 -0
- package/layout/CenteredContent/CenteredContent.js +30 -0
- package/layout/CenteredContent/CenteredContent.module.css +12 -0
- package/layout/CenteredContent/CenteredContent.stories.js +22 -0
- package/layout/CenteredContent/__snapshots__/CenteredContent.stories.js.snap +27 -0
- package/layout/CenteredContent/index.js +2 -0
- package/layout/Container/Container.js +29 -0
- package/layout/Container/Container.module.css +14 -0
- package/layout/Container/Container.stories.js +22 -0
- package/layout/Container/__snapshots__/Container.stories.js.snap +27 -0
- package/layout/Container/index.js +2 -0
- package/layout/FullHeightContent/FullHeightContent.js +40 -0
- package/layout/FullHeightContent/FullHeightContent.module.css +21 -0
- package/layout/FullHeightContent/FullHeightContent.stories.js +22 -0
- package/layout/FullHeightContent/__snapshots__/FullHeightContent.stories.js.snap +41 -0
- package/layout/FullHeightContent/index.js +2 -0
- package/layout/Spacer/Spacer.js +40 -0
- package/layout/Spacer/Spacer.module.css +12 -0
- package/layout/Spacer/Spacer.stories.js +25 -0
- package/layout/Spacer/__snapshots__/Spacer.stories.js.snap +97 -0
- package/layout/Spacer/components/Horizontal/Horizontal.js +43 -0
- package/layout/Spacer/components/Horizontal/Horizontal.stories.js +32 -0
- package/layout/Spacer/components/Horizontal/__snapshots__/Horizontal.stories.js.snap +97 -0
- package/layout/Spacer/components/Horizontal/index.js +1 -0
- package/layout/Spacer/components/Vertical/Vertical.js +31 -0
- package/layout/Spacer/components/Vertical/Vertical.stories.js +25 -0
- package/layout/Spacer/components/Vertical/__snapshots__/Vertical.stories.js.snap +85 -0
- package/layout/Spacer/components/Vertical/index.js +1 -0
- package/layout/Spacer/components/index.js +2 -0
- package/layout/Spacer/constants.js +5 -0
- package/layout/Spacer/helpers.js +3 -0
- package/layout/Spacer/index.js +3 -0
- package/molecules/Accordion/Accordion.js +70 -0
- package/molecules/Accordion/Accordion.module.css +12 -0
- package/molecules/Accordion/Accordion.stories.js +31 -0
- package/molecules/Accordion/__snapshots__/Accordion.stories.js.snap +228 -0
- package/molecules/Accordion/index.js +2 -0
- package/molecules/AddButton/AddButton.js +137 -0
- package/molecules/AddButton/AddButton.module.css +128 -0
- package/molecules/AddButton/AddButton.stories.js +47 -0
- package/molecules/AddButton/__snapshots__/AddButton.stories.js.snap +326 -0
- package/molecules/AddButton/constants.js +6 -0
- package/molecules/AddButton/handlers.js +58 -0
- package/molecules/AddButton/handlers.test.js +19 -0
- package/molecules/AddButton/helpers.js +6 -0
- package/molecules/AddButton/helpers.test.js +41 -0
- package/molecules/AddButton/hooks.js +14 -0
- package/molecules/AddButton/index.js +3 -0
- package/molecules/ButtonIcon/ButtonIcon.js +41 -0
- package/molecules/ButtonIcon/ButtonIcon.stories.js +27 -0
- package/molecules/ButtonIcon/__snapshots__/ButtonIcon.stories.js.snap +178 -0
- package/molecules/ButtonIcon/constants.js +6 -0
- package/molecules/ButtonIcon/index.js +2 -0
- package/molecules/Dropdown/Dropdown.js +59 -0
- package/molecules/Dropdown/Dropdown.module.css +34 -0
- package/molecules/Dropdown/Dropdown.stories.js +41 -0
- package/molecules/Dropdown/__snapshots__/Dropdown.stories.js.snap +181 -0
- package/molecules/Dropdown/index.js +2 -0
- package/molecules/Error/Error.js +35 -0
- package/molecules/Error/Error.module.css +11 -0
- package/molecules/Error/Error.stories.js +18 -0
- package/molecules/Error/__snapshots__/Error.stories.js.snap +134 -0
- package/molecules/Error/index.js +2 -0
- package/molecules/IconLabel/IconLabel.js +83 -0
- package/molecules/IconLabel/IconLabel.module.css +16 -0
- package/molecules/IconLabel/IconLabel.stories.js +25 -0
- package/molecules/IconLabel/__snapshots__/IconLabel.stories.js.snap +211 -0
- package/molecules/IconLabel/constants.js +6 -0
- package/molecules/IconLabel/index.js +3 -0
- package/molecules/LoadingError/LoadingError.js +31 -0
- package/molecules/LoadingError/LoadingError.stories.js +24 -0
- package/molecules/LoadingError/__snapshots__/LoadingError.stories.js.snap +109 -0
- package/molecules/LoadingError/index.js +1 -0
- package/molecules/Score/Score.js +61 -0
- package/molecules/Score/Score.module.css +11 -0
- package/molecules/Score/Score.stories.js +13 -0
- package/molecules/Score/__snapshots__/Score.stories.js.snap +100 -0
- package/molecules/Score/faces/happy.svg +7 -0
- package/molecules/Score/faces/normal.svg +6 -0
- package/molecules/Score/faces/sad.svg +6 -0
- package/molecules/Score/index.js +2 -0
- package/molecules/Task/Task.js +114 -0
- package/molecules/Task/Task.module.css +47 -0
- package/molecules/Task/Task.stories.js +47 -0
- package/molecules/Task/__snapshots__/Task.stories.js.snap +953 -0
- package/molecules/Task/constants.js +1 -0
- package/molecules/Task/index.js +3 -0
- package/molecules/TaskCounter/TaskCounter.js +74 -0
- package/molecules/TaskCounter/TaskCounter.module.css +11 -0
- package/molecules/TaskCounter/TaskCounter.stories.js +26 -0
- package/molecules/TaskCounter/__snapshots__/TaskCounter.stories.js.snap +177 -0
- package/molecules/TaskCounter/index.js +2 -0
- package/package.json +102 -0
- package/scripts/build-tokens.js +40 -0
- package/scripts/create-component.js +127 -0
- package/storybook.test.js +13 -0
- package/styles/globals.css +10 -0
- package/styles/tokens.css +390 -0
- package/templates/component/Component.js +22 -0
- package/templates/component/Component.module.css +3 -0
- package/templates/component/Component.stories.js +23 -0
- package/templates/component/constants.js +1 -0
- package/templates/component/index.js +3 -0
- package/tokens/Token/Helper.js +30 -0
- package/tokens/Token/Token.js +13 -0
- package/tokens/Token/Token.module.css +64 -0
- package/tokens/Token/components/Color.js +21 -0
- package/tokens/Token/components/Color.stories.js +126 -0
- package/tokens/Token/components/FontFamily.js +24 -0
- package/tokens/Token/components/FontFamily.stories.js +32 -0
- package/tokens/Token/components/FontSize.js +24 -0
- package/tokens/Token/components/FontSize.stories.js +31 -0
- package/tokens/Token/components/FontWeight.js +24 -0
- package/tokens/Token/components/FontWeight.stories.js +31 -0
- package/tokens/Token/components/Spacing.js +24 -0
- package/tokens/Token/components/Spacing.stories.js +29 -0
- package/tokens/Token/components/__snapshots__/Color.stories.js.snap +7169 -0
- package/tokens/Token/components/__snapshots__/FontFamily.stories.js.snap +133 -0
- package/tokens/Token/components/__snapshots__/FontSize.stories.js.snap +261 -0
- package/tokens/Token/components/__snapshots__/FontWeight.stories.js.snap +317 -0
- package/tokens/Token/components/__snapshots__/Spacing.stories.js.snap +229 -0
- package/tokens/Token/components/index.js +5 -0
- package/tokens/Token/helpers.js +17 -0
- package/tokens/Token/index.js +1 -0
- package/tokens/index.js +471 -0
- package/utils/isEmpty.js +28 -0
- package/utils/isEmpty.test.js +125 -0
- package/utils/isObject.js +4 -0
- package/utils/keyboardCodes.js +6 -0
- package/utils/testUtils/matchMediaMock.js +14 -0
- package/utils/testUtils/svgrMock.js +2 -0
- package/utils/toCapitalize.js +4 -0
- package/utils/toKebabCase.js +8 -0
- package/utils/toPascalCase.js +20 -0
- package/webpack/cssModules.js +30 -0
- package/webpack/loadConfigs.js +6 -0
- package/webpack/reactInlineSvg.js +22 -0
@@ -0,0 +1,1311 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`Storyshots Atoms/Icon Backgrounds 1`] = `
|
4
|
+
<div
|
5
|
+
style={
|
6
|
+
Object {
|
7
|
+
"alignContent": "flex-start",
|
8
|
+
"display": "flex",
|
9
|
+
"flexDirection": "row",
|
10
|
+
"flexWrap": "wrap",
|
11
|
+
"gap": "10px 30px",
|
12
|
+
"height": "100%",
|
13
|
+
"justifyContent": "flex-start",
|
14
|
+
"maxHeight": "auto",
|
15
|
+
}
|
16
|
+
}
|
17
|
+
>
|
18
|
+
<div
|
19
|
+
className="icon color-base size-md background-transparent"
|
20
|
+
style={
|
21
|
+
Object {
|
22
|
+
"height": 35,
|
23
|
+
"width": 35,
|
24
|
+
}
|
25
|
+
}
|
26
|
+
>
|
27
|
+
<svg
|
28
|
+
height={35}
|
29
|
+
viewBox="0 0 19 20"
|
30
|
+
width={35}
|
31
|
+
xmlns="http://www.w3.org/2000/svg"
|
32
|
+
>
|
33
|
+
<path
|
34
|
+
clipRule="evenodd"
|
35
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
36
|
+
fillRule="evenodd"
|
37
|
+
/>
|
38
|
+
<path
|
39
|
+
clipRule="evenodd"
|
40
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
41
|
+
fillRule="evenodd"
|
42
|
+
/>
|
43
|
+
</svg>
|
44
|
+
</div>
|
45
|
+
<div
|
46
|
+
className="icon color-base size-md background-base"
|
47
|
+
style={
|
48
|
+
Object {
|
49
|
+
"height": 35,
|
50
|
+
"width": 35,
|
51
|
+
}
|
52
|
+
}
|
53
|
+
>
|
54
|
+
<svg
|
55
|
+
height={35}
|
56
|
+
viewBox="0 0 19 20"
|
57
|
+
width={35}
|
58
|
+
xmlns="http://www.w3.org/2000/svg"
|
59
|
+
>
|
60
|
+
<path
|
61
|
+
clipRule="evenodd"
|
62
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
63
|
+
fillRule="evenodd"
|
64
|
+
/>
|
65
|
+
<path
|
66
|
+
clipRule="evenodd"
|
67
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
68
|
+
fillRule="evenodd"
|
69
|
+
/>
|
70
|
+
</svg>
|
71
|
+
</div>
|
72
|
+
<div
|
73
|
+
className="icon color-base size-md background-highlight"
|
74
|
+
style={
|
75
|
+
Object {
|
76
|
+
"height": 35,
|
77
|
+
"width": 35,
|
78
|
+
}
|
79
|
+
}
|
80
|
+
>
|
81
|
+
<svg
|
82
|
+
height={35}
|
83
|
+
viewBox="0 0 19 20"
|
84
|
+
width={35}
|
85
|
+
xmlns="http://www.w3.org/2000/svg"
|
86
|
+
>
|
87
|
+
<path
|
88
|
+
clipRule="evenodd"
|
89
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
90
|
+
fillRule="evenodd"
|
91
|
+
/>
|
92
|
+
<path
|
93
|
+
clipRule="evenodd"
|
94
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
95
|
+
fillRule="evenodd"
|
96
|
+
/>
|
97
|
+
</svg>
|
98
|
+
</div>
|
99
|
+
<div
|
100
|
+
className="icon color-base size-md background-inverted"
|
101
|
+
style={
|
102
|
+
Object {
|
103
|
+
"height": 35,
|
104
|
+
"width": 35,
|
105
|
+
}
|
106
|
+
}
|
107
|
+
>
|
108
|
+
<svg
|
109
|
+
height={35}
|
110
|
+
viewBox="0 0 19 20"
|
111
|
+
width={35}
|
112
|
+
xmlns="http://www.w3.org/2000/svg"
|
113
|
+
>
|
114
|
+
<path
|
115
|
+
clipRule="evenodd"
|
116
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
117
|
+
fillRule="evenodd"
|
118
|
+
/>
|
119
|
+
<path
|
120
|
+
clipRule="evenodd"
|
121
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
122
|
+
fillRule="evenodd"
|
123
|
+
/>
|
124
|
+
</svg>
|
125
|
+
</div>
|
126
|
+
<div
|
127
|
+
className="icon color-base size-md background-muted"
|
128
|
+
style={
|
129
|
+
Object {
|
130
|
+
"height": 35,
|
131
|
+
"width": 35,
|
132
|
+
}
|
133
|
+
}
|
134
|
+
>
|
135
|
+
<svg
|
136
|
+
height={35}
|
137
|
+
viewBox="0 0 19 20"
|
138
|
+
width={35}
|
139
|
+
xmlns="http://www.w3.org/2000/svg"
|
140
|
+
>
|
141
|
+
<path
|
142
|
+
clipRule="evenodd"
|
143
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
144
|
+
fillRule="evenodd"
|
145
|
+
/>
|
146
|
+
<path
|
147
|
+
clipRule="evenodd"
|
148
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
149
|
+
fillRule="evenodd"
|
150
|
+
/>
|
151
|
+
</svg>
|
152
|
+
</div>
|
153
|
+
<div
|
154
|
+
className="icon color-base size-md background-spotlight"
|
155
|
+
style={
|
156
|
+
Object {
|
157
|
+
"height": 35,
|
158
|
+
"width": 35,
|
159
|
+
}
|
160
|
+
}
|
161
|
+
>
|
162
|
+
<svg
|
163
|
+
height={35}
|
164
|
+
viewBox="0 0 19 20"
|
165
|
+
width={35}
|
166
|
+
xmlns="http://www.w3.org/2000/svg"
|
167
|
+
>
|
168
|
+
<path
|
169
|
+
clipRule="evenodd"
|
170
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
171
|
+
fillRule="evenodd"
|
172
|
+
/>
|
173
|
+
<path
|
174
|
+
clipRule="evenodd"
|
175
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
176
|
+
fillRule="evenodd"
|
177
|
+
/>
|
178
|
+
</svg>
|
179
|
+
</div>
|
180
|
+
</div>
|
181
|
+
`;
|
182
|
+
|
183
|
+
exports[`Storyshots Atoms/Icon Clickable 1`] = `
|
184
|
+
<div
|
185
|
+
style={
|
186
|
+
Object {
|
187
|
+
"alignContent": "flex-start",
|
188
|
+
"display": "flex",
|
189
|
+
"flexDirection": "row",
|
190
|
+
"flexWrap": "wrap",
|
191
|
+
"gap": "10px 30px",
|
192
|
+
"height": "100%",
|
193
|
+
"justifyContent": "flex-start",
|
194
|
+
"maxHeight": "auto",
|
195
|
+
}
|
196
|
+
}
|
197
|
+
>
|
198
|
+
<div
|
199
|
+
className="icon color-base size-md background-transparent is-clickable"
|
200
|
+
style={
|
201
|
+
Object {
|
202
|
+
"height": 35,
|
203
|
+
"width": 35,
|
204
|
+
}
|
205
|
+
}
|
206
|
+
>
|
207
|
+
<svg
|
208
|
+
height={35}
|
209
|
+
viewBox="0 0 19 20"
|
210
|
+
width={35}
|
211
|
+
xmlns="http://www.w3.org/2000/svg"
|
212
|
+
>
|
213
|
+
<path
|
214
|
+
clipRule="evenodd"
|
215
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
216
|
+
fillRule="evenodd"
|
217
|
+
/>
|
218
|
+
<path
|
219
|
+
clipRule="evenodd"
|
220
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
221
|
+
fillRule="evenodd"
|
222
|
+
/>
|
223
|
+
</svg>
|
224
|
+
</div>
|
225
|
+
</div>
|
226
|
+
`;
|
227
|
+
|
228
|
+
exports[`Storyshots Atoms/Icon Colors 1`] = `
|
229
|
+
<div
|
230
|
+
style={
|
231
|
+
Object {
|
232
|
+
"alignContent": "flex-start",
|
233
|
+
"display": "flex",
|
234
|
+
"flexDirection": "row",
|
235
|
+
"flexWrap": "wrap",
|
236
|
+
"gap": "10px 30px",
|
237
|
+
"height": "100%",
|
238
|
+
"justifyContent": "flex-start",
|
239
|
+
"maxHeight": "auto",
|
240
|
+
}
|
241
|
+
}
|
242
|
+
>
|
243
|
+
<div
|
244
|
+
className="icon color-base size-md background-transparent"
|
245
|
+
style={
|
246
|
+
Object {
|
247
|
+
"height": 35,
|
248
|
+
"width": 35,
|
249
|
+
}
|
250
|
+
}
|
251
|
+
>
|
252
|
+
<svg
|
253
|
+
height={35}
|
254
|
+
viewBox="0 0 19 20"
|
255
|
+
width={35}
|
256
|
+
xmlns="http://www.w3.org/2000/svg"
|
257
|
+
>
|
258
|
+
<path
|
259
|
+
clipRule="evenodd"
|
260
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
261
|
+
fillRule="evenodd"
|
262
|
+
/>
|
263
|
+
<path
|
264
|
+
clipRule="evenodd"
|
265
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
266
|
+
fillRule="evenodd"
|
267
|
+
/>
|
268
|
+
</svg>
|
269
|
+
</div>
|
270
|
+
<div
|
271
|
+
className="icon color-highlight size-md background-transparent"
|
272
|
+
style={
|
273
|
+
Object {
|
274
|
+
"height": 35,
|
275
|
+
"width": 35,
|
276
|
+
}
|
277
|
+
}
|
278
|
+
>
|
279
|
+
<svg
|
280
|
+
height={35}
|
281
|
+
viewBox="0 0 19 20"
|
282
|
+
width={35}
|
283
|
+
xmlns="http://www.w3.org/2000/svg"
|
284
|
+
>
|
285
|
+
<path
|
286
|
+
clipRule="evenodd"
|
287
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
288
|
+
fillRule="evenodd"
|
289
|
+
/>
|
290
|
+
<path
|
291
|
+
clipRule="evenodd"
|
292
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
293
|
+
fillRule="evenodd"
|
294
|
+
/>
|
295
|
+
</svg>
|
296
|
+
</div>
|
297
|
+
<div
|
298
|
+
className="icon color-muted size-md background-transparent"
|
299
|
+
style={
|
300
|
+
Object {
|
301
|
+
"height": 35,
|
302
|
+
"width": 35,
|
303
|
+
}
|
304
|
+
}
|
305
|
+
>
|
306
|
+
<svg
|
307
|
+
height={35}
|
308
|
+
viewBox="0 0 19 20"
|
309
|
+
width={35}
|
310
|
+
xmlns="http://www.w3.org/2000/svg"
|
311
|
+
>
|
312
|
+
<path
|
313
|
+
clipRule="evenodd"
|
314
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
315
|
+
fillRule="evenodd"
|
316
|
+
/>
|
317
|
+
<path
|
318
|
+
clipRule="evenodd"
|
319
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
320
|
+
fillRule="evenodd"
|
321
|
+
/>
|
322
|
+
</svg>
|
323
|
+
</div>
|
324
|
+
<div
|
325
|
+
className="icon color-primary size-md background-transparent"
|
326
|
+
style={
|
327
|
+
Object {
|
328
|
+
"height": 35,
|
329
|
+
"width": 35,
|
330
|
+
}
|
331
|
+
}
|
332
|
+
>
|
333
|
+
<svg
|
334
|
+
height={35}
|
335
|
+
viewBox="0 0 19 20"
|
336
|
+
width={35}
|
337
|
+
xmlns="http://www.w3.org/2000/svg"
|
338
|
+
>
|
339
|
+
<path
|
340
|
+
clipRule="evenodd"
|
341
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
342
|
+
fillRule="evenodd"
|
343
|
+
/>
|
344
|
+
<path
|
345
|
+
clipRule="evenodd"
|
346
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
347
|
+
fillRule="evenodd"
|
348
|
+
/>
|
349
|
+
</svg>
|
350
|
+
</div>
|
351
|
+
<div
|
352
|
+
className="icon color-inverted size-md background-transparent"
|
353
|
+
style={
|
354
|
+
Object {
|
355
|
+
"height": 35,
|
356
|
+
"width": 35,
|
357
|
+
}
|
358
|
+
}
|
359
|
+
>
|
360
|
+
<svg
|
361
|
+
height={35}
|
362
|
+
viewBox="0 0 19 20"
|
363
|
+
width={35}
|
364
|
+
xmlns="http://www.w3.org/2000/svg"
|
365
|
+
>
|
366
|
+
<path
|
367
|
+
clipRule="evenodd"
|
368
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
369
|
+
fillRule="evenodd"
|
370
|
+
/>
|
371
|
+
<path
|
372
|
+
clipRule="evenodd"
|
373
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
374
|
+
fillRule="evenodd"
|
375
|
+
/>
|
376
|
+
</svg>
|
377
|
+
</div>
|
378
|
+
</div>
|
379
|
+
`;
|
380
|
+
|
381
|
+
exports[`Storyshots Atoms/Icon Default 1`] = `
|
382
|
+
<div
|
383
|
+
style={
|
384
|
+
Object {
|
385
|
+
"alignContent": "flex-start",
|
386
|
+
"display": "flex",
|
387
|
+
"flexDirection": "row",
|
388
|
+
"flexWrap": "wrap",
|
389
|
+
"gap": "10px 30px",
|
390
|
+
"height": "100%",
|
391
|
+
"justifyContent": "flex-start",
|
392
|
+
"maxHeight": "auto",
|
393
|
+
}
|
394
|
+
}
|
395
|
+
>
|
396
|
+
<div
|
397
|
+
className="icon color-base size-md background-transparent"
|
398
|
+
style={
|
399
|
+
Object {
|
400
|
+
"height": 35,
|
401
|
+
"width": 35,
|
402
|
+
}
|
403
|
+
}
|
404
|
+
>
|
405
|
+
<svg
|
406
|
+
height={35}
|
407
|
+
viewBox="0 0 19 20"
|
408
|
+
width={35}
|
409
|
+
xmlns="http://www.w3.org/2000/svg"
|
410
|
+
>
|
411
|
+
<path
|
412
|
+
clipRule="evenodd"
|
413
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
414
|
+
fillRule="evenodd"
|
415
|
+
/>
|
416
|
+
<path
|
417
|
+
clipRule="evenodd"
|
418
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
419
|
+
fillRule="evenodd"
|
420
|
+
/>
|
421
|
+
</svg>
|
422
|
+
</div>
|
423
|
+
</div>
|
424
|
+
`;
|
425
|
+
|
426
|
+
exports[`Storyshots Atoms/Icon Names 1`] = `
|
427
|
+
<div
|
428
|
+
style={
|
429
|
+
Object {
|
430
|
+
"alignContent": "flex-start",
|
431
|
+
"display": "flex",
|
432
|
+
"flexDirection": "row",
|
433
|
+
"flexWrap": "wrap",
|
434
|
+
"gap": "10px 30px",
|
435
|
+
"height": "100%",
|
436
|
+
"justifyContent": "flex-start",
|
437
|
+
"maxHeight": "auto",
|
438
|
+
}
|
439
|
+
}
|
440
|
+
>
|
441
|
+
<div
|
442
|
+
className="icon color-base size-md background-transparent"
|
443
|
+
style={
|
444
|
+
Object {
|
445
|
+
"height": 35,
|
446
|
+
"width": 35,
|
447
|
+
}
|
448
|
+
}
|
449
|
+
>
|
450
|
+
<svg
|
451
|
+
height={35}
|
452
|
+
viewBox="-1 -1 19 19"
|
453
|
+
width={35}
|
454
|
+
xmlns="http://www.w3.org/2000/svg"
|
455
|
+
>
|
456
|
+
<path
|
457
|
+
clipRule="evenodd"
|
458
|
+
d="M9.07 18.14C4.06891 18.14 0 14.0711 0 9.07C0 4.06891 4.06891 0 9.07 0C14.0711 0 18.14 4.06891 18.14 9.07C18.14 14.0711 14.0711 18.14 9.07 18.14ZM9.07 0.996468C4.61804 0.996468 0.996468 4.61804 0.996468 9.07C0.996468 13.522 4.61804 17.1435 9.07 17.1435C13.522 17.1435 17.1435 13.522 17.1435 9.07C17.1435 4.61804 13.522 0.996468 9.07 0.996468Z"
|
459
|
+
fillRule="evenodd"
|
460
|
+
/>
|
461
|
+
<path
|
462
|
+
clipRule="evenodd"
|
463
|
+
d="M13.539 9.95834L9.06994 5.4887L4.60084 9.95834L3.89581 9.25331L9.06994 4.07971L14.2441 9.25331L13.539 9.95834Z"
|
464
|
+
fillRule="evenodd"
|
465
|
+
/>
|
466
|
+
<path
|
467
|
+
clipRule="evenodd"
|
468
|
+
d="M8.5343 4.78418H9.60577V13.8917H8.5343V4.78418Z"
|
469
|
+
fillRule="evenodd"
|
470
|
+
/>
|
471
|
+
</svg>
|
472
|
+
</div>
|
473
|
+
<div
|
474
|
+
className="icon color-base size-md background-transparent"
|
475
|
+
style={
|
476
|
+
Object {
|
477
|
+
"height": 35,
|
478
|
+
"width": 35,
|
479
|
+
}
|
480
|
+
}
|
481
|
+
>
|
482
|
+
<svg
|
483
|
+
height={35}
|
484
|
+
viewBox="0 0 19 20"
|
485
|
+
width={35}
|
486
|
+
xmlns="http://www.w3.org/2000/svg"
|
487
|
+
>
|
488
|
+
<path
|
489
|
+
clipRule="evenodd"
|
490
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
491
|
+
fillRule="evenodd"
|
492
|
+
/>
|
493
|
+
<path
|
494
|
+
clipRule="evenodd"
|
495
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
496
|
+
fillRule="evenodd"
|
497
|
+
/>
|
498
|
+
</svg>
|
499
|
+
</div>
|
500
|
+
<div
|
501
|
+
className="icon color-base size-md background-transparent"
|
502
|
+
style={
|
503
|
+
Object {
|
504
|
+
"height": 35,
|
505
|
+
"width": 35,
|
506
|
+
}
|
507
|
+
}
|
508
|
+
>
|
509
|
+
<svg
|
510
|
+
height={35}
|
511
|
+
viewBox="0 0 15 9"
|
512
|
+
width={35}
|
513
|
+
xmlns="http://www.w3.org/2000/svg"
|
514
|
+
>
|
515
|
+
<path
|
516
|
+
clipRule="evenodd"
|
517
|
+
d="M7.82633 8.70623L0.882568 1.54063L1.89405 0.496826L7.82633 6.61863L13.7586 0.496826L14.7701 1.54063L7.82633 8.70623Z"
|
518
|
+
fillRule="evenodd"
|
519
|
+
/>
|
520
|
+
</svg>
|
521
|
+
</div>
|
522
|
+
<div
|
523
|
+
className="icon color-base size-md background-transparent"
|
524
|
+
style={
|
525
|
+
Object {
|
526
|
+
"height": 35,
|
527
|
+
"width": 35,
|
528
|
+
}
|
529
|
+
}
|
530
|
+
>
|
531
|
+
<svg
|
532
|
+
height={35}
|
533
|
+
viewBox="-3 0 20 20"
|
534
|
+
width={35}
|
535
|
+
xmlns="http://www.w3.org/2000/svg"
|
536
|
+
>
|
537
|
+
<path
|
538
|
+
clipRule="evenodd"
|
539
|
+
d="M9.707 19.414L0 9.707L9.707 0L11.121 1.414L2.828 9.707L11.121 18L9.707 19.414Z"
|
540
|
+
fillRule="evenodd"
|
541
|
+
/>
|
542
|
+
</svg>
|
543
|
+
</div>
|
544
|
+
<div
|
545
|
+
className="icon color-base size-md background-transparent"
|
546
|
+
style={
|
547
|
+
Object {
|
548
|
+
"height": 35,
|
549
|
+
"width": 35,
|
550
|
+
}
|
551
|
+
}
|
552
|
+
>
|
553
|
+
<svg
|
554
|
+
height={35}
|
555
|
+
viewBox="0 0 9 6"
|
556
|
+
width={35}
|
557
|
+
xmlns="http://www.w3.org/2000/svg"
|
558
|
+
>
|
559
|
+
<path
|
560
|
+
clipRule="evenodd"
|
561
|
+
d="M8.28864 5.121L4.46988 1.30224L0.651119 5.121L0 4.46988L4.46988 0L8.93976 4.46988L8.28864 5.121Z"
|
562
|
+
fillRule="evenodd"
|
563
|
+
/>
|
564
|
+
</svg>
|
565
|
+
</div>
|
566
|
+
<div
|
567
|
+
className="icon color-base size-md background-transparent"
|
568
|
+
style={
|
569
|
+
Object {
|
570
|
+
"height": 35,
|
571
|
+
"width": 35,
|
572
|
+
}
|
573
|
+
}
|
574
|
+
>
|
575
|
+
<svg
|
576
|
+
height={35}
|
577
|
+
viewBox="0 0 28 28"
|
578
|
+
width={35}
|
579
|
+
xmlns="http://www.w3.org/2000/svg"
|
580
|
+
>
|
581
|
+
<path
|
582
|
+
clipRule="evenodd"
|
583
|
+
d="M27.86 13.93C27.86 21.6108 21.6108 27.86 13.93 27.86C6.24916 27.86 -2.73159e-07 21.6108 -6.08899e-07 13.93C-9.44639e-07 6.24917 6.24916 1.6893e-05 13.93 1.65572e-05C21.6108 1.62215e-05 27.86 6.24917 27.86 13.93ZM1.53041 13.93C1.53041 20.7675 7.09253 26.3296 13.93 26.3296C20.7674 26.3296 26.3296 20.7675 26.3296 13.93C26.3296 7.09254 20.7674 1.53042 13.93 1.53042C7.09252 1.53042 1.5304 7.09254 1.53041 13.93Z"
|
584
|
+
fillRule="evenodd"
|
585
|
+
/>
|
586
|
+
<path
|
587
|
+
clipRule="evenodd"
|
588
|
+
d="M10 19L10 9L12 9L12 19L10 19Z"
|
589
|
+
fillRule="evenodd"
|
590
|
+
/>
|
591
|
+
<path
|
592
|
+
clipRule="evenodd"
|
593
|
+
d="M16 19L16 9L18 9L18 19L16 19Z"
|
594
|
+
fillRule="evenodd"
|
595
|
+
/>
|
596
|
+
</svg>
|
597
|
+
</div>
|
598
|
+
<div
|
599
|
+
className="icon color-base size-md background-transparent"
|
600
|
+
style={
|
601
|
+
Object {
|
602
|
+
"height": 35,
|
603
|
+
"width": 35,
|
604
|
+
}
|
605
|
+
}
|
606
|
+
>
|
607
|
+
<svg
|
608
|
+
height={35}
|
609
|
+
viewBox="5 1 20 20"
|
610
|
+
width={35}
|
611
|
+
xmlns="http://www.w3.org/2000/svg"
|
612
|
+
>
|
613
|
+
<path
|
614
|
+
clipRule="evenodd"
|
615
|
+
d="M14.93 20.86C9.45472 20.86 5 16.4053 5 10.93C5 5.45472 9.45472 1 14.93 1C20.4053 1 24.86 5.45472 24.86 10.93C24.86 16.4053 20.4053 20.86 14.93 20.86ZM14.93 2.09095C10.0559 2.09095 6.09095 6.05591 6.09095 10.93C6.09095 15.8041 10.0559 19.769 14.93 19.769C19.8041 19.769 23.769 15.8041 23.769 10.93C23.769 6.05591 19.8041 2.09095 14.93 2.09095Z"
|
616
|
+
fillRule="evenodd"
|
617
|
+
/>
|
618
|
+
<path
|
619
|
+
clipRule="evenodd"
|
620
|
+
d="M13.744 15.221L8.67871 10.1423L9.45059 9.37155L13.7458 13.6773L20.41 7.01251L21.1807 7.78439L13.744 15.221Z"
|
621
|
+
fillRule="evenodd"
|
622
|
+
/>
|
623
|
+
</svg>
|
624
|
+
</div>
|
625
|
+
<div
|
626
|
+
className="icon color-base size-md background-transparent"
|
627
|
+
style={
|
628
|
+
Object {
|
629
|
+
"height": 35,
|
630
|
+
"width": 35,
|
631
|
+
}
|
632
|
+
}
|
633
|
+
>
|
634
|
+
<svg
|
635
|
+
height={35}
|
636
|
+
viewBox="0 0 20 20"
|
637
|
+
width={35}
|
638
|
+
xmlns="http://www.w3.org/2000/svg"
|
639
|
+
>
|
640
|
+
<path
|
641
|
+
clipRule="evenodd"
|
642
|
+
d="M10 20C4.48612 20 0 15.5139 0 10C0 4.48612 4.48612 0 10 0C15.5139 0 20 4.48612 20 10C20 15.5139 15.5139 20 10 20ZM10 1.09864C5.09155 1.09864 1.09864 5.09155 1.09864 10C1.09864 14.9084 5.09155 18.9014 10 18.9014C14.9084 18.9014 18.9014 14.9084 18.9014 10C18.9014 5.09155 14.9084 1.09864 10 1.09864Z"
|
643
|
+
fillRule="evenodd"
|
644
|
+
/>
|
645
|
+
<path
|
646
|
+
clipRule="evenodd"
|
647
|
+
d="M4.68396 9.4093H15.316V10.5906H4.68396V9.4093Z"
|
648
|
+
fillRule="evenodd"
|
649
|
+
/>
|
650
|
+
<path
|
651
|
+
clipRule="evenodd"
|
652
|
+
d="M9.40942 4.68396H10.5908V15.316H9.40942V4.68396Z"
|
653
|
+
fillRule="evenodd"
|
654
|
+
/>
|
655
|
+
</svg>
|
656
|
+
</div>
|
657
|
+
<div
|
658
|
+
className="icon color-base size-md background-transparent"
|
659
|
+
style={
|
660
|
+
Object {
|
661
|
+
"height": 35,
|
662
|
+
"width": 35,
|
663
|
+
}
|
664
|
+
}
|
665
|
+
>
|
666
|
+
<svg
|
667
|
+
height={35}
|
668
|
+
viewBox="-1 0 12 12"
|
669
|
+
width={35}
|
670
|
+
xmlns="http://www.w3.org/2000/svg"
|
671
|
+
>
|
672
|
+
<path
|
673
|
+
clipRule="evenodd"
|
674
|
+
d="M6.72534 3.71014H5.97808V9.68822H6.72534V3.71014Z"
|
675
|
+
fillRule="evenodd"
|
676
|
+
/>
|
677
|
+
<path
|
678
|
+
clipRule="evenodd"
|
679
|
+
d="M5.23071 3.71014H4.48345V9.68822H5.23071V3.71014Z"
|
680
|
+
fillRule="evenodd"
|
681
|
+
/>
|
682
|
+
<path
|
683
|
+
clipRule="evenodd"
|
684
|
+
d="M3.73633 3.71014H2.98907V9.68822H3.73633V3.71014Z"
|
685
|
+
fillRule="evenodd"
|
686
|
+
/>
|
687
|
+
<path
|
688
|
+
clipRule="evenodd"
|
689
|
+
d="M9.71436 1.46838H-2.28882e-05V2.21564H9.71436V1.46838Z"
|
690
|
+
fillRule="evenodd"
|
691
|
+
/>
|
692
|
+
<path
|
693
|
+
clipRule="evenodd"
|
694
|
+
d="M3.01523 1.842H3.71018V1.09474C3.71018 0.874294 3.88952 0.694952 4.10996 0.694952H5.60448C5.82492 0.694952 6.00427 0.874294 6.00427 1.09474V1.842H6.69922V1.09474C6.69922 0.49095 6.2079 0 5.60448 0H4.10996C3.50655 0 3.01523 0.49095 3.01523 1.09474V1.842Z"
|
695
|
+
fillRule="evenodd"
|
696
|
+
/>
|
697
|
+
<path
|
698
|
+
clipRule="evenodd"
|
699
|
+
d="M2.61523 11.93H7.09879C7.70183 11.93 8.22977 11.4409 8.27573 10.8398L8.96582 1.87077L8.2208 1.81323L7.53071 10.7826C7.51427 10.9959 7.31251 11.1827 7.09879 11.1827H2.61523C2.40152 11.1827 2.19976 10.9959 2.18332 10.783L1.49322 1.81323L0.748204 1.87077L1.4383 10.8398C1.48426 11.4409 2.01219 11.93 2.61523 11.93Z"
|
700
|
+
fillRule="evenodd"
|
701
|
+
/>
|
702
|
+
</svg>
|
703
|
+
</div>
|
704
|
+
<div
|
705
|
+
className="icon color-base size-md background-transparent"
|
706
|
+
style={
|
707
|
+
Object {
|
708
|
+
"height": 35,
|
709
|
+
"width": 35,
|
710
|
+
}
|
711
|
+
}
|
712
|
+
>
|
713
|
+
<svg
|
714
|
+
height={35}
|
715
|
+
viewBox="0 0 19 19"
|
716
|
+
width={35}
|
717
|
+
xmlns="http://www.w3.org/2000/svg"
|
718
|
+
>
|
719
|
+
<path
|
720
|
+
clipRule="evenodd"
|
721
|
+
d="M7.78343 18.086C7.23221 18.086 6.71447 17.8722 6.32617 17.4839L0.602738 11.7605C-0.200913 10.9568 -0.200913 9.6496 0.602738 8.84595L8.25802 1.19066C8.9258 0.522888 10.1879 0 11.132 0H16.026C17.1619 0 18.0866 0.924069 18.0866 2.06064V6.95467C18.0866 7.8987 17.5638 9.16084 16.896 9.82862L9.24069 17.4839C8.85239 17.8722 8.33465 18.086 7.78343 18.086ZM11.132 1.2879C10.5196 1.2879 9.60195 1.66783 9.16857 2.10121L1.51328 9.7565C1.21192 10.0579 1.21192 10.5486 1.51328 10.8499L7.23672 16.5734C7.52714 16.8625 8.03972 16.8625 8.33015 16.5734L15.9854 8.91807C16.4188 8.48469 16.7987 7.56706 16.7987 6.95467V2.06064C16.7987 1.63499 16.4517 1.2879 16.026 1.2879H11.132Z"
|
722
|
+
fillRule="evenodd"
|
723
|
+
/>
|
724
|
+
<path
|
725
|
+
clipRule="evenodd"
|
726
|
+
d="M12.9353 7.68236C11.5398 7.68236 10.4045 6.54708 10.4045 5.15164C10.4045 3.7562 11.5398 2.62091 12.9353 2.62091C14.3307 2.62091 15.466 3.7562 15.466 5.15164C15.466 6.54708 14.3307 7.68236 12.9353 7.68236ZM12.9353 3.81866C12.1999 3.81866 11.6023 4.41625 11.6023 5.15164C11.6023 5.88703 12.1999 6.48461 12.9353 6.48461C13.6707 6.48461 14.2682 5.88703 14.2682 5.15164C14.2682 4.41625 13.6707 3.81866 12.9353 3.81866Z"
|
727
|
+
fillRule="evenodd"
|
728
|
+
/>
|
729
|
+
</svg>
|
730
|
+
</div>
|
731
|
+
<div
|
732
|
+
className="icon color-base size-md background-transparent"
|
733
|
+
style={
|
734
|
+
Object {
|
735
|
+
"height": 35,
|
736
|
+
"width": 35,
|
737
|
+
}
|
738
|
+
}
|
739
|
+
>
|
740
|
+
<svg
|
741
|
+
height={35}
|
742
|
+
viewBox="-1 0 21 20"
|
743
|
+
width={35}
|
744
|
+
xmlns="http://www.w3.org/2000/svg"
|
745
|
+
>
|
746
|
+
<path
|
747
|
+
clipRule="evenodd"
|
748
|
+
d="M10 20C4.48612 20 0 15.5139 0 10C0 4.48612 4.48612 0 10 0C15.5139 0 20 4.48612 20 10C20 15.5139 15.5139 20 10 20ZM10 1.09864C5.09155 1.09864 1.09864 5.09155 1.09864 10C1.09864 14.9084 5.09155 18.9014 10 18.9014C14.9084 18.9014 18.9014 14.9084 18.9014 10C18.9014 5.09155 14.9084 1.09864 10 1.09864Z"
|
749
|
+
fillRule="evenodd"
|
750
|
+
/>
|
751
|
+
<path
|
752
|
+
clipRule="evenodd"
|
753
|
+
d="M13.1265 15.143L9.40942 11.4259V4.68402H10.5908V10.9368L13.9617 14.3078L13.1265 15.143Z"
|
754
|
+
fillRule="evenodd"
|
755
|
+
/>
|
756
|
+
</svg>
|
757
|
+
</div>
|
758
|
+
<div
|
759
|
+
className="icon color-base size-md background-transparent"
|
760
|
+
style={
|
761
|
+
Object {
|
762
|
+
"height": 35,
|
763
|
+
"width": 35,
|
764
|
+
}
|
765
|
+
}
|
766
|
+
>
|
767
|
+
<svg
|
768
|
+
height={35}
|
769
|
+
viewBox="0 0 14 15"
|
770
|
+
width={35}
|
771
|
+
xmlns="http://www.w3.org/2000/svg"
|
772
|
+
>
|
773
|
+
<path
|
774
|
+
clipRule="evenodd"
|
775
|
+
d="M1.01693 15L0 14.5538C0.308723 13.8561 1.22056 13.4481 2.2775 12.975C3.29682 12.5187 4.56575 11.9509 4.56575 11.2777V10.3614C4.20448 10.0594 3.59241 9.41 3.49627 8.43355C3.20367 8.15831 2.71819 7.59711 2.71819 6.90245C2.71819 6.48066 2.88539 6.14048 3.03229 5.92422C2.94272 5.47204 2.77432 4.52538 2.77432 3.83073C2.77432 1.50369 4.39855 0 6.91192 0C7.63327 0 8.50928 0.193026 8.99714 0.714314C10.1365 0.914489 11.0501 2.26031 11.0501 3.83073C11.0501 4.83815 10.8728 5.66685 10.7659 6.07673C10.8847 6.2775 11.0131 6.57538 11.0131 6.92092C11.0131 7.70196 10.6178 8.20716 10.2488 8.47704C10.1443 9.43979 9.59429 10.0606 9.25869 10.3549V11.2777C9.25869 11.8502 10.2989 12.2351 11.3051 12.6074C12.4492 13.0304 13.6328 13.4683 14 14.4257L12.9616 14.8213C12.7753 14.3328 11.7888 13.9681 10.9187 13.6464C9.62056 13.1657 8.1486 12.6211 8.1486 11.2777V9.77997L8.40776 9.61732C8.43404 9.60005 9.15598 9.11629 9.15598 8.14997V7.77524L9.50471 7.63583C9.56323 7.60902 9.90241 7.43089 9.90241 6.92092C9.90241 6.76483 9.78298 6.59028 9.74118 6.54142L9.53875 6.30431L9.63191 6.00226C9.63489 5.99273 9.94003 5.0562 9.94003 3.83073C9.94003 2.78517 9.33931 1.79681 8.70335 1.79681H8.38447L8.22384 1.52216C8.10621 1.32139 7.607 1.10811 6.91192 1.10811C5.01659 1.10811 3.88441 2.12567 3.88441 3.83073C3.88441 4.63619 4.16746 5.93316 4.17044 5.94626L4.23613 6.24653L4.01638 6.461C4.01638 6.461 3.82828 6.65939 3.82828 6.90245C3.82828 7.20927 4.19731 7.59115 4.37586 7.72818L4.59202 7.89439L4.59382 8.16844C4.59382 9.08114 5.38324 9.59588 5.41727 9.61732L5.67285 9.78056L5.67584 11.2777C5.67584 12.6688 4.11192 13.3688 2.73133 13.986C2.06492 14.2839 1.15308 14.6926 1.01693 15Z"
|
776
|
+
fillRule="evenodd"
|
777
|
+
/>
|
778
|
+
</svg>
|
779
|
+
</div>
|
780
|
+
<div
|
781
|
+
className="icon color-base size-md background-transparent"
|
782
|
+
style={
|
783
|
+
Object {
|
784
|
+
"height": 35,
|
785
|
+
"width": 35,
|
786
|
+
}
|
787
|
+
}
|
788
|
+
>
|
789
|
+
<svg
|
790
|
+
height={35}
|
791
|
+
viewBox="-2 0 14 15"
|
792
|
+
width={35}
|
793
|
+
xmlns="http://www.w3.org/2000/svg"
|
794
|
+
>
|
795
|
+
<path
|
796
|
+
d="M0 14V12H2V14H0ZM4 14V12H6V14H4ZM8 14V12H10V14H8ZM0 10V8H2V10H0ZM4 10V8H6V10H4ZM8 10V8H10V10H8ZM0 6V4H2V6H0ZM4 6V4H6V6H4ZM8 6V4H10V6H8ZM0 2V0H2V2H0ZM4 2V0H6V2H4ZM8 2V0H10V2H8Z"
|
797
|
+
/>
|
798
|
+
</svg>
|
799
|
+
</div>
|
800
|
+
<div
|
801
|
+
className="icon color-base size-md background-transparent"
|
802
|
+
style={
|
803
|
+
Object {
|
804
|
+
"height": 35,
|
805
|
+
"width": 35,
|
806
|
+
}
|
807
|
+
}
|
808
|
+
>
|
809
|
+
<svg
|
810
|
+
height={35}
|
811
|
+
viewBox="0 0 20 20"
|
812
|
+
width={35}
|
813
|
+
xmlns="http://www.w3.org/2000/svg"
|
814
|
+
>
|
815
|
+
<path
|
816
|
+
clipRule="evenodd"
|
817
|
+
d="M10 20C4.48612 20 0 15.5139 0 10C0 4.48612 4.48612 0 10 0C15.5139 0 20 4.48612 20 10C20 15.5139 15.5139 20 10 20ZM10 1.09864C5.09155 1.09864 1.09864 5.09155 1.09864 10C1.09864 14.9084 5.09155 18.9014 10 18.9014C14.9084 18.9014 18.9014 14.9084 18.9014 10C18.9014 5.09155 14.9084 1.09864 10 1.09864Z"
|
818
|
+
fillRule="evenodd"
|
819
|
+
/>
|
820
|
+
<path
|
821
|
+
d="M10.7837 11.8579H9.25293L9.08447 4.33594H10.9595L10.7837 11.8579ZM9.0332 14.1577C9.0332 13.8794 9.12354 13.6499 9.3042 13.4692C9.48486 13.2837 9.73145 13.1909 10.0439 13.1909C10.3564 13.1909 10.603 13.2837 10.7837 13.4692C10.9644 13.6499 11.0547 13.8794 11.0547 14.1577C11.0547 14.4263 10.9668 14.6509 10.791 14.8315C10.6152 15.0122 10.3662 15.1025 10.0439 15.1025C9.72168 15.1025 9.47266 15.0122 9.29688 14.8315C9.12109 14.6509 9.0332 14.4263 9.0332 14.1577Z"
|
822
|
+
/>
|
823
|
+
</svg>
|
824
|
+
</div>
|
825
|
+
<div
|
826
|
+
className="icon color-base size-md background-transparent"
|
827
|
+
style={
|
828
|
+
Object {
|
829
|
+
"height": 35,
|
830
|
+
"width": 35,
|
831
|
+
}
|
832
|
+
}
|
833
|
+
>
|
834
|
+
<svg
|
835
|
+
height={35}
|
836
|
+
viewBox="-1 0 20 20"
|
837
|
+
width={35}
|
838
|
+
xmlns="http://www.w3.org/2000/svg"
|
839
|
+
>
|
840
|
+
<path
|
841
|
+
clipRule="evenodd"
|
842
|
+
d="M15.247 16.9411H1.69412C0.760093 16.9411 0 16.181 0 15.247V2.82351C0 1.88949 0.633599 1.12939 1.41176 1.12939H2.25882V2.25881H1.41176C1.31463 2.25881 1.12941 2.47904 1.12941 2.82351V15.247C1.12941 15.5582 1.38296 15.8117 1.69412 15.8117H15.247C15.5582 15.8117 15.8117 15.5582 15.8117 15.247V2.82351C15.8117 2.47904 15.6265 2.25881 15.5294 2.25881H14.6823V1.12939H15.5294C16.3076 1.12939 16.9412 1.88949 16.9412 2.82351V15.247C16.9412 16.181 16.1811 16.9411 15.247 16.9411Z"
|
843
|
+
fillRule="evenodd"
|
844
|
+
/>
|
845
|
+
<path
|
846
|
+
clipRule="evenodd"
|
847
|
+
d="M3.95289 3.38823C3.64117 3.38823 3.38818 3.13524 3.38818 2.82353V0.564705C3.38818 0.252988 3.64117 0 3.95289 0C4.26461 0 4.51759 0.252988 4.51759 0.564705V2.82353C4.51759 3.13524 4.26461 3.38823 3.95289 3.38823Z"
|
848
|
+
fillRule="evenodd"
|
849
|
+
/>
|
850
|
+
<path
|
851
|
+
clipRule="evenodd"
|
852
|
+
d="M12.9883 3.38823C12.6766 3.38823 12.4236 3.13524 12.4236 2.82353V0.564705C12.4236 0.252988 12.6766 0 12.9883 0C13.3 0 13.553 0.252988 13.553 0.564705V2.82353C13.553 3.13524 13.3 3.38823 12.9883 3.38823Z"
|
853
|
+
fillRule="evenodd"
|
854
|
+
/>
|
855
|
+
<path
|
856
|
+
clipRule="evenodd"
|
857
|
+
d="M5.64722 1.12939H11.2943V2.25881H5.64722V1.12939Z"
|
858
|
+
fillRule="evenodd"
|
859
|
+
/>
|
860
|
+
<path
|
861
|
+
clipRule="evenodd"
|
862
|
+
d="M1.12939 4.51758H15.8117V5.64699H1.12939V4.51758Z"
|
863
|
+
fillRule="evenodd"
|
864
|
+
/>
|
865
|
+
<path
|
866
|
+
clipRule="evenodd"
|
867
|
+
d="M13.553 6.77649H14.6824V7.9059H13.553V6.77649Z"
|
868
|
+
fillRule="evenodd"
|
869
|
+
/>
|
870
|
+
<path
|
871
|
+
clipRule="evenodd"
|
872
|
+
d="M11.2939 6.77649H12.4234V7.9059H11.2939V6.77649Z"
|
873
|
+
fillRule="evenodd"
|
874
|
+
/>
|
875
|
+
<path
|
876
|
+
clipRule="evenodd"
|
877
|
+
d="M9.0354 6.77649H10.1648V7.9059H9.0354V6.77649Z"
|
878
|
+
fillRule="evenodd"
|
879
|
+
/>
|
880
|
+
<path
|
881
|
+
clipRule="evenodd"
|
882
|
+
d="M6.77637 6.77649H7.90578V7.9059H6.77637V6.77649Z"
|
883
|
+
fillRule="evenodd"
|
884
|
+
/>
|
885
|
+
<path
|
886
|
+
clipRule="evenodd"
|
887
|
+
d="M4.51758 6.77649H5.64699V7.9059H4.51758V6.77649Z"
|
888
|
+
fillRule="evenodd"
|
889
|
+
/>
|
890
|
+
<path
|
891
|
+
clipRule="evenodd"
|
892
|
+
d="M13.553 9.0354H14.6824V10.1648H13.553V9.0354Z"
|
893
|
+
fillRule="evenodd"
|
894
|
+
/>
|
895
|
+
<path
|
896
|
+
clipRule="evenodd"
|
897
|
+
d="M11.2939 9.0354H12.4234V10.1648H11.2939V9.0354Z"
|
898
|
+
fillRule="evenodd"
|
899
|
+
/>
|
900
|
+
<path
|
901
|
+
clipRule="evenodd"
|
902
|
+
d="M9.0354 9.0354H10.1648V10.1648H9.0354V9.0354Z"
|
903
|
+
fillRule="evenodd"
|
904
|
+
/>
|
905
|
+
<path
|
906
|
+
clipRule="evenodd"
|
907
|
+
d="M6.77637 9.0354H7.90578V10.1648H6.77637V9.0354Z"
|
908
|
+
fillRule="evenodd"
|
909
|
+
/>
|
910
|
+
<path
|
911
|
+
clipRule="evenodd"
|
912
|
+
d="M4.51758 9.0354H5.64699V10.1648H4.51758V9.0354Z"
|
913
|
+
fillRule="evenodd"
|
914
|
+
/>
|
915
|
+
<path
|
916
|
+
clipRule="evenodd"
|
917
|
+
d="M2.25879 9.0354H3.3882V10.1648H2.25879V9.0354Z"
|
918
|
+
fillRule="evenodd"
|
919
|
+
/>
|
920
|
+
<path
|
921
|
+
clipRule="evenodd"
|
922
|
+
d="M13.553 11.2941H14.6824V12.4235H13.553V11.2941Z"
|
923
|
+
fillRule="evenodd"
|
924
|
+
/>
|
925
|
+
<path
|
926
|
+
clipRule="evenodd"
|
927
|
+
d="M11.2939 11.2941H12.4234V12.4235H11.2939V11.2941Z"
|
928
|
+
fillRule="evenodd"
|
929
|
+
/>
|
930
|
+
<path
|
931
|
+
clipRule="evenodd"
|
932
|
+
d="M9.0354 11.2941H10.1648V12.4235H9.0354V11.2941Z"
|
933
|
+
fillRule="evenodd"
|
934
|
+
/>
|
935
|
+
<path
|
936
|
+
clipRule="evenodd"
|
937
|
+
d="M6.77637 11.2941H7.90578V12.4235H6.77637V11.2941Z"
|
938
|
+
fillRule="evenodd"
|
939
|
+
/>
|
940
|
+
<path
|
941
|
+
clipRule="evenodd"
|
942
|
+
d="M4.51758 11.2941H5.64699V12.4235H4.51758V11.2941Z"
|
943
|
+
fillRule="evenodd"
|
944
|
+
/>
|
945
|
+
<path
|
946
|
+
clipRule="evenodd"
|
947
|
+
d="M2.25879 11.2941H3.3882V12.4235H2.25879V11.2941Z"
|
948
|
+
fillRule="evenodd"
|
949
|
+
/>
|
950
|
+
<path
|
951
|
+
clipRule="evenodd"
|
952
|
+
d="M11.2939 13.553H12.4234V14.6824H11.2939V13.553Z"
|
953
|
+
fillRule="evenodd"
|
954
|
+
/>
|
955
|
+
<path
|
956
|
+
clipRule="evenodd"
|
957
|
+
d="M9.0354 13.553H10.1648V14.6824H9.0354V13.553Z"
|
958
|
+
fillRule="evenodd"
|
959
|
+
/>
|
960
|
+
<path
|
961
|
+
clipRule="evenodd"
|
962
|
+
d="M6.77637 13.553H7.90578V14.6824H6.77637V13.553Z"
|
963
|
+
fillRule="evenodd"
|
964
|
+
/>
|
965
|
+
<path
|
966
|
+
clipRule="evenodd"
|
967
|
+
d="M4.51758 13.553H5.64699V14.6824H4.51758V13.553Z"
|
968
|
+
fillRule="evenodd"
|
969
|
+
/>
|
970
|
+
<path
|
971
|
+
clipRule="evenodd"
|
972
|
+
d="M2.25879 13.553H3.3882V14.6824H2.25879V13.553Z"
|
973
|
+
fillRule="evenodd"
|
974
|
+
/>
|
975
|
+
</svg>
|
976
|
+
</div>
|
977
|
+
<div
|
978
|
+
className="icon color-base size-md background-transparent"
|
979
|
+
style={
|
980
|
+
Object {
|
981
|
+
"height": 35,
|
982
|
+
"width": 35,
|
983
|
+
}
|
984
|
+
}
|
985
|
+
>
|
986
|
+
<svg
|
987
|
+
height={35}
|
988
|
+
viewBox="-1 -3 20 20"
|
989
|
+
width={35}
|
990
|
+
xmlns="http://www.w3.org/2000/svg"
|
991
|
+
>
|
992
|
+
<circle
|
993
|
+
cx="1"
|
994
|
+
cy="11"
|
995
|
+
r="1"
|
996
|
+
/>
|
997
|
+
<circle
|
998
|
+
cx="1"
|
999
|
+
cy="6"
|
1000
|
+
r="1"
|
1001
|
+
/>
|
1002
|
+
<circle
|
1003
|
+
cx="1"
|
1004
|
+
cy="1"
|
1005
|
+
r="1"
|
1006
|
+
/>
|
1007
|
+
<line
|
1008
|
+
strokeLinecap="round"
|
1009
|
+
x1="5.5"
|
1010
|
+
x2="18.5"
|
1011
|
+
y1="1.5"
|
1012
|
+
y2="1.5"
|
1013
|
+
/>
|
1014
|
+
<line
|
1015
|
+
strokeLinecap="round"
|
1016
|
+
x1="5.5"
|
1017
|
+
x2="18.5"
|
1018
|
+
y1="6.5"
|
1019
|
+
y2="6.5"
|
1020
|
+
/>
|
1021
|
+
<line
|
1022
|
+
strokeLinecap="round"
|
1023
|
+
x1="5.5"
|
1024
|
+
x2="18.5"
|
1025
|
+
y1="11.5"
|
1026
|
+
y2="11.5"
|
1027
|
+
/>
|
1028
|
+
</svg>
|
1029
|
+
</div>
|
1030
|
+
<div
|
1031
|
+
className="icon color-base size-md background-transparent"
|
1032
|
+
style={
|
1033
|
+
Object {
|
1034
|
+
"height": 35,
|
1035
|
+
"width": 35,
|
1036
|
+
}
|
1037
|
+
}
|
1038
|
+
>
|
1039
|
+
<svg
|
1040
|
+
height={35}
|
1041
|
+
viewBox="0 0 20 20"
|
1042
|
+
width={35}
|
1043
|
+
xmlns="http://www.w3.org/2000/svg"
|
1044
|
+
>
|
1045
|
+
<rect
|
1046
|
+
className="transparent"
|
1047
|
+
height="7"
|
1048
|
+
rx="0.5"
|
1049
|
+
width="3"
|
1050
|
+
x="2.5"
|
1051
|
+
y="8.5"
|
1052
|
+
/>
|
1053
|
+
<rect
|
1054
|
+
className="transparent"
|
1055
|
+
height="11"
|
1056
|
+
rx="0.5"
|
1057
|
+
width="3"
|
1058
|
+
x="8.5"
|
1059
|
+
y="4.5"
|
1060
|
+
/>
|
1061
|
+
<rect
|
1062
|
+
className="transparent"
|
1063
|
+
height="15"
|
1064
|
+
rx="0.5"
|
1065
|
+
width="3"
|
1066
|
+
x="14.5"
|
1067
|
+
y="0.5"
|
1068
|
+
/>
|
1069
|
+
<line
|
1070
|
+
x2="21"
|
1071
|
+
y1="15.5"
|
1072
|
+
y2="15.5"
|
1073
|
+
/>
|
1074
|
+
</svg>
|
1075
|
+
</div>
|
1076
|
+
<div
|
1077
|
+
className="icon color-base size-md background-transparent"
|
1078
|
+
style={
|
1079
|
+
Object {
|
1080
|
+
"height": 35,
|
1081
|
+
"width": 35,
|
1082
|
+
}
|
1083
|
+
}
|
1084
|
+
>
|
1085
|
+
<svg
|
1086
|
+
height={35}
|
1087
|
+
viewBox="0 0 24 24"
|
1088
|
+
width={35}
|
1089
|
+
xmlns="http://www.w3.org/2000/svg"
|
1090
|
+
>
|
1091
|
+
<path
|
1092
|
+
clipRule="evenodd"
|
1093
|
+
d="M11.9301 17.5578C8.82689 17.5578 6.30225 15.0331 6.30225 11.93C6.30225 8.82677 8.82689 6.30212 11.9301 6.30212C15.0333 6.30212 17.5579 8.82677 17.5579 11.93C17.5579 15.0331 15.0333 17.5578 11.9301 17.5578ZM11.9301 7.47433C9.4735 7.47433 7.47445 9.47337 7.47445 11.93C7.47445 14.3865 9.4735 16.3856 11.9301 16.3856C14.3867 16.3856 16.3857 14.3865 16.3857 11.93C16.3857 9.47337 14.3867 7.47433 11.9301 7.47433Z"
|
1094
|
+
fillRule="evenodd"
|
1095
|
+
/>
|
1096
|
+
<path
|
1097
|
+
clipRule="evenodd"
|
1098
|
+
d="M13.6127 23.86H10.2473L9.27616 20.9484C8.63397 20.76 8.0151 20.5035 7.42836 20.1833L4.6844 21.5553L2.30407 19.1756L3.67668 16.431C3.35653 15.8455 3.10067 15.2267 2.9116 14.5832L0 13.6127V10.2473L2.9116 9.27679C3.10067 8.63334 3.35653 8.01446 3.67668 7.42899L2.30407 4.6844L4.6844 2.30407L7.42836 3.67668C8.0151 3.35653 8.63397 3.10004 9.27616 2.9116L10.2473 0H13.6127L14.5838 2.9116C15.2254 3.10004 15.8449 3.35653 16.4316 3.67668L19.1756 2.30407L21.5559 4.6844L20.1833 7.42899C20.5035 8.01446 20.7593 8.63334 20.9484 9.27679L23.86 10.2473V13.6127L20.9484 14.5832C20.7593 15.2267 20.5035 15.8455 20.1833 16.431L21.5559 19.1756L19.1756 21.5553L16.4316 20.1833C15.8449 20.5035 15.2254 20.76 14.5838 20.9484L13.6127 23.86ZM11.0918 22.6878H12.7682L13.6719 19.9779L13.9807 19.8985C14.7313 19.7056 15.4498 19.4088 16.1153 19.0149L16.39 18.8523L18.9443 20.1297L20.1297 18.9443L18.8517 16.39L19.0149 16.1146C19.4075 15.451 19.705 14.7332 19.8991 13.9801L19.9779 13.6713L22.6878 12.7682V11.0918L19.9779 10.1887L19.8991 9.87991C19.705 9.1268 19.4075 8.40898 19.0149 7.74536L18.8517 7.46996L20.1297 4.91569L18.9443 3.73025L16.39 5.0077L16.1153 4.84511C15.4498 4.45122 14.7313 4.15439 13.9807 3.96154L13.6719 3.88213L12.7682 1.1722H11.0918L10.1881 3.88213L9.87928 3.96154C9.12869 4.15439 8.41024 4.45122 7.74473 4.84511L7.46996 5.0077L4.91569 3.73025L3.73025 4.91569L5.00833 7.46996L4.84511 7.74536C4.45248 8.40898 4.15502 9.1268 3.96091 9.87991L3.8815 10.1887L1.1722 11.0918V12.7682L3.8815 13.6713L3.96091 13.9801C4.15502 14.7332 4.45248 15.451 4.84511 16.1146L5.00833 16.39L3.73025 18.9443L4.91569 20.1297L7.46996 18.8523L7.74473 19.0149C8.41024 19.4088 9.12869 19.7056 9.87928 19.8985L10.1881 19.9779L11.0918 22.6878Z"
|
1099
|
+
fillRule="evenodd"
|
1100
|
+
/>
|
1101
|
+
</svg>
|
1102
|
+
</div>
|
1103
|
+
<div
|
1104
|
+
className="icon color-base size-md background-transparent"
|
1105
|
+
style={
|
1106
|
+
Object {
|
1107
|
+
"height": 35,
|
1108
|
+
"width": 35,
|
1109
|
+
}
|
1110
|
+
}
|
1111
|
+
>
|
1112
|
+
<svg
|
1113
|
+
height={35}
|
1114
|
+
viewBox="0 0 34 34"
|
1115
|
+
width={35}
|
1116
|
+
xmlns="http://www.w3.org/2000/svg"
|
1117
|
+
>
|
1118
|
+
<path
|
1119
|
+
clipRule="evenodd"
|
1120
|
+
d="M17.0001 33.9298C7.66507 33.9298 0.0700684 26.3348 0.0700684 16.9998C0.0700684 7.66482 7.66507 0.0698242 17.0001 0.0698242C26.3351 0.0698242 33.9301 7.66482 33.9301 16.9998C33.9301 26.3348 26.3351 33.9298 17.0001 33.9298ZM17.0001 1.92982C8.69007 1.92982 1.93007 8.68982 1.93007 16.9998C1.93007 25.3098 8.69007 32.0698 17.0001 32.0698C25.3101 32.0698 32.0701 25.3098 32.0701 16.9998C32.0701 8.68982 25.3101 1.92982 17.0001 1.92982Z"
|
1121
|
+
fillRule="evenodd"
|
1122
|
+
/>
|
1123
|
+
<path
|
1124
|
+
clipRule="evenodd"
|
1125
|
+
d="M12.0001 25.7408V8.25879L26.9851 16.9998L12.0001 25.7408ZM14.0001 11.7408V22.2588L23.0151 16.9998L14.0001 11.7408Z"
|
1126
|
+
fillRule="evenodd"
|
1127
|
+
/>
|
1128
|
+
</svg>
|
1129
|
+
</div>
|
1130
|
+
<div
|
1131
|
+
className="icon color-base size-md background-transparent"
|
1132
|
+
style={
|
1133
|
+
Object {
|
1134
|
+
"height": 35,
|
1135
|
+
"width": 35,
|
1136
|
+
}
|
1137
|
+
}
|
1138
|
+
>
|
1139
|
+
<svg
|
1140
|
+
height={35}
|
1141
|
+
viewBox="0 0 28 28"
|
1142
|
+
width={35}
|
1143
|
+
xmlns="http://www.w3.org/2000/svg"
|
1144
|
+
>
|
1145
|
+
<path
|
1146
|
+
clipRule="evenodd"
|
1147
|
+
d="M1.65702 27.6578L0.343018 26.3418L26.343 0.341797L27.657 1.6578L1.65702 27.6578Z"
|
1148
|
+
fillRule="evenodd"
|
1149
|
+
/>
|
1150
|
+
<path
|
1151
|
+
clipRule="evenodd"
|
1152
|
+
d="M26.343 27.6578L0.343018 1.6578L1.65702 0.341797L27.657 26.3418L26.343 27.6578Z"
|
1153
|
+
fillRule="evenodd"
|
1154
|
+
/>
|
1155
|
+
</svg>
|
1156
|
+
</div>
|
1157
|
+
</div>
|
1158
|
+
`;
|
1159
|
+
|
1160
|
+
exports[`Storyshots Atoms/Icon Sizes 1`] = `
|
1161
|
+
<div
|
1162
|
+
style={
|
1163
|
+
Object {
|
1164
|
+
"alignContent": "flex-start",
|
1165
|
+
"display": "flex",
|
1166
|
+
"flexDirection": "row",
|
1167
|
+
"flexWrap": "wrap",
|
1168
|
+
"gap": "10px 30px",
|
1169
|
+
"height": "100%",
|
1170
|
+
"justifyContent": "flex-start",
|
1171
|
+
"maxHeight": "auto",
|
1172
|
+
}
|
1173
|
+
}
|
1174
|
+
>
|
1175
|
+
<div
|
1176
|
+
className="icon color-base size-xs background-transparent"
|
1177
|
+
style={
|
1178
|
+
Object {
|
1179
|
+
"height": 14,
|
1180
|
+
"width": 14,
|
1181
|
+
}
|
1182
|
+
}
|
1183
|
+
>
|
1184
|
+
<svg
|
1185
|
+
height={14}
|
1186
|
+
viewBox="0 0 19 20"
|
1187
|
+
width={14}
|
1188
|
+
xmlns="http://www.w3.org/2000/svg"
|
1189
|
+
>
|
1190
|
+
<path
|
1191
|
+
clipRule="evenodd"
|
1192
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
1193
|
+
fillRule="evenodd"
|
1194
|
+
/>
|
1195
|
+
<path
|
1196
|
+
clipRule="evenodd"
|
1197
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
1198
|
+
fillRule="evenodd"
|
1199
|
+
/>
|
1200
|
+
</svg>
|
1201
|
+
</div>
|
1202
|
+
<div
|
1203
|
+
className="icon color-base size-sm background-transparent"
|
1204
|
+
style={
|
1205
|
+
Object {
|
1206
|
+
"height": 25,
|
1207
|
+
"width": 25,
|
1208
|
+
}
|
1209
|
+
}
|
1210
|
+
>
|
1211
|
+
<svg
|
1212
|
+
height={25}
|
1213
|
+
viewBox="0 0 19 20"
|
1214
|
+
width={25}
|
1215
|
+
xmlns="http://www.w3.org/2000/svg"
|
1216
|
+
>
|
1217
|
+
<path
|
1218
|
+
clipRule="evenodd"
|
1219
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
1220
|
+
fillRule="evenodd"
|
1221
|
+
/>
|
1222
|
+
<path
|
1223
|
+
clipRule="evenodd"
|
1224
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
1225
|
+
fillRule="evenodd"
|
1226
|
+
/>
|
1227
|
+
</svg>
|
1228
|
+
</div>
|
1229
|
+
<div
|
1230
|
+
className="icon color-base size-md background-transparent"
|
1231
|
+
style={
|
1232
|
+
Object {
|
1233
|
+
"height": 35,
|
1234
|
+
"width": 35,
|
1235
|
+
}
|
1236
|
+
}
|
1237
|
+
>
|
1238
|
+
<svg
|
1239
|
+
height={35}
|
1240
|
+
viewBox="0 0 19 20"
|
1241
|
+
width={35}
|
1242
|
+
xmlns="http://www.w3.org/2000/svg"
|
1243
|
+
>
|
1244
|
+
<path
|
1245
|
+
clipRule="evenodd"
|
1246
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
1247
|
+
fillRule="evenodd"
|
1248
|
+
/>
|
1249
|
+
<path
|
1250
|
+
clipRule="evenodd"
|
1251
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
1252
|
+
fillRule="evenodd"
|
1253
|
+
/>
|
1254
|
+
</svg>
|
1255
|
+
</div>
|
1256
|
+
<div
|
1257
|
+
className="icon color-base size-lg background-transparent"
|
1258
|
+
style={
|
1259
|
+
Object {
|
1260
|
+
"height": 50,
|
1261
|
+
"width": 50,
|
1262
|
+
}
|
1263
|
+
}
|
1264
|
+
>
|
1265
|
+
<svg
|
1266
|
+
height={50}
|
1267
|
+
viewBox="0 0 19 20"
|
1268
|
+
width={50}
|
1269
|
+
xmlns="http://www.w3.org/2000/svg"
|
1270
|
+
>
|
1271
|
+
<path
|
1272
|
+
clipRule="evenodd"
|
1273
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
1274
|
+
fillRule="evenodd"
|
1275
|
+
/>
|
1276
|
+
<path
|
1277
|
+
clipRule="evenodd"
|
1278
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
1279
|
+
fillRule="evenodd"
|
1280
|
+
/>
|
1281
|
+
</svg>
|
1282
|
+
</div>
|
1283
|
+
<div
|
1284
|
+
className="icon color-base size-xl background-transparent"
|
1285
|
+
style={
|
1286
|
+
Object {
|
1287
|
+
"height": 70,
|
1288
|
+
"width": 70,
|
1289
|
+
}
|
1290
|
+
}
|
1291
|
+
>
|
1292
|
+
<svg
|
1293
|
+
height={70}
|
1294
|
+
viewBox="0 0 19 20"
|
1295
|
+
width={70}
|
1296
|
+
xmlns="http://www.w3.org/2000/svg"
|
1297
|
+
>
|
1298
|
+
<path
|
1299
|
+
clipRule="evenodd"
|
1300
|
+
d="M8.65792 19.316L7.34192 18L15.6849 9.658L7.34192 1.316L8.65792 0L18.3149 9.658L8.65792 19.316Z"
|
1301
|
+
fillRule="evenodd"
|
1302
|
+
/>
|
1303
|
+
<path
|
1304
|
+
clipRule="evenodd"
|
1305
|
+
d="M0 8.65796H17V10.658H0V8.65796Z"
|
1306
|
+
fillRule="evenodd"
|
1307
|
+
/>
|
1308
|
+
</svg>
|
1309
|
+
</div>
|
1310
|
+
</div>
|
1311
|
+
`;
|