maru_design2 0.0.1 → 0.0.2
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.
- package/dist/components/atoms/button/Button.d.ts +26 -5
- package/dist/components/atoms/button/index.d.ts +1 -1
- package/dist/components/atoms/checkbox/Checkbox.d.ts +22 -0
- package/dist/components/atoms/checkbox/index.d.ts +1 -0
- package/dist/components/atoms/chip/Chip.d.ts +25 -0
- package/dist/components/atoms/chip/index.d.ts +1 -0
- package/dist/components/atoms/icon/Icon.d.ts +18 -0
- package/dist/components/atoms/icon/iconmap.d.ts +188 -0
- package/dist/components/atoms/icon/index.d.ts +1 -0
- package/dist/components/atoms/input/Input.d.ts +32 -0
- package/dist/components/atoms/input/index.d.ts +1 -0
- package/dist/components/atoms/popover/Popover.d.ts +24 -0
- package/dist/components/atoms/popover/index.d.ts +1 -0
- package/dist/components/atoms/radio/Radio.d.ts +13 -0
- package/dist/components/atoms/radio/index.d.ts +1 -0
- package/dist/components/atoms/toggle/Toggle.d.ts +21 -0
- package/dist/components/atoms/toggle/index.d.ts +1 -0
- package/dist/components/atoms/tooltip/Tooltip.d.ts +23 -0
- package/dist/components/atoms/tooltip/index.d.ts +1 -0
- package/dist/components/molecules/dropdown/Dropdown.d.ts +89 -0
- package/dist/components/molecules/dropdown/Menu.d.ts +21 -0
- package/dist/components/molecules/dropdown/index.d.ts +1 -0
- package/dist/components/molecules/dropdown/toggles/Arrow.d.ts +7 -0
- package/dist/components/molecules/dropdown/toggles/Button.d.ts +24 -0
- package/dist/components/molecules/dropdown/toggles/Clear.d.ts +8 -0
- package/dist/components/molecules/dropdown/toggles/Input.d.ts +24 -0
- package/dist/components/molecules/modal/Modal.d.ts +51 -0
- package/dist/components/molecules/modal/index.d.ts +1 -0
- package/dist/components/molecules/pagination/Pagination.d.ts +27 -0
- package/dist/components/molecules/pagination/index.d.ts +1 -0
- package/dist/components/styleProvider/StyleProvider.d.ts +10 -0
- package/dist/components/styleProvider/index.d.ts +1 -0
- package/dist/enums/color.d.ts +13 -0
- package/dist/enums/direction.d.ts +2 -0
- package/dist/enums/gap.d.ts +2 -0
- package/dist/enums/size.d.ts +10 -0
- package/dist/enums/type.d.ts +4 -0
- package/dist/enums/variant.d.ts +4 -0
- package/dist/hooks/useButtonState.d.ts +18 -0
- package/dist/hooks/useColor.d.ts +4 -0
- package/dist/hooks/useCombineRef.d.ts +1 -1
- package/dist/hooks/useCreatePortal.d.ts +1 -1
- package/dist/hooks/useId.d.ts +7 -0
- package/dist/index.d.ts +13 -1
- package/dist/index.js +3281 -8
- package/package.json +21 -18
- package/scripts/svg-parser.js +224 -0
package/dist/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { jsx } from 'react/jsx-runtime';
|
|
2
|
-
import { forwardRef } from 'react';
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import { useState, useMemo, forwardRef, useRef, useEffect } from 'react';
|
|
3
|
+
import 'react-dom';
|
|
3
4
|
|
|
4
5
|
/******************************************************************************
|
|
5
6
|
Copyright (c) Microsoft Corporation.
|
|
@@ -27,24 +28,3296 @@ var __assign = function() {
|
|
|
27
28
|
return __assign.apply(this, arguments);
|
|
28
29
|
};
|
|
29
30
|
|
|
31
|
+
function __rest(s, e) {
|
|
32
|
+
var t = {};
|
|
33
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
34
|
+
t[p] = s[p];
|
|
35
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
36
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
37
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
38
|
+
t[p[i]] = s[p[i]];
|
|
39
|
+
}
|
|
40
|
+
return t;
|
|
41
|
+
}
|
|
42
|
+
|
|
30
43
|
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
31
44
|
var e = new Error(message);
|
|
32
45
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
33
46
|
};
|
|
34
47
|
|
|
48
|
+
function styleInject(css, ref) {
|
|
49
|
+
if ( ref === void 0 ) ref = {};
|
|
50
|
+
var insertAt = ref.insertAt;
|
|
51
|
+
|
|
52
|
+
if (!css || typeof document === 'undefined') { return; }
|
|
53
|
+
|
|
54
|
+
var head = document.head || document.getElementsByTagName('head')[0];
|
|
55
|
+
var style = document.createElement('style');
|
|
56
|
+
style.type = 'text/css';
|
|
57
|
+
|
|
58
|
+
if (insertAt === 'top') {
|
|
59
|
+
if (head.firstChild) {
|
|
60
|
+
head.insertBefore(style, head.firstChild);
|
|
61
|
+
} else {
|
|
62
|
+
head.appendChild(style);
|
|
63
|
+
}
|
|
64
|
+
} else {
|
|
65
|
+
head.appendChild(style);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if (style.styleSheet) {
|
|
69
|
+
style.styleSheet.cssText = css;
|
|
70
|
+
} else {
|
|
71
|
+
style.appendChild(document.createTextNode(css));
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
var css_248z$c = "* {\n /* HTML5 display-role reset for older browsers */\n}\n* html,\n* body,\n* div,\n* span,\n* applet,\n* object,\n* iframe,\n* h1,\n* h2,\n* h3,\n* h4,\n* h5,\n* h6,\n* p,\n* blockquote,\n* pre,\n* a,\n* abbr,\n* acronym,\n* address,\n* big,\n* cite,\n* code,\n* del,\n* dfn,\n* em,\n* img,\n* ins,\n* kbd,\n* q,\n* s,\n* samp,\n* small,\n* strike,\n* strong,\n* sub,\n* sup,\n* tt,\n* var,\n* b,\n* u,\n* i,\n* center,\n* dl,\n* dt,\n* dd,\n* ol,\n* ul,\n* li,\n* fieldset,\n* form,\n* label,\n* legend,\n* table,\n* caption,\n* tbody,\n* tfoot,\n* thead,\n* tr,\n* th,\n* td,\n* article,\n* aside,\n* canvas,\n* details,\n* embed,\n* figure,\n* figcaption,\n* footer,\n* header,\n* hgroup,\n* menu,\n* nav,\n* output,\n* ruby,\n* section,\n* summary,\n* time,\n* mark,\n* audio,\n* video {\n padding: 0;\n border: 0;\n margin: 0;\n font: inherit;\n font-size: 100%;\n vertical-align: baseline;\n}\n* article,\n* aside,\n* details,\n* figcaption,\n* figure,\n* footer,\n* header,\n* hgroup,\n* menu,\n* nav,\n* section {\n display: block;\n}\n* ol,\n* ul {\n list-style: none;\n}\n* blockquote,\n* q {\n quotes: none;\n}\n* blockquote::before,\n* blockquote::after,\n* q::before,\n* q::after {\n content: \"\";\n content: none;\n}\n* table {\n border-collapse: collapse;\n border-spacing: 0;\n}\n* html {\n box-sizing: border-box;\n}\n* *,\n* *::before,\n* *::after {\n box-sizing: inherit;\n}";
|
|
76
|
+
styleInject(css_248z$c);
|
|
77
|
+
|
|
78
|
+
var css_248z$b = ":root {\n --primary: var(--p);\n --primary-50-per: var(--p-50-per);\n --primary-50: var(--p-50);\n --primary-20-per: var(--p-20-per);\n --primary-20: var(--p-20);\n --primary-10-per: var(--p-10-per);\n --primary-10: var(--p-10);\n}\n\n[data-theme=blue] {\n --p: #308acc;\n --p-50-per: #308acc80;\n --p-50: #97c4e5;\n --p-20-per: #308acc33;\n --p-20: #d6e8f5;\n --p-10-per: #308acc1a;\n --p-10: #eaf3fa;\n}";
|
|
79
|
+
styleInject(css_248z$b);
|
|
80
|
+
|
|
81
|
+
var StyleProvider = function StyleProvider(_a) {
|
|
82
|
+
var children = _a.children,
|
|
83
|
+
theme = _a.theme;
|
|
84
|
+
return jsx("div", __assign({
|
|
85
|
+
"data-theme": theme
|
|
86
|
+
}, {
|
|
87
|
+
children: children
|
|
88
|
+
}));
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
var classnames = {exports: {}};
|
|
92
|
+
|
|
93
|
+
/*!
|
|
94
|
+
Copyright (c) 2018 Jed Watson.
|
|
95
|
+
Licensed under the MIT License (MIT), see
|
|
96
|
+
http://jedwatson.github.io/classnames
|
|
97
|
+
*/
|
|
98
|
+
|
|
99
|
+
(function (module) {
|
|
100
|
+
/* global define */
|
|
101
|
+
|
|
102
|
+
(function () {
|
|
103
|
+
|
|
104
|
+
var hasOwn = {}.hasOwnProperty;
|
|
105
|
+
|
|
106
|
+
function classNames () {
|
|
107
|
+
var classes = '';
|
|
108
|
+
|
|
109
|
+
for (var i = 0; i < arguments.length; i++) {
|
|
110
|
+
var arg = arguments[i];
|
|
111
|
+
if (arg) {
|
|
112
|
+
classes = appendClass(classes, parseValue(arg));
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
return classes;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
function parseValue (arg) {
|
|
120
|
+
if (typeof arg === 'string' || typeof arg === 'number') {
|
|
121
|
+
return arg;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
if (typeof arg !== 'object') {
|
|
125
|
+
return '';
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
if (Array.isArray(arg)) {
|
|
129
|
+
return classNames.apply(null, arg);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {
|
|
133
|
+
return arg.toString();
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
var classes = '';
|
|
137
|
+
|
|
138
|
+
for (var key in arg) {
|
|
139
|
+
if (hasOwn.call(arg, key) && arg[key]) {
|
|
140
|
+
classes = appendClass(classes, key);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
return classes;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
function appendClass (value, newClass) {
|
|
148
|
+
if (!newClass) {
|
|
149
|
+
return value;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
if (value) {
|
|
153
|
+
return value + ' ' + newClass;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
return value + newClass;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
if (module.exports) {
|
|
160
|
+
classNames.default = classNames;
|
|
161
|
+
module.exports = classNames;
|
|
162
|
+
} else {
|
|
163
|
+
window.classNames = classNames;
|
|
164
|
+
}
|
|
165
|
+
}());
|
|
166
|
+
} (classnames));
|
|
167
|
+
|
|
168
|
+
var classNames = classnames.exports;
|
|
169
|
+
|
|
170
|
+
function useButtonState() {
|
|
171
|
+
var _a = useState(false),
|
|
172
|
+
isHover = _a[0],
|
|
173
|
+
setIsHover = _a[1];
|
|
174
|
+
var _b = useState(false),
|
|
175
|
+
isActive = _b[0],
|
|
176
|
+
setIsActive = _b[1];
|
|
177
|
+
var _c = useState(false),
|
|
178
|
+
isFocused = _c[0],
|
|
179
|
+
setIsFocused = _c[1];
|
|
180
|
+
return [{
|
|
181
|
+
isHover: isHover,
|
|
182
|
+
isActive: isActive,
|
|
183
|
+
isFocused: isFocused
|
|
184
|
+
}, {
|
|
185
|
+
setIsHover: setIsHover,
|
|
186
|
+
setIsActive: setIsActive,
|
|
187
|
+
setIsFocused: setIsFocused
|
|
188
|
+
}];
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
var DColor = {
|
|
192
|
+
primary: 'var(--p)',
|
|
193
|
+
secondary: '#8c8c8c',
|
|
194
|
+
positive: '#58c5a6',
|
|
195
|
+
warning: '#ffb020',
|
|
196
|
+
danger: '#e53e3e' // $point-red,
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
var useColor = function useColor(color) {
|
|
200
|
+
// DColor에도 없고 color도 undefined면 $b400(=#8c8c8c) 리턴
|
|
201
|
+
var keyColor = useMemo(function () {
|
|
202
|
+
return DColor[color] || color || '#8c8c8c';
|
|
203
|
+
}, [color]);
|
|
204
|
+
return {
|
|
205
|
+
keyColor: keyColor
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
|
|
209
|
+
/* eslint-disable no-multiple-empty-lines */
|
|
210
|
+
/* eslint-disable no-trailing-spaces */
|
|
211
|
+
/* eslint-disable eol-last */
|
|
212
|
+
/* eslint-disable object-curly-spacing */
|
|
213
|
+
/* eslint-disable comma-spacing */
|
|
214
|
+
/* eslint-disable key-spacing */
|
|
215
|
+
/* eslint-disable quotes */
|
|
216
|
+
/* eslint-disable quote-props */
|
|
217
|
+
var iconmap = {
|
|
218
|
+
"K": {
|
|
219
|
+
"width": "18",
|
|
220
|
+
"height": "18",
|
|
221
|
+
"viewBox": "0 0 18 18",
|
|
222
|
+
"fill": "none",
|
|
223
|
+
"paths": [{
|
|
224
|
+
"d": "M3 3.8742L3.19433 2.25H7.8583L8.05263 3.8742C7.83887 4.12261 7.47611 4.34236 6.96437 4.53344V13.4761C7.47611 13.6799 7.83887 13.8965 8.05263 14.1258L7.8583 15.75H3.19433L3 14.1258C3.1749 13.9029 3.54089 13.6863 4.09798 13.4761V4.53344C3.54737 4.34236 3.18138 4.12261 3 3.8742ZM15 14.1258L14.796 15.75H11.4923L7.08097 8.7086L10.404 4.36146C10.0283 4.18312 9.76923 4.00796 9.62672 3.83599L9.82105 2.25H14.3587L14.5628 3.83599C14.3749 4.04618 14.0283 4.25318 13.5231 4.45701L10.0834 8.63217L13.2316 13.285C14.0802 13.4634 14.6696 13.7436 15 14.1258Z",
|
|
225
|
+
"fill": "#8C8C8C"
|
|
226
|
+
}],
|
|
227
|
+
"circles": [{
|
|
228
|
+
"cx": "9",
|
|
229
|
+
"cy": "9",
|
|
230
|
+
"r": "9",
|
|
231
|
+
"fill": "white"
|
|
232
|
+
}]
|
|
233
|
+
},
|
|
234
|
+
"T": {
|
|
235
|
+
"width": "18",
|
|
236
|
+
"height": "18",
|
|
237
|
+
"viewBox": "0 0 18 18",
|
|
238
|
+
"fill": "none",
|
|
239
|
+
"paths": [{
|
|
240
|
+
"d": "M14.7224 2.25V5.05189L13.488 5.20864C13.3182 5.07801 13.1549 4.8037 12.9982 4.3857H10.647V13.4771C11.1694 13.6861 11.5287 13.9017 11.7246 14.1237L11.5287 15.75H6.94376L6.74782 14.1237C6.91763 13.9017 7.27685 13.6861 7.82547 13.4771V4.3857H5.47424C5.31749 4.8037 5.15421 5.07801 4.9844 5.20864L3.75 5.05189V2.25H14.7224Z",
|
|
241
|
+
"fill": "#8C8C8C"
|
|
242
|
+
}],
|
|
243
|
+
"circles": []
|
|
244
|
+
},
|
|
245
|
+
"V": {
|
|
246
|
+
"width": "18",
|
|
247
|
+
"height": "18",
|
|
248
|
+
"viewBox": "0 0 18 18",
|
|
249
|
+
"fill": "none",
|
|
250
|
+
"paths": [{
|
|
251
|
+
"d": "M14.4038 4.60278L10.648 15.75H7.9166L4.12184 4.51739C3.54954 4.32133 3.17559 4.10313 3 3.86279L3.1951 2.25H7.87758L8.07269 3.86279C7.88409 4.11578 7.54591 4.32133 7.05815 4.47944L8.75555 10.2381C8.89862 10.6808 9.01243 11.1109 9.09698 11.5283C9.18152 11.9394 9.24005 12.3315 9.27257 12.7047L9.29208 13.0367H9.57498C9.58799 12.2461 9.75383 11.3259 10.0725 10.276L11.8479 4.49842C11.3472 4.3403 10.996 4.12843 10.7944 3.86279L10.9895 2.25H15.5451L15.75 3.86279C15.5094 4.1474 15.0606 4.39406 14.4038 4.60278Z",
|
|
252
|
+
"fill": "#8C8C8C"
|
|
253
|
+
}],
|
|
254
|
+
"circles": [{
|
|
255
|
+
"cx": "9",
|
|
256
|
+
"cy": "9",
|
|
257
|
+
"r": "9",
|
|
258
|
+
"fill": "white"
|
|
259
|
+
}]
|
|
260
|
+
},
|
|
261
|
+
"AddLineThin": {
|
|
262
|
+
"width": "18",
|
|
263
|
+
"height": "18",
|
|
264
|
+
"viewBox": "0 0 18 18",
|
|
265
|
+
"fill": "none",
|
|
266
|
+
"paths": [{
|
|
267
|
+
"d": "M8.25 8.25V3.75H9.75V8.25H14.25V9.75H9.75V14.25H8.25V9.75H3.75V8.25H8.25Z",
|
|
268
|
+
"fill": "#8C8C8C"
|
|
269
|
+
}],
|
|
270
|
+
"circles": []
|
|
271
|
+
},
|
|
272
|
+
"AlertCircleThin": {
|
|
273
|
+
"width": "18",
|
|
274
|
+
"height": "18",
|
|
275
|
+
"viewBox": "0 0 18 18",
|
|
276
|
+
"fill": "none",
|
|
277
|
+
"paths": [{
|
|
278
|
+
"d": "M9 6V9M9 12H9.0075M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z",
|
|
279
|
+
"stroke": "black",
|
|
280
|
+
"strokeWidth": "1.5",
|
|
281
|
+
"strokeLinecap": "round",
|
|
282
|
+
"strokeLinejoin": "round"
|
|
283
|
+
}],
|
|
284
|
+
"circles": []
|
|
285
|
+
},
|
|
286
|
+
"AlertTriangleThin": {
|
|
287
|
+
"width": "18",
|
|
288
|
+
"height": "18",
|
|
289
|
+
"viewBox": "0 0 18 18",
|
|
290
|
+
"fill": "none",
|
|
291
|
+
"paths": [{
|
|
292
|
+
"d": "M8.99982 6.75017V9.75017M8.99982 12.7502H9.00732M7.9613 2.91897L1.79264 13.5739C1.45049 14.1649 1.27941 14.4604 1.30469 14.7029C1.32675 14.9145 1.43758 15.1067 1.60959 15.2318C1.80681 15.3752 2.14826 15.3752 2.83115 15.3752H15.1685C15.8514 15.3752 16.1928 15.3752 16.39 15.2318C16.5621 15.1067 16.6729 14.9145 16.6949 14.7029C16.7202 14.4604 16.5491 14.1649 16.207 13.5739L10.0383 2.91896C9.6974 2.33009 9.52694 2.03566 9.30454 1.93677C9.11055 1.85051 8.88908 1.85051 8.69509 1.93677C8.47269 2.03566 8.30223 2.33009 7.9613 2.91897Z",
|
|
293
|
+
"stroke": "#8C8C8C",
|
|
294
|
+
"strokeWidth": "1.5",
|
|
295
|
+
"strokeLinecap": "round",
|
|
296
|
+
"strokeLinejoin": "round"
|
|
297
|
+
}],
|
|
298
|
+
"circles": []
|
|
299
|
+
},
|
|
300
|
+
"AlertTriangle": {
|
|
301
|
+
"width": "24",
|
|
302
|
+
"height": "24",
|
|
303
|
+
"viewBox": "0 0 24 24",
|
|
304
|
+
"fill": "none",
|
|
305
|
+
"paths": [{
|
|
306
|
+
"d": "M11.9998 9.00023V13.0002M11.9998 17.0002H12.0098M10.6151 3.89195L2.39019 18.0986C1.93398 18.8866 1.70588 19.2806 1.73959 19.6039C1.769 19.886 1.91677 20.1423 2.14613 20.309C2.40908 20.5002 2.86435 20.5002 3.77487 20.5002H20.2246C21.1352 20.5002 21.5904 20.5002 21.8534 20.309C22.0827 20.1423 22.2305 19.886 22.2599 19.6039C22.2936 19.2806 22.0655 18.8866 21.6093 18.0986L13.3844 3.89195C12.9299 3.10679 12.7026 2.71421 12.4061 2.58235C12.1474 2.46734 11.8521 2.46734 11.5935 2.58235C11.2969 2.71421 11.0696 3.10679 10.6151 3.89195Z",
|
|
307
|
+
"stroke": "#8C8C8C",
|
|
308
|
+
"strokeWidth": "2",
|
|
309
|
+
"strokeLinecap": "round",
|
|
310
|
+
"strokeLinejoin": "round"
|
|
311
|
+
}],
|
|
312
|
+
"circles": []
|
|
313
|
+
},
|
|
314
|
+
"ArrowRightThin": {
|
|
315
|
+
"width": "18",
|
|
316
|
+
"height": "18",
|
|
317
|
+
"viewBox": "0 0 18 18",
|
|
318
|
+
"fill": "none",
|
|
319
|
+
"paths": [{
|
|
320
|
+
"d": "M3.75 9H14.25M14.25 9L9 3.75M14.25 9L9 14.25",
|
|
321
|
+
"stroke": "#8C8C8C",
|
|
322
|
+
"strokeWidth": "1.5",
|
|
323
|
+
"strokeLinecap": "round",
|
|
324
|
+
"strokeLinejoin": "round"
|
|
325
|
+
}],
|
|
326
|
+
"circles": []
|
|
327
|
+
},
|
|
328
|
+
"ArrowRight": {
|
|
329
|
+
"width": "24",
|
|
330
|
+
"height": "24",
|
|
331
|
+
"viewBox": "0 0 24 24",
|
|
332
|
+
"fill": "none",
|
|
333
|
+
"paths": [{
|
|
334
|
+
"d": "M5 12H19M19 12L12 5M19 12L12 19",
|
|
335
|
+
"stroke": "#8C8C8C",
|
|
336
|
+
"strokeWidth": "2",
|
|
337
|
+
"strokeLinecap": "round",
|
|
338
|
+
"strokeLinejoin": "round"
|
|
339
|
+
}],
|
|
340
|
+
"circles": []
|
|
341
|
+
},
|
|
342
|
+
"Atom01Thin": {
|
|
343
|
+
"width": "18",
|
|
344
|
+
"height": "18",
|
|
345
|
+
"viewBox": "0 0 18 18",
|
|
346
|
+
"fill": "none",
|
|
347
|
+
"paths": [{
|
|
348
|
+
"d": "M8.99964 9.00023H9.00714M11.6513 11.6519C8.13657 15.1666 4.10014 16.8287 2.63567 15.3642C1.17121 13.8997 2.83327 9.8633 6.34798 6.34858C9.8627 2.83386 13.8991 1.1718 15.3636 2.63627C16.8281 4.10073 15.166 8.13716 11.6513 11.6519ZM11.6513 6.34844C15.166 9.86316 16.828 13.8996 15.3636 15.3641C13.8991 16.8285 9.86267 15.1665 6.34795 11.6517C2.83324 8.13703 1.17118 4.1006 2.63564 2.63613C4.10011 1.17167 8.13654 2.83372 11.6513 6.34844ZM9.37464 9.00023C9.37464 9.20734 9.20674 9.37523 8.99964 9.37523C8.79253 9.37523 8.62464 9.20734 8.62464 9.00023C8.62464 8.79312 8.79253 8.62523 8.99964 8.62523C9.20674 8.62523 9.37464 8.79312 9.37464 9.00023Z",
|
|
349
|
+
"stroke": "#8C8C8C",
|
|
350
|
+
"strokeWidth": "1.5",
|
|
351
|
+
"strokeLinecap": "round",
|
|
352
|
+
"strokeLinejoin": "round"
|
|
353
|
+
}],
|
|
354
|
+
"circles": []
|
|
355
|
+
},
|
|
356
|
+
"BarChart10": {
|
|
357
|
+
"width": "24",
|
|
358
|
+
"height": "24",
|
|
359
|
+
"viewBox": "0 0 24 24",
|
|
360
|
+
"fill": "none",
|
|
361
|
+
"paths": [{
|
|
362
|
+
"d": "M9 7H4.6C4.03995 7 3.75992 7 3.54601 7.10899C3.35785 7.20487 3.20487 7.35785 3.10899 7.54601C3 7.75992 3 8.03995 3 8.6V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H9M9 21H15M9 21L9 4.6C9 4.03995 9 3.75992 9.10899 3.54601C9.20487 3.35785 9.35785 3.20487 9.54601 3.10899C9.75992 3 10.0399 3 10.6 3L13.4 3C13.9601 3 14.2401 3 14.454 3.10899C14.6422 3.20487 14.7951 3.35785 14.891 3.54601C15 3.75992 15 4.03995 15 4.6V21M15 11H19.4C19.9601 11 20.2401 11 20.454 11.109C20.6422 11.2049 20.7951 11.3578 20.891 11.546C21 11.7599 21 12.0399 21 12.6V19.4C21 19.9601 21 20.2401 20.891 20.454C20.7951 20.6422 20.6422 20.7951 20.454 20.891C20.2401 21 19.9601 21 19.4 21H15",
|
|
363
|
+
"stroke": "#8C8C8C",
|
|
364
|
+
"strokeWidth": "2",
|
|
365
|
+
"strokeLinecap": "round",
|
|
366
|
+
"strokeLinejoin": "round"
|
|
367
|
+
}],
|
|
368
|
+
"circles": []
|
|
369
|
+
},
|
|
370
|
+
"BarChartSquare01": {
|
|
371
|
+
"width": "24",
|
|
372
|
+
"height": "24",
|
|
373
|
+
"viewBox": "0 0 24 24",
|
|
374
|
+
"fill": "none",
|
|
375
|
+
"paths": [{
|
|
376
|
+
"d": "M8 13V17M16 11V17M12 7V17M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z",
|
|
377
|
+
"stroke": "#8C8C8C",
|
|
378
|
+
"strokeWidth": "2",
|
|
379
|
+
"strokeLinecap": "round",
|
|
380
|
+
"strokeLinejoin": "round"
|
|
381
|
+
}],
|
|
382
|
+
"circles": []
|
|
383
|
+
},
|
|
384
|
+
"BookOpen02Thin": {
|
|
385
|
+
"width": "18",
|
|
386
|
+
"height": "18",
|
|
387
|
+
"viewBox": "0 0 18 18",
|
|
388
|
+
"fill": "none",
|
|
389
|
+
"paths": [{
|
|
390
|
+
"d": "M9 15H3.9C3.05992 15 2.63988 15 2.31901 14.8365C2.03677 14.6927 1.8073 14.4632 1.66349 14.181C1.5 13.8601 1.5 13.4401 1.5 12.6V5.4C1.5 4.55992 1.5 4.13988 1.66349 3.81901C1.8073 3.53677 2.03677 3.3073 2.31901 3.16349C2.63988 3 3.05992 3 3.9 3H4.2C5.88016 3 6.72024 3 7.36197 3.32698C7.92646 3.6146 8.3854 4.07354 8.67302 4.63803C9 5.27976 9 6.11984 9 7.8M9 15V7.8M9 15H14.1C14.9401 15 15.3601 15 15.681 14.8365C15.9632 14.6927 16.1927 14.4632 16.3365 14.181C16.5 13.8601 16.5 13.4401 16.5 12.6V5.4C16.5 4.55992 16.5 4.13988 16.3365 3.81901C16.1927 3.53677 15.9632 3.3073 15.681 3.16349C15.3601 3 14.9401 3 14.1 3H13.8C12.1198 3 11.2798 3 10.638 3.32698C10.0735 3.6146 9.6146 4.07354 9.32698 4.63803C9 5.27976 9 6.11984 9 7.8",
|
|
391
|
+
"stroke": "#8C8C8C",
|
|
392
|
+
"strokeWidth": "1.5",
|
|
393
|
+
"strokeLinecap": "round",
|
|
394
|
+
"strokeLinejoin": "round"
|
|
395
|
+
}],
|
|
396
|
+
"circles": []
|
|
397
|
+
},
|
|
398
|
+
"BookOpen02": {
|
|
399
|
+
"width": "24",
|
|
400
|
+
"height": "24",
|
|
401
|
+
"viewBox": "0 0 24 24",
|
|
402
|
+
"fill": "none",
|
|
403
|
+
"paths": [{
|
|
404
|
+
"d": "M12 20H5.2C4.07989 20 3.51984 20 3.09202 19.782C2.71569 19.5903 2.40973 19.2843 2.21799 18.908C2 18.4802 2 17.9201 2 16.8V7.2C2 6.07989 2 5.51984 2.21799 5.09202C2.40973 4.71569 2.71569 4.40973 3.09202 4.21799C3.51984 4 4.07989 4 5.2 4H5.6C7.84021 4 8.96031 4 9.81596 4.43597C10.5686 4.81947 11.1805 5.43139 11.564 6.18404C12 7.03968 12 8.15979 12 10.4M12 20V10.4M12 20H18.8C19.9201 20 20.4802 20 20.908 19.782C21.2843 19.5903 21.5903 19.2843 21.782 18.908C22 18.4802 22 17.9201 22 16.8V7.2C22 6.07989 22 5.51984 21.782 5.09202C21.5903 4.71569 21.2843 4.40973 20.908 4.21799C20.4802 4 19.9201 4 18.8 4H18.4C16.1598 4 15.0397 4 14.184 4.43597C13.4314 4.81947 12.8195 5.43139 12.436 6.18404C12 7.03968 12 8.15979 12 10.4",
|
|
405
|
+
"stroke": "#BDBDBD",
|
|
406
|
+
"strokeWidth": "2",
|
|
407
|
+
"strokeLinecap": "round",
|
|
408
|
+
"strokeLinejoin": "round"
|
|
409
|
+
}],
|
|
410
|
+
"circles": []
|
|
411
|
+
},
|
|
412
|
+
"CalendarDate": {
|
|
413
|
+
"width": "24",
|
|
414
|
+
"height": "24",
|
|
415
|
+
"viewBox": "0 0 24 24",
|
|
416
|
+
"fill": "none",
|
|
417
|
+
"paths": [{
|
|
418
|
+
"d": "M21 10H3M16 2V6M8 2V6M10.5 14L12 13V18M10.75 18H13.25M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
|
|
419
|
+
"stroke": "#8C8C8C",
|
|
420
|
+
"strokeWidth": "2",
|
|
421
|
+
"strokeLinecap": "round",
|
|
422
|
+
"strokeLinejoin": "round"
|
|
423
|
+
}],
|
|
424
|
+
"circles": []
|
|
425
|
+
},
|
|
426
|
+
"CalendarThin": {
|
|
427
|
+
"width": "18",
|
|
428
|
+
"height": "18",
|
|
429
|
+
"viewBox": "0 0 18 18",
|
|
430
|
+
"fill": "none",
|
|
431
|
+
"paths": [{
|
|
432
|
+
"d": "M15.75 7.5H2.25M12 1.5V4.5M6 1.5V4.5M5.85 16.5H12.15C13.4101 16.5 14.0402 16.5 14.5215 16.2548C14.9448 16.039 15.289 15.6948 15.5048 15.2715C15.75 14.7902 15.75 14.1601 15.75 12.9V6.6C15.75 5.33988 15.75 4.70982 15.5048 4.22852C15.289 3.80516 14.9448 3.46095 14.5215 3.24524C14.0402 3 13.4101 3 12.15 3H5.85C4.58988 3 3.95982 3 3.47852 3.24524C3.05516 3.46095 2.71095 3.80516 2.49524 4.22852C2.25 4.70982 2.25 5.33988 2.25 6.6V12.9C2.25 14.1601 2.25 14.7902 2.49524 15.2715C2.71095 15.6948 3.05516 16.039 3.47852 16.2548C3.95982 16.5 4.58988 16.5 5.85 16.5Z",
|
|
433
|
+
"stroke": "#8C8C8C",
|
|
434
|
+
"strokeWidth": "1.5",
|
|
435
|
+
"strokeLinecap": "round",
|
|
436
|
+
"strokeLinejoin": "round"
|
|
437
|
+
}],
|
|
438
|
+
"circles": []
|
|
439
|
+
},
|
|
440
|
+
"Calendar": {
|
|
441
|
+
"width": "24",
|
|
442
|
+
"height": "24",
|
|
443
|
+
"viewBox": "0 0 24 24",
|
|
444
|
+
"fill": "none",
|
|
445
|
+
"paths": [{
|
|
446
|
+
"d": "M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z",
|
|
447
|
+
"stroke": "#8C8C8C",
|
|
448
|
+
"strokeWidth": "2",
|
|
449
|
+
"strokeLinecap": "round",
|
|
450
|
+
"strokeLinejoin": "round"
|
|
451
|
+
}],
|
|
452
|
+
"circles": []
|
|
453
|
+
},
|
|
454
|
+
"CheckboxIndeterminateThin": {
|
|
455
|
+
"width": "18",
|
|
456
|
+
"height": "18",
|
|
457
|
+
"viewBox": "0 0 18 18",
|
|
458
|
+
"fill": "none",
|
|
459
|
+
"paths": [{
|
|
460
|
+
"d": "M1.93597 3.68404C1.5 4.53969 1.5 5.65979 1.5 7.9V10.1C1.5 12.3402 1.5 13.4603 1.93597 14.316C2.31947 15.0686 2.93139 15.6805 3.68404 16.064C4.53969 16.5 5.65979 16.5 7.9 16.5H10.1C12.3402 16.5 13.4603 16.5 14.316 16.064C15.0686 15.6805 15.6805 15.0686 16.064 14.316C16.5 13.4603 16.5 12.3402 16.5 10.1V7.9C16.5 5.65979 16.5 4.53969 16.064 3.68404C15.6805 2.93139 15.0686 2.31947 14.316 1.93597C13.4603 1.5 12.3402 1.5 10.1 1.5H7.9C5.65979 1.5 4.53969 1.5 3.68404 1.93597C2.93139 2.31947 2.31947 2.93139 1.93597 3.68404ZM5.25 8C4.69772 8 4.25 8.44772 4.25 9C4.25 9.55228 4.69772 10 5.25 10H12.75C13.3023 10 13.75 9.55228 13.75 9C13.75 8.44772 13.3023 8 12.75 8H5.25Z",
|
|
461
|
+
"fill": "#8C8C8C",
|
|
462
|
+
"fillRule": "evenodd",
|
|
463
|
+
"clipRule": "evenodd"
|
|
464
|
+
}],
|
|
465
|
+
"circles": []
|
|
466
|
+
},
|
|
467
|
+
"CheckboxIndeterminate": {
|
|
468
|
+
"width": "24",
|
|
469
|
+
"height": "24",
|
|
470
|
+
"viewBox": "0 0 24 24",
|
|
471
|
+
"fill": "none",
|
|
472
|
+
"paths": [{
|
|
473
|
+
"d": "M2.43597 4.18404C2 5.03969 2 6.15979 2 8.4V15.6C2 17.8402 2 18.9603 2.43597 19.816C2.81947 20.5686 3.43139 21.1805 4.18404 21.564C5.03969 22 6.15979 22 8.4 22H15.6C17.8402 22 18.9603 22 19.816 21.564C20.5686 21.1805 21.1805 20.5686 21.564 19.816C22 18.9603 22 17.8402 22 15.6V8.4C22 6.15979 22 5.03969 21.564 4.18404C21.1805 3.43139 20.5686 2.81947 19.816 2.43597C18.9603 2 17.8402 2 15.6 2H8.4C6.15979 2 5.03969 2 4.18404 2.43597C3.43139 2.81947 2.81947 3.43139 2.43597 4.18404ZM7 11C6.44772 11 6 11.4477 6 12C6 12.5523 6.44772 13 7 13H17C17.5523 13 18 12.5523 18 12C18 11.4477 17.5523 11 17 11H7Z",
|
|
474
|
+
"fill": "#8C8C8C",
|
|
475
|
+
"fillRule": "evenodd",
|
|
476
|
+
"clipRule": "evenodd"
|
|
477
|
+
}],
|
|
478
|
+
"circles": []
|
|
479
|
+
},
|
|
480
|
+
"CheckboxOffThin": {
|
|
481
|
+
"width": "18",
|
|
482
|
+
"height": "18",
|
|
483
|
+
"viewBox": "0 0 18 18",
|
|
484
|
+
"fill": "none",
|
|
485
|
+
"paths": [{
|
|
486
|
+
"d": "M12.6542 1.5C13.9915 1.5 14.4764 1.63924 14.9653 1.9007C15.4542 2.16216 15.8378 2.54584 16.0993 3.03473C16.3608 3.52362 16.5 4.00855 16.5 5.34583V12.6542C16.5 13.9915 16.3608 14.4764 16.0993 14.9653C15.8378 15.4542 15.4542 15.8378 14.9653 16.0993C14.4764 16.3608 13.9915 16.5 12.6542 16.5H5.34583C4.00855 16.5 3.52362 16.3608 3.03473 16.0993C2.54584 15.8378 2.16216 15.4542 1.9007 14.9653C1.63924 14.4764 1.5 13.9915 1.5 12.6542V5.34583C1.5 4.00855 1.63924 3.52362 1.9007 3.03473C2.16216 2.54584 2.54584 2.16216 3.03473 1.9007C3.52362 1.63924 4.00855 1.5 5.34583 1.5H12.6542ZM13.0771 3H4.92291C4.25427 3 4.01181 3.06962 3.76737 3.20035C3.52292 3.33108 3.33108 3.52292 3.20035 3.76737C3.06962 4.01181 3 4.25427 3 4.92291V13.0771C3 13.7457 3.06962 13.9882 3.20035 14.2326C3.33108 14.4771 3.52292 14.6689 3.76737 14.7997C4.01181 14.9304 4.25427 15 4.92291 15H13.0771C13.7457 15 13.9882 14.9304 14.2326 14.7997C14.4771 14.6689 14.6689 14.4771 14.7997 14.2326C14.9304 13.9882 15 13.7457 15 13.0771V4.92291C15 4.25427 14.9304 4.01181 14.7997 3.76737C14.6689 3.52292 14.4771 3.33108 14.2326 3.20035C13.9882 3.06962 13.7457 3 13.0771 3Z",
|
|
487
|
+
"fill": "#8C8C8C"
|
|
488
|
+
}],
|
|
489
|
+
"circles": []
|
|
490
|
+
},
|
|
491
|
+
"CheckboxOff": {
|
|
492
|
+
"width": "24",
|
|
493
|
+
"height": "24",
|
|
494
|
+
"viewBox": "0 0 24 24",
|
|
495
|
+
"fill": "none",
|
|
496
|
+
"paths": [{
|
|
497
|
+
"d": "M16.8722 2C18.6553 2 19.3018 2.18565 19.9537 2.53427C20.6055 2.88288 21.1171 3.39446 21.4657 4.04631C21.8143 4.69816 22 5.34473 22 7.12777V16.8722C22 18.6553 21.8143 19.3018 21.4657 19.9537C21.1171 20.6055 20.6055 21.1171 19.9537 21.4657C19.3018 21.8143 18.6553 22 16.8722 22H7.12777C5.34473 22 4.69816 21.8143 4.04631 21.4657C3.39446 21.1171 2.88288 20.6055 2.53427 19.9537C2.18565 19.3018 2 18.6553 2 16.8722V7.12777C2 5.34473 2.18565 4.69816 2.53427 4.04631C2.88288 3.39446 3.39446 2.88288 4.04631 2.53427C4.69816 2.18565 5.34473 2 7.12777 2H16.8722ZM17.4361 4H6.56389C5.67237 4 5.34908 4.09283 5.02315 4.26713C4.69723 4.44144 4.44144 4.69723 4.26713 5.02315C4.09283 5.34908 4 5.67237 4 6.56389V17.4361C4 18.3276 4.09283 18.6509 4.26713 18.9768C4.44144 19.3028 4.69723 19.5586 5.02315 19.7329C5.34908 19.9072 5.67237 20 6.56389 20H17.4361C18.3276 20 18.6509 19.9072 18.9768 19.7329C19.3028 19.5586 19.5586 19.3028 19.7329 18.9768C19.9072 18.6509 20 18.3276 20 17.4361V6.56389C20 5.67237 19.9072 5.34908 19.7329 5.02315C19.5586 4.69723 19.3028 4.44144 18.9768 4.26713C18.6509 4.09283 18.3276 4 17.4361 4Z",
|
|
498
|
+
"fill": "#8C8C8C"
|
|
499
|
+
}],
|
|
500
|
+
"circles": []
|
|
501
|
+
},
|
|
502
|
+
"CheckboxOnThin": {
|
|
503
|
+
"width": "18",
|
|
504
|
+
"height": "18",
|
|
505
|
+
"viewBox": "0 0 18 18",
|
|
506
|
+
"fill": "none",
|
|
507
|
+
"paths": [{
|
|
508
|
+
"d": "M1.82698 3.13803C1.5 3.77976 1.5 4.61984 1.5 6.3V11.7C1.5 13.3802 1.5 14.2202 1.82698 14.862C2.1146 15.4265 2.57354 15.8854 3.13803 16.173C3.77976 16.5 4.61984 16.5 6.3 16.5H11.7C13.3802 16.5 14.2202 16.5 14.862 16.173C15.4265 15.8854 15.8854 15.4265 16.173 14.862C16.5 14.2202 16.5 13.3802 16.5 11.7V6.3C16.5 4.61984 16.5 3.77976 16.173 3.13803C15.8854 2.57354 15.4265 2.1146 14.862 1.82698C14.2202 1.5 13.3802 1.5 11.7 1.5H6.3C4.61984 1.5 3.77976 1.5 3.13803 1.82698C2.57354 2.1146 2.1146 2.57354 1.82698 3.13803ZM13.6553 6.90533C13.9482 6.61244 13.9482 6.13756 13.6553 5.84467C13.3624 5.55178 12.8876 5.55178 12.5947 5.84467L7.5 10.9393L5.40533 8.84467C5.11244 8.55178 4.63756 8.55178 4.34467 8.84467C4.05178 9.13756 4.05178 9.61244 4.34467 9.90533L6.96967 12.5303C7.26256 12.8232 7.73744 12.8232 8.03033 12.5303L13.6553 6.90533Z",
|
|
509
|
+
"fill": "#8C8C8C",
|
|
510
|
+
"fillRule": "evenodd",
|
|
511
|
+
"clipRule": "evenodd"
|
|
512
|
+
}],
|
|
513
|
+
"circles": []
|
|
514
|
+
},
|
|
515
|
+
"CheckboxOn": {
|
|
516
|
+
"width": "24",
|
|
517
|
+
"height": "24",
|
|
518
|
+
"viewBox": "0 0 24 24",
|
|
519
|
+
"fill": "none",
|
|
520
|
+
"paths": [{
|
|
521
|
+
"d": "M2.43597 4.18404C2 5.03969 2 6.15979 2 8.4V15.6C2 17.8402 2 18.9603 2.43597 19.816C2.81947 20.5686 3.43139 21.1805 4.18404 21.564C5.03969 22 6.15979 22 8.4 22H15.6C17.8402 22 18.9603 22 19.816 21.564C20.5686 21.1805 21.1805 20.5686 21.564 19.816C22 18.9603 22 17.8402 22 15.6V8.4C22 6.15979 22 5.03969 21.564 4.18404C21.1805 3.43139 20.5686 2.81947 19.816 2.43597C18.9603 2 17.8402 2 15.6 2H8.4C6.15979 2 5.03969 2 4.18404 2.43597C3.43139 2.81947 2.81947 3.43139 2.43597 4.18404ZM18.2071 9.20711C18.5976 8.81658 18.5976 8.18342 18.2071 7.79289C17.8166 7.40237 17.1834 7.40237 16.7929 7.79289L10 14.5858L7.20711 11.7929C6.81658 11.4024 6.18342 11.4024 5.79289 11.7929C5.40237 12.1834 5.40237 12.8166 5.79289 13.2071L9.29289 16.7071C9.68342 17.0976 10.3166 17.0976 10.7071 16.7071L18.2071 9.20711Z",
|
|
522
|
+
"fill": "#8C8C8C",
|
|
523
|
+
"fillRule": "evenodd",
|
|
524
|
+
"clipRule": "evenodd"
|
|
525
|
+
}],
|
|
526
|
+
"circles": []
|
|
527
|
+
},
|
|
528
|
+
"ChevronDownThin": {
|
|
529
|
+
"width": "18",
|
|
530
|
+
"height": "18",
|
|
531
|
+
"viewBox": "0 0 18 18",
|
|
532
|
+
"fill": "none",
|
|
533
|
+
"paths": [{
|
|
534
|
+
"d": "M4.5 6.75L9 11.25L13.5 6.75",
|
|
535
|
+
"stroke": "#8C8C8C",
|
|
536
|
+
"strokeWidth": "1.5",
|
|
537
|
+
"strokeLinecap": "round",
|
|
538
|
+
"strokeLinejoin": "round"
|
|
539
|
+
}],
|
|
540
|
+
"circles": []
|
|
541
|
+
},
|
|
542
|
+
"ChevronDown": {
|
|
543
|
+
"width": "24",
|
|
544
|
+
"height": "24",
|
|
545
|
+
"viewBox": "0 0 24 24",
|
|
546
|
+
"fill": "none",
|
|
547
|
+
"paths": [{
|
|
548
|
+
"d": "M6 9L12 15L18 9",
|
|
549
|
+
"stroke": "#8C8C8C",
|
|
550
|
+
"strokeWidth": "2",
|
|
551
|
+
"strokeLinecap": "round",
|
|
552
|
+
"strokeLinejoin": "round"
|
|
553
|
+
}],
|
|
554
|
+
"circles": []
|
|
555
|
+
},
|
|
556
|
+
"ChevronLeftDoubleThin": {
|
|
557
|
+
"width": "16",
|
|
558
|
+
"height": "16",
|
|
559
|
+
"viewBox": "0 0 16 16",
|
|
560
|
+
"fill": "none",
|
|
561
|
+
"paths": [{
|
|
562
|
+
"d": "M12 11.3332L8.66667 7.99984L12 4.6665M7.33333 11.3332L4 7.99984L7.33333 4.6665",
|
|
563
|
+
"stroke": "#8C8C8C",
|
|
564
|
+
"strokeWidth": "1.5",
|
|
565
|
+
"strokeLinecap": "round",
|
|
566
|
+
"strokeLinejoin": "round"
|
|
567
|
+
}],
|
|
568
|
+
"circles": []
|
|
569
|
+
},
|
|
570
|
+
"ChevronLeftThin": {
|
|
571
|
+
"width": "18",
|
|
572
|
+
"height": "18",
|
|
573
|
+
"viewBox": "0 0 18 18",
|
|
574
|
+
"fill": "none",
|
|
575
|
+
"paths": [{
|
|
576
|
+
"d": "M11.25 13.5L6.75 9L11.25 4.5",
|
|
577
|
+
"stroke": "#8C8C8C",
|
|
578
|
+
"strokeWidth": "1.5",
|
|
579
|
+
"strokeLinecap": "round",
|
|
580
|
+
"strokeLinejoin": "round"
|
|
581
|
+
}],
|
|
582
|
+
"circles": []
|
|
583
|
+
},
|
|
584
|
+
"ChevronLeft": {
|
|
585
|
+
"width": "24",
|
|
586
|
+
"height": "24",
|
|
587
|
+
"viewBox": "0 0 24 24",
|
|
588
|
+
"fill": "none",
|
|
589
|
+
"paths": [{
|
|
590
|
+
"d": "M15 18L9 12L15 6",
|
|
591
|
+
"stroke": "#8C8C8C",
|
|
592
|
+
"strokeWidth": "2",
|
|
593
|
+
"strokeLinecap": "round",
|
|
594
|
+
"strokeLinejoin": "round"
|
|
595
|
+
}],
|
|
596
|
+
"circles": []
|
|
597
|
+
},
|
|
598
|
+
"ChevronRightDoubleThin": {
|
|
599
|
+
"width": "16",
|
|
600
|
+
"height": "16",
|
|
601
|
+
"viewBox": "0 0 16 16",
|
|
602
|
+
"fill": "none",
|
|
603
|
+
"paths": [{
|
|
604
|
+
"d": "M4 11.3332L7.33333 7.99984L4 4.6665M8.66667 11.3332L12 7.99984L8.66667 4.6665",
|
|
605
|
+
"stroke": "#8C8C8C",
|
|
606
|
+
"strokeWidth": "1.5",
|
|
607
|
+
"strokeLinecap": "round",
|
|
608
|
+
"strokeLinejoin": "round"
|
|
609
|
+
}],
|
|
610
|
+
"circles": []
|
|
611
|
+
},
|
|
612
|
+
"ChevronRightThin": {
|
|
613
|
+
"width": "18",
|
|
614
|
+
"height": "18",
|
|
615
|
+
"viewBox": "0 0 18 18",
|
|
616
|
+
"fill": "none",
|
|
617
|
+
"paths": [{
|
|
618
|
+
"d": "M6.75 13.5L11.25 9L6.75 4.5",
|
|
619
|
+
"stroke": "#8C8C8C",
|
|
620
|
+
"strokeWidth": "1.5",
|
|
621
|
+
"strokeLinecap": "round",
|
|
622
|
+
"strokeLinejoin": "round"
|
|
623
|
+
}],
|
|
624
|
+
"circles": []
|
|
625
|
+
},
|
|
626
|
+
"ChevronRight": {
|
|
627
|
+
"width": "24",
|
|
628
|
+
"height": "24",
|
|
629
|
+
"viewBox": "0 0 24 24",
|
|
630
|
+
"fill": "none",
|
|
631
|
+
"paths": [{
|
|
632
|
+
"d": "M9 18L15 12L9 6",
|
|
633
|
+
"stroke": "#8C8C8C",
|
|
634
|
+
"strokeWidth": "2",
|
|
635
|
+
"strokeLinecap": "round",
|
|
636
|
+
"strokeLinejoin": "round"
|
|
637
|
+
}],
|
|
638
|
+
"circles": []
|
|
639
|
+
},
|
|
640
|
+
"ChevronSelectorVerticalThin": {
|
|
641
|
+
"width": "18",
|
|
642
|
+
"height": "18",
|
|
643
|
+
"viewBox": "0 0 18 18",
|
|
644
|
+
"fill": "none",
|
|
645
|
+
"paths": [{
|
|
646
|
+
"d": "M5.25 11.25L9 15L12.75 11.25M5.25 6.75L9 3L12.75 6.75",
|
|
647
|
+
"stroke": "#8C8C8C",
|
|
648
|
+
"strokeWidth": "1.5",
|
|
649
|
+
"strokeLinecap": "round",
|
|
650
|
+
"strokeLinejoin": "round"
|
|
651
|
+
}],
|
|
652
|
+
"circles": []
|
|
653
|
+
},
|
|
654
|
+
"ChevronSelectorVertical": {
|
|
655
|
+
"width": "24",
|
|
656
|
+
"height": "24",
|
|
657
|
+
"viewBox": "0 0 24 24",
|
|
658
|
+
"fill": "none",
|
|
659
|
+
"paths": [{
|
|
660
|
+
"d": "M7 15L12 20L17 15M7 9L12 4L17 9",
|
|
661
|
+
"stroke": "#8C8C8C",
|
|
662
|
+
"strokeWidth": "2",
|
|
663
|
+
"strokeLinecap": "round",
|
|
664
|
+
"strokeLinejoin": "round"
|
|
665
|
+
}],
|
|
666
|
+
"circles": []
|
|
667
|
+
},
|
|
668
|
+
"ChevronUpThin": {
|
|
669
|
+
"width": "18",
|
|
670
|
+
"height": "18",
|
|
671
|
+
"viewBox": "0 0 18 18",
|
|
672
|
+
"fill": "none",
|
|
673
|
+
"paths": [{
|
|
674
|
+
"d": "M13.5 11.25L9 6.75L4.5 11.25",
|
|
675
|
+
"stroke": "#8C8C8C",
|
|
676
|
+
"strokeWidth": "1.5",
|
|
677
|
+
"strokeLinecap": "round",
|
|
678
|
+
"strokeLinejoin": "round"
|
|
679
|
+
}],
|
|
680
|
+
"circles": []
|
|
681
|
+
},
|
|
682
|
+
"ChevronUp": {
|
|
683
|
+
"width": "24",
|
|
684
|
+
"height": "24",
|
|
685
|
+
"viewBox": "0 0 24 24",
|
|
686
|
+
"fill": "none",
|
|
687
|
+
"paths": [{
|
|
688
|
+
"d": "M18 15L12 9L6 15",
|
|
689
|
+
"stroke": "#8C8C8C",
|
|
690
|
+
"strokeWidth": "2",
|
|
691
|
+
"strokeLinecap": "round",
|
|
692
|
+
"strokeLinejoin": "round"
|
|
693
|
+
}],
|
|
694
|
+
"circles": []
|
|
695
|
+
},
|
|
696
|
+
"ClipboardCheckThin": {
|
|
697
|
+
"width": "18",
|
|
698
|
+
"height": "18",
|
|
699
|
+
"viewBox": "0 0 18 18",
|
|
700
|
+
"fill": "none",
|
|
701
|
+
"paths": [{
|
|
702
|
+
"d": "M12 3C12.6975 3 13.0462 3 13.3323 3.07667C14.1088 3.28472 14.7153 3.8912 14.9233 4.66766C15 4.95378 15 5.30252 15 6V12.9C15 14.1601 15 14.7902 14.7548 15.2715C14.539 15.6948 14.1948 16.039 13.7715 16.2548C13.2902 16.5 12.6601 16.5 11.4 16.5H6.6C5.33988 16.5 4.70982 16.5 4.22852 16.2548C3.80516 16.039 3.46095 15.6948 3.24524 15.2715C3 14.7902 3 14.1601 3 12.9V6C3 5.30252 3 4.95378 3.07667 4.66766C3.28472 3.8912 3.8912 3.28472 4.66766 3.07667C4.95378 3 5.30252 3 6 3M6.75 11.25L8.25 12.75L11.625 9.375M7.2 4.5H10.8C11.22 4.5 11.4301 4.5 11.5905 4.41826C11.7316 4.34635 11.8463 4.23161 11.9183 4.09049C12 3.93006 12 3.72004 12 3.3V2.7C12 2.27996 12 2.06994 11.9183 1.90951C11.8463 1.76839 11.7316 1.65365 11.5905 1.58175C11.4301 1.5 11.22 1.5 10.8 1.5H7.2C6.77996 1.5 6.56994 1.5 6.40951 1.58175C6.26839 1.65365 6.15365 1.76839 6.08175 1.90951C6 2.06994 6 2.27996 6 2.7V3.3C6 3.72004 6 3.93006 6.08175 4.09049C6.15365 4.23161 6.26839 4.34635 6.40951 4.41826C6.56994 4.5 6.77996 4.5 7.2 4.5Z",
|
|
703
|
+
"stroke": "#8C8C8C",
|
|
704
|
+
"strokeWidth": "1.5",
|
|
705
|
+
"strokeLinecap": "round",
|
|
706
|
+
"strokeLinejoin": "round"
|
|
707
|
+
}],
|
|
708
|
+
"circles": []
|
|
709
|
+
},
|
|
710
|
+
"ClipboardCheck": {
|
|
711
|
+
"width": "24",
|
|
712
|
+
"height": "24",
|
|
713
|
+
"viewBox": "0 0 24 24",
|
|
714
|
+
"fill": "none",
|
|
715
|
+
"paths": [{
|
|
716
|
+
"d": "M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M9 15L11 17L15.5 12.5M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z",
|
|
717
|
+
"stroke": "#BDBDBD",
|
|
718
|
+
"strokeWidth": "2",
|
|
719
|
+
"strokeLinecap": "round",
|
|
720
|
+
"strokeLinejoin": "round"
|
|
721
|
+
}],
|
|
722
|
+
"circles": []
|
|
723
|
+
},
|
|
724
|
+
"ClipboardPlusThin": {
|
|
725
|
+
"width": "18",
|
|
726
|
+
"height": "18",
|
|
727
|
+
"viewBox": "0 0 18 18",
|
|
728
|
+
"fill": "none",
|
|
729
|
+
"paths": [{
|
|
730
|
+
"d": "M12 3C12.6975 3 13.0462 3 13.3323 3.07667C14.1088 3.28472 14.7153 3.8912 14.9233 4.66766C15 4.95378 15 5.30252 15 6V12.9C15 14.1601 15 14.7902 14.7548 15.2715C14.539 15.6948 14.1948 16.039 13.7715 16.2548C13.2902 16.5 12.6601 16.5 11.4 16.5H6.6C5.33988 16.5 4.70982 16.5 4.22852 16.2548C3.80516 16.039 3.46095 15.6948 3.24524 15.2715C3 14.7902 3 14.1601 3 12.9V6C3 5.30252 3 4.95378 3.07667 4.66766C3.28472 3.8912 3.8912 3.28472 4.66766 3.07667C4.95378 3 5.30252 3 6 3M9 12.75V8.25M6.75 10.5H11.25M7.2 4.5H10.8C11.22 4.5 11.4301 4.5 11.5905 4.41826C11.7316 4.34635 11.8463 4.23161 11.9183 4.09049C12 3.93006 12 3.72004 12 3.3V2.7C12 2.27996 12 2.06994 11.9183 1.90951C11.8463 1.76839 11.7316 1.65365 11.5905 1.58175C11.4301 1.5 11.22 1.5 10.8 1.5H7.2C6.77996 1.5 6.56994 1.5 6.40951 1.58175C6.26839 1.65365 6.15365 1.76839 6.08175 1.90951C6 2.06994 6 2.27996 6 2.7V3.3C6 3.72004 6 3.93006 6.08175 4.09049C6.15365 4.23161 6.26839 4.34635 6.40951 4.41826C6.56994 4.5 6.77996 4.5 7.2 4.5Z",
|
|
731
|
+
"stroke": "#8C8C8C",
|
|
732
|
+
"strokeWidth": "1.5",
|
|
733
|
+
"strokeLinecap": "round",
|
|
734
|
+
"strokeLinejoin": "round"
|
|
735
|
+
}],
|
|
736
|
+
"circles": []
|
|
737
|
+
},
|
|
738
|
+
"ClipboardPlus": {
|
|
739
|
+
"width": "24",
|
|
740
|
+
"height": "24",
|
|
741
|
+
"viewBox": "0 0 24 24",
|
|
742
|
+
"fill": "none",
|
|
743
|
+
"paths": [{
|
|
744
|
+
"d": "M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M12 17V11M9 14H15M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z",
|
|
745
|
+
"stroke": "#BDBDBD",
|
|
746
|
+
"strokeWidth": "2",
|
|
747
|
+
"strokeLinecap": "round",
|
|
748
|
+
"strokeLinejoin": "round"
|
|
749
|
+
}],
|
|
750
|
+
"circles": []
|
|
751
|
+
},
|
|
752
|
+
"ClipboardThin": {
|
|
753
|
+
"width": "18",
|
|
754
|
+
"height": "18",
|
|
755
|
+
"viewBox": "0 0 18 18",
|
|
756
|
+
"fill": "none",
|
|
757
|
+
"paths": [{
|
|
758
|
+
"d": "M12 3C12.6975 3 13.0462 3 13.3323 3.07667C14.1088 3.28472 14.7153 3.8912 14.9233 4.66766C15 4.95378 15 5.30252 15 6V12.9C15 14.1601 15 14.7902 14.7548 15.2715C14.539 15.6948 14.1948 16.039 13.7715 16.2548C13.2902 16.5 12.6601 16.5 11.4 16.5H6.6C5.33988 16.5 4.70982 16.5 4.22852 16.2548C3.80516 16.039 3.46095 15.6948 3.24524 15.2715C3 14.7902 3 14.1601 3 12.9V6C3 5.30252 3 4.95378 3.07667 4.66766C3.28472 3.8912 3.8912 3.28472 4.66766 3.07667C4.95378 3 5.30252 3 6 3M7.2 4.5H10.8C11.22 4.5 11.4301 4.5 11.5905 4.41826C11.7316 4.34635 11.8463 4.23161 11.9183 4.09049C12 3.93006 12 3.72004 12 3.3V2.7C12 2.27996 12 2.06994 11.9183 1.90951C11.8463 1.76839 11.7316 1.65365 11.5905 1.58175C11.4301 1.5 11.22 1.5 10.8 1.5H7.2C6.77996 1.5 6.56994 1.5 6.40951 1.58175C6.26839 1.65365 6.15365 1.76839 6.08175 1.90951C6 2.06994 6 2.27996 6 2.7V3.3C6 3.72004 6 3.93006 6.08175 4.09049C6.15365 4.23161 6.26839 4.34635 6.40951 4.41826C6.56994 4.5 6.77996 4.5 7.2 4.5Z",
|
|
759
|
+
"stroke": "#8C8C8C",
|
|
760
|
+
"strokeWidth": "1.5",
|
|
761
|
+
"strokeLinecap": "round",
|
|
762
|
+
"strokeLinejoin": "round"
|
|
763
|
+
}],
|
|
764
|
+
"circles": []
|
|
765
|
+
},
|
|
766
|
+
"Clipboard": {
|
|
767
|
+
"width": "24",
|
|
768
|
+
"height": "24",
|
|
769
|
+
"viewBox": "0 0 24 24",
|
|
770
|
+
"fill": "none",
|
|
771
|
+
"paths": [{
|
|
772
|
+
"d": "M16 4C16.93 4 17.395 4 17.7765 4.10222C18.8117 4.37962 19.6204 5.18827 19.8978 6.22354C20 6.60504 20 7.07003 20 8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V8C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4M9.6 6H14.4C14.9601 6 15.2401 6 15.454 5.89101C15.6422 5.79513 15.7951 5.64215 15.891 5.45399C16 5.24008 16 4.96005 16 4.4V3.6C16 3.03995 16 2.75992 15.891 2.54601C15.7951 2.35785 15.6422 2.20487 15.454 2.10899C15.2401 2 14.9601 2 14.4 2H9.6C9.03995 2 8.75992 2 8.54601 2.10899C8.35785 2.20487 8.20487 2.35785 8.10899 2.54601C8 2.75992 8 3.03995 8 3.6V4.4C8 4.96005 8 5.24008 8.10899 5.45399C8.20487 5.64215 8.35785 5.79513 8.54601 5.89101C8.75992 6 9.03995 6 9.6 6Z",
|
|
773
|
+
"stroke": "#BDBDBD",
|
|
774
|
+
"strokeWidth": "2",
|
|
775
|
+
"strokeLinecap": "round",
|
|
776
|
+
"strokeLinejoin": "round"
|
|
777
|
+
}],
|
|
778
|
+
"circles": []
|
|
779
|
+
},
|
|
780
|
+
"CodeSnippet02": {
|
|
781
|
+
"width": "24",
|
|
782
|
+
"height": "24",
|
|
783
|
+
"viewBox": "0 0 24 24",
|
|
784
|
+
"fill": "none",
|
|
785
|
+
"paths": [{
|
|
786
|
+
"d": "M17 17L22 12L17 7M7 7L2 12L7 17M14 3L10 21",
|
|
787
|
+
"stroke": "#8C8C8C",
|
|
788
|
+
"strokeWidth": "2",
|
|
789
|
+
"strokeLinecap": "round",
|
|
790
|
+
"strokeLinejoin": "round"
|
|
791
|
+
}],
|
|
792
|
+
"circles": []
|
|
793
|
+
},
|
|
794
|
+
"Copy03Thin": {
|
|
795
|
+
"width": "18",
|
|
796
|
+
"height": "18",
|
|
797
|
+
"viewBox": "0 0 18 18",
|
|
798
|
+
"fill": "none",
|
|
799
|
+
"paths": [{
|
|
800
|
+
"d": "M6 6V3.9C6 3.05992 6 2.63988 6.16349 2.31901C6.3073 2.03677 6.53677 1.8073 6.81901 1.66349C7.13988 1.5 7.55992 1.5 8.4 1.5H14.1C14.9401 1.5 15.3601 1.5 15.681 1.66349C15.9632 1.8073 16.1927 2.03677 16.3365 2.31901C16.5 2.63988 16.5 3.05992 16.5 3.9V9.6C16.5 10.4401 16.5 10.8601 16.3365 11.181C16.1927 11.4632 15.9632 11.6927 15.681 11.8365C15.3601 12 14.9401 12 14.1 12H12M3.9 16.5H9.6C10.4401 16.5 10.8601 16.5 11.181 16.3365C11.4632 16.1927 11.6927 15.9632 11.8365 15.681C12 15.3601 12 14.9401 12 14.1V8.4C12 7.55992 12 7.13988 11.8365 6.81901C11.6927 6.53677 11.4632 6.3073 11.181 6.16349C10.8601 6 10.4401 6 9.6 6H3.9C3.05992 6 2.63988 6 2.31901 6.16349C2.03677 6.3073 1.8073 6.53677 1.66349 6.81901C1.5 7.13988 1.5 7.55992 1.5 8.4V14.1C1.5 14.9401 1.5 15.3601 1.66349 15.681C1.8073 15.9632 2.03677 16.1927 2.31901 16.3365C2.63988 16.5 3.05992 16.5 3.9 16.5Z",
|
|
801
|
+
"stroke": "black",
|
|
802
|
+
"strokeWidth": "1.5",
|
|
803
|
+
"strokeLinecap": "round",
|
|
804
|
+
"strokeLinejoin": "round"
|
|
805
|
+
}],
|
|
806
|
+
"circles": []
|
|
807
|
+
},
|
|
808
|
+
"Copy03": {
|
|
809
|
+
"width": "24",
|
|
810
|
+
"height": "24",
|
|
811
|
+
"viewBox": "0 0 24 24",
|
|
812
|
+
"fill": "none",
|
|
813
|
+
"paths": [{
|
|
814
|
+
"d": "M8 8V5.2C8 4.0799 8 3.51984 8.21799 3.09202C8.40973 2.71569 8.71569 2.40973 9.09202 2.21799C9.51984 2 10.0799 2 11.2 2H18.8C19.9201 2 20.4802 2 20.908 2.21799C21.2843 2.40973 21.5903 2.71569 21.782 3.09202C22 3.51984 22 4.0799 22 5.2V12.8C22 13.9201 22 14.4802 21.782 14.908C21.5903 15.2843 21.2843 15.5903 20.908 15.782C20.4802 16 19.9201 16 18.8 16H16M5.2 22H12.8C13.9201 22 14.4802 22 14.908 21.782C15.2843 21.5903 15.5903 21.2843 15.782 20.908C16 20.4802 16 19.9201 16 18.8V11.2C16 10.0799 16 9.51984 15.782 9.09202C15.5903 8.71569 15.2843 8.40973 14.908 8.21799C14.4802 8 13.9201 8 12.8 8H5.2C4.0799 8 3.51984 8 3.09202 8.21799C2.71569 8.40973 2.40973 8.71569 2.21799 9.09202C2 9.51984 2 10.0799 2 11.2V18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.07989 22 5.2 22Z",
|
|
815
|
+
"stroke": "#8C8C8C",
|
|
816
|
+
"strokeWidth": "2",
|
|
817
|
+
"strokeLinecap": "round",
|
|
818
|
+
"strokeLinejoin": "round"
|
|
819
|
+
}],
|
|
820
|
+
"circles": []
|
|
821
|
+
},
|
|
822
|
+
"CornerDownRightThin": {
|
|
823
|
+
"width": "18",
|
|
824
|
+
"height": "18",
|
|
825
|
+
"viewBox": "0 0 18 18",
|
|
826
|
+
"fill": "none",
|
|
827
|
+
"paths": [{
|
|
828
|
+
"d": "M3 3V4.05C3 6.57024 3 7.83035 3.49047 8.79296C3.9219 9.63969 4.61031 10.3281 5.45704 10.7595C6.41965 11.25 7.67976 11.25 10.2 11.25H15M15 11.25L11.25 7.5M15 11.25L11.25 15",
|
|
829
|
+
"stroke": "#8C8C8C",
|
|
830
|
+
"strokeWidth": "1.5",
|
|
831
|
+
"strokeLinecap": "round",
|
|
832
|
+
"strokeLinejoin": "round"
|
|
833
|
+
}],
|
|
834
|
+
"circles": []
|
|
835
|
+
},
|
|
836
|
+
"CornerDownRight": {
|
|
837
|
+
"width": "24",
|
|
838
|
+
"height": "24",
|
|
839
|
+
"viewBox": "0 0 24 24",
|
|
840
|
+
"fill": "none",
|
|
841
|
+
"paths": [{
|
|
842
|
+
"d": "M4 4V5.4C4 8.76031 4 10.4405 4.65396 11.7239C5.2292 12.8529 6.14708 13.7708 7.27606 14.346C8.55953 15 10.2397 15 13.6 15H20M20 15L15 10M20 15L15 20",
|
|
843
|
+
"stroke": "#8C8C8C",
|
|
844
|
+
"strokeWidth": "2",
|
|
845
|
+
"strokeLinecap": "round",
|
|
846
|
+
"strokeLinejoin": "round"
|
|
847
|
+
}],
|
|
848
|
+
"circles": []
|
|
849
|
+
},
|
|
850
|
+
"CornerUpLeft": {
|
|
851
|
+
"width": "18",
|
|
852
|
+
"height": "18",
|
|
853
|
+
"viewBox": "0 0 18 18",
|
|
854
|
+
"fill": "none",
|
|
855
|
+
"paths": [{
|
|
856
|
+
"d": "M6.75 10.5L3 6.75M3 6.75L6.75 3M3 6.75H7.8C10.3202 6.75 11.5804 6.75 12.543 7.24047C13.3897 7.6719 14.0781 8.36031 14.5095 9.20704C15 10.1696 15 11.4298 15 13.95V15",
|
|
857
|
+
"stroke": "#8C8C8C",
|
|
858
|
+
"strokeWidth": "2",
|
|
859
|
+
"strokeLinecap": "round",
|
|
860
|
+
"strokeLinejoin": "round"
|
|
861
|
+
}],
|
|
862
|
+
"circles": []
|
|
863
|
+
},
|
|
864
|
+
"CornerUpRight": {
|
|
865
|
+
"width": "18",
|
|
866
|
+
"height": "18",
|
|
867
|
+
"viewBox": "0 0 18 18",
|
|
868
|
+
"fill": "none",
|
|
869
|
+
"paths": [{
|
|
870
|
+
"d": "M3 15V13.95C3 11.4298 3 10.1696 3.49047 9.20704C3.9219 8.36031 4.61031 7.6719 5.45704 7.24047C6.41965 6.75 7.67976 6.75 10.2 6.75H15M15 6.75L11.25 10.5M15 6.75L11.25 3",
|
|
871
|
+
"stroke": "#8C8C8C",
|
|
872
|
+
"strokeWidth": "2",
|
|
873
|
+
"strokeLinecap": "round",
|
|
874
|
+
"strokeLinejoin": "round"
|
|
875
|
+
}],
|
|
876
|
+
"circles": []
|
|
877
|
+
},
|
|
878
|
+
"CurrencyDollar": {
|
|
879
|
+
"width": "24",
|
|
880
|
+
"height": "24",
|
|
881
|
+
"viewBox": "0 0 24 24",
|
|
882
|
+
"fill": "none",
|
|
883
|
+
"paths": [{
|
|
884
|
+
"d": "M6 16C6 18.2091 7.79086 20 10 20H14C16.2091 20 18 18.2091 18 16C18 13.7909 16.2091 12 14 12H10C7.79086 12 6 10.2091 6 8C6 5.79086 7.79086 4 10 4H14C16.2091 4 18 5.79086 18 8M12 2V22",
|
|
885
|
+
"stroke": "#8C8C8C",
|
|
886
|
+
"strokeWidth": "2",
|
|
887
|
+
"strokeLinecap": "round",
|
|
888
|
+
"strokeLinejoin": "round"
|
|
889
|
+
}],
|
|
890
|
+
"circles": []
|
|
891
|
+
},
|
|
892
|
+
"Cursor04": {
|
|
893
|
+
"width": "18",
|
|
894
|
+
"height": "18",
|
|
895
|
+
"viewBox": "0 0 18 18",
|
|
896
|
+
"fill": "none",
|
|
897
|
+
"paths": [{
|
|
898
|
+
"d": "M3.3052 2.56028C2.96151 2.45919 2.78966 2.40865 2.67266 2.45227C2.5707 2.49028 2.49028 2.5707 2.45227 2.67266C2.40865 2.78966 2.45919 2.96151 2.56028 3.3052L5.7147 14.0302C5.80864 14.3496 5.85561 14.5093 5.9504 14.5834C6.03312 14.6481 6.13917 14.6752 6.24277 14.658C6.36149 14.6383 6.47919 14.5206 6.71459 14.2852L8.9999 11.9999L12.3256 15.3256C12.4741 15.4741 12.5484 15.5484 12.634 15.5762C12.7093 15.6007 12.7905 15.6007 12.8658 15.5762C12.9514 15.5484 13.0257 15.4741 13.1742 15.3256L15.3256 13.1742C15.4741 13.0257 15.5484 12.9514 15.5762 12.8658C15.6007 12.7905 15.6007 12.7093 15.5762 12.634C15.5484 12.5484 15.4741 12.4741 15.3256 12.3256L11.9999 8.9999L14.2852 6.71459C14.5206 6.47919 14.6383 6.36149 14.658 6.24277C14.6752 6.13917 14.6481 6.03312 14.5834 5.9504C14.5093 5.85561 14.3496 5.80864 14.0302 5.7147L3.3052 2.56028Z",
|
|
899
|
+
"stroke": "#8C8C8C",
|
|
900
|
+
"strokeWidth": "2",
|
|
901
|
+
"strokeLinecap": "round",
|
|
902
|
+
"strokeLinejoin": "round"
|
|
903
|
+
}],
|
|
904
|
+
"circles": []
|
|
905
|
+
},
|
|
906
|
+
"CursorBox": {
|
|
907
|
+
"width": "18",
|
|
908
|
+
"height": "18",
|
|
909
|
+
"viewBox": "0 0 18 18",
|
|
910
|
+
"fill": "none",
|
|
911
|
+
"paths": [{
|
|
912
|
+
"d": "M15.75 7.125V5.85C15.75 4.58988 15.75 3.95982 15.5048 3.47852C15.2891 3.05516 14.9448 2.71095 14.5215 2.49524C14.0402 2.25 13.4101 2.25 12.15 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V12.15C2.25 13.4101 2.25 14.0402 2.49524 14.5215C2.71095 14.9448 3.05516 15.289 3.47852 15.5048C3.95982 15.75 4.58988 15.75 5.85 15.75H7.125M13.0397 13.2835L11.7659 15.649C11.5577 16.0356 11.4536 16.2289 11.3268 16.2794C11.2166 16.3232 11.0922 16.3123 10.9913 16.2501C10.8751 16.1784 10.8061 15.97 10.6681 15.5531L8.6253 9.38348C8.50442 9.01841 8.44398 8.83588 8.48744 8.71432C8.52526 8.60853 8.60853 8.52526 8.71432 8.48744C8.83588 8.44399 9.01841 8.50442 9.38348 8.6253L15.5531 10.6681C15.97 10.8061 16.1784 10.8751 16.2501 10.9913C16.3123 11.0922 16.3232 11.2166 16.2794 11.3268C16.2289 11.4536 16.0356 11.5577 15.6489 11.7659L13.2835 13.0397C13.2246 13.0714 13.1951 13.0872 13.1693 13.1076C13.1464 13.1257 13.1257 13.1464 13.1076 13.1693C13.0872 13.1951 13.0714 13.2246 13.0397 13.2835Z",
|
|
913
|
+
"stroke": "#8C8C8C",
|
|
914
|
+
"strokeWidth": "2",
|
|
915
|
+
"strokeLinecap": "round",
|
|
916
|
+
"strokeLinejoin": "round"
|
|
917
|
+
}],
|
|
918
|
+
"circles": []
|
|
919
|
+
},
|
|
920
|
+
"Database01Thin": {
|
|
921
|
+
"width": "18",
|
|
922
|
+
"height": "18",
|
|
923
|
+
"viewBox": "0 0 18 18",
|
|
924
|
+
"fill": "none",
|
|
925
|
+
"paths": [{
|
|
926
|
+
"d": "M15.75 3.75C15.75 4.99264 12.7279 6 9 6C5.27208 6 2.25 4.99264 2.25 3.75M15.75 3.75C15.75 2.50736 12.7279 1.5 9 1.5C5.27208 1.5 2.25 2.50736 2.25 3.75M15.75 3.75V14.25C15.75 15.495 12.75 16.5 9 16.5C5.25 16.5 2.25 15.495 2.25 14.25V3.75M15.75 9C15.75 10.245 12.75 11.25 9 11.25C5.25 11.25 2.25 10.245 2.25 9",
|
|
927
|
+
"stroke": "#8C8C8C",
|
|
928
|
+
"strokeWidth": "1.5",
|
|
929
|
+
"strokeLinecap": "round",
|
|
930
|
+
"strokeLinejoin": "round"
|
|
931
|
+
}],
|
|
932
|
+
"circles": []
|
|
933
|
+
},
|
|
934
|
+
"Database01": {
|
|
935
|
+
"width": "24",
|
|
936
|
+
"height": "24",
|
|
937
|
+
"viewBox": "0 0 24 24",
|
|
938
|
+
"fill": "none",
|
|
939
|
+
"paths": [{
|
|
940
|
+
"d": "M21 5C21 6.65685 16.9706 8 12 8C7.02944 8 3 6.65685 3 5M21 5C21 3.34315 16.9706 2 12 2C7.02944 2 3 3.34315 3 5M21 5V19C21 20.66 17 22 12 22C7 22 3 20.66 3 19V5M21 12C21 13.66 17 15 12 15C7 15 3 13.66 3 12",
|
|
941
|
+
"stroke": "#BDBDBD",
|
|
942
|
+
"strokeWidth": "2",
|
|
943
|
+
"strokeLinecap": "round",
|
|
944
|
+
"strokeLinejoin": "round"
|
|
945
|
+
}],
|
|
946
|
+
"circles": []
|
|
947
|
+
},
|
|
948
|
+
"Database02Thin": {
|
|
949
|
+
"width": "18",
|
|
950
|
+
"height": "18",
|
|
951
|
+
"viewBox": "0 0 18 18",
|
|
952
|
+
"fill": "none",
|
|
953
|
+
"paths": [{
|
|
954
|
+
"d": "M15.75 3.75C15.75 4.99264 12.7279 6 9 6C5.27208 6 2.25 4.99264 2.25 3.75M15.75 3.75C15.75 2.50736 12.7279 1.5 9 1.5C5.27208 1.5 2.25 2.50736 2.25 3.75M15.75 3.75V14.25C15.75 15.495 12.75 16.5 9 16.5C5.25 16.5 2.25 15.495 2.25 14.25V3.75M15.75 7.29016C15.75 8.53516 12.75 9.54016 9 9.54016C5.25 9.54016 2.25 8.53516 2.25 7.29016M15.75 10.83C15.75 12.075 12.75 13.08 9 13.08C5.25 13.08 2.25 12.075 2.25 10.83",
|
|
955
|
+
"stroke": "#8C8C8C",
|
|
956
|
+
"strokeWidth": "1.5",
|
|
957
|
+
"strokeLinecap": "round",
|
|
958
|
+
"strokeLinejoin": "round"
|
|
959
|
+
}],
|
|
960
|
+
"circles": []
|
|
961
|
+
},
|
|
962
|
+
"Database03Thin": {
|
|
963
|
+
"width": "18",
|
|
964
|
+
"height": "18",
|
|
965
|
+
"viewBox": "0 0 18 18",
|
|
966
|
+
"fill": "none",
|
|
967
|
+
"paths": [{
|
|
968
|
+
"d": "M10.5 15C10.5 15.8284 9.82843 16.5 9 16.5C8.17157 16.5 7.5 15.8284 7.5 15M10.5 15C10.5 14.1716 9.82843 13.5 9 13.5M10.5 15H15.75M7.5 15C7.5 14.1716 8.17157 13.5 9 13.5M7.5 15H2.25M9 13.5V10.5M15.75 3.75C15.75 4.99264 12.7279 6 9 6C5.27208 6 2.25 4.99264 2.25 3.75M15.75 3.75C15.75 2.50736 12.7279 1.5 9 1.5C5.27208 1.5 2.25 2.50736 2.25 3.75M15.75 3.75V8.25C15.75 9.495 12.75 10.5 9 10.5M2.25 3.75V8.25C2.25 9.495 5.25 10.5 9 10.5",
|
|
969
|
+
"stroke": "#8C8C8C",
|
|
970
|
+
"strokeWidth": "1.5",
|
|
971
|
+
"strokeLinecap": "round",
|
|
972
|
+
"strokeLinejoin": "round"
|
|
973
|
+
}],
|
|
974
|
+
"circles": []
|
|
975
|
+
},
|
|
976
|
+
"Database03": {
|
|
977
|
+
"width": "24",
|
|
978
|
+
"height": "24",
|
|
979
|
+
"viewBox": "0 0 24 24",
|
|
980
|
+
"fill": "none",
|
|
981
|
+
"paths": [{
|
|
982
|
+
"d": "M14 20C14 21.1046 13.1046 22 12 22C10.8954 22 10 21.1046 10 20M14 20C14 18.8954 13.1046 18 12 18M14 20H21M10 20C10 18.8954 10.8954 18 12 18M10 20H3M12 18V14M21 5C21 6.65685 16.9706 8 12 8C7.02944 8 3 6.65685 3 5M21 5C21 3.34315 16.9706 2 12 2C7.02944 2 3 3.34315 3 5M21 5V11C21 12.66 17 14 12 14M3 5V11C3 12.66 7 14 12 14",
|
|
983
|
+
"stroke": "#BDBDBD",
|
|
984
|
+
"strokeWidth": "2",
|
|
985
|
+
"strokeLinecap": "round",
|
|
986
|
+
"strokeLinejoin": "round"
|
|
987
|
+
}],
|
|
988
|
+
"circles": []
|
|
989
|
+
},
|
|
990
|
+
"Dataflow01Thin": {
|
|
991
|
+
"width": "18",
|
|
992
|
+
"height": "18",
|
|
993
|
+
"viewBox": "0 0 18 18",
|
|
994
|
+
"fill": "none",
|
|
995
|
+
"paths": [{
|
|
996
|
+
"d": "M12.75 15H12.6C11.3399 15 10.7098 15 10.2285 14.7548C9.80516 14.539 9.46095 14.1948 9.24524 13.7715C9 13.2902 9 12.6601 9 11.4V6.6C9 5.33988 9 4.70982 9.24524 4.22852C9.46095 3.80516 9.80516 3.46095 10.2285 3.24524C10.7098 3 11.3399 3 12.6 3H12.75M12.75 15C12.75 15.8284 13.4216 16.5 14.25 16.5C15.0784 16.5 15.75 15.8284 15.75 15C15.75 14.1716 15.0784 13.5 14.25 13.5C13.4216 13.5 12.75 14.1716 12.75 15ZM12.75 3C12.75 3.82843 13.4216 4.5 14.25 4.5C15.0784 4.5 15.75 3.82843 15.75 3C15.75 2.17157 15.0784 1.5 14.25 1.5C13.4216 1.5 12.75 2.17157 12.75 3ZM5.25 9L12.75 9M5.25 9C5.25 9.82843 4.57843 10.5 3.75 10.5C2.92157 10.5 2.25 9.82843 2.25 9C2.25 8.17157 2.92157 7.5 3.75 7.5C4.57843 7.5 5.25 8.17157 5.25 9ZM12.75 9C12.75 9.82843 13.4216 10.5 14.25 10.5C15.0784 10.5 15.75 9.82843 15.75 9C15.75 8.17157 15.0784 7.5 14.25 7.5C13.4216 7.5 12.75 8.17157 12.75 9Z",
|
|
997
|
+
"stroke": "#8C8C8C",
|
|
998
|
+
"strokeWidth": "1.5",
|
|
999
|
+
"strokeLinecap": "round",
|
|
1000
|
+
"strokeLinejoin": "round"
|
|
1001
|
+
}],
|
|
1002
|
+
"circles": []
|
|
1003
|
+
},
|
|
1004
|
+
"Dataflow01": {
|
|
1005
|
+
"width": "24",
|
|
1006
|
+
"height": "24",
|
|
1007
|
+
"viewBox": "0 0 24 24",
|
|
1008
|
+
"fill": "none",
|
|
1009
|
+
"paths": [{
|
|
1010
|
+
"d": "M17 20H16.8C15.1198 20 14.2798 20 13.638 19.673C13.0735 19.3854 12.6146 18.9265 12.327 18.362C12 17.7202 12 16.8802 12 15.2V8.8C12 7.11984 12 6.27976 12.327 5.63803C12.6146 5.07354 13.0735 4.6146 13.638 4.32698C14.2798 4 15.1198 4 16.8 4H17M17 20C17 21.1046 17.8954 22 19 22C20.1046 22 21 21.1046 21 20C21 18.8954 20.1046 18 19 18C17.8954 18 17 18.8954 17 20ZM17 4C17 5.10457 17.8954 6 19 6C20.1046 6 21 5.10457 21 4C21 2.89543 20.1046 2 19 2C17.8954 2 17 2.89543 17 4ZM7 12L17 12M7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10C6.10457 10 7 10.8954 7 12ZM17 12C17 13.1046 17.8954 14 19 14C20.1046 14 21 13.1046 21 12C21 10.8954 20.1046 10 19 10C17.8954 10 17 10.8954 17 12Z",
|
|
1011
|
+
"stroke": "#BDBDBD",
|
|
1012
|
+
"strokeWidth": "2",
|
|
1013
|
+
"strokeLinecap": "round",
|
|
1014
|
+
"strokeLinejoin": "round"
|
|
1015
|
+
}],
|
|
1016
|
+
"circles": []
|
|
1017
|
+
},
|
|
1018
|
+
"Dataflow04Thin": {
|
|
1019
|
+
"width": "18",
|
|
1020
|
+
"height": "18",
|
|
1021
|
+
"viewBox": "0 0 18 18",
|
|
1022
|
+
"fill": "none",
|
|
1023
|
+
"paths": [{
|
|
1024
|
+
"d": "M3 13.5V13.35C3 12.0899 3 11.4598 3.24524 10.9785C3.46095 10.5552 3.80516 10.211 4.22852 9.99524C4.70982 9.75 5.33988 9.75 6.6 9.75H11.4C12.6601 9.75 13.2902 9.75 13.7715 9.99524C14.1948 10.211 14.539 10.5552 14.7548 10.9785C15 11.4598 15 12.0899 15 13.35V13.5M3 13.5C2.17157 13.5 1.5 14.1716 1.5 15C1.5 15.8284 2.17157 16.5 3 16.5C3.82843 16.5 4.5 15.8284 4.5 15C4.5 14.1716 3.82843 13.5 3 13.5ZM15 13.5C14.1716 13.5 13.5 14.1716 13.5 15C13.5 15.8284 14.1716 16.5 15 16.5C15.8284 16.5 16.5 15.8284 16.5 15C16.5 14.1716 15.8284 13.5 15 13.5ZM9 13.5C8.17157 13.5 7.5 14.1716 7.5 15C7.5 15.8284 8.17157 16.5 9 16.5C9.82843 16.5 10.5 15.8284 10.5 15C10.5 14.1716 9.82843 13.5 9 13.5ZM9 13.5V6M4.5 6H13.5C14.1989 6 14.5484 6 14.824 5.88582C15.1916 5.73358 15.4836 5.44157 15.6358 5.07403C15.75 4.79837 15.75 4.44891 15.75 3.75C15.75 3.05109 15.75 2.70163 15.6358 2.42597C15.4836 2.05843 15.1916 1.76642 14.824 1.61418C14.5484 1.5 14.1989 1.5 13.5 1.5H4.5C3.80109 1.5 3.45163 1.5 3.17597 1.61418C2.80843 1.76642 2.51642 2.05843 2.36418 2.42597C2.25 2.70163 2.25 3.05109 2.25 3.75C2.25 4.44891 2.25 4.79837 2.36418 5.07403C2.51642 5.44157 2.80843 5.73358 3.17597 5.88582C3.45163 6 3.80109 6 4.5 6Z",
|
|
1025
|
+
"stroke": "black",
|
|
1026
|
+
"strokeWidth": "1.5",
|
|
1027
|
+
"strokeLinecap": "round",
|
|
1028
|
+
"strokeLinejoin": "round"
|
|
1029
|
+
}],
|
|
1030
|
+
"circles": []
|
|
1031
|
+
},
|
|
1032
|
+
"Dataflow04": {
|
|
1033
|
+
"width": "24",
|
|
1034
|
+
"height": "24",
|
|
1035
|
+
"viewBox": "0 0 24 24",
|
|
1036
|
+
"fill": "none",
|
|
1037
|
+
"paths": [{
|
|
1038
|
+
"d": "M4 18V17.8C4 16.1198 4 15.2798 4.32698 14.638C4.6146 14.0735 5.07354 13.6146 5.63803 13.327C6.27976 13 7.11984 13 8.8 13H15.2C16.8802 13 17.7202 13 18.362 13.327C18.9265 13.6146 19.3854 14.0735 19.673 14.638C20 15.2798 20 16.1198 20 17.8V18M4 18C2.89543 18 2 18.8954 2 20C2 21.1046 2.89543 22 4 22C5.10457 22 6 21.1046 6 20C6 18.8954 5.10457 18 4 18ZM20 18C18.8954 18 18 18.8954 18 20C18 21.1046 18.8954 22 20 22C21.1046 22 22 21.1046 22 20C22 18.8954 21.1046 18 20 18ZM12 18C10.8954 18 10 18.8954 10 20C10 21.1046 10.8954 22 12 22C13.1046 22 14 21.1046 14 20C14 18.8954 13.1046 18 12 18ZM12 18V8M6 8H18C18.9319 8 19.3978 8 19.7654 7.84776C20.2554 7.64477 20.6448 7.25542 20.8478 6.76537C21 6.39782 21 5.93188 21 5C21 4.06812 21 3.60218 20.8478 3.23463C20.6448 2.74458 20.2554 2.35523 19.7654 2.15224C19.3978 2 18.9319 2 18 2H6C5.06812 2 4.60218 2 4.23463 2.15224C3.74458 2.35523 3.35523 2.74458 3.15224 3.23463C3 3.60218 3 4.06812 3 5C3 5.93188 3 6.39782 3.15224 6.76537C3.35523 7.25542 3.74458 7.64477 4.23463 7.84776C4.60218 8 5.06812 8 6 8Z",
|
|
1039
|
+
"stroke": "#BDBDBD",
|
|
1040
|
+
"strokeWidth": "2",
|
|
1041
|
+
"strokeLinecap": "round",
|
|
1042
|
+
"strokeLinejoin": "round"
|
|
1043
|
+
}],
|
|
1044
|
+
"circles": []
|
|
1045
|
+
},
|
|
1046
|
+
"Dotpoints01": {
|
|
1047
|
+
"width": "24",
|
|
1048
|
+
"height": "24",
|
|
1049
|
+
"viewBox": "0 0 24 24",
|
|
1050
|
+
"fill": "none",
|
|
1051
|
+
"paths": [{
|
|
1052
|
+
"d": "M21 12L9 12M21 6L9 6M21 18L9 18M5 12C5 12.5523 4.55228 13 4 13C3.44772 13 3 12.5523 3 12C3 11.4477 3.44772 11 4 11C4.55228 11 5 11.4477 5 12ZM5 6C5 6.55228 4.55228 7 4 7C3.44772 7 3 6.55228 3 6C3 5.44772 3.44772 5 4 5C4.55228 5 5 5.44772 5 6ZM5 18C5 18.5523 4.55228 19 4 19C3.44772 19 3 18.5523 3 18C3 17.4477 3.44772 17 4 17C4.55228 17 5 17.4477 5 18Z",
|
|
1053
|
+
"stroke": "#8C8C8C",
|
|
1054
|
+
"strokeWidth": "2",
|
|
1055
|
+
"strokeLinecap": "round",
|
|
1056
|
+
"strokeLinejoin": "round"
|
|
1057
|
+
}],
|
|
1058
|
+
"circles": []
|
|
1059
|
+
},
|
|
1060
|
+
"DotsGridThin": {
|
|
1061
|
+
"width": "18",
|
|
1062
|
+
"height": "18",
|
|
1063
|
+
"viewBox": "0 0 18 18",
|
|
1064
|
+
"fill": "none",
|
|
1065
|
+
"paths": [{
|
|
1066
|
+
"d": "M9 4.5C9.41421 4.5 9.75 4.16421 9.75 3.75C9.75 3.33579 9.41421 3 9 3C8.58579 3 8.25 3.33579 8.25 3.75C8.25 4.16421 8.58579 4.5 9 4.5Z",
|
|
1067
|
+
"stroke": "#8C8C8C",
|
|
1068
|
+
"strokeWidth": "1.5",
|
|
1069
|
+
"strokeLinecap": "round",
|
|
1070
|
+
"strokeLinejoin": "round"
|
|
1071
|
+
}, {
|
|
1072
|
+
"d": "M9 9.75C9.41421 9.75 9.75 9.41421 9.75 9C9.75 8.58579 9.41421 8.25 9 8.25C8.58579 8.25 8.25 8.58579 8.25 9C8.25 9.41421 8.58579 9.75 9 9.75Z",
|
|
1073
|
+
"stroke": "#8C8C8C",
|
|
1074
|
+
"strokeWidth": "1.5",
|
|
1075
|
+
"strokeLinecap": "round",
|
|
1076
|
+
"strokeLinejoin": "round"
|
|
1077
|
+
}, {
|
|
1078
|
+
"d": "M9 15C9.41421 15 9.75 14.6642 9.75 14.25C9.75 13.8358 9.41421 13.5 9 13.5C8.58579 13.5 8.25 13.8358 8.25 14.25C8.25 14.6642 8.58579 15 9 15Z",
|
|
1079
|
+
"stroke": "#8C8C8C",
|
|
1080
|
+
"strokeWidth": "1.5",
|
|
1081
|
+
"strokeLinecap": "round",
|
|
1082
|
+
"strokeLinejoin": "round"
|
|
1083
|
+
}, {
|
|
1084
|
+
"d": "M14.25 4.5C14.6642 4.5 15 4.16421 15 3.75C15 3.33579 14.6642 3 14.25 3C13.8358 3 13.5 3.33579 13.5 3.75C13.5 4.16421 13.8358 4.5 14.25 4.5Z",
|
|
1085
|
+
"stroke": "#8C8C8C",
|
|
1086
|
+
"strokeWidth": "1.5",
|
|
1087
|
+
"strokeLinecap": "round",
|
|
1088
|
+
"strokeLinejoin": "round"
|
|
1089
|
+
}, {
|
|
1090
|
+
"d": "M14.25 9.75C14.6642 9.75 15 9.41421 15 9C15 8.58579 14.6642 8.25 14.25 8.25C13.8358 8.25 13.5 8.58579 13.5 9C13.5 9.41421 13.8358 9.75 14.25 9.75Z",
|
|
1091
|
+
"stroke": "#8C8C8C",
|
|
1092
|
+
"strokeWidth": "1.5",
|
|
1093
|
+
"strokeLinecap": "round",
|
|
1094
|
+
"strokeLinejoin": "round"
|
|
1095
|
+
}, {
|
|
1096
|
+
"d": "M14.25 15C14.6642 15 15 14.6642 15 14.25C15 13.8358 14.6642 13.5 14.25 13.5C13.8358 13.5 13.5 13.8358 13.5 14.25C13.5 14.6642 13.8358 15 14.25 15Z",
|
|
1097
|
+
"stroke": "#8C8C8C",
|
|
1098
|
+
"strokeWidth": "1.5",
|
|
1099
|
+
"strokeLinecap": "round",
|
|
1100
|
+
"strokeLinejoin": "round"
|
|
1101
|
+
}, {
|
|
1102
|
+
"d": "M3.75 4.5C4.16421 4.5 4.5 4.16421 4.5 3.75C4.5 3.33579 4.16421 3 3.75 3C3.33579 3 3 3.33579 3 3.75C3 4.16421 3.33579 4.5 3.75 4.5Z",
|
|
1103
|
+
"stroke": "#8C8C8C",
|
|
1104
|
+
"strokeWidth": "1.5",
|
|
1105
|
+
"strokeLinecap": "round",
|
|
1106
|
+
"strokeLinejoin": "round"
|
|
1107
|
+
}, {
|
|
1108
|
+
"d": "M3.75 9.75C4.16421 9.75 4.5 9.41421 4.5 9C4.5 8.58579 4.16421 8.25 3.75 8.25C3.33579 8.25 3 8.58579 3 9C3 9.41421 3.33579 9.75 3.75 9.75Z",
|
|
1109
|
+
"stroke": "#8C8C8C",
|
|
1110
|
+
"strokeWidth": "1.5",
|
|
1111
|
+
"strokeLinecap": "round",
|
|
1112
|
+
"strokeLinejoin": "round"
|
|
1113
|
+
}, {
|
|
1114
|
+
"d": "M3.75 15C4.16421 15 4.5 14.6642 4.5 14.25C4.5 13.8358 4.16421 13.5 3.75 13.5C3.33579 13.5 3 13.8358 3 14.25C3 14.6642 3.33579 15 3.75 15Z",
|
|
1115
|
+
"stroke": "#8C8C8C",
|
|
1116
|
+
"strokeWidth": "1.5",
|
|
1117
|
+
"strokeLinecap": "round",
|
|
1118
|
+
"strokeLinejoin": "round"
|
|
1119
|
+
}],
|
|
1120
|
+
"circles": []
|
|
1121
|
+
},
|
|
1122
|
+
"DotsGrid": {
|
|
1123
|
+
"width": "24",
|
|
1124
|
+
"height": "24",
|
|
1125
|
+
"viewBox": "0 0 24 24",
|
|
1126
|
+
"fill": "none",
|
|
1127
|
+
"paths": [{
|
|
1128
|
+
"d": "M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z",
|
|
1129
|
+
"stroke": "#8C8C8C",
|
|
1130
|
+
"strokeWidth": "2",
|
|
1131
|
+
"strokeLinecap": "round",
|
|
1132
|
+
"strokeLinejoin": "round"
|
|
1133
|
+
}, {
|
|
1134
|
+
"d": "M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z",
|
|
1135
|
+
"stroke": "#8C8C8C",
|
|
1136
|
+
"strokeWidth": "2",
|
|
1137
|
+
"strokeLinecap": "round",
|
|
1138
|
+
"strokeLinejoin": "round"
|
|
1139
|
+
}, {
|
|
1140
|
+
"d": "M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z",
|
|
1141
|
+
"stroke": "#8C8C8C",
|
|
1142
|
+
"strokeWidth": "2",
|
|
1143
|
+
"strokeLinecap": "round",
|
|
1144
|
+
"strokeLinejoin": "round"
|
|
1145
|
+
}, {
|
|
1146
|
+
"d": "M19 6C19.5523 6 20 5.55228 20 5C20 4.44772 19.5523 4 19 4C18.4477 4 18 4.44772 18 5C18 5.55228 18.4477 6 19 6Z",
|
|
1147
|
+
"stroke": "#8C8C8C",
|
|
1148
|
+
"strokeWidth": "2",
|
|
1149
|
+
"strokeLinecap": "round",
|
|
1150
|
+
"strokeLinejoin": "round"
|
|
1151
|
+
}, {
|
|
1152
|
+
"d": "M19 13C19.5523 13 20 12.5523 20 12C20 11.4477 19.5523 11 19 11C18.4477 11 18 11.4477 18 12C18 12.5523 18.4477 13 19 13Z",
|
|
1153
|
+
"stroke": "#8C8C8C",
|
|
1154
|
+
"strokeWidth": "2",
|
|
1155
|
+
"strokeLinecap": "round",
|
|
1156
|
+
"strokeLinejoin": "round"
|
|
1157
|
+
}, {
|
|
1158
|
+
"d": "M19 20C19.5523 20 20 19.5523 20 19C20 18.4477 19.5523 18 19 18C18.4477 18 18 18.4477 18 19C18 19.5523 18.4477 20 19 20Z",
|
|
1159
|
+
"stroke": "#8C8C8C",
|
|
1160
|
+
"strokeWidth": "2",
|
|
1161
|
+
"strokeLinecap": "round",
|
|
1162
|
+
"strokeLinejoin": "round"
|
|
1163
|
+
}, {
|
|
1164
|
+
"d": "M5 6C5.55228 6 6 5.55228 6 5C6 4.44772 5.55228 4 5 4C4.44772 4 4 4.44772 4 5C4 5.55228 4.44772 6 5 6Z",
|
|
1165
|
+
"stroke": "#8C8C8C",
|
|
1166
|
+
"strokeWidth": "2",
|
|
1167
|
+
"strokeLinecap": "round",
|
|
1168
|
+
"strokeLinejoin": "round"
|
|
1169
|
+
}, {
|
|
1170
|
+
"d": "M5 13C5.55228 13 6 12.5523 6 12C6 11.4477 5.55228 11 5 11C4.44772 11 4 11.4477 4 12C4 12.5523 4.44772 13 5 13Z",
|
|
1171
|
+
"stroke": "#8C8C8C",
|
|
1172
|
+
"strokeWidth": "2",
|
|
1173
|
+
"strokeLinecap": "round",
|
|
1174
|
+
"strokeLinejoin": "round"
|
|
1175
|
+
}, {
|
|
1176
|
+
"d": "M5 20C5.55228 20 6 19.5523 6 19C6 18.4477 5.55228 18 5 18C4.44772 18 4 18.4477 4 19C4 19.5523 4.44772 20 5 20Z",
|
|
1177
|
+
"stroke": "#8C8C8C",
|
|
1178
|
+
"strokeWidth": "2",
|
|
1179
|
+
"strokeLinecap": "round",
|
|
1180
|
+
"strokeLinejoin": "round"
|
|
1181
|
+
}],
|
|
1182
|
+
"circles": []
|
|
1183
|
+
},
|
|
1184
|
+
"DotsVerticalThin": {
|
|
1185
|
+
"width": "18",
|
|
1186
|
+
"height": "18",
|
|
1187
|
+
"viewBox": "0 0 18 18",
|
|
1188
|
+
"fill": "none",
|
|
1189
|
+
"paths": [{
|
|
1190
|
+
"d": "M9 9.75C9.41421 9.75 9.75 9.41421 9.75 9C9.75 8.58579 9.41421 8.25 9 8.25C8.58579 8.25 8.25 8.58579 8.25 9C8.25 9.41421 8.58579 9.75 9 9.75Z",
|
|
1191
|
+
"stroke": "#8C8C8C",
|
|
1192
|
+
"strokeWidth": "1.5",
|
|
1193
|
+
"strokeLinecap": "round",
|
|
1194
|
+
"strokeLinejoin": "round"
|
|
1195
|
+
}, {
|
|
1196
|
+
"d": "M9 4.5C9.41421 4.5 9.75 4.16421 9.75 3.75C9.75 3.33579 9.41421 3 9 3C8.58579 3 8.25 3.33579 8.25 3.75C8.25 4.16421 8.58579 4.5 9 4.5Z",
|
|
1197
|
+
"stroke": "#8C8C8C",
|
|
1198
|
+
"strokeWidth": "1.5",
|
|
1199
|
+
"strokeLinecap": "round",
|
|
1200
|
+
"strokeLinejoin": "round"
|
|
1201
|
+
}, {
|
|
1202
|
+
"d": "M9 15C9.41421 15 9.75 14.6642 9.75 14.25C9.75 13.8358 9.41421 13.5 9 13.5C8.58579 13.5 8.25 13.8358 8.25 14.25C8.25 14.6642 8.58579 15 9 15Z",
|
|
1203
|
+
"stroke": "#8C8C8C",
|
|
1204
|
+
"strokeWidth": "1.5",
|
|
1205
|
+
"strokeLinecap": "round",
|
|
1206
|
+
"strokeLinejoin": "round"
|
|
1207
|
+
}],
|
|
1208
|
+
"circles": []
|
|
1209
|
+
},
|
|
1210
|
+
"DotsVertical": {
|
|
1211
|
+
"width": "24",
|
|
1212
|
+
"height": "24",
|
|
1213
|
+
"viewBox": "0 0 24 24",
|
|
1214
|
+
"fill": "none",
|
|
1215
|
+
"paths": [{
|
|
1216
|
+
"d": "M12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12C11 12.5523 11.4477 13 12 13Z",
|
|
1217
|
+
"stroke": "#8C8C8C",
|
|
1218
|
+
"strokeWidth": "2",
|
|
1219
|
+
"strokeLinecap": "round",
|
|
1220
|
+
"strokeLinejoin": "round"
|
|
1221
|
+
}, {
|
|
1222
|
+
"d": "M12 6C12.5523 6 13 5.55228 13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5C11 5.55228 11.4477 6 12 6Z",
|
|
1223
|
+
"stroke": "#8C8C8C",
|
|
1224
|
+
"strokeWidth": "2",
|
|
1225
|
+
"strokeLinecap": "round",
|
|
1226
|
+
"strokeLinejoin": "round"
|
|
1227
|
+
}, {
|
|
1228
|
+
"d": "M12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20Z",
|
|
1229
|
+
"stroke": "#8C8C8C",
|
|
1230
|
+
"strokeWidth": "2",
|
|
1231
|
+
"strokeLinecap": "round",
|
|
1232
|
+
"strokeLinejoin": "round"
|
|
1233
|
+
}],
|
|
1234
|
+
"circles": []
|
|
1235
|
+
},
|
|
1236
|
+
"DownThin": {
|
|
1237
|
+
"width": "18",
|
|
1238
|
+
"height": "18",
|
|
1239
|
+
"viewBox": "0 0 18 18",
|
|
1240
|
+
"fill": "none",
|
|
1241
|
+
"paths": [{
|
|
1242
|
+
"d": "M3.44535 6.68195L8.35949 12.4166C8.4387 12.509 8.53696 12.5832 8.64753 12.634C8.75809 12.6849 8.87834 12.7112 9.00004 12.7112C9.12173 12.7112 9.24199 12.6849 9.35255 12.634C9.46312 12.5832 9.56138 12.509 9.64059 12.4166L14.5547 6.68195C15.0237 6.13457 14.6349 5.28906 13.9142 5.28906H4.08449C3.36379 5.28906 2.97496 6.13457 3.44535 6.68195Z",
|
|
1243
|
+
"fill": "#8C8C8C"
|
|
1244
|
+
}],
|
|
1245
|
+
"circles": []
|
|
1246
|
+
},
|
|
1247
|
+
"Download01Thin": {
|
|
1248
|
+
"width": "18",
|
|
1249
|
+
"height": "18",
|
|
1250
|
+
"viewBox": "0 0 18 18",
|
|
1251
|
+
"fill": "none",
|
|
1252
|
+
"paths": [{
|
|
1253
|
+
"d": "M15.75 11.25V12.15C15.75 13.4101 15.75 14.0402 15.5048 14.5215C15.289 14.9448 14.9448 15.289 14.5215 15.5048C14.0402 15.75 13.4101 15.75 12.15 15.75H5.85C4.58988 15.75 3.95982 15.75 3.47852 15.5048C3.05516 15.289 2.71095 14.9448 2.49524 14.5215C2.25 14.0402 2.25 13.4101 2.25 12.15V11.25M12.75 7.5L9 11.25M9 11.25L5.25 7.5M9 11.25V2.25",
|
|
1254
|
+
"stroke": "#8C8C8C",
|
|
1255
|
+
"strokeWidth": "1.5",
|
|
1256
|
+
"strokeLinecap": "round",
|
|
1257
|
+
"strokeLinejoin": "round"
|
|
1258
|
+
}],
|
|
1259
|
+
"circles": []
|
|
1260
|
+
},
|
|
1261
|
+
"Download01": {
|
|
1262
|
+
"width": "24",
|
|
1263
|
+
"height": "24",
|
|
1264
|
+
"viewBox": "0 0 24 24",
|
|
1265
|
+
"fill": "none",
|
|
1266
|
+
"paths": [{
|
|
1267
|
+
"d": "M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 10L12 15M12 15L7 10M12 15V3",
|
|
1268
|
+
"stroke": "#8C8C8C",
|
|
1269
|
+
"strokeWidth": "2",
|
|
1270
|
+
"strokeLinecap": "round",
|
|
1271
|
+
"strokeLinejoin": "round"
|
|
1272
|
+
}],
|
|
1273
|
+
"circles": []
|
|
1274
|
+
},
|
|
1275
|
+
"Downstream": {
|
|
1276
|
+
"width": "24",
|
|
1277
|
+
"height": "24",
|
|
1278
|
+
"viewBox": "0 0 24 24",
|
|
1279
|
+
"fill": "none",
|
|
1280
|
+
"paths": [{
|
|
1281
|
+
"d": "M3.74993 18.0001C2.50741 18.0001 1.49993 19.0075 1.49993 20.2501C1.49993 21.4926 2.50741 22.5001 3.74993 22.5001C4.99246 22.5001 5.99993 21.4926 5.99993 20.2501C5.99993 19.0075 4.99246 18.0001 3.74993 18.0001ZM3.74993 21.0001C3.33578 21.0001 2.99993 20.6642 2.99993 20.2501C2.99993 19.8359 3.33578 19.5001 3.74993 19.5001C4.16408 19.5001 4.49993 19.8359 4.49993 20.2501C4.49993 20.6642 4.16408 21.0001 3.74993 21.0001Z",
|
|
1282
|
+
"fill": "#8C8C8C"
|
|
1283
|
+
}, {
|
|
1284
|
+
"d": "M11.9999 18.0001C10.7574 18.0001 9.74993 19.0075 9.74993 20.2501C9.74993 21.4926 10.7574 22.5001 11.9999 22.5001C13.2425 22.5001 14.2499 21.4926 14.2499 20.2501C14.2499 19.0075 13.2425 18.0001 11.9999 18.0001ZM11.9999 21.0001C11.5858 21.0001 11.2499 20.6642 11.2499 20.2501C11.2499 19.8359 11.5858 19.5001 11.9999 19.5001C12.4141 19.5001 12.7499 19.8359 12.7499 20.2501C12.7499 20.6642 12.4141 21.0001 11.9999 21.0001Z",
|
|
1285
|
+
"fill": "#8C8C8C"
|
|
1286
|
+
}, {
|
|
1287
|
+
"d": "M20.2499 18.0001C19.0074 18.0001 17.9999 19.0075 17.9999 20.2501C17.9999 21.4926 19.0074 22.5001 20.2499 22.5001C21.4925 22.5001 22.4999 21.4926 22.4999 20.2501C22.4999 19.0075 21.4925 18.0001 20.2499 18.0001ZM20.2499 21.0001C19.8358 21.0001 19.4999 20.6642 19.4999 20.2501C19.4999 19.8359 19.8358 19.5001 20.2499 19.5001C20.6641 19.5001 20.9999 19.8359 20.9999 20.2501C20.9999 20.6642 20.6641 21.0001 20.2499 21.0001Z",
|
|
1288
|
+
"fill": "#8C8C8C"
|
|
1289
|
+
}, {
|
|
1290
|
+
"d": "M22.1894 13.1895L21 14.3789V12C21 9.33435 19.0016 7.13123 16.4251 6.79838C16.4718 6.5391 16.5 6.27285 16.5 6C16.5 3.51487 14.4853 1.5 12 1.5C9.51472 1.5 7.5 3.51487 7.5 6C7.5 6.27285 7.5282 6.5391 7.57493 6.79838C4.99845 7.13123 3 9.33435 3 12V14.3785L1.81058 13.1895L0.75 14.2501L3.75 17.2501L6.75 14.2501L5.68942 13.1895L4.5 14.3789V12C4.5 9.97853 6.11093 8.3364 8.11522 8.26357C8.77515 9.3933 9.9111 10.2074 11.25 10.4326V14.3789L10.0606 13.1895L9 14.2501L12 17.2501L15 14.2501L13.9394 13.1895L12.75 14.3789V10.4326C14.0889 10.2074 15.2249 9.39337 15.8848 8.26357C17.8891 8.33647 19.5 9.97853 19.5 12V14.3785L18.3106 13.1895L17.25 14.2501L20.25 17.2501L23.25 14.2501L22.1894 13.1895ZM12 9.00008C10.3458 9.00008 9 7.65427 9 6.00008C9 4.34588 10.3458 3.00008 12 3.00008C13.6542 3.00008 15 4.34588 15 6.00008C15 7.65427 13.6542 9.00008 12 9.00008Z",
|
|
1291
|
+
"fill": "#8C8C8C"
|
|
1292
|
+
}],
|
|
1293
|
+
"circles": []
|
|
1294
|
+
},
|
|
1295
|
+
"Edit03Thin": {
|
|
1296
|
+
"width": "18",
|
|
1297
|
+
"height": "18",
|
|
1298
|
+
"viewBox": "0 0 18 18",
|
|
1299
|
+
"fill": "none",
|
|
1300
|
+
"paths": [{
|
|
1301
|
+
"d": "M8.99998 15.0002H15.75M2.25 15.0002H3.50591C3.87279 15.0002 4.05624 15.0002 4.22887 14.9587C4.38192 14.922 4.52824 14.8614 4.66245 14.7791C4.81382 14.6864 4.94354 14.5567 5.20296 14.2972L14.625 4.87517C15.2463 4.25385 15.2463 3.24649 14.625 2.62517C14.0037 2.00385 12.9963 2.00385 12.375 2.62517L2.95295 12.0472C2.69352 12.3067 2.5638 12.4364 2.47104 12.5877C2.3888 12.722 2.32819 12.8683 2.29145 13.0213C2.25 13.194 2.25 13.3774 2.25 13.7443V15.0002Z",
|
|
1302
|
+
"stroke": "#8C8C8C",
|
|
1303
|
+
"strokeWidth": "1.5",
|
|
1304
|
+
"strokeLinecap": "round",
|
|
1305
|
+
"strokeLinejoin": "round"
|
|
1306
|
+
}],
|
|
1307
|
+
"circles": []
|
|
1308
|
+
},
|
|
1309
|
+
"Edit03": {
|
|
1310
|
+
"width": "24",
|
|
1311
|
+
"height": "24",
|
|
1312
|
+
"viewBox": "0 0 24 24",
|
|
1313
|
+
"fill": "none",
|
|
1314
|
+
"paths": [{
|
|
1315
|
+
"d": "M12 20.0002H21M3 20.0002H4.67454C5.16372 20.0002 5.40832 20.0002 5.63849 19.945C5.84256 19.896 6.03765 19.8152 6.2166 19.7055C6.41843 19.5818 6.59138 19.4089 6.93729 19.063L19.5 6.50023C20.3285 5.6718 20.3285 4.32865 19.5 3.50023C18.6716 2.6718 17.3285 2.6718 16.5 3.50023L3.93726 16.063C3.59136 16.4089 3.4184 16.5818 3.29472 16.7837C3.18506 16.9626 3.10425 17.1577 3.05526 17.3618C3 17.5919 3 17.8365 3 18.3257V20.0002Z",
|
|
1316
|
+
"stroke": "#8C8C8C",
|
|
1317
|
+
"strokeWidth": "2",
|
|
1318
|
+
"strokeLinecap": "round",
|
|
1319
|
+
"strokeLinejoin": "round"
|
|
1320
|
+
}],
|
|
1321
|
+
"circles": []
|
|
1322
|
+
},
|
|
1323
|
+
"Expand": {
|
|
1324
|
+
"width": "18",
|
|
1325
|
+
"height": "18",
|
|
1326
|
+
"viewBox": "0 0 18 18",
|
|
1327
|
+
"fill": "none",
|
|
1328
|
+
"paths": [{
|
|
1329
|
+
"d": "M12 6L15.75 2.25M15.75 2.25H12M15.75 2.25V6M6 6L2.25 2.25M2.25 2.25L2.25 6M2.25 2.25L6 2.25M6 12L2.25 15.75M2.25 15.75H6M2.25 15.75L2.25 12M12 12L15.75 15.75M15.75 15.75V12M15.75 15.75H12",
|
|
1330
|
+
"stroke": "#8C8C8C",
|
|
1331
|
+
"strokeWidth": "2",
|
|
1332
|
+
"strokeLinecap": "round",
|
|
1333
|
+
"strokeLinejoin": "round"
|
|
1334
|
+
}],
|
|
1335
|
+
"circles": []
|
|
1336
|
+
},
|
|
1337
|
+
"FiEyeOffThin": {
|
|
1338
|
+
"width": "18",
|
|
1339
|
+
"height": "18",
|
|
1340
|
+
"viewBox": "0 0 18 18",
|
|
1341
|
+
"fill": "none",
|
|
1342
|
+
"paths": [{
|
|
1343
|
+
"d": "M8.99824 3.75002C8.52617 3.74891 8.05558 3.80269 7.59593 3.91028C7.19262 4.00468 6.78914 3.75427 6.69474 3.35095C6.60033 2.94764 6.85075 2.54416 7.25407 2.44976C7.82663 2.31574 8.41283 2.24871 9.00087 2.25002C9.00117 2.25002 9.00146 2.25002 9.00176 2.25002L9 3.00002V2.25002C9.00029 2.25002 9.00058 2.25002 9.00087 2.25002C11.9251 2.25035 14.1718 3.92 15.6409 5.48706C16.3824 6.27797 16.9485 7.066 17.3292 7.65562C17.5201 7.95116 17.6657 8.19875 17.7645 8.37451C17.814 8.46244 17.8518 8.53254 17.8779 8.58185C17.891 8.6065 17.9011 8.62597 17.9082 8.63989L17.9168 8.65655L17.9193 8.66167L17.9202 8.66341C17.9204 8.66369 17.9208 8.66461 17.25 9.00002L16.5886 8.64646C16.5253 8.76479 16.4603 8.88209 16.3935 8.99835C16.3116 8.85695 16.2033 8.67704 16.0692 8.46941C15.7234 7.93403 15.2114 7.22207 14.5466 6.51297C13.2034 5.08019 11.3254 3.75002 9 3.75002L8.99824 3.75002ZM16.3935 8.99835C16.0054 9.67364 15.5579 10.3133 15.0561 10.9096C14.7894 11.2266 14.8302 11.6997 15.1471 11.9664C15.4641 12.2331 15.9372 12.1923 16.2039 11.8754C16.8593 11.0965 17.4316 10.2513 17.9114 9.35358C18.0261 9.13904 18.0296 8.8822 17.9208 8.66461L17.25 9.00002C16.5792 9.33543 16.5793 9.33564 16.5794 9.33582L16.5789 9.33479L16.5742 9.32573C16.5697 9.31693 16.5623 9.30271 16.5521 9.28342C16.5317 9.24484 16.5 9.18603 16.4572 9.1099C16.4381 9.07603 16.4169 9.03876 16.3935 8.99835ZM5.14108 4.08984C5.39247 4.41905 5.32938 4.88972 5.00018 5.1411C3.62391 6.19203 2.47096 7.5048 1.60693 9.00239C1.68874 9.14368 1.79694 9.32334 1.93081 9.53062C2.27658 10.066 2.78862 10.778 3.4534 11.4871C4.79546 12.9186 6.67134 14.2477 8.99388 14.25C10.4435 14.225 11.8472 13.7375 13.0003 12.8585C13.3298 12.6074 13.8004 12.6709 14.0515 13.0004C14.3026 13.3298 14.2391 13.8004 13.9097 14.0515C12.5003 15.1258 10.7842 15.7209 9.01226 15.7499L9 15.75C6.07537 15.75 3.82836 14.0802 2.3591 12.513C1.61763 11.7221 1.05155 10.934 0.670752 10.3444C0.479888 10.0489 0.334344 9.80129 0.235479 9.62553C0.186018 9.5376 0.148155 9.46749 0.122065 9.41819C0.109018 9.39353 0.0989064 9.37406 0.0917535 9.36015L0.0832426 9.34349L0.0806543 9.33837L0.0797776 9.33662C0.0796398 9.33635 0.0791797 9.33543 0.75 9.00002L0.0791797 9.33543C-0.029804 9.11746 -0.0260921 8.86013 0.0891333 8.6454C1.07262 6.81259 2.43668 5.21129 4.08982 3.94894C4.41903 3.69755 4.8897 3.76064 5.14108 4.08984ZM7.95871 6.89873C8.24109 7.20177 8.22433 7.67635 7.92129 7.95873C7.77392 8.09605 7.65571 8.26165 7.57373 8.44565C7.49175 8.62965 7.44766 8.82828 7.44411 9.02968C7.44056 9.23109 7.4776 9.43115 7.55305 9.61792C7.62849 9.8047 7.74078 9.97437 7.88321 10.1168C8.02565 10.2592 8.19532 10.3715 8.3821 10.447C8.56887 10.5224 8.76893 10.5595 8.97034 10.5559C9.17174 10.5524 9.37037 10.5083 9.55437 10.4263C9.73837 10.3443 9.90397 10.2261 10.0413 10.0787C10.3237 9.77568 10.7982 9.75893 11.1013 10.0413C11.4043 10.3237 11.4211 10.7983 11.1387 11.1013C10.8641 11.3961 10.5329 11.6325 10.1649 11.7964C9.79686 11.9604 9.39961 12.0486 8.9968 12.0557C8.59399 12.0628 8.19387 11.9887 7.82032 11.8378C7.44677 11.6869 7.10743 11.4623 6.82255 11.1775C6.53768 10.8926 6.3131 10.5533 6.16222 10.1797C6.01133 9.80615 5.93723 9.40603 5.94434 9.00322C5.95145 8.60041 6.03962 8.20315 6.20358 7.83516C6.36755 7.46716 6.60396 7.13596 6.89871 6.86131C7.20175 6.57893 7.67633 6.59568 7.95871 6.89873Z",
|
|
1344
|
+
"fill": "#8C8C8C",
|
|
1345
|
+
"fillRule": "evenodd",
|
|
1346
|
+
"clipRule": "evenodd"
|
|
1347
|
+
}, {
|
|
1348
|
+
"d": "M0.21967 0.21967C0.512563 -0.0732233 0.987437 -0.0732233 1.28033 0.21967L17.7803 16.7197C18.0732 17.0126 18.0732 17.4874 17.7803 17.7803C17.4874 18.0732 17.0126 18.0732 16.7197 17.7803L0.21967 1.28033C-0.0732233 0.987437 -0.0732233 0.512563 0.21967 0.21967Z",
|
|
1349
|
+
"fill": "#8C8C8C",
|
|
1350
|
+
"fillRule": "evenodd",
|
|
1351
|
+
"clipRule": "evenodd"
|
|
1352
|
+
}],
|
|
1353
|
+
"circles": []
|
|
1354
|
+
},
|
|
1355
|
+
"FiEyeThin": {
|
|
1356
|
+
"width": "18",
|
|
1357
|
+
"height": "18",
|
|
1358
|
+
"viewBox": "0 0 18 18",
|
|
1359
|
+
"fill": "none",
|
|
1360
|
+
"paths": [{
|
|
1361
|
+
"d": "M1.60556 9C1.68752 9.14165 1.79619 9.32216 1.93081 9.53061C2.27658 10.066 2.78862 10.7779 3.4534 11.487C4.79664 12.9198 6.67463 14.25 9 14.25C11.3254 14.25 13.2034 12.9198 14.5466 11.487C15.2114 10.7779 15.7234 10.066 16.0692 9.53061C16.2038 9.32216 16.3125 9.14165 16.3944 9C16.3125 8.85835 16.2038 8.67784 16.0692 8.46939C15.7234 7.93402 15.2114 7.22205 14.5466 6.51296C13.2034 5.08017 11.3254 3.75 9 3.75C6.67463 3.75 4.79664 5.08017 3.4534 6.51296C2.78862 7.22205 2.27658 7.93402 1.93081 8.46939C1.79619 8.67784 1.68752 8.85835 1.60556 9ZM17.25 9C17.9208 8.66459 17.9207 8.66434 17.9206 8.66406L17.9193 8.66165L17.9168 8.65653L17.9082 8.63987C17.9011 8.62596 17.891 8.60649 17.8779 8.58183C17.8518 8.53252 17.814 8.46242 17.7645 8.37449C17.6657 8.19873 17.5201 7.95114 17.3292 7.65561C16.9485 7.06598 16.3824 6.27795 15.6409 5.48704C14.1716 3.91983 11.9246 2.25 9 2.25C6.07537 2.25 3.82836 3.91983 2.3591 5.48704C1.61763 6.27795 1.05155 7.06598 0.670752 7.65561C0.479888 7.95114 0.334344 8.19873 0.235479 8.37449C0.186018 8.46242 0.148155 8.53252 0.122065 8.58183C0.109018 8.60649 0.0989064 8.62596 0.0917535 8.63987L0.0832425 8.65653L0.0806542 8.66165L0.0797776 8.6634C0.0796397 8.66367 0.0791796 8.66459 0.75 9L0.0791796 8.66459C-0.0263932 8.87574 -0.0263932 9.12426 0.0791796 9.33541L0.75 9C0.0791796 9.33541 0.0790418 9.33513 0.0791796 9.33541L0.0806542 9.33835L0.0832425 9.34347L0.0917535 9.36013C0.0989064 9.37405 0.109018 9.39352 0.122065 9.41817C0.148155 9.46748 0.186018 9.53758 0.235479 9.62551C0.334344 9.80127 0.479888 10.0489 0.670752 10.3444C1.05155 10.934 1.61763 11.7221 2.3591 12.513C3.82836 14.0802 6.07537 15.75 9 15.75C11.9246 15.75 14.1716 14.0802 15.6409 12.513C16.3824 11.7221 16.9485 10.934 17.3292 10.3444C17.5201 10.0489 17.6657 9.80127 17.7645 9.62551C17.814 9.53758 17.8518 9.46748 17.8779 9.41817C17.891 9.39352 17.9011 9.37405 17.9082 9.36013L17.9168 9.34347L17.9193 9.33835L17.9202 9.3366C17.9204 9.33633 17.9208 9.33541 17.25 9ZM17.25 9L17.9208 9.33541C18.0264 9.12426 18.0261 8.87521 17.9206 8.66406L17.25 9Z",
|
|
1362
|
+
"fill": "#8C8C8C",
|
|
1363
|
+
"fillRule": "evenodd",
|
|
1364
|
+
"clipRule": "evenodd"
|
|
1365
|
+
}, {
|
|
1366
|
+
"d": "M9 7.5C8.17157 7.5 7.5 8.17157 7.5 9C7.5 9.82843 8.17157 10.5 9 10.5C9.82843 10.5 10.5 9.82843 10.5 9C10.5 8.17157 9.82843 7.5 9 7.5ZM6 9C6 7.34315 7.34315 6 9 6C10.6569 6 12 7.34315 12 9C12 10.6569 10.6569 12 9 12C7.34315 12 6 10.6569 6 9Z",
|
|
1367
|
+
"fill": "#8C8C8C",
|
|
1368
|
+
"fillRule": "evenodd",
|
|
1369
|
+
"clipRule": "evenodd"
|
|
1370
|
+
}],
|
|
1371
|
+
"circles": []
|
|
1372
|
+
},
|
|
1373
|
+
"File02Thin": {
|
|
1374
|
+
"width": "18",
|
|
1375
|
+
"height": "18",
|
|
1376
|
+
"viewBox": "0 0 18 18",
|
|
1377
|
+
"fill": "none",
|
|
1378
|
+
"paths": [{
|
|
1379
|
+
"d": "M10.5 8.25H6M7.5 11.25H6M12 5.25H6M15 5.1V12.9C15 14.1601 15 14.7902 14.7548 15.2715C14.539 15.6948 14.1948 16.039 13.7715 16.2548C13.2902 16.5 12.6601 16.5 11.4 16.5H6.6C5.33988 16.5 4.70982 16.5 4.22852 16.2548C3.80516 16.039 3.46095 15.6948 3.24524 15.2715C3 14.7902 3 14.1601 3 12.9V5.1C3 3.83988 3 3.20982 3.24524 2.72852C3.46095 2.30516 3.80516 1.96095 4.22852 1.74524C4.70982 1.5 5.33988 1.5 6.6 1.5H11.4C12.6601 1.5 13.2902 1.5 13.7715 1.74524C14.1948 1.96095 14.539 2.30516 14.7548 2.72852C15 3.20982 15 3.83988 15 5.1Z",
|
|
1380
|
+
"stroke": "#8C8C8C",
|
|
1381
|
+
"strokeWidth": "1.5",
|
|
1382
|
+
"strokeLinecap": "round",
|
|
1383
|
+
"strokeLinejoin": "round"
|
|
1384
|
+
}],
|
|
1385
|
+
"circles": []
|
|
1386
|
+
},
|
|
1387
|
+
"File02": {
|
|
1388
|
+
"width": "24",
|
|
1389
|
+
"height": "24",
|
|
1390
|
+
"viewBox": "0 0 24 24",
|
|
1391
|
+
"fill": "none",
|
|
1392
|
+
"paths": [{
|
|
1393
|
+
"d": "M14 11H8M10 15H8M16 7H8M20 6.8V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H15.2C16.8802 2 17.7202 2 18.362 2.32698C18.9265 2.6146 19.3854 3.07354 19.673 3.63803C20 4.27976 20 5.11984 20 6.8Z",
|
|
1394
|
+
"stroke": "#BDBDBD",
|
|
1395
|
+
"strokeWidth": "2",
|
|
1396
|
+
"strokeLinecap": "round",
|
|
1397
|
+
"strokeLinejoin": "round"
|
|
1398
|
+
}],
|
|
1399
|
+
"circles": []
|
|
1400
|
+
},
|
|
1401
|
+
"File06Thin": {
|
|
1402
|
+
"width": "18",
|
|
1403
|
+
"height": "18",
|
|
1404
|
+
"viewBox": "0 0 18 18",
|
|
1405
|
+
"fill": "none",
|
|
1406
|
+
"paths": [{
|
|
1407
|
+
"d": "M10.5 1.70215V4.80005C10.5 5.22009 10.5 5.43011 10.5817 5.59055C10.6537 5.73167 10.7684 5.8464 10.9095 5.91831C11.0699 6.00005 11.28 6.00005 11.7 6.00005H14.7979M12 9.75H6M12 12.75H6M7.5 6.75H6M10.5 1.5H6.6C5.33988 1.5 4.70982 1.5 4.22852 1.74524C3.80516 1.96095 3.46095 2.30516 3.24524 2.72852C3 3.20982 3 3.83988 3 5.1V12.9C3 14.1601 3 14.7902 3.24524 15.2715C3.46095 15.6948 3.80516 16.039 4.22852 16.2548C4.70982 16.5 5.33988 16.5 6.6 16.5H11.4C12.6601 16.5 13.2902 16.5 13.7715 16.2548C14.1948 16.039 14.539 15.6948 14.7548 15.2715C15 14.7902 15 14.1601 15 12.9V6L10.5 1.5Z",
|
|
1408
|
+
"stroke": "#8C8C8C",
|
|
1409
|
+
"strokeWidth": "1.5",
|
|
1410
|
+
"strokeLinecap": "round",
|
|
1411
|
+
"strokeLinejoin": "round"
|
|
1412
|
+
}],
|
|
1413
|
+
"circles": []
|
|
1414
|
+
},
|
|
1415
|
+
"File06": {
|
|
1416
|
+
"width": "24",
|
|
1417
|
+
"height": "24",
|
|
1418
|
+
"viewBox": "0 0 24 24",
|
|
1419
|
+
"fill": "none",
|
|
1420
|
+
"paths": [{
|
|
1421
|
+
"d": "M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M16 13H8M16 17H8M10 9H8M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z",
|
|
1422
|
+
"stroke": "#BDBDBD",
|
|
1423
|
+
"strokeWidth": "2",
|
|
1424
|
+
"strokeLinecap": "round",
|
|
1425
|
+
"strokeLinejoin": "round"
|
|
1426
|
+
}],
|
|
1427
|
+
"circles": []
|
|
1428
|
+
},
|
|
1429
|
+
"FileCheck02Thin": {
|
|
1430
|
+
"width": "18",
|
|
1431
|
+
"height": "18",
|
|
1432
|
+
"viewBox": "0 0 18 18",
|
|
1433
|
+
"fill": "none",
|
|
1434
|
+
"paths": [{
|
|
1435
|
+
"d": "M15 9.375V5.1C15 3.83988 15 3.20982 14.7548 2.72852C14.539 2.30516 14.1948 1.96095 13.7715 1.74524C13.2902 1.5 12.6601 1.5 11.4 1.5H6.6C5.33988 1.5 4.70982 1.5 4.22852 1.74524C3.80516 1.96095 3.46095 2.30516 3.24524 2.72852C3 3.20982 3 3.83988 3 5.1V12.9C3 14.1601 3 14.7902 3.24524 15.2715C3.46095 15.6948 3.80516 16.039 4.22852 16.2548C4.70982 16.5 5.33988 16.5 6.6 16.5H9M10.5 8.25H6M7.5 11.25H6M12 5.25H6M10.875 14.25L12.375 15.75L15.75 12.375",
|
|
1436
|
+
"stroke": "#8C8C8C",
|
|
1437
|
+
"strokeWidth": "1.5",
|
|
1438
|
+
"strokeLinecap": "round",
|
|
1439
|
+
"strokeLinejoin": "round"
|
|
1440
|
+
}],
|
|
1441
|
+
"circles": []
|
|
1442
|
+
},
|
|
1443
|
+
"FileCheck02": {
|
|
1444
|
+
"width": "24",
|
|
1445
|
+
"height": "24",
|
|
1446
|
+
"viewBox": "0 0 24 24",
|
|
1447
|
+
"fill": "none",
|
|
1448
|
+
"paths": [{
|
|
1449
|
+
"d": "M20 12.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M14 11H8M10 15H8M16 7H8M14.5 19L16.5 21L21 16.5",
|
|
1450
|
+
"stroke": "#BDBDBD",
|
|
1451
|
+
"strokeWidth": "2",
|
|
1452
|
+
"strokeLinecap": "round",
|
|
1453
|
+
"strokeLinejoin": "round"
|
|
1454
|
+
}],
|
|
1455
|
+
"circles": []
|
|
1456
|
+
},
|
|
1457
|
+
"FileCheck03Thin": {
|
|
1458
|
+
"width": "18",
|
|
1459
|
+
"height": "18",
|
|
1460
|
+
"viewBox": "0 0 18 18",
|
|
1461
|
+
"fill": "none",
|
|
1462
|
+
"paths": [{
|
|
1463
|
+
"d": "M10.5 1.70215V4.80005C10.5 5.22009 10.5 5.43011 10.5817 5.59055C10.6537 5.73167 10.7684 5.8464 10.9095 5.91831C11.0699 6.00005 11.28 6.00005 11.7 6.00005H14.7979M6.75 12L8.25 13.5L11.625 10.125M10.5 1.5H6.6C5.33988 1.5 4.70982 1.5 4.22852 1.74524C3.80516 1.96095 3.46095 2.30516 3.24524 2.72852C3 3.20982 3 3.83988 3 5.1V12.9C3 14.1601 3 14.7902 3.24524 15.2715C3.46095 15.6948 3.80516 16.039 4.22852 16.2548C4.70982 16.5 5.33988 16.5 6.6 16.5H11.4C12.6601 16.5 13.2902 16.5 13.7715 16.2548C14.1948 16.039 14.539 15.6948 14.7548 15.2715C15 14.7902 15 14.1601 15 12.9V6L10.5 1.5Z",
|
|
1464
|
+
"stroke": "#8C8C8C",
|
|
1465
|
+
"strokeWidth": "1.5",
|
|
1466
|
+
"strokeLinecap": "round",
|
|
1467
|
+
"strokeLinejoin": "round"
|
|
1468
|
+
}],
|
|
1469
|
+
"circles": []
|
|
1470
|
+
},
|
|
1471
|
+
"FileCheck03": {
|
|
1472
|
+
"width": "24",
|
|
1473
|
+
"height": "24",
|
|
1474
|
+
"viewBox": "0 0 24 24",
|
|
1475
|
+
"fill": "none",
|
|
1476
|
+
"paths": [{
|
|
1477
|
+
"d": "M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M9 16L11 18L15.5 13.5M14 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H15.2C16.8802 22 17.7202 22 18.362 21.673C18.9265 21.3854 19.3854 20.9265 19.673 20.362C20 19.7202 20 18.8802 20 17.2V8L14 2Z",
|
|
1478
|
+
"stroke": "#BDBDBD",
|
|
1479
|
+
"strokeWidth": "2",
|
|
1480
|
+
"strokeLinecap": "round",
|
|
1481
|
+
"strokeLinejoin": "round"
|
|
1482
|
+
}],
|
|
1483
|
+
"circles": []
|
|
1484
|
+
},
|
|
1485
|
+
"FilePlus02Thin": {
|
|
1486
|
+
"width": "18",
|
|
1487
|
+
"height": "18",
|
|
1488
|
+
"viewBox": "0 0 18 18",
|
|
1489
|
+
"fill": "none",
|
|
1490
|
+
"paths": [{
|
|
1491
|
+
"d": "M15 7.875V5.1C15 3.83988 15 3.20982 14.7548 2.72852C14.539 2.30516 14.1948 1.96095 13.7715 1.74524C13.2902 1.5 12.6601 1.5 11.4 1.5H6.6C5.33988 1.5 4.70982 1.5 4.22852 1.74524C3.80516 1.96095 3.46095 2.30516 3.24524 2.72852C3 3.20982 3 3.83988 3 5.1V12.9C3 14.1601 3 14.7902 3.24524 15.2715C3.46095 15.6948 3.80516 16.039 4.22852 16.2548C4.70982 16.5 5.33988 16.5 6.6 16.5H9M10.5 8.25H6M7.5 11.25H6M12 5.25H6M13.5 15.75V11.25M11.25 13.5H15.75",
|
|
1492
|
+
"stroke": "#8C8C8C",
|
|
1493
|
+
"strokeWidth": "1.5",
|
|
1494
|
+
"strokeLinecap": "round",
|
|
1495
|
+
"strokeLinejoin": "round"
|
|
1496
|
+
}],
|
|
1497
|
+
"circles": []
|
|
1498
|
+
},
|
|
1499
|
+
"FilePlus02": {
|
|
1500
|
+
"width": "24",
|
|
1501
|
+
"height": "24",
|
|
1502
|
+
"viewBox": "0 0 24 24",
|
|
1503
|
+
"fill": "none",
|
|
1504
|
+
"paths": [{
|
|
1505
|
+
"d": "M20 10.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12M14 11H8M10 15H8M16 7H8M18 21V15M15 18H21",
|
|
1506
|
+
"stroke": "#BDBDBD",
|
|
1507
|
+
"strokeWidth": "2",
|
|
1508
|
+
"strokeLinecap": "round",
|
|
1509
|
+
"strokeLinejoin": "round"
|
|
1510
|
+
}],
|
|
1511
|
+
"circles": []
|
|
1512
|
+
},
|
|
1513
|
+
"FileQuestion02Thin": {
|
|
1514
|
+
"width": "18",
|
|
1515
|
+
"height": "18",
|
|
1516
|
+
"viewBox": "0 0 18 18",
|
|
1517
|
+
"fill": "none",
|
|
1518
|
+
"paths": [{
|
|
1519
|
+
"d": "M15 7.125V5.1C15 3.83988 15 3.20982 14.7548 2.72852C14.539 2.30516 14.1948 1.96095 13.7715 1.74524C13.2902 1.5 12.6601 1.5 11.4 1.5H6.6C5.33988 1.5 4.70982 1.5 4.22852 1.74524C3.80516 1.96095 3.46095 2.30516 3.24524 2.72852C3 3.20982 3 3.83988 3 5.1V12.9C3 14.1601 3 14.7902 3.24524 15.2715C3.46095 15.6948 3.80516 16.039 4.22852 16.2548C4.70982 16.5 5.33988 16.5 6.6 16.5H10.5M10.5 8.25H6M7.5 11.25H6M12 5.25H6M12.375 11.2517C12.5071 10.876 12.768 10.5593 13.1113 10.3575C13.4546 10.1557 13.8583 10.082 14.2508 10.1493C14.6433 10.2166 14.9993 10.4207 15.2557 10.7253C15.5122 11.03 15.6525 11.4155 15.6519 11.8138C15.6519 12.9379 13.9657 13.5 13.9657 13.5M13.9874 15.75H13.9949",
|
|
1520
|
+
"stroke": "#8C8C8C",
|
|
1521
|
+
"strokeWidth": "1.5",
|
|
1522
|
+
"strokeLinecap": "round",
|
|
1523
|
+
"strokeLinejoin": "round"
|
|
1524
|
+
}],
|
|
1525
|
+
"circles": []
|
|
1526
|
+
},
|
|
1527
|
+
"FileQuestion02": {
|
|
1528
|
+
"width": "24",
|
|
1529
|
+
"height": "24",
|
|
1530
|
+
"viewBox": "0 0 24 24",
|
|
1531
|
+
"fill": "none",
|
|
1532
|
+
"paths": [{
|
|
1533
|
+
"d": "M20 9.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H14M14 11H8M10 15H8M16 7H8M16.5 15.0022C16.6762 14.5014 17.024 14.079 17.4817 13.81C17.9395 13.5409 18.4777 13.4426 19.001 13.5324C19.5243 13.6221 19.999 13.8942 20.3409 14.3004C20.6829 14.7066 20.87 15.2207 20.8692 15.7517C20.8692 17.2506 18.6209 18 18.6209 18M18.6499 21H18.6599",
|
|
1534
|
+
"stroke": "#BDBDBD",
|
|
1535
|
+
"strokeWidth": "2",
|
|
1536
|
+
"strokeLinecap": "round",
|
|
1537
|
+
"strokeLinejoin": "round"
|
|
1538
|
+
}],
|
|
1539
|
+
"circles": []
|
|
1540
|
+
},
|
|
1541
|
+
"FileSearch02": {
|
|
1542
|
+
"width": "24",
|
|
1543
|
+
"height": "24",
|
|
1544
|
+
"viewBox": "0 0 24 24",
|
|
1545
|
+
"fill": "none",
|
|
1546
|
+
"paths": [{
|
|
1547
|
+
"d": "M14 11H8M10 15H8M16 7H8M20 10.5V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H11.5M22 22L20.5 20.5M21.5 18C21.5 19.933 19.933 21.5 18 21.5C16.067 21.5 14.5 19.933 14.5 18C14.5 16.067 16.067 14.5 18 14.5C19.933 14.5 21.5 16.067 21.5 18Z",
|
|
1548
|
+
"stroke": "#BDBDBD",
|
|
1549
|
+
"strokeWidth": "2",
|
|
1550
|
+
"strokeLinecap": "round",
|
|
1551
|
+
"strokeLinejoin": "round"
|
|
1552
|
+
}],
|
|
1553
|
+
"circles": []
|
|
1554
|
+
},
|
|
1555
|
+
"FileX02Thin": {
|
|
1556
|
+
"width": "18",
|
|
1557
|
+
"height": "18",
|
|
1558
|
+
"viewBox": "0 0 18 18",
|
|
1559
|
+
"fill": "none",
|
|
1560
|
+
"paths": [{
|
|
1561
|
+
"d": "M10.5 8.25H6M7.5 11.25H6M12 5.25H6M15 9V5.1C15 3.83988 15 3.20982 14.7548 2.72852C14.539 2.30516 14.1948 1.96095 13.7715 1.74524C13.2902 1.5 12.6601 1.5 11.4 1.5H6.6C5.33988 1.5 4.70982 1.5 4.22852 1.74524C3.80516 1.96095 3.46095 2.30516 3.24524 2.72852C3 3.20982 3 3.83988 3 5.1V12.9C3 14.1601 3 14.7902 3.24524 15.2715C3.46095 15.6948 3.80516 16.039 4.22852 16.2548C4.70982 16.5 5.33988 16.5 6.6 16.5H9M12 12L15.75 15.75M15.75 12L12 15.75",
|
|
1562
|
+
"stroke": "#8C8C8C",
|
|
1563
|
+
"strokeWidth": "1.5",
|
|
1564
|
+
"strokeLinecap": "round",
|
|
1565
|
+
"strokeLinejoin": "round"
|
|
1566
|
+
}],
|
|
1567
|
+
"circles": []
|
|
1568
|
+
},
|
|
1569
|
+
"FilterLinesThin": {
|
|
1570
|
+
"width": "18",
|
|
1571
|
+
"height": "18",
|
|
1572
|
+
"viewBox": "0 0 18 18",
|
|
1573
|
+
"fill": "none",
|
|
1574
|
+
"paths": [{
|
|
1575
|
+
"d": "M4.5 9H13.5M2.25 4.5H15.75M6.75 13.5H11.25",
|
|
1576
|
+
"stroke": "#8C8C8C",
|
|
1577
|
+
"strokeWidth": "1.5",
|
|
1578
|
+
"strokeLinecap": "round",
|
|
1579
|
+
"strokeLinejoin": "round"
|
|
1580
|
+
}],
|
|
1581
|
+
"circles": []
|
|
1582
|
+
},
|
|
1583
|
+
"FilterLines": {
|
|
1584
|
+
"width": "24",
|
|
1585
|
+
"height": "24",
|
|
1586
|
+
"viewBox": "0 0 24 24",
|
|
1587
|
+
"fill": "none",
|
|
1588
|
+
"paths": [{
|
|
1589
|
+
"d": "M6 12H18M3 6H21M9 18H15",
|
|
1590
|
+
"stroke": "#8C8C8C",
|
|
1591
|
+
"strokeWidth": "2",
|
|
1592
|
+
"strokeLinecap": "round",
|
|
1593
|
+
"strokeLinejoin": "round"
|
|
1594
|
+
}],
|
|
1595
|
+
"circles": []
|
|
1596
|
+
},
|
|
1597
|
+
"FolderUploadThin": {
|
|
1598
|
+
"width": "18",
|
|
1599
|
+
"height": "18",
|
|
1600
|
+
"viewBox": "0 0 18 18",
|
|
1601
|
+
"fill": "none",
|
|
1602
|
+
"paths": [{
|
|
1603
|
+
"d": "M9.75 5.25L8.91334 3.57669C8.67255 3.0951 8.55215 2.8543 8.37253 2.67837C8.21368 2.5228 8.02224 2.40448 7.81206 2.33198C7.57437 2.25 7.30516 2.25 6.76672 2.25H3.9C3.05992 2.25 2.63988 2.25 2.31901 2.41349C2.03677 2.5573 1.8073 2.78677 1.66349 3.06901C1.5 3.38988 1.5 3.80992 1.5 4.65V5.25M1.5 5.25H12.9C14.1601 5.25 14.7902 5.25 15.2715 5.49524C15.6948 5.71095 16.039 6.05516 16.2548 6.47852C16.5 6.95982 16.5 7.58988 16.5 8.85V12.15C16.5 13.4101 16.5 14.0402 16.2548 14.5215C16.039 14.9448 15.6948 15.289 15.2715 15.5048C14.7902 15.75 14.1601 15.75 12.9 15.75H5.1C3.83988 15.75 3.20982 15.75 2.72852 15.5048C2.30516 15.289 1.96095 14.9448 1.74524 14.5215C1.5 14.0402 1.5 13.4101 1.5 12.15V5.25Z",
|
|
1604
|
+
"stroke": "#8C8C8C",
|
|
1605
|
+
"strokeWidth": "1.5",
|
|
1606
|
+
"strokeLinecap": "round",
|
|
1607
|
+
"strokeLinejoin": "round"
|
|
1608
|
+
}, {
|
|
1609
|
+
"d": "M11.25 10.5L9 8.25M9 8.25L6.75 10.5M9 8.25L9 12.75",
|
|
1610
|
+
"stroke": "#8C8C8C",
|
|
1611
|
+
"strokeWidth": "1.5",
|
|
1612
|
+
"strokeLinecap": "round",
|
|
1613
|
+
"strokeLinejoin": "round"
|
|
1614
|
+
}],
|
|
1615
|
+
"circles": []
|
|
1616
|
+
},
|
|
1617
|
+
"FolderUpload": {
|
|
1618
|
+
"width": "24",
|
|
1619
|
+
"height": "24",
|
|
1620
|
+
"viewBox": "0 0 24 24",
|
|
1621
|
+
"fill": "none",
|
|
1622
|
+
"paths": [{
|
|
1623
|
+
"d": "M13 7L11.8845 4.76892C11.5634 4.1268 11.4029 3.80573 11.1634 3.57116C10.9516 3.36373 10.6963 3.20597 10.4161 3.10931C10.0992 3 9.74021 3 9.02229 3H5.2C4.0799 3 3.51984 3 3.09202 3.21799C2.71569 3.40973 2.40973 3.71569 2.21799 4.09202C2 4.51984 2 5.0799 2 6.2V7M2 7H17.2C18.8802 7 19.7202 7 20.362 7.32698C20.9265 7.6146 21.3854 8.07354 21.673 8.63803C22 9.27976 22 10.1198 22 11.8V16.2C22 17.8802 22 18.7202 21.673 19.362C21.3854 19.9265 20.9265 20.3854 20.362 20.673C19.7202 21 18.8802 21 17.2 21H6.8C5.11984 21 4.27976 21 3.63803 20.673C3.07354 20.3854 2.6146 19.9265 2.32698 19.362C2 18.7202 2 17.8802 2 16.2V7Z",
|
|
1624
|
+
"stroke": "#BDBDBD",
|
|
1625
|
+
"strokeWidth": "2",
|
|
1626
|
+
"strokeLinecap": "round",
|
|
1627
|
+
"strokeLinejoin": "round"
|
|
1628
|
+
}, {
|
|
1629
|
+
"d": "M15 14L12 11M12 11L9 14M12 11L12 17",
|
|
1630
|
+
"stroke": "#BDBDBD",
|
|
1631
|
+
"strokeWidth": "2",
|
|
1632
|
+
"strokeLinecap": "round",
|
|
1633
|
+
"strokeLinejoin": "round"
|
|
1634
|
+
}],
|
|
1635
|
+
"circles": []
|
|
1636
|
+
},
|
|
1637
|
+
"Globe01Thin": {
|
|
1638
|
+
"width": "18",
|
|
1639
|
+
"height": "18",
|
|
1640
|
+
"viewBox": "0 0 18 18",
|
|
1641
|
+
"fill": "none",
|
|
1642
|
+
"paths": [{
|
|
1643
|
+
"d": "M1.5 9H16.5M1.5 9C1.5 13.1421 4.85786 16.5 9 16.5M1.5 9C1.5 4.85786 4.85786 1.5 9 1.5M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5M16.5 9C16.5 4.85786 13.1421 1.5 9 1.5M9 1.5C10.876 3.55376 11.9421 6.21903 12 9C11.9421 11.781 10.876 14.4462 9 16.5M9 1.5C7.12404 3.55376 6.05794 6.21903 6 9C6.05794 11.781 7.12404 14.4462 9 16.5",
|
|
1644
|
+
"stroke": "black",
|
|
1645
|
+
"strokeWidth": "1.5",
|
|
1646
|
+
"strokeLinecap": "round",
|
|
1647
|
+
"strokeLinejoin": "round"
|
|
1648
|
+
}],
|
|
1649
|
+
"circles": []
|
|
1650
|
+
},
|
|
1651
|
+
"GraduationHat01Thin": {
|
|
1652
|
+
"width": "18",
|
|
1653
|
+
"height": "18",
|
|
1654
|
+
"viewBox": "0 0 18 18",
|
|
1655
|
+
"fill": "none",
|
|
1656
|
+
"paths": [{
|
|
1657
|
+
"d": "M3.75 7.50017V12.0085C3.75 12.2777 3.75 12.4124 3.79099 12.5312C3.82724 12.6363 3.8864 12.732 3.96419 12.8114C4.05215 12.9012 4.17255 12.9614 4.41334 13.0818L8.46334 15.1068C8.66011 15.2052 8.75851 15.2544 8.8617 15.2738C8.9531 15.2909 9.0469 15.2909 9.1383 15.2738C9.24149 15.2544 9.33989 15.2052 9.53666 15.1068L13.5867 13.0818C13.8275 12.9614 13.9479 12.9012 14.0358 12.8114C14.1136 12.732 14.1728 12.6363 14.209 12.5312C14.25 12.4124 14.25 12.2777 14.25 12.0085V7.50017M1.5 6.37517L8.73167 2.75933C8.83006 2.71014 8.87925 2.68554 8.93085 2.67586C8.97655 2.66729 9.02345 2.66729 9.06915 2.67586C9.12075 2.68554 9.16994 2.71014 9.26833 2.75933L16.5 6.37517L9.26833 9.99101C9.16994 10.0402 9.12075 10.0648 9.06915 10.0745C9.02345 10.0831 8.97655 10.0831 8.93085 10.0745C8.87925 10.0648 8.83006 10.0402 8.73167 9.99101L1.5 6.37517Z",
|
|
1658
|
+
"stroke": "#8C8C8C",
|
|
1659
|
+
"strokeWidth": "1.5",
|
|
1660
|
+
"strokeLinecap": "round",
|
|
1661
|
+
"strokeLinejoin": "round"
|
|
1662
|
+
}],
|
|
1663
|
+
"circles": []
|
|
1664
|
+
},
|
|
1665
|
+
"GraduationHat01": {
|
|
1666
|
+
"width": "24",
|
|
1667
|
+
"height": "24",
|
|
1668
|
+
"viewBox": "0 0 24 24",
|
|
1669
|
+
"fill": "none",
|
|
1670
|
+
"paths": [{
|
|
1671
|
+
"d": "M5 10.0001V16.0112C5 16.3702 5 16.5496 5.05465 16.7081C5.10299 16.8482 5.18187 16.9759 5.28558 17.0817C5.40287 17.2015 5.5634 17.2818 5.88446 17.4423L11.2845 20.1423C11.5468 20.2735 11.678 20.3391 11.8156 20.3649C11.9375 20.3877 12.0625 20.3877 12.1844 20.3649C12.322 20.3391 12.4532 20.2735 12.7155 20.1423L18.1155 17.4423C18.4366 17.2818 18.5971 17.2015 18.7144 17.0817C18.8181 16.9759 18.897 16.8482 18.9453 16.7081C19 16.5496 19 16.3702 19 16.0112V10.0001M2 8.50006L11.6422 3.67895C11.7734 3.61336 11.839 3.58056 11.9078 3.56766C11.9687 3.55622 12.0313 3.55622 12.0922 3.56766C12.161 3.58056 12.2266 3.61336 12.3578 3.67895L22 8.50006L12.3578 13.3212C12.2266 13.3868 12.161 13.4196 12.0922 13.4325C12.0313 13.4439 11.9687 13.4439 11.9078 13.4325C11.839 13.4196 11.7734 13.3868 11.6422 13.3212L2 8.50006Z",
|
|
1672
|
+
"stroke": "#BDBDBD",
|
|
1673
|
+
"strokeWidth": "2",
|
|
1674
|
+
"strokeLinecap": "round",
|
|
1675
|
+
"strokeLinejoin": "round"
|
|
1676
|
+
}],
|
|
1677
|
+
"circles": []
|
|
1678
|
+
},
|
|
1679
|
+
"InformationThin": {
|
|
1680
|
+
"width": "18",
|
|
1681
|
+
"height": "18",
|
|
1682
|
+
"viewBox": "0 0 18 18",
|
|
1683
|
+
"fill": "none",
|
|
1684
|
+
"paths": [{
|
|
1685
|
+
"d": "M9.5625 12.375V7.875H7.3125V9H8.4375V12.375H6.75V13.5H11.25V12.375H9.5625Z",
|
|
1686
|
+
"fill": "#8C8C8C"
|
|
1687
|
+
}, {
|
|
1688
|
+
"d": "M9 4.5C8.83313 4.5 8.67 4.54949 8.53124 4.6422C8.39249 4.73491 8.28434 4.86669 8.22048 5.02086C8.15662 5.17504 8.13991 5.34469 8.17247 5.50836C8.20502 5.67203 8.28538 5.82237 8.40338 5.94038C8.52138 6.05838 8.67172 6.13874 8.8354 6.17129C8.99907 6.20385 9.16872 6.18714 9.32289 6.12328C9.47707 6.05942 9.60884 5.95127 9.70156 5.81252C9.79427 5.67376 9.84375 5.51063 9.84375 5.34375C9.84375 5.11998 9.75486 4.90537 9.59662 4.74713C9.43839 4.5889 9.22378 4.5 9 4.5Z",
|
|
1689
|
+
"fill": "#8C8C8C"
|
|
1690
|
+
}, {
|
|
1691
|
+
"d": "M9 16.875C7.44248 16.875 5.91992 16.4131 4.62489 15.5478C3.32985 14.6825 2.32049 13.4526 1.72445 12.0136C1.12841 10.5747 0.972461 8.99127 1.27632 7.46367C1.58018 5.93607 2.3302 4.53288 3.43154 3.43154C4.53288 2.3302 5.93607 1.58018 7.46367 1.27632C8.99127 0.972461 10.5747 1.12841 12.0136 1.72445C13.4526 2.32049 14.6825 3.32985 15.5478 4.62489C16.4131 5.91992 16.875 7.44248 16.875 9C16.875 11.0886 16.0453 13.0916 14.5685 14.5685C13.0916 16.0453 11.0886 16.875 9 16.875ZM9 2.25C7.66498 2.25 6.35994 2.64588 5.2499 3.38758C4.13987 4.12928 3.27471 5.18349 2.76382 6.41689C2.25293 7.65029 2.11925 9.00749 2.3797 10.3169C2.64015 11.6262 3.28303 12.829 4.22703 13.773C5.17104 14.717 6.37377 15.3599 7.68314 15.6203C8.99252 15.8808 10.3497 15.7471 11.5831 15.2362C12.8165 14.7253 13.8707 13.8601 14.6124 12.7501C15.3541 11.6401 15.75 10.335 15.75 9C15.75 7.20979 15.0388 5.4929 13.773 4.22703C12.5071 2.96116 10.7902 2.25 9 2.25Z",
|
|
1692
|
+
"fill": "#8C8C8C"
|
|
1693
|
+
}],
|
|
1694
|
+
"circles": []
|
|
1695
|
+
},
|
|
1696
|
+
"Information": {
|
|
1697
|
+
"width": "24",
|
|
1698
|
+
"height": "24",
|
|
1699
|
+
"viewBox": "0 0 24 24",
|
|
1700
|
+
"fill": "none",
|
|
1701
|
+
"paths": [{
|
|
1702
|
+
"d": "M12.75 16.5V10.5H9.75V12H11.25V16.5H9V18H15V16.5H12.75Z",
|
|
1703
|
+
"fill": "#8C8C8C"
|
|
1704
|
+
}, {
|
|
1705
|
+
"d": "M12 6C11.7775 6 11.56 6.06598 11.375 6.1896C11.19 6.31322 11.0458 6.48892 10.9606 6.69449C10.8755 6.90005 10.8532 7.12625 10.8966 7.34448C10.94 7.56271 11.0472 7.76317 11.2045 7.9205C11.3618 8.07783 11.5623 8.18498 11.7805 8.22839C11.9988 8.2718 12.225 8.24952 12.4305 8.16437C12.6361 8.07922 12.8118 7.93503 12.9354 7.75002C13.059 7.56502 13.125 7.34751 13.125 7.125C13.125 6.82664 13.0065 6.54049 12.7955 6.32951C12.5845 6.11853 12.2984 6 12 6Z",
|
|
1706
|
+
"fill": "#8C8C8C"
|
|
1707
|
+
}, {
|
|
1708
|
+
"d": "M12 22.5C9.9233 22.5 7.89323 21.8842 6.16652 20.7304C4.4398 19.5767 3.09399 17.9368 2.29927 16.0182C1.50455 14.0996 1.29661 11.9884 1.70176 9.95156C2.1069 7.91476 3.10693 6.04383 4.57538 4.57538C6.04383 3.10693 7.91476 2.1069 9.95156 1.70176C11.9884 1.29661 14.0996 1.50455 16.0182 2.29927C17.9368 3.09399 19.5767 4.4398 20.7304 6.16652C21.8842 7.89323 22.5 9.9233 22.5 12C22.5 14.7848 21.3938 17.4555 19.4246 19.4246C17.4555 21.3938 14.7848 22.5 12 22.5ZM12 3C10.22 3 8.47992 3.52785 6.99987 4.51678C5.51983 5.50571 4.36628 6.91132 3.68509 8.55585C3.0039 10.2004 2.82567 12.01 3.17294 13.7558C3.5202 15.5016 4.37737 17.1053 5.63604 18.364C6.89472 19.6226 8.49836 20.4798 10.2442 20.8271C11.99 21.1743 13.7996 20.9961 15.4442 20.3149C17.0887 19.6337 18.4943 18.4802 19.4832 17.0001C20.4722 15.5201 21 13.78 21 12C21 9.61306 20.0518 7.32387 18.364 5.63604C16.6761 3.94822 14.387 3 12 3Z",
|
|
1709
|
+
"fill": "#8C8C8C"
|
|
1710
|
+
}],
|
|
1711
|
+
"circles": []
|
|
1712
|
+
},
|
|
1713
|
+
"LineChartDown01": {
|
|
1714
|
+
"width": "24",
|
|
1715
|
+
"height": "24",
|
|
1716
|
+
"viewBox": "0 0 24 24",
|
|
1717
|
+
"fill": "none",
|
|
1718
|
+
"paths": [{
|
|
1719
|
+
"d": "M21 21H4.6C4.03995 21 3.75992 21 3.54601 20.891C3.35785 20.7951 3.20487 20.6422 3.10899 20.454C3 20.2401 3 19.9601 3 19.4V3M20 15L16.0811 10.8173C15.9326 10.6588 15.8584 10.5796 15.7688 10.5386C15.6897 10.5024 15.6026 10.4875 15.516 10.4953C15.4179 10.5042 15.3215 10.5542 15.1287 10.6543L11.8713 12.3457C11.6785 12.4458 11.5821 12.4958 11.484 12.5047C11.3974 12.5125 11.3103 12.4976 11.2312 12.4614C11.1416 12.4204 11.0674 12.3412 10.9189 12.1827L7 8",
|
|
1720
|
+
"stroke": "#8C8C8C",
|
|
1721
|
+
"strokeWidth": "2",
|
|
1722
|
+
"strokeLinecap": "round",
|
|
1723
|
+
"strokeLinejoin": "round"
|
|
1724
|
+
}],
|
|
1725
|
+
"circles": []
|
|
1726
|
+
},
|
|
1727
|
+
"Loading02Thin": {
|
|
1728
|
+
"width": "18",
|
|
1729
|
+
"height": "18",
|
|
1730
|
+
"viewBox": "0 0 18 18",
|
|
1731
|
+
"fill": "none",
|
|
1732
|
+
"paths": [{
|
|
1733
|
+
"d": "M9 1.5V4.5M9 13.5V16.5M4.5 9H1.5M16.5 9H13.5M14.3088 14.3088L12.1875 12.1875M14.3088 3.74996L12.1875 5.87128M3.69118 14.3088L5.8125 12.1875M3.69118 3.74996L5.8125 5.87128",
|
|
1734
|
+
"stroke": "black",
|
|
1735
|
+
"strokeWidth": "1.5",
|
|
1736
|
+
"strokeLinecap": "round",
|
|
1737
|
+
"strokeLinejoin": "round"
|
|
1738
|
+
}],
|
|
1739
|
+
"circles": []
|
|
1740
|
+
},
|
|
1741
|
+
"Loading02": {
|
|
1742
|
+
"width": "24",
|
|
1743
|
+
"height": "24",
|
|
1744
|
+
"viewBox": "0 0 24 24",
|
|
1745
|
+
"fill": "none",
|
|
1746
|
+
"paths": [{
|
|
1747
|
+
"d": "M12 2V6M12 18V22M6 12H2M22 12H18M19.0784 19.0784L16.25 16.25M19.0784 4.99994L16.25 7.82837M4.92157 19.0784L7.75 16.25M4.92157 4.99994L7.75 7.82837",
|
|
1748
|
+
"stroke": "#8C8C8C",
|
|
1749
|
+
"strokeWidth": "2",
|
|
1750
|
+
"strokeLinecap": "round",
|
|
1751
|
+
"strokeLinejoin": "round"
|
|
1752
|
+
}],
|
|
1753
|
+
"circles": []
|
|
1754
|
+
},
|
|
1755
|
+
"LogOut01Thin": {
|
|
1756
|
+
"width": "18",
|
|
1757
|
+
"height": "18",
|
|
1758
|
+
"viewBox": "0 0 18 18",
|
|
1759
|
+
"fill": "none",
|
|
1760
|
+
"paths": [{
|
|
1761
|
+
"d": "M12 12.75L15.75 9M15.75 9L12 5.25M15.75 9H6.75M6.75 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V12.15C2.25 13.4101 2.25 14.0402 2.49524 14.5215C2.71095 14.9448 3.05516 15.289 3.47852 15.5048C3.95982 15.75 4.58988 15.75 5.85 15.75H6.75",
|
|
1762
|
+
"stroke": "#8C8C8C",
|
|
1763
|
+
"strokeWidth": "1.5",
|
|
1764
|
+
"strokeLinecap": "round",
|
|
1765
|
+
"strokeLinejoin": "round"
|
|
1766
|
+
}],
|
|
1767
|
+
"circles": []
|
|
1768
|
+
},
|
|
1769
|
+
"MessageCheckSquare": {
|
|
1770
|
+
"width": "24",
|
|
1771
|
+
"height": "24",
|
|
1772
|
+
"viewBox": "0 0 24 24",
|
|
1773
|
+
"fill": "none",
|
|
1774
|
+
"paths": [{
|
|
1775
|
+
"d": "M9 10.5L11 12.5L15.5 8M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
1776
|
+
"stroke": "#BDBDBD",
|
|
1777
|
+
"strokeWidth": "2",
|
|
1778
|
+
"strokeLinecap": "round",
|
|
1779
|
+
"strokeLinejoin": "round"
|
|
1780
|
+
}],
|
|
1781
|
+
"circles": []
|
|
1782
|
+
},
|
|
1783
|
+
"MessageCheckThin": {
|
|
1784
|
+
"width": "18",
|
|
1785
|
+
"height": "18",
|
|
1786
|
+
"viewBox": "0 0 18 18",
|
|
1787
|
+
"fill": "none",
|
|
1788
|
+
"paths": [{
|
|
1789
|
+
"d": "M6.75 7.875L8.25 9.375L11.625 6M5.25 13.5V15.2516C5.25 15.6513 5.25 15.8511 5.33192 15.9537C5.40317 16.043 5.5112 16.0949 5.6254 16.0948C5.75672 16.0946 5.91275 15.9698 6.22482 15.7201L8.01391 14.2889C8.37939 13.9965 8.56213 13.8503 8.76561 13.7463C8.94615 13.6541 9.13832 13.5867 9.33691 13.5459C9.56075 13.5 9.79477 13.5 10.2628 13.5H12.15C13.4101 13.5 14.0402 13.5 14.5215 13.2548C14.9448 13.039 15.289 12.6948 15.5048 12.2715C15.75 11.7902 15.75 11.1601 15.75 9.9V5.85C15.75 4.58988 15.75 3.95982 15.5048 3.47852C15.289 3.05516 14.9448 2.71095 14.5215 2.49524C14.0402 2.25 13.4101 2.25 12.15 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V10.5C2.25 11.1975 2.25 11.5462 2.32667 11.8323C2.53472 12.6088 3.1412 13.2153 3.91766 13.4233C4.20378 13.5 4.55252 13.5 5.25 13.5Z",
|
|
1790
|
+
"stroke": "#8C8C8C",
|
|
1791
|
+
"strokeWidth": "1.5",
|
|
1792
|
+
"strokeLinecap": "round",
|
|
1793
|
+
"strokeLinejoin": "round"
|
|
1794
|
+
}],
|
|
1795
|
+
"circles": []
|
|
1796
|
+
},
|
|
1797
|
+
"MessageNotificationSquare": {
|
|
1798
|
+
"width": "24",
|
|
1799
|
+
"height": "24",
|
|
1800
|
+
"viewBox": "0 0 24 24",
|
|
1801
|
+
"fill": "none",
|
|
1802
|
+
"paths": [{
|
|
1803
|
+
"d": "M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H15.2C16.8802 18 17.7202 18 18.362 17.673C18.9265 17.3854 19.3854 16.9265 19.673 16.362C20 15.7202 20 14.8802 20 13.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z",
|
|
1804
|
+
"stroke": "#BDBDBD",
|
|
1805
|
+
"strokeWidth": "2",
|
|
1806
|
+
"strokeLinecap": "round",
|
|
1807
|
+
"strokeLinejoin": "round"
|
|
1808
|
+
}],
|
|
1809
|
+
"circles": []
|
|
1810
|
+
},
|
|
1811
|
+
"MessageNotificationThin": {
|
|
1812
|
+
"width": "18",
|
|
1813
|
+
"height": "18",
|
|
1814
|
+
"viewBox": "0 0 18 18",
|
|
1815
|
+
"fill": "none",
|
|
1816
|
+
"paths": [{
|
|
1817
|
+
"d": "M8.25 3H5.85C4.58988 3 3.95982 3 3.47852 3.24524C3.05516 3.46095 2.71095 3.80516 2.49524 4.22852C2.25 4.70982 2.25 5.33988 2.25 6.6V10.5C2.25 11.1975 2.25 11.5462 2.32667 11.8323C2.53472 12.6088 3.1412 13.2153 3.91766 13.4233C4.20378 13.5 4.55252 13.5 5.25 13.5V15.2516C5.25 15.6513 5.25 15.8511 5.33192 15.9537C5.40317 16.043 5.5112 16.0949 5.6254 16.0948C5.75672 16.0946 5.91275 15.9698 6.22482 15.7201L8.01391 14.2889C8.37939 13.9965 8.56213 13.8503 8.76561 13.7463C8.94615 13.6541 9.13832 13.5867 9.33691 13.5459C9.56075 13.5 9.79477 13.5 10.2628 13.5H11.4C12.6601 13.5 13.2902 13.5 13.7715 13.2548C14.1948 13.039 14.539 12.6948 14.7548 12.2715C15 11.7902 15 11.1601 15 9.9V9.75M15.091 2.90901C15.9697 3.78769 15.9697 5.21231 15.091 6.09099C14.2123 6.96967 12.7877 6.96967 11.909 6.09099C11.0303 5.21231 11.0303 3.78769 11.909 2.90901C12.7877 2.03033 14.2123 2.03033 15.091 2.90901Z",
|
|
1818
|
+
"stroke": "#8C8C8C",
|
|
1819
|
+
"strokeWidth": "1.5",
|
|
1820
|
+
"strokeLinecap": "round",
|
|
1821
|
+
"strokeLinejoin": "round"
|
|
1822
|
+
}],
|
|
1823
|
+
"circles": []
|
|
1824
|
+
},
|
|
1825
|
+
"MessageTextSquare02": {
|
|
1826
|
+
"width": "24",
|
|
1827
|
+
"height": "24",
|
|
1828
|
+
"viewBox": "0 0 24 24",
|
|
1829
|
+
"fill": "none",
|
|
1830
|
+
"paths": [{
|
|
1831
|
+
"d": "M7 8.5H12M7 12H15M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
1832
|
+
"stroke": "#BDBDBD",
|
|
1833
|
+
"strokeWidth": "2",
|
|
1834
|
+
"strokeLinecap": "round",
|
|
1835
|
+
"strokeLinejoin": "round"
|
|
1836
|
+
}],
|
|
1837
|
+
"circles": []
|
|
1838
|
+
},
|
|
1839
|
+
"MessageTextThin": {
|
|
1840
|
+
"width": "18",
|
|
1841
|
+
"height": "18",
|
|
1842
|
+
"viewBox": "0 0 18 18",
|
|
1843
|
+
"fill": "none",
|
|
1844
|
+
"paths": [{
|
|
1845
|
+
"d": "M5.25 6.375H9M5.25 9H11.25M5.25 13.5V15.2516C5.25 15.6513 5.25 15.8511 5.33192 15.9537C5.40317 16.043 5.5112 16.0949 5.6254 16.0948C5.75672 16.0946 5.91275 15.9698 6.22482 15.7201L8.01391 14.2889C8.37939 13.9965 8.56213 13.8503 8.76561 13.7463C8.94615 13.6541 9.13832 13.5867 9.33691 13.5459C9.56075 13.5 9.79477 13.5 10.2628 13.5H12.15C13.4101 13.5 14.0402 13.5 14.5215 13.2548C14.9448 13.039 15.289 12.6948 15.5048 12.2715C15.75 11.7902 15.75 11.1601 15.75 9.9V5.85C15.75 4.58988 15.75 3.95982 15.5048 3.47852C15.289 3.05516 14.9448 2.71095 14.5215 2.49524C14.0402 2.25 13.4101 2.25 12.15 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V10.5C2.25 11.1975 2.25 11.5462 2.32667 11.8323C2.53472 12.6088 3.1412 13.2153 3.91766 13.4233C4.20378 13.5 4.55252 13.5 5.25 13.5Z",
|
|
1846
|
+
"stroke": "#8C8C8C",
|
|
1847
|
+
"strokeWidth": "1.5",
|
|
1848
|
+
"strokeLinecap": "round",
|
|
1849
|
+
"strokeLinejoin": "round"
|
|
1850
|
+
}],
|
|
1851
|
+
"circles": []
|
|
1852
|
+
},
|
|
1853
|
+
"MessageXSquare": {
|
|
1854
|
+
"width": "24",
|
|
1855
|
+
"height": "24",
|
|
1856
|
+
"viewBox": "0 0 24 24",
|
|
1857
|
+
"fill": "none",
|
|
1858
|
+
"paths": [{
|
|
1859
|
+
"d": "M9.5 8L14.5 13M14.5 8L9.5 13M7 18V20.3355C7 20.8684 7 21.1348 7.10923 21.2716C7.20422 21.3906 7.34827 21.4599 7.50054 21.4597C7.67563 21.4595 7.88367 21.2931 8.29976 20.9602L10.6852 19.0518C11.1725 18.662 11.4162 18.4671 11.6875 18.3285C11.9282 18.2055 12.1844 18.1156 12.4492 18.0613C12.7477 18 13.0597 18 13.6837 18H16.2C17.8802 18 18.7202 18 19.362 17.673C19.9265 17.3854 20.3854 16.9265 20.673 16.362C21 15.7202 21 14.8802 21 13.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V14C3 14.93 3 15.395 3.10222 15.7765C3.37962 16.8117 4.18827 17.6204 5.22354 17.8978C5.60504 18 6.07003 18 7 18Z",
|
|
1860
|
+
"stroke": "#BDBDBD",
|
|
1861
|
+
"strokeWidth": "2",
|
|
1862
|
+
"strokeLinecap": "round",
|
|
1863
|
+
"strokeLinejoin": "round"
|
|
1864
|
+
}],
|
|
1865
|
+
"circles": []
|
|
1866
|
+
},
|
|
1867
|
+
"MessageXThin": {
|
|
1868
|
+
"width": "18",
|
|
1869
|
+
"height": "18",
|
|
1870
|
+
"viewBox": "0 0 18 18",
|
|
1871
|
+
"fill": "none",
|
|
1872
|
+
"paths": [{
|
|
1873
|
+
"d": "M7.125 6L10.875 9.75M10.875 6L7.125 9.75M5.25 13.5V15.2516C5.25 15.6513 5.25 15.8511 5.33192 15.9537C5.40317 16.043 5.5112 16.0949 5.6254 16.0948C5.75672 16.0946 5.91275 15.9698 6.22482 15.7201L8.01391 14.2889C8.37939 13.9965 8.56213 13.8503 8.76561 13.7463C8.94615 13.6541 9.13832 13.5867 9.33691 13.5459C9.56075 13.5 9.79477 13.5 10.2628 13.5H12.15C13.4101 13.5 14.0402 13.5 14.5215 13.2548C14.9448 13.039 15.289 12.6948 15.5048 12.2715C15.75 11.7902 15.75 11.1601 15.75 9.9V5.85C15.75 4.58988 15.75 3.95982 15.5048 3.47852C15.289 3.05516 14.9448 2.71095 14.5215 2.49524C14.0402 2.25 13.4101 2.25 12.15 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V10.5C2.25 11.1975 2.25 11.5462 2.32667 11.8323C2.53472 12.6088 3.1412 13.2153 3.91766 13.4233C4.20378 13.5 4.55252 13.5 5.25 13.5Z",
|
|
1874
|
+
"stroke": "#8C8C8C",
|
|
1875
|
+
"strokeWidth": "1.5",
|
|
1876
|
+
"strokeLinecap": "round",
|
|
1877
|
+
"strokeLinejoin": "round"
|
|
1878
|
+
}],
|
|
1879
|
+
"circles": []
|
|
1880
|
+
},
|
|
1881
|
+
"Message": {
|
|
1882
|
+
"width": "18",
|
|
1883
|
+
"height": "18",
|
|
1884
|
+
"viewBox": "0 0 18 18",
|
|
1885
|
+
"fill": "none",
|
|
1886
|
+
"paths": [{
|
|
1887
|
+
"d": "M5.25 6.375H9M5.25 9H11.25M5.25 13.5V15.2516C5.25 15.6513 5.25 15.8511 5.33192 15.9537C5.40317 16.043 5.5112 16.0949 5.6254 16.0948C5.75672 16.0946 5.91275 15.9698 6.22482 15.7201L8.01391 14.2889C8.37939 13.9965 8.56213 13.8503 8.76561 13.7463C8.94615 13.6541 9.13832 13.5867 9.33691 13.5459C9.56075 13.5 9.79477 13.5 10.2628 13.5H12.15C13.4101 13.5 14.0402 13.5 14.5215 13.2548C14.9448 13.039 15.289 12.6948 15.5048 12.2715C15.75 11.7902 15.75 11.1601 15.75 9.9V5.85C15.75 4.58988 15.75 3.95982 15.5048 3.47852C15.289 3.05516 14.9448 2.71095 14.5215 2.49524C14.0402 2.25 13.4101 2.25 12.15 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V10.5C2.25 11.1975 2.25 11.5462 2.32667 11.8323C2.53472 12.6088 3.1412 13.2153 3.91766 13.4233C4.20378 13.5 4.55252 13.5 5.25 13.5Z",
|
|
1888
|
+
"stroke": "#8C8C8C",
|
|
1889
|
+
"strokeWidth": "2",
|
|
1890
|
+
"strokeLinecap": "round",
|
|
1891
|
+
"strokeLinejoin": "round"
|
|
1892
|
+
}],
|
|
1893
|
+
"circles": []
|
|
1894
|
+
},
|
|
1895
|
+
"MoveThin": {
|
|
1896
|
+
"width": "18",
|
|
1897
|
+
"height": "18",
|
|
1898
|
+
"viewBox": "0 0 18 18",
|
|
1899
|
+
"fill": "none",
|
|
1900
|
+
"paths": [{
|
|
1901
|
+
"d": "M11.25 2.25H12.15C13.4101 2.25 14.0402 2.25 14.5215 2.49524C14.9448 2.71095 15.289 3.05516 15.5048 3.47852C15.75 3.95982 15.75 4.58988 15.75 5.85V12.15C15.75 13.4101 15.75 14.0402 15.5048 14.5215C15.289 14.9448 14.9448 15.289 14.5215 15.5048C14.0402 15.75 13.4101 15.75 12.15 15.75H11.25M7.5 5.25L11.25 9M11.25 9L7.5 12.75M11.25 9L2.25 9",
|
|
1902
|
+
"stroke": "#8C8C8C",
|
|
1903
|
+
"strokeWidth": "1.5",
|
|
1904
|
+
"strokeLinecap": "round",
|
|
1905
|
+
"strokeLinejoin": "round"
|
|
1906
|
+
}],
|
|
1907
|
+
"circles": []
|
|
1908
|
+
},
|
|
1909
|
+
"Move": {
|
|
1910
|
+
"width": "24",
|
|
1911
|
+
"height": "24",
|
|
1912
|
+
"viewBox": "0 0 24 24",
|
|
1913
|
+
"fill": "none",
|
|
1914
|
+
"paths": [{
|
|
1915
|
+
"d": "M15 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11985 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H15M10 7L15 12M15 12L10 17M15 12L3 12",
|
|
1916
|
+
"stroke": "#8C8C8C",
|
|
1917
|
+
"strokeWidth": "2",
|
|
1918
|
+
"strokeLinecap": "round",
|
|
1919
|
+
"strokeLinejoin": "round"
|
|
1920
|
+
}],
|
|
1921
|
+
"circles": []
|
|
1922
|
+
},
|
|
1923
|
+
"Network03": {
|
|
1924
|
+
"width": "24",
|
|
1925
|
+
"height": "24",
|
|
1926
|
+
"viewBox": "0 0 24 24",
|
|
1927
|
+
"fill": "none",
|
|
1928
|
+
"paths": [{
|
|
1929
|
+
"d": "M22.5 22.5H16.5V16.5H22.5V22.5ZM18 21H21V18H18V21Z",
|
|
1930
|
+
"fill": "#8C8C8C"
|
|
1931
|
+
}, {
|
|
1932
|
+
"d": "M15 20.25H6C4.80653 20.25 3.66193 19.7759 2.81802 18.932C1.97411 18.0881 1.5 16.9435 1.5 15.75C1.5 14.5565 1.97411 13.4119 2.81802 12.568C3.66193 11.7241 4.80653 11.25 6 11.25H7.5V12.75H6C5.20435 12.75 4.44129 13.0661 3.87868 13.6287C3.31607 14.1913 3 14.9544 3 15.75C3 16.5456 3.31607 17.3087 3.87868 17.8713C4.44129 18.4339 5.20435 18.75 6 18.75H15V20.25Z",
|
|
1933
|
+
"fill": "#8C8C8C"
|
|
1934
|
+
}, {
|
|
1935
|
+
"d": "M15 15H9V9H15V15ZM10.5 13.5H13.5V10.5H10.5V13.5Z",
|
|
1936
|
+
"fill": "#8C8C8C"
|
|
1937
|
+
}, {
|
|
1938
|
+
"d": "M18 12.75H16.5V11.25H18C18.7957 11.25 19.5587 10.9339 20.1213 10.3713C20.6839 9.80871 21 9.04565 21 8.25C21 7.45435 20.6839 6.69129 20.1213 6.12868C19.5587 5.56607 18.7957 5.25 18 5.25H9V3.75H18C19.1935 3.75 20.3381 4.22411 21.182 5.06802C22.0259 5.91193 22.5 7.05653 22.5 8.25C22.5 9.44347 22.0259 10.5881 21.182 11.432C20.3381 12.2759 19.1935 12.75 18 12.75Z",
|
|
1939
|
+
"fill": "#8C8C8C"
|
|
1940
|
+
}, {
|
|
1941
|
+
"d": "M7.5 7.5H1.5V1.5H7.5V7.5ZM3 6H6V3H3V6Z",
|
|
1942
|
+
"fill": "#8C8C8C"
|
|
1943
|
+
}],
|
|
1944
|
+
"circles": []
|
|
1945
|
+
},
|
|
1946
|
+
"Network04": {
|
|
1947
|
+
"width": "24",
|
|
1948
|
+
"height": "24",
|
|
1949
|
+
"viewBox": "0 0 24 24",
|
|
1950
|
+
"fill": "none",
|
|
1951
|
+
"paths": [{
|
|
1952
|
+
"d": "M15.75 21C16.5784 21 17.25 20.3284 17.25 19.5C17.25 18.6716 16.5784 18 15.75 18C14.9216 18 14.25 18.6716 14.25 19.5C14.25 20.3284 14.9216 21 15.75 21Z",
|
|
1953
|
+
"fill": "#8C8C8C"
|
|
1954
|
+
}, {
|
|
1955
|
+
"d": "M15.75 6C16.5784 6 17.25 5.32843 17.25 4.5C17.25 3.67157 16.5784 3 15.75 3C14.9216 3 14.25 3.67157 14.25 4.5C14.25 5.32843 14.9216 6 15.75 6Z",
|
|
1956
|
+
"fill": "#8C8C8C"
|
|
1957
|
+
}, {
|
|
1958
|
+
"d": "M3 13.5C3.82843 13.5 4.5 12.8284 4.5 12C4.5 11.1716 3.82843 10.5 3 10.5C2.17157 10.5 1.5 11.1716 1.5 12C1.5 12.8284 2.17157 13.5 3 13.5Z",
|
|
1959
|
+
"fill": "#8C8C8C"
|
|
1960
|
+
}, {
|
|
1961
|
+
"d": "M21 9C20.3367 9.00202 19.6929 9.22399 19.1693 9.63116C18.6457 10.0383 18.2719 10.6077 18.1066 11.25H14.8934C14.7872 10.827 14.5893 10.4325 14.3137 10.0945C14.0381 9.75653 13.6915 9.48329 13.2985 9.29417C12.9055 9.10505 12.4757 9.00467 12.0396 9.00016C11.6035 8.99565 11.1717 9.0871 10.7749 9.26805L8.3925 6.2904C8.78449 5.77564 8.99779 5.14702 9 4.5C9 3.90666 8.82405 3.32664 8.49441 2.83329C8.16476 2.33994 7.69623 1.95543 7.14805 1.72836C6.59987 1.5013 5.99667 1.44189 5.41473 1.55765C4.83279 1.6734 4.29824 1.95912 3.87868 2.37868C3.45912 2.79824 3.1734 3.33279 3.05764 3.91473C2.94189 4.49667 3.0013 5.09987 3.22836 5.64805C3.45542 6.19623 3.83994 6.66477 4.33329 6.99441C4.82664 7.32405 5.40666 7.5 6 7.5C6.42287 7.4989 6.84064 7.40752 7.22535 7.23195L9.60735 10.2095C9.21352 10.7232 9.00008 11.3525 9.00008 11.9999C9.00008 12.6472 9.21352 13.2765 9.60735 13.7902L7.2255 16.7678C6.84072 16.5923 6.4229 16.501 6 16.5C5.40666 16.5 4.82664 16.6759 4.33329 17.0056C3.83994 17.3352 3.45542 17.8038 3.22836 18.3519C3.0013 18.9001 2.94189 19.5033 3.05764 20.0853C3.1734 20.6672 3.45912 21.2018 3.87868 21.6213C4.29824 22.0409 4.83279 22.3266 5.41473 22.4424C5.99667 22.5581 6.59987 22.4987 7.14805 22.2716C7.69623 22.0446 8.16476 21.6601 8.49441 21.1667C8.82405 20.6734 9 20.0933 9 19.5C8.9978 18.853 8.7845 18.2244 8.3925 17.7096L10.7744 14.7321C11.1712 14.9131 11.603 15.0046 12.0392 15.0001C12.4754 14.9956 12.9052 14.8952 13.2983 14.7061C13.6913 14.517 14.038 14.2437 14.3136 13.9056C14.5893 13.5676 14.7872 13.1731 14.8934 12.75H18.1066C18.2478 13.292 18.5381 13.7836 18.9446 14.1689C19.3512 14.5542 19.8576 14.8178 20.4064 14.9297C20.9552 15.0416 21.5245 14.9974 22.0494 14.8021C22.5744 14.6067 23.034 14.2681 23.3762 13.8247C23.7183 13.3812 23.9293 12.8507 23.9851 12.2934C24.0409 11.736 23.9392 11.1742 23.6918 10.6718C23.4443 10.1693 23.0609 9.74626 22.5851 9.45075C22.1093 9.15524 21.5601 8.99908 21 9ZM4.5 4.5C4.5 4.20333 4.58797 3.91332 4.7528 3.66665C4.91762 3.41997 5.15189 3.22771 5.42597 3.11418C5.70006 3.00065 6.00166 2.97095 6.29264 3.02882C6.58361 3.0867 6.85088 3.22956 7.06066 3.43934C7.27044 3.64912 7.4133 3.91639 7.47118 4.20737C7.52906 4.49834 7.49935 4.79994 7.38582 5.07403C7.27229 5.34812 7.08003 5.58238 6.83335 5.74721C6.58668 5.91203 6.29667 6 6 6C5.60232 5.99954 5.22105 5.84136 4.93984 5.56016C4.65864 5.27895 4.50046 4.89769 4.5 4.5ZM6 21C5.70333 21 5.41332 20.912 5.16664 20.7472C4.91997 20.5824 4.72771 20.3481 4.61418 20.074C4.50065 19.7999 4.47094 19.4983 4.52882 19.2074C4.5867 18.9164 4.72956 18.6491 4.93934 18.4393C5.14912 18.2296 5.41639 18.0867 5.70736 18.0288C5.99834 17.9709 6.29994 18.0007 6.57403 18.1142C6.84811 18.2277 7.08238 18.42 7.2472 18.6666C7.41203 18.9133 7.5 19.2033 7.5 19.5C7.49954 19.8977 7.34136 20.2789 7.06016 20.5602C6.77895 20.8414 6.39768 20.9995 6 21ZM12 13.5C11.7033 13.5 11.4133 13.412 11.1666 13.2472C10.92 13.0824 10.7277 12.8481 10.6142 12.574C10.5006 12.2999 10.4709 11.9983 10.5288 11.7074C10.5867 11.4164 10.7296 11.1491 10.9393 10.9393C11.1491 10.7296 11.4164 10.5867 11.7074 10.5288C11.9983 10.4709 12.2999 10.5007 12.574 10.6142C12.8481 10.7277 13.0824 10.92 13.2472 11.1666C13.412 11.4133 13.5 11.7033 13.5 12C13.4995 12.3977 13.3414 12.779 13.0602 13.0602C12.779 13.3414 12.3977 13.4995 12 13.5ZM21 13.5C20.7033 13.5 20.4133 13.412 20.1666 13.2472C19.92 13.0824 19.7277 12.8481 19.6142 12.574C19.5006 12.2999 19.4709 11.9983 19.5288 11.7074C19.5867 11.4164 19.7296 11.1491 19.9393 10.9393C20.1491 10.7296 20.4164 10.5867 20.7074 10.5288C20.9983 10.4709 21.2999 10.5007 21.574 10.6142C21.8481 10.7277 22.0824 10.92 22.2472 11.1666C22.412 11.4133 22.5 11.7033 22.5 12C22.4995 12.3977 22.3414 12.779 22.0602 13.0602C21.7789 13.3414 21.3977 13.4995 21 13.5Z",
|
|
1962
|
+
"fill": "#8C8C8C"
|
|
1963
|
+
}],
|
|
1964
|
+
"circles": []
|
|
1965
|
+
},
|
|
1966
|
+
"PauseThin": {
|
|
1967
|
+
"width": "18",
|
|
1968
|
+
"height": "18",
|
|
1969
|
+
"viewBox": "0 0 18 18",
|
|
1970
|
+
"fill": "none",
|
|
1971
|
+
"paths": [{
|
|
1972
|
+
"d": "M4.22775 4.22775L13.7722 13.7722M15.75 9C15.75 12.7279 12.7279 15.75 9 15.75C5.27208 15.75 2.25 12.7279 2.25 9C2.25 5.27208 5.27208 2.25 9 2.25C12.7279 2.25 15.75 5.27208 15.75 9Z",
|
|
1973
|
+
"stroke": "#8C8C8C",
|
|
1974
|
+
"strokeWidth": "1.5",
|
|
1975
|
+
"strokeLinecap": "round",
|
|
1976
|
+
"strokeLinejoin": "round"
|
|
1977
|
+
}],
|
|
1978
|
+
"circles": []
|
|
1979
|
+
},
|
|
1980
|
+
"Pause": {
|
|
1981
|
+
"width": "24",
|
|
1982
|
+
"height": "24",
|
|
1983
|
+
"viewBox": "0 0 24 24",
|
|
1984
|
+
"fill": "none",
|
|
1985
|
+
"paths": [{
|
|
1986
|
+
"d": "M5.637 5.637L18.363 18.363M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",
|
|
1987
|
+
"stroke": "#8C8C8C",
|
|
1988
|
+
"strokeWidth": "2",
|
|
1989
|
+
"strokeLinecap": "round",
|
|
1990
|
+
"strokeLinejoin": "round"
|
|
1991
|
+
}],
|
|
1992
|
+
"circles": []
|
|
1993
|
+
},
|
|
1994
|
+
"PieChart02": {
|
|
1995
|
+
"width": "24",
|
|
1996
|
+
"height": "24",
|
|
1997
|
+
"viewBox": "0 0 24 24",
|
|
1998
|
+
"fill": "none",
|
|
1999
|
+
"paths": [{
|
|
2000
|
+
"d": "M17.2 14.0002C17.477 14.0002 17.6155 14.0002 17.7278 14.0617C17.8204 14.1124 17.9065 14.2077 17.9478 14.3049C17.9978 14.4227 17.9852 14.5481 17.96 14.7989C17.8296 16.0989 17.3822 17.3516 16.6518 18.4447C15.7727 19.7603 14.5233 20.7857 13.0615 21.3912C11.5997 21.9967 9.99113 22.1551 8.43928 21.8465C6.88743 21.5378 5.46197 20.7758 4.34315 19.657C3.22433 18.5382 2.4624 17.1127 2.15372 15.5609C1.84504 14.009 2.00347 12.4005 2.60897 10.9387C3.21447 9.47689 4.23985 8.22746 5.55544 7.34841C6.64856 6.61801 7.90125 6.17057 9.20131 6.04013C9.45207 6.01497 9.57745 6.00239 9.69528 6.05239C9.79249 6.09363 9.88776 6.17982 9.9385 6.27242C10 6.38467 10 6.52317 10 6.80017V13.2002C10 13.4802 10 13.6202 10.0545 13.7272C10.1024 13.8212 10.1789 13.8977 10.273 13.9457C10.38 14.0002 10.52 14.0002 10.8 14.0002H17.2Z",
|
|
2001
|
+
"stroke": "#8C8C8C",
|
|
2002
|
+
"strokeWidth": "2",
|
|
2003
|
+
"strokeLinecap": "round",
|
|
2004
|
+
"strokeLinejoin": "round"
|
|
2005
|
+
}, {
|
|
2006
|
+
"d": "M14 2.80017C14 2.52317 14 2.38466 14.0615 2.27241C14.1122 2.17981 14.2075 2.09362 14.3047 2.05238C14.4225 2.00238 14.5479 2.01496 14.7987 2.04011C16.6271 2.22351 18.346 3.03247 19.6569 4.34332C20.9677 5.65416 21.7767 7.37307 21.9601 9.20147C21.9852 9.45224 21.9978 9.57763 21.9478 9.69546C21.9066 9.79266 21.8204 9.88793 21.7278 9.93866C21.6155 10.0002 21.477 10.0002 21.2 10.0002L14.8 10.0002C14.52 10.0002 14.38 10.0002 14.273 9.94567C14.1789 9.89774 14.1024 9.82125 14.0545 9.72717C14 9.62021 14 9.4802 14 9.20017V2.80017Z",
|
|
2007
|
+
"stroke": "#8C8C8C",
|
|
2008
|
+
"strokeWidth": "2",
|
|
2009
|
+
"strokeLinecap": "round",
|
|
2010
|
+
"strokeLinejoin": "round"
|
|
2011
|
+
}],
|
|
2012
|
+
"circles": []
|
|
2013
|
+
},
|
|
2014
|
+
"PieChart03": {
|
|
2015
|
+
"width": "24",
|
|
2016
|
+
"height": "24",
|
|
2017
|
+
"viewBox": "0 0 24 24",
|
|
2018
|
+
"fill": "none",
|
|
2019
|
+
"paths": [{
|
|
2020
|
+
"d": "M12 2C13.3132 2 14.6136 2.25866 15.8268 2.76121C17.0401 3.26375 18.1425 4.00035 19.0711 4.92893C19.9997 5.85752 20.7363 6.95991 21.2388 8.17317C21.7413 9.38643 22 10.6868 22 12M12 2V12M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5229 22 12M12 2C17.5228 2 22 6.47716 22 12M22 12L12 12M22 12C22 13.5781 21.6265 15.1338 20.9101 16.5399C20.1936 17.946 19.1546 19.1626 17.8779 20.0902L12 12",
|
|
2021
|
+
"stroke": "#8C8C8C",
|
|
2022
|
+
"strokeWidth": "2",
|
|
2023
|
+
"strokeLinecap": "round",
|
|
2024
|
+
"strokeLinejoin": "round"
|
|
2025
|
+
}],
|
|
2026
|
+
"circles": []
|
|
2027
|
+
},
|
|
2028
|
+
"PlayCircle_left": {
|
|
2029
|
+
"width": "24",
|
|
2030
|
+
"height": "24",
|
|
2031
|
+
"viewBox": "0 0 24 24",
|
|
2032
|
+
"fill": "none",
|
|
2033
|
+
"paths": [{
|
|
2034
|
+
"d": "M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2Z",
|
|
2035
|
+
"stroke": "#8C8C8C",
|
|
2036
|
+
"strokeWidth": "2",
|
|
2037
|
+
"strokeLinecap": "round",
|
|
2038
|
+
"strokeLinejoin": "round"
|
|
2039
|
+
}, {
|
|
2040
|
+
"d": "M14.5 15.0347C14.5 15.512 14.5 15.7506 14.4003 15.8838C14.3133 15.9999 14.1803 16.0726 14.0356 16.0829C13.8696 16.0948 13.6689 15.9657 13.2674 15.7076L8.5468 12.6729C8.19841 12.449 8.02422 12.337 7.96406 12.1946C7.91149 12.0702 7.91149 11.9298 7.96406 11.8054C8.02422 11.663 8.19841 11.551 8.5468 11.3271L13.2674 8.29239C13.6689 8.03429 13.8696 7.90525 14.0356 7.9171C14.1803 7.92743 14.3133 8.00007 14.4003 8.11618C14.5 8.2494 14.5 8.48805 14.5 8.96533L14.5 15.0347Z",
|
|
2041
|
+
"stroke": "#8C8C8C",
|
|
2042
|
+
"strokeWidth": "2",
|
|
2043
|
+
"strokeLinecap": "round",
|
|
2044
|
+
"strokeLinejoin": "round"
|
|
2045
|
+
}],
|
|
2046
|
+
"circles": []
|
|
2047
|
+
},
|
|
2048
|
+
"PlayCircle_right": {
|
|
2049
|
+
"width": "24",
|
|
2050
|
+
"height": "24",
|
|
2051
|
+
"viewBox": "0 0 24 24",
|
|
2052
|
+
"fill": "none",
|
|
2053
|
+
"paths": [{
|
|
2054
|
+
"d": "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
|
|
2055
|
+
"stroke": "#8C8C8C",
|
|
2056
|
+
"strokeWidth": "2",
|
|
2057
|
+
"strokeLinecap": "round",
|
|
2058
|
+
"strokeLinejoin": "round"
|
|
2059
|
+
}, {
|
|
2060
|
+
"d": "M9.5 8.96533C9.5 8.48805 9.5 8.24941 9.59974 8.11618C9.68666 8.00007 9.81971 7.92744 9.96438 7.9171C10.1304 7.90525 10.3311 8.03429 10.7326 8.29239L15.4532 11.3271C15.8016 11.551 15.9758 11.663 16.0359 11.8054C16.0885 11.9298 16.0885 12.0702 16.0359 12.1946C15.9758 12.337 15.8016 12.449 15.4532 12.6729L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 15.9999 9.59974 15.8838C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96533Z",
|
|
2061
|
+
"stroke": "#8C8C8C",
|
|
2062
|
+
"strokeWidth": "2",
|
|
2063
|
+
"strokeLinecap": "round",
|
|
2064
|
+
"strokeLinejoin": "round"
|
|
2065
|
+
}],
|
|
2066
|
+
"circles": []
|
|
2067
|
+
},
|
|
2068
|
+
"PlusCircleThin": {
|
|
2069
|
+
"width": "18",
|
|
2070
|
+
"height": "18",
|
|
2071
|
+
"viewBox": "0 0 18 18",
|
|
2072
|
+
"fill": "none",
|
|
2073
|
+
"paths": [{
|
|
2074
|
+
"d": "M9 6V12M6 9H12M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z",
|
|
2075
|
+
"stroke": "black",
|
|
2076
|
+
"strokeWidth": "1.5",
|
|
2077
|
+
"strokeLinecap": "round",
|
|
2078
|
+
"strokeLinejoin": "round"
|
|
2079
|
+
}],
|
|
2080
|
+
"circles": []
|
|
2081
|
+
},
|
|
2082
|
+
"PlusCircle": {
|
|
2083
|
+
"width": "24",
|
|
2084
|
+
"height": "24",
|
|
2085
|
+
"viewBox": "0 0 24 24",
|
|
2086
|
+
"fill": "none",
|
|
2087
|
+
"paths": [{
|
|
2088
|
+
"d": "M12 8V16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
2089
|
+
"stroke": "#8C8C8C",
|
|
2090
|
+
"strokeWidth": "2",
|
|
2091
|
+
"strokeLinecap": "round",
|
|
2092
|
+
"strokeLinejoin": "round"
|
|
2093
|
+
}],
|
|
2094
|
+
"circles": []
|
|
2095
|
+
},
|
|
2096
|
+
"RadioOffThin": {
|
|
2097
|
+
"width": "18",
|
|
2098
|
+
"height": "18",
|
|
2099
|
+
"viewBox": "0 0 18 18",
|
|
2100
|
+
"fill": "none",
|
|
2101
|
+
"paths": [{
|
|
2102
|
+
"d": "M9 1.5C7.51664 1.5 6.0666 1.93987 4.83323 2.76398C3.59986 3.58809 2.63856 4.75943 2.07091 6.12987C1.50325 7.50032 1.35472 9.00832 1.64411 10.4632C1.9335 11.918 2.64781 13.2544 3.6967 14.3033C4.7456 15.3522 6.08197 16.0665 7.53683 16.3559C8.99168 16.6453 10.4997 16.4968 11.8701 15.9291C13.2406 15.3614 14.4119 14.4001 15.236 13.1668C16.0601 11.9334 16.5 10.4834 16.5 9C16.5 8.01509 16.306 7.03982 15.9291 6.12987C15.5522 5.21993 14.9997 4.39314 14.3033 3.6967C13.6069 3.00026 12.7801 2.44781 11.8701 2.0709C10.9602 1.69399 9.98492 1.5 9 1.5ZM9 15C7.81332 15 6.65328 14.6481 5.66658 13.9888C4.67989 13.3295 3.91085 12.3925 3.45673 11.2961C3.0026 10.1997 2.88378 8.99334 3.11529 7.82946C3.3468 6.66557 3.91825 5.59647 4.75736 4.75736C5.59648 3.91824 6.66558 3.3468 7.82946 3.11529C8.99335 2.88378 10.1997 3.0026 11.2961 3.45672C12.3925 3.91085 13.3295 4.67988 13.9888 5.66658C14.6481 6.65327 15 7.81331 15 9C15 10.5913 14.3679 12.1174 13.2426 13.2426C12.1174 14.3679 10.5913 15 9 15Z",
|
|
2103
|
+
"fill": "#8C8C8C"
|
|
2104
|
+
}, {
|
|
2105
|
+
"d": "M9 5.25C8.25832 5.25 7.5333 5.46993 6.91661 5.88199C6.29993 6.29404 5.81928 6.87971 5.53545 7.56494C5.25162 8.25016 5.17736 9.00416 5.32206 9.73159C5.46675 10.459 5.8239 11.1272 6.34835 11.6517C6.8728 12.1761 7.54098 12.5333 8.26841 12.6779C8.99584 12.8226 9.74984 12.7484 10.4351 12.4645C11.1203 12.1807 11.706 11.7001 12.118 11.0834C12.5301 10.4667 12.75 9.74168 12.75 9C12.75 8.00544 12.3549 7.05161 11.6517 6.34835C10.9484 5.64509 9.99456 5.25 9 5.25Z",
|
|
2106
|
+
"fill": "#8C8C8C"
|
|
2107
|
+
}],
|
|
2108
|
+
"circles": []
|
|
2109
|
+
},
|
|
2110
|
+
"RadioOnThin": {
|
|
2111
|
+
"width": "18",
|
|
2112
|
+
"height": "18",
|
|
2113
|
+
"viewBox": "0 0 18 18",
|
|
2114
|
+
"fill": "none",
|
|
2115
|
+
"paths": [{
|
|
2116
|
+
"d": "M9 1.5C7.51664 1.5 6.0666 1.93987 4.83323 2.76398C3.59986 3.58809 2.63856 4.75943 2.07091 6.12987C1.50325 7.50032 1.35472 9.00832 1.64411 10.4632C1.9335 11.918 2.64781 13.2544 3.6967 14.3033C4.7456 15.3522 6.08197 16.0665 7.53683 16.3559C8.99168 16.6453 10.4997 16.4968 11.8701 15.9291C13.2406 15.3614 14.4119 14.4001 15.236 13.1668C16.0601 11.9334 16.5 10.4834 16.5 9C16.5 8.01509 16.306 7.03982 15.9291 6.12987C15.5522 5.21993 14.9997 4.39314 14.3033 3.6967C13.6069 3.00026 12.7801 2.44781 11.8701 2.0709C10.9602 1.69399 9.98492 1.5 9 1.5ZM9 15C7.81332 15 6.65328 14.6481 5.66658 13.9888C4.67989 13.3295 3.91085 12.3925 3.45673 11.2961C3.0026 10.1997 2.88378 8.99334 3.11529 7.82946C3.3468 6.66557 3.91825 5.59647 4.75736 4.75736C5.59648 3.91824 6.66558 3.3468 7.82946 3.11529C8.99335 2.88378 10.1997 3.0026 11.2961 3.45672C12.3925 3.91085 13.3295 4.67988 13.9888 5.66658C14.6481 6.65327 15 7.81331 15 9C15 10.5913 14.3679 12.1174 13.2426 13.2426C12.1174 14.3679 10.5913 15 9 15Z",
|
|
2117
|
+
"fill": "#8C8C8C"
|
|
2118
|
+
}],
|
|
2119
|
+
"circles": []
|
|
2120
|
+
},
|
|
2121
|
+
"RefreshCcw02Thin": {
|
|
2122
|
+
"width": "18",
|
|
2123
|
+
"height": "18",
|
|
2124
|
+
"viewBox": "0 0 18 18",
|
|
2125
|
+
"fill": "none",
|
|
2126
|
+
"paths": [{
|
|
2127
|
+
"d": "M1.5 7.5C1.5 7.5 1.59099 6.86307 4.22703 4.22703C6.86307 1.59099 11.1369 1.59099 13.773 4.22703C14.7069 5.16099 15.31 6.30054 15.5821 7.5M1.5 7.5V3M1.5 7.5H6M16.5 10.5C16.5 10.5 16.409 11.1369 13.773 13.773C11.1369 16.409 6.86307 16.409 4.22703 13.773C3.29307 12.839 2.69002 11.6995 2.41787 10.5M16.5 10.5V15M16.5 10.5H12",
|
|
2128
|
+
"stroke": "#8C8C8C",
|
|
2129
|
+
"strokeWidth": "1.5",
|
|
2130
|
+
"strokeLinecap": "round",
|
|
2131
|
+
"strokeLinejoin": "round"
|
|
2132
|
+
}],
|
|
2133
|
+
"circles": []
|
|
2134
|
+
},
|
|
2135
|
+
"RefreshCcw02": {
|
|
2136
|
+
"width": "24",
|
|
2137
|
+
"height": "24",
|
|
2138
|
+
"viewBox": "0 0 24 24",
|
|
2139
|
+
"fill": "none",
|
|
2140
|
+
"paths": [{
|
|
2141
|
+
"d": "M2 10C2 10 2.12132 9.15076 5.63604 5.63604C9.15076 2.12132 14.8492 2.12132 18.364 5.63604C19.6092 6.88131 20.4133 8.40072 20.7762 10M2 10V4M2 10H8M22 14C22 14 21.8787 14.8492 18.364 18.364C14.8492 21.8787 9.15076 21.8787 5.63604 18.364C4.39076 17.1187 3.58669 15.5993 3.22383 14M22 14V20M22 14H16",
|
|
2142
|
+
"stroke": "#8C8C8C",
|
|
2143
|
+
"strokeWidth": "2",
|
|
2144
|
+
"strokeLinecap": "round",
|
|
2145
|
+
"strokeLinejoin": "round"
|
|
2146
|
+
}],
|
|
2147
|
+
"circles": []
|
|
2148
|
+
},
|
|
2149
|
+
"RefreshCw01Thin": {
|
|
2150
|
+
"width": "18",
|
|
2151
|
+
"height": "18",
|
|
2152
|
+
"viewBox": "0 0 18 18",
|
|
2153
|
+
"fill": "none",
|
|
2154
|
+
"paths": [{
|
|
2155
|
+
"d": "M1.5 7.5C1.5 7.5 3.00374 5.45116 4.22538 4.22868C5.44702 3.0062 7.1352 2.25 9 2.25C12.7279 2.25 15.75 5.27208 15.75 9C15.75 12.7279 12.7279 15.75 9 15.75C5.92268 15.75 3.32633 13.6907 2.51382 10.875M1.5 7.5V3M1.5 7.5H6",
|
|
2156
|
+
"stroke": "#8C8C8C",
|
|
2157
|
+
"strokeWidth": "1.5",
|
|
2158
|
+
"strokeLinecap": "round",
|
|
2159
|
+
"strokeLinejoin": "round"
|
|
2160
|
+
}],
|
|
2161
|
+
"circles": []
|
|
2162
|
+
},
|
|
2163
|
+
"RefreshCw02Thin": {
|
|
2164
|
+
"width": "18",
|
|
2165
|
+
"height": "18",
|
|
2166
|
+
"viewBox": "0 0 18 18",
|
|
2167
|
+
"fill": "none",
|
|
2168
|
+
"paths": [{
|
|
2169
|
+
"d": "M15 7.83333C15 7.83333 13.8128 6.23979 12.8484 5.28898C11.8839 4.33816 10.5512 3.75 9.07895 3.75C6.13585 3.75 3.75 6.1005 3.75 9C3.75 11.8995 6.13585 14.25 9.07895 14.25C11.5084 14.25 13.5582 12.6483 14.1996 10.4583M15 7.83333V4.33333M15 7.83333H11.4474",
|
|
2170
|
+
"stroke": "#8C8C8C",
|
|
2171
|
+
"strokeWidth": "1.5",
|
|
2172
|
+
"strokeLinecap": "round",
|
|
2173
|
+
"strokeLinejoin": "round"
|
|
2174
|
+
}],
|
|
2175
|
+
"circles": []
|
|
2176
|
+
},
|
|
2177
|
+
"ReverseLeft": {
|
|
2178
|
+
"width": "18",
|
|
2179
|
+
"height": "18",
|
|
2180
|
+
"viewBox": "0 0 18 18",
|
|
2181
|
+
"fill": "none",
|
|
2182
|
+
"paths": [{
|
|
2183
|
+
"d": "M3 5.25H10.5C12.9853 5.25 15 7.26472 15 9.75C15 12.2353 12.9853 14.25 10.5 14.25H3M3 5.25L6 2.25M3 5.25L6 8.25",
|
|
2184
|
+
"stroke": "#8C8C8C",
|
|
2185
|
+
"strokeWidth": "2",
|
|
2186
|
+
"strokeLinecap": "round",
|
|
2187
|
+
"strokeLinejoin": "round"
|
|
2188
|
+
}],
|
|
2189
|
+
"circles": []
|
|
2190
|
+
},
|
|
2191
|
+
"SearchMdThin": {
|
|
2192
|
+
"width": "18",
|
|
2193
|
+
"height": "18",
|
|
2194
|
+
"viewBox": "0 0 18 18",
|
|
2195
|
+
"fill": "none",
|
|
2196
|
+
"paths": [{
|
|
2197
|
+
"d": "M15.75 15.75L12.4875 12.4875M14.25 8.25C14.25 11.5637 11.5637 14.25 8.25 14.25C4.93629 14.25 2.25 11.5637 2.25 8.25C2.25 4.93629 4.93629 2.25 8.25 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25Z",
|
|
2198
|
+
"stroke": "#8C8C8C",
|
|
2199
|
+
"strokeWidth": "1.5",
|
|
2200
|
+
"strokeLinecap": "round",
|
|
2201
|
+
"strokeLinejoin": "round"
|
|
2202
|
+
}],
|
|
2203
|
+
"circles": []
|
|
2204
|
+
},
|
|
2205
|
+
"SearchMd": {
|
|
2206
|
+
"width": "24",
|
|
2207
|
+
"height": "24",
|
|
2208
|
+
"viewBox": "0 0 24 24",
|
|
2209
|
+
"fill": "none",
|
|
2210
|
+
"paths": [{
|
|
2211
|
+
"d": "M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z",
|
|
2212
|
+
"stroke": "#8C8C8C",
|
|
2213
|
+
"strokeWidth": "2",
|
|
2214
|
+
"strokeLinecap": "round",
|
|
2215
|
+
"strokeLinejoin": "round"
|
|
2216
|
+
}],
|
|
2217
|
+
"circles": []
|
|
2218
|
+
},
|
|
2219
|
+
"Settings02Thin": {
|
|
2220
|
+
"width": "18",
|
|
2221
|
+
"height": "18",
|
|
2222
|
+
"viewBox": "0 0 18 18",
|
|
2223
|
+
"fill": "none",
|
|
2224
|
+
"paths": [{
|
|
2225
|
+
"d": "M7.04628 14.5283L7.48462 15.5142C7.61492 15.8076 7.82757 16.057 8.09678 16.232C8.366 16.4069 8.6802 16.5001 9.00128 16.5C9.32237 16.5001 9.63657 16.4069 9.90578 16.232C10.175 16.057 10.3876 15.8076 10.5179 15.5142L10.9563 14.5283C11.1123 14.1785 11.3748 13.8869 11.7063 13.695C12.0399 13.5026 12.4258 13.4206 12.8088 13.4608L13.8813 13.575C14.2005 13.6088 14.5227 13.5492 14.8088 13.4035C15.0949 13.2578 15.3325 13.0322 15.4929 12.7542C15.6536 12.4763 15.7301 12.1577 15.7132 11.8372C15.6964 11.5166 15.5869 11.2079 15.3979 10.9483L14.7629 10.0758C14.5368 9.76285 14.416 9.38611 14.4179 9C14.4179 8.61494 14.5398 8.23976 14.7663 7.92833L15.4013 7.05583C15.5902 6.79632 15.6997 6.48755 15.7166 6.16701C15.7334 5.84646 15.6569 5.52791 15.4963 5.25C15.3359 4.97193 15.0982 4.74637 14.8121 4.60067C14.5261 4.45497 14.2039 4.3954 13.8846 4.42917L12.8121 4.54333C12.4291 4.58356 12.0432 4.50159 11.7096 4.30917C11.3775 4.11619 11.1149 3.82302 10.9596 3.47167L10.5179 2.48583C10.3876 2.19238 10.175 1.94304 9.90578 1.76805C9.63657 1.59306 9.32237 1.49995 9.00128 1.5C8.6802 1.49995 8.366 1.59306 8.09678 1.76805C7.82757 1.94304 7.61492 2.19238 7.48462 2.48583L7.04628 3.47167C6.89098 3.82302 6.62844 4.11619 6.29628 4.30917C5.96269 4.50159 5.57678 4.58356 5.19378 4.54333L4.11795 4.42917C3.7987 4.3954 3.4765 4.45497 3.19043 4.60067C2.90437 4.74637 2.66671 4.97193 2.50628 5.25C2.34565 5.52791 2.26912 5.84646 2.28598 6.16701C2.30285 6.48755 2.41237 6.79632 2.60128 7.05583L3.23628 7.92833C3.46274 8.23976 3.58468 8.61494 3.58461 9C3.58468 9.38506 3.46274 9.76024 3.23628 10.0717L2.60128 10.9442C2.41237 11.2037 2.30285 11.5124 2.28598 11.833C2.26912 12.1535 2.34565 12.4721 2.50628 12.75C2.66687 13.0279 2.90455 13.2534 3.19058 13.399C3.47661 13.5447 3.79872 13.6044 4.11795 13.5708L5.19045 13.4567C5.57345 13.4164 5.95936 13.4984 6.29295 13.6908C6.62634 13.8833 6.89011 14.1765 7.04628 14.5283Z",
|
|
2226
|
+
"stroke": "#8C8C8C",
|
|
2227
|
+
"strokeWidth": "1.5",
|
|
2228
|
+
"strokeLinecap": "round",
|
|
2229
|
+
"strokeLinejoin": "round"
|
|
2230
|
+
}, {
|
|
2231
|
+
"d": "M8.99994 11.25C10.2426 11.25 11.2499 10.2426 11.2499 9C11.2499 7.75736 10.2426 6.75 8.99994 6.75C7.7573 6.75 6.74994 7.75736 6.74994 9C6.74994 10.2426 7.7573 11.25 8.99994 11.25Z",
|
|
2232
|
+
"stroke": "#8C8C8C",
|
|
2233
|
+
"strokeWidth": "1.5",
|
|
2234
|
+
"strokeLinecap": "round",
|
|
2235
|
+
"strokeLinejoin": "round"
|
|
2236
|
+
}],
|
|
2237
|
+
"circles": []
|
|
2238
|
+
},
|
|
2239
|
+
"Share03Thin": {
|
|
2240
|
+
"width": "18",
|
|
2241
|
+
"height": "18",
|
|
2242
|
+
"viewBox": "0 0 18 18",
|
|
2243
|
+
"fill": "none",
|
|
2244
|
+
"paths": [{
|
|
2245
|
+
"d": "M15.75 6.75001L15.75 2.25001M15.75 2.25001H11.25M15.75 2.25001L9 9M7.5 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V12.15C2.25 13.4101 2.25 14.0402 2.49524 14.5215C2.71095 14.9448 3.05516 15.289 3.47852 15.5048C3.95982 15.75 4.58988 15.75 5.85 15.75H12.15C13.4101 15.75 14.0402 15.75 14.5215 15.5048C14.9448 15.289 15.289 14.9448 15.5048 14.5215C15.75 14.0402 15.75 13.4101 15.75 12.15V10.5",
|
|
2246
|
+
"stroke": "#8C8C8C",
|
|
2247
|
+
"strokeWidth": "1.5",
|
|
2248
|
+
"strokeLinecap": "round",
|
|
2249
|
+
"strokeLinejoin": "round"
|
|
2250
|
+
}],
|
|
2251
|
+
"circles": []
|
|
2252
|
+
},
|
|
2253
|
+
"Share03": {
|
|
2254
|
+
"width": "24",
|
|
2255
|
+
"height": "24",
|
|
2256
|
+
"viewBox": "0 0 24 24",
|
|
2257
|
+
"fill": "none",
|
|
2258
|
+
"paths": [{
|
|
2259
|
+
"d": "M21 9.00001L21 3.00001M21 3.00001H15M21 3.00001L12 12M10 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V14",
|
|
2260
|
+
"stroke": "#8C8C8C",
|
|
2261
|
+
"strokeWidth": "2",
|
|
2262
|
+
"strokeLinecap": "round",
|
|
2263
|
+
"strokeLinejoin": "round"
|
|
2264
|
+
}],
|
|
2265
|
+
"circles": []
|
|
2266
|
+
},
|
|
2267
|
+
"SortOutlineThin": {
|
|
2268
|
+
"width": "18",
|
|
2269
|
+
"height": "18",
|
|
2270
|
+
"viewBox": "0 0 18 18",
|
|
2271
|
+
"fill": "none",
|
|
2272
|
+
"paths": [{
|
|
2273
|
+
"d": "M12.45 13.7988C12.0772 13.7988 11.775 13.4966 11.775 13.1238L11.775 6.78959L10.2273 8.33729C9.96367 8.6009 9.53629 8.6009 9.27268 8.33729C9.00908 8.07369 9.00908 7.6463 9.27269 7.3827L11.9197 4.73573C12.2125 4.44284 12.6874 4.44284 12.9803 4.73574L15.6273 7.38271C15.8909 7.64631 15.8909 8.0737 15.6273 8.3373C15.3637 8.6009 14.9363 8.6009 14.6727 8.3373L13.125 6.7896L13.125 13.1238C13.125 13.4966 12.8228 13.7988 12.45 13.7988Z",
|
|
2274
|
+
"fill": "#8C8C8C",
|
|
2275
|
+
"fillRule": "evenodd",
|
|
2276
|
+
"clipRule": "evenodd"
|
|
2277
|
+
}, {
|
|
2278
|
+
"d": "M4.94999 12.8388L4.94998 5.175C4.94998 4.80221 5.25219 4.5 5.62498 4.5C5.99777 4.5 6.29998 4.80221 6.29998 5.175L6.29999 12.8388C6.29999 13.2116 5.99778 13.5138 5.62499 13.5138C5.2522 13.5138 4.94999 13.2116 4.94999 12.8388Z",
|
|
2279
|
+
"fill": "#8C8C8C",
|
|
2280
|
+
"fillRule": "evenodd",
|
|
2281
|
+
"clipRule": "evenodd"
|
|
2282
|
+
}, {
|
|
2283
|
+
"d": "M8.80229 9.96152C9.06589 10.2251 9.06589 10.6525 8.80229 10.9161L6.15532 13.5631C5.86243 13.856 5.38755 13.856 5.09466 13.5631L2.4477 10.9161C2.1841 10.6525 2.1841 10.2251 2.4477 9.96151C2.71131 9.69791 3.13869 9.69791 3.4023 9.96152L5.62499 12.1842L7.8477 9.96152C8.1113 9.69792 8.53869 9.69792 8.80229 9.96152Z",
|
|
2284
|
+
"fill": "#8C8C8C",
|
|
2285
|
+
"fillRule": "evenodd",
|
|
2286
|
+
"clipRule": "evenodd"
|
|
2287
|
+
}],
|
|
2288
|
+
"circles": []
|
|
2289
|
+
},
|
|
2290
|
+
"SortOutline": {
|
|
2291
|
+
"width": "24",
|
|
2292
|
+
"height": "24",
|
|
2293
|
+
"viewBox": "0 0 24 24",
|
|
2294
|
+
"fill": "none",
|
|
2295
|
+
"paths": [{
|
|
2296
|
+
"d": "M16.6 18.3984C16.1029 18.3984 15.7 17.9955 15.7 17.4984L15.7 9.05279L13.6364 11.1164C13.2849 11.4679 12.715 11.4679 12.3636 11.1164C12.0121 10.7649 12.0121 10.1951 12.3636 9.8436L15.8929 6.31431C16.2834 5.92379 16.9166 5.92378 17.3071 6.31432L20.8364 9.84361C21.1878 10.1951 21.1878 10.7649 20.8364 11.1164C20.4849 11.4679 19.915 11.4679 19.5636 11.1164L17.5 9.0528L17.5 17.4984C17.5 17.9955 17.0971 18.3984 16.6 18.3984Z",
|
|
2297
|
+
"fill": "#8C8C8C",
|
|
2298
|
+
"fillRule": "evenodd",
|
|
2299
|
+
"clipRule": "evenodd"
|
|
2300
|
+
}, {
|
|
2301
|
+
"d": "M6.59998 17.1184L6.59997 6.9C6.59997 6.40294 7.00291 6 7.49997 6C7.99703 6 8.39997 6.40294 8.39997 6.9L8.39999 17.1184C8.39999 17.6155 7.99704 18.0184 7.49999 18.0184C7.00293 18.0184 6.59999 17.6155 6.59998 17.1184Z",
|
|
2302
|
+
"fill": "#8C8C8C",
|
|
2303
|
+
"fillRule": "evenodd",
|
|
2304
|
+
"clipRule": "evenodd"
|
|
2305
|
+
}, {
|
|
2306
|
+
"d": "M11.7364 13.282C12.0879 13.6335 12.0879 14.2034 11.7364 14.5548L8.20709 18.0841C7.81657 18.4746 7.1834 18.4746 6.79288 18.0841L3.2636 14.5548C2.91213 14.2033 2.91213 13.6335 3.2636 13.282C3.61508 12.9305 4.18493 12.9306 4.5364 13.282L7.49999 16.2456L10.4636 13.282C10.8151 12.9306 11.3849 12.9306 11.7364 13.282Z",
|
|
2307
|
+
"fill": "#8C8C8C",
|
|
2308
|
+
"fillRule": "evenodd",
|
|
2309
|
+
"clipRule": "evenodd"
|
|
2310
|
+
}],
|
|
2311
|
+
"circles": []
|
|
2312
|
+
},
|
|
2313
|
+
"StateThin": {
|
|
2314
|
+
"width": "18",
|
|
2315
|
+
"height": "18",
|
|
2316
|
+
"viewBox": "0 0 18 18",
|
|
2317
|
+
"fill": "none",
|
|
2318
|
+
"paths": [],
|
|
2319
|
+
"circles": [{
|
|
2320
|
+
"cx": "9",
|
|
2321
|
+
"cy": "9",
|
|
2322
|
+
"r": "3.75",
|
|
2323
|
+
"fill": "#8C8C8C"
|
|
2324
|
+
}]
|
|
2325
|
+
},
|
|
2326
|
+
"StopCircleThin": {
|
|
2327
|
+
"width": "18",
|
|
2328
|
+
"height": "18",
|
|
2329
|
+
"viewBox": "0 0 18 18",
|
|
2330
|
+
"fill": "none",
|
|
2331
|
+
"paths": [{
|
|
2332
|
+
"d": "M9 16.5C13.1421 16.5 16.5 13.1421 16.5 9C16.5 4.85786 13.1421 1.5 9 1.5C4.85786 1.5 1.5 4.85786 1.5 9C1.5 13.1421 4.85786 16.5 9 16.5Z",
|
|
2333
|
+
"stroke": "black",
|
|
2334
|
+
"strokeWidth": "1.5",
|
|
2335
|
+
"strokeLinecap": "round",
|
|
2336
|
+
"strokeLinejoin": "round"
|
|
2337
|
+
}, {
|
|
2338
|
+
"d": "M6 7.2C6 6.77996 6 6.56994 6.08175 6.40951C6.15365 6.26839 6.26839 6.15365 6.40951 6.08175C6.56994 6 6.77996 6 7.2 6H10.8C11.22 6 11.4301 6 11.5905 6.08175C11.7316 6.15365 11.8463 6.26839 11.9183 6.40951C12 6.56994 12 6.77996 12 7.2V10.8C12 11.22 12 11.4301 11.9183 11.5905C11.8463 11.7316 11.7316 11.8463 11.5905 11.9183C11.4301 12 11.22 12 10.8 12H7.2C6.77996 12 6.56994 12 6.40951 11.9183C6.26839 11.8463 6.15365 11.7316 6.08175 11.5905C6 11.4301 6 11.22 6 10.8V7.2Z",
|
|
2339
|
+
"stroke": "black",
|
|
2340
|
+
"strokeWidth": "1.5",
|
|
2341
|
+
"strokeLinecap": "round",
|
|
2342
|
+
"strokeLinejoin": "round"
|
|
2343
|
+
}],
|
|
2344
|
+
"circles": []
|
|
2345
|
+
},
|
|
2346
|
+
"StopCircle": {
|
|
2347
|
+
"width": "24",
|
|
2348
|
+
"height": "24",
|
|
2349
|
+
"viewBox": "0 0 24 24",
|
|
2350
|
+
"fill": "none",
|
|
2351
|
+
"paths": [{
|
|
2352
|
+
"d": "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z",
|
|
2353
|
+
"stroke": "#8C8C8C",
|
|
2354
|
+
"strokeWidth": "2",
|
|
2355
|
+
"strokeLinecap": "round",
|
|
2356
|
+
"strokeLinejoin": "round"
|
|
2357
|
+
}, {
|
|
2358
|
+
"d": "M8 9.6C8 9.03995 8 8.75992 8.10899 8.54601C8.20487 8.35785 8.35785 8.20487 8.54601 8.10899C8.75992 8 9.03995 8 9.6 8H14.4C14.9601 8 15.2401 8 15.454 8.10899C15.6422 8.20487 15.7951 8.35785 15.891 8.54601C16 8.75992 16 9.03995 16 9.6V14.4C16 14.9601 16 15.2401 15.891 15.454C15.7951 15.6422 15.6422 15.7951 15.454 15.891C15.2401 16 14.9601 16 14.4 16H9.6C9.03995 16 8.75992 16 8.54601 15.891C8.35785 15.7951 8.20487 15.6422 8.10899 15.454C8 15.2401 8 14.9601 8 14.4V9.6Z",
|
|
2359
|
+
"stroke": "#8C8C8C",
|
|
2360
|
+
"strokeWidth": "2",
|
|
2361
|
+
"strokeLinecap": "round",
|
|
2362
|
+
"strokeLinejoin": "round"
|
|
2363
|
+
}],
|
|
2364
|
+
"circles": []
|
|
2365
|
+
},
|
|
2366
|
+
"SubtractLineThin": {
|
|
2367
|
+
"width": "18",
|
|
2368
|
+
"height": "18",
|
|
2369
|
+
"viewBox": "0 0 18 18",
|
|
2370
|
+
"fill": "none",
|
|
2371
|
+
"paths": [{
|
|
2372
|
+
"d": "M3.75 8.25H14.25V9.75H3.75V8.25Z",
|
|
2373
|
+
"fill": "#8C8C8C"
|
|
2374
|
+
}],
|
|
2375
|
+
"circles": []
|
|
2376
|
+
},
|
|
2377
|
+
"SuccessThin": {
|
|
2378
|
+
"width": "18",
|
|
2379
|
+
"height": "18",
|
|
2380
|
+
"viewBox": "0 0 18 18",
|
|
2381
|
+
"fill": "none",
|
|
2382
|
+
"paths": [{
|
|
2383
|
+
"d": "M15 4.5L6.75 12.75L3 9",
|
|
2384
|
+
"stroke": "#8C8C8C",
|
|
2385
|
+
"strokeWidth": "1.5",
|
|
2386
|
+
"strokeLinecap": "round",
|
|
2387
|
+
"strokeLinejoin": "round"
|
|
2388
|
+
}],
|
|
2389
|
+
"circles": []
|
|
2390
|
+
},
|
|
2391
|
+
"SwitchHorizontal02Thin": {
|
|
2392
|
+
"width": "18",
|
|
2393
|
+
"height": "18",
|
|
2394
|
+
"viewBox": "0 0 18 18",
|
|
2395
|
+
"fill": "none",
|
|
2396
|
+
"paths": [{
|
|
2397
|
+
"d": "M3 12.75H15M15 12.75L12 9.75M15 12.75L12 15.75M15 5.25H3M3 5.25L6 2.25M3 5.25L6 8.25",
|
|
2398
|
+
"stroke": "#8C8C8C",
|
|
2399
|
+
"strokeWidth": "1.5",
|
|
2400
|
+
"strokeLinecap": "round",
|
|
2401
|
+
"strokeLinejoin": "round"
|
|
2402
|
+
}],
|
|
2403
|
+
"circles": []
|
|
2404
|
+
},
|
|
2405
|
+
"SwitchHorizontal02": {
|
|
2406
|
+
"width": "24",
|
|
2407
|
+
"height": "24",
|
|
2408
|
+
"viewBox": "0 0 24 24",
|
|
2409
|
+
"fill": "none",
|
|
2410
|
+
"paths": [{
|
|
2411
|
+
"d": "M4 17H20M20 17L16 13M20 17L16 21M20 7H4M4 7L8 3M4 7L8 11",
|
|
2412
|
+
"stroke": "#8C8C8C",
|
|
2413
|
+
"strokeWidth": "2",
|
|
2414
|
+
"strokeLinecap": "round",
|
|
2415
|
+
"strokeLinejoin": "round"
|
|
2416
|
+
}],
|
|
2417
|
+
"circles": []
|
|
2418
|
+
},
|
|
2419
|
+
"Trash01Thin": {
|
|
2420
|
+
"width": "18",
|
|
2421
|
+
"height": "18",
|
|
2422
|
+
"viewBox": "0 0 18 18",
|
|
2423
|
+
"fill": "none",
|
|
2424
|
+
"paths": [{
|
|
2425
|
+
"d": "M12 4.5V3.9C12 3.05992 12 2.63988 11.8365 2.31901C11.6927 2.03677 11.4632 1.8073 11.181 1.66349C10.8601 1.5 10.4401 1.5 9.6 1.5H8.4C7.55992 1.5 7.13988 1.5 6.81901 1.66349C6.53677 1.8073 6.3073 2.03677 6.16349 2.31901C6 2.63988 6 3.05992 6 3.9V4.5M7.5 8.625V12.375M10.5 8.625V12.375M2.25 4.5H15.75M14.25 4.5V12.9C14.25 14.1601 14.25 14.7902 14.0048 15.2715C13.789 15.6948 13.4448 16.039 13.0215 16.2548C12.5402 16.5 11.9101 16.5 10.65 16.5H7.35C6.08988 16.5 5.45982 16.5 4.97852 16.2548C4.55516 16.039 4.21095 15.6948 3.99524 15.2715C3.75 14.7902 3.75 14.1601 3.75 12.9V4.5",
|
|
2426
|
+
"stroke": "#8C8C8C",
|
|
2427
|
+
"strokeWidth": "1.5",
|
|
2428
|
+
"strokeLinecap": "round",
|
|
2429
|
+
"strokeLinejoin": "round"
|
|
2430
|
+
}],
|
|
2431
|
+
"circles": []
|
|
2432
|
+
},
|
|
2433
|
+
"Trash01": {
|
|
2434
|
+
"width": "24",
|
|
2435
|
+
"height": "24",
|
|
2436
|
+
"viewBox": "0 0 24 24",
|
|
2437
|
+
"fill": "none",
|
|
2438
|
+
"paths": [{
|
|
2439
|
+
"d": "M16 6V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H11.2C10.0799 2 9.51984 2 9.09202 2.21799C8.71569 2.40973 8.40973 2.71569 8.21799 3.09202C8 3.51984 8 4.0799 8 5.2V6M10 11.5V16.5M14 11.5V16.5M3 6H21M19 6V17.2C19 18.8802 19 19.7202 18.673 20.362C18.3854 20.9265 17.9265 21.3854 17.362 21.673C16.7202 22 15.8802 22 14.2 22H9.8C8.11984 22 7.27976 22 6.63803 21.673C6.07354 21.3854 5.6146 20.9265 5.32698 20.362C5 19.7202 5 18.8802 5 17.2V6",
|
|
2440
|
+
"stroke": "#BDBDBD",
|
|
2441
|
+
"strokeWidth": "2",
|
|
2442
|
+
"strokeLinecap": "round",
|
|
2443
|
+
"strokeLinejoin": "round"
|
|
2444
|
+
}],
|
|
2445
|
+
"circles": []
|
|
2446
|
+
},
|
|
2447
|
+
"Type01": {
|
|
2448
|
+
"width": "24",
|
|
2449
|
+
"height": "24",
|
|
2450
|
+
"viewBox": "0 0 24 24",
|
|
2451
|
+
"fill": "none",
|
|
2452
|
+
"paths": [{
|
|
2453
|
+
"d": "M4 7C4 6.06812 4 5.60218 4.15224 5.23463C4.35523 4.74458 4.74458 4.35523 5.23463 4.15224C5.60218 4 6.06812 4 7 4H17C17.9319 4 18.3978 4 18.7654 4.15224C19.2554 4.35523 19.6448 4.74458 19.8478 5.23463C20 5.60218 20 6.06812 20 7M9 20H15M12 4V20",
|
|
2454
|
+
"stroke": "#8C8C8C",
|
|
2455
|
+
"strokeWidth": "2",
|
|
2456
|
+
"strokeLinecap": "round",
|
|
2457
|
+
"strokeLinejoin": "round"
|
|
2458
|
+
}],
|
|
2459
|
+
"circles": []
|
|
2460
|
+
},
|
|
2461
|
+
"UpThin": {
|
|
2462
|
+
"width": "18",
|
|
2463
|
+
"height": "18",
|
|
2464
|
+
"viewBox": "0 0 18 18",
|
|
2465
|
+
"fill": "none",
|
|
2466
|
+
"paths": [{
|
|
2467
|
+
"d": "M14.5546 11.318L9.64051 5.58336C9.5613 5.49097 9.46304 5.41681 9.35247 5.36597C9.24191 5.31513 9.12166 5.2888 8.99996 5.2888C8.87827 5.2888 8.75801 5.31513 8.64745 5.36597C8.53688 5.41681 8.43863 5.49097 8.35941 5.58336L3.44527 11.318C2.97629 11.8654 3.36512 12.7109 4.08582 12.7109L13.9155 12.7109C14.6362 12.7109 15.025 11.8654 14.5546 11.318Z",
|
|
2468
|
+
"fill": "#8C8C8C"
|
|
2469
|
+
}],
|
|
2470
|
+
"circles": []
|
|
2471
|
+
},
|
|
2472
|
+
"Upload01Thin": {
|
|
2473
|
+
"width": "18",
|
|
2474
|
+
"height": "18",
|
|
2475
|
+
"viewBox": "0 0 18 18",
|
|
2476
|
+
"fill": "none",
|
|
2477
|
+
"paths": [{
|
|
2478
|
+
"d": "M15.75 11.25V12.15C15.75 13.4101 15.75 14.0402 15.5048 14.5215C15.289 14.9448 14.9448 15.289 14.5215 15.5048C14.0402 15.75 13.4101 15.75 12.15 15.75H5.85C4.58988 15.75 3.95982 15.75 3.47852 15.5048C3.05516 15.289 2.71095 14.9448 2.49524 14.5215C2.25 14.0402 2.25 13.4101 2.25 12.15V11.25M12.75 6L9 2.25M9 2.25L5.25 6M9 2.25V11.25",
|
|
2479
|
+
"stroke": "#8C8C8C",
|
|
2480
|
+
"strokeWidth": "1.5",
|
|
2481
|
+
"strokeLinecap": "round",
|
|
2482
|
+
"strokeLinejoin": "round"
|
|
2483
|
+
}],
|
|
2484
|
+
"circles": []
|
|
2485
|
+
},
|
|
2486
|
+
"Upload01": {
|
|
2487
|
+
"width": "24",
|
|
2488
|
+
"height": "24",
|
|
2489
|
+
"viewBox": "0 0 24 24",
|
|
2490
|
+
"fill": "none",
|
|
2491
|
+
"paths": [{
|
|
2492
|
+
"d": "M21 15V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V15M17 8L12 3M12 3L7 8M12 3V15",
|
|
2493
|
+
"stroke": "#8C8C8C",
|
|
2494
|
+
"strokeWidth": "2",
|
|
2495
|
+
"strokeLinecap": "round",
|
|
2496
|
+
"strokeLinejoin": "round"
|
|
2497
|
+
}],
|
|
2498
|
+
"circles": []
|
|
2499
|
+
},
|
|
2500
|
+
"UserCircleThin": {
|
|
2501
|
+
"width": "18",
|
|
2502
|
+
"height": "18",
|
|
2503
|
+
"viewBox": "0 0 18 18",
|
|
2504
|
+
"fill": "none",
|
|
2505
|
+
"paths": [{
|
|
2506
|
+
"d": "M3.98722 14.5788C4.44347 13.5039 5.50869 12.75 6.75 12.75H11.25C12.4913 12.75 13.5565 13.5039 14.0128 14.5788M12 7.125C12 8.78185 10.6569 10.125 9 10.125C7.34315 10.125 6 8.78185 6 7.125C6 5.46815 7.34315 4.125 9 4.125C10.6569 4.125 12 5.46815 12 7.125ZM16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z",
|
|
2507
|
+
"stroke": "black",
|
|
2508
|
+
"strokeWidth": "1.5",
|
|
2509
|
+
"strokeLinecap": "round",
|
|
2510
|
+
"strokeLinejoin": "round"
|
|
2511
|
+
}],
|
|
2512
|
+
"circles": []
|
|
2513
|
+
},
|
|
2514
|
+
"UserPlusThin": {
|
|
2515
|
+
"width": "18",
|
|
2516
|
+
"height": "18",
|
|
2517
|
+
"viewBox": "0 0 18 18",
|
|
2518
|
+
"fill": "none",
|
|
2519
|
+
"paths": [{
|
|
2520
|
+
"d": "M9 11.625H5.625C4.57833 11.625 4.05499 11.625 3.62914 11.7542C2.67034 12.045 1.92003 12.7953 1.62918 13.7541C1.5 14.18 1.5 14.7033 1.5 15.75M14.25 15.75V11.25M12 13.5H16.5M10.875 5.625C10.875 7.48896 9.36396 9 7.5 9C5.63604 9 4.125 7.48896 4.125 5.625C4.125 3.76104 5.63604 2.25 7.5 2.25C9.36396 2.25 10.875 3.76104 10.875 5.625Z",
|
|
2521
|
+
"stroke": "#8C8C8C",
|
|
2522
|
+
"strokeWidth": "1.5",
|
|
2523
|
+
"strokeLinecap": "round",
|
|
2524
|
+
"strokeLinejoin": "round"
|
|
2525
|
+
}],
|
|
2526
|
+
"circles": []
|
|
2527
|
+
},
|
|
2528
|
+
"Users01Thin": {
|
|
2529
|
+
"width": "18",
|
|
2530
|
+
"height": "18",
|
|
2531
|
+
"viewBox": "0 0 18 18",
|
|
2532
|
+
"fill": "none",
|
|
2533
|
+
"paths": [{
|
|
2534
|
+
"d": "M16.5 15.75V14.25C16.5 12.8521 15.5439 11.6775 14.25 11.3445M11.625 2.46807C12.7244 2.91311 13.5 3.99098 13.5 5.25C13.5 6.50902 12.7244 7.58689 11.625 8.03193M12.75 15.75C12.75 14.3522 12.75 13.6533 12.5216 13.1019C12.2172 12.3669 11.6331 11.7828 10.8981 11.4784C10.3467 11.25 9.64783 11.25 8.25 11.25H6C4.60218 11.25 3.90326 11.25 3.35195 11.4784C2.61687 11.7828 2.03284 12.3669 1.72836 13.1019C1.5 13.6533 1.5 14.3522 1.5 15.75M10.125 5.25C10.125 6.90685 8.78185 8.25 7.125 8.25C5.46815 8.25 4.125 6.90685 4.125 5.25C4.125 3.59315 5.46815 2.25 7.125 2.25C8.78185 2.25 10.125 3.59315 10.125 5.25Z",
|
|
2535
|
+
"stroke": "#8C8C8C",
|
|
2536
|
+
"strokeWidth": "1.5",
|
|
2537
|
+
"strokeLinecap": "round",
|
|
2538
|
+
"strokeLinejoin": "round"
|
|
2539
|
+
}],
|
|
2540
|
+
"circles": []
|
|
2541
|
+
},
|
|
2542
|
+
"Users01": {
|
|
2543
|
+
"width": "24",
|
|
2544
|
+
"height": "24",
|
|
2545
|
+
"viewBox": "0 0 24 24",
|
|
2546
|
+
"fill": "none",
|
|
2547
|
+
"paths": [{
|
|
2548
|
+
"d": "M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z",
|
|
2549
|
+
"stroke": "#BDBDBD",
|
|
2550
|
+
"strokeWidth": "2",
|
|
2551
|
+
"strokeLinecap": "round",
|
|
2552
|
+
"strokeLinejoin": "round"
|
|
2553
|
+
}],
|
|
2554
|
+
"circles": []
|
|
2555
|
+
},
|
|
2556
|
+
"XCircleThin": {
|
|
2557
|
+
"width": "18",
|
|
2558
|
+
"height": "18",
|
|
2559
|
+
"viewBox": "0 0 18 18",
|
|
2560
|
+
"fill": "none",
|
|
2561
|
+
"paths": [{
|
|
2562
|
+
"d": "M11.25 6.75L6.75 11.25M6.75 6.75L11.25 11.25M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z",
|
|
2563
|
+
"stroke": "black",
|
|
2564
|
+
"strokeWidth": "1.5",
|
|
2565
|
+
"strokeLinecap": "round",
|
|
2566
|
+
"strokeLinejoin": "round"
|
|
2567
|
+
}],
|
|
2568
|
+
"circles": []
|
|
2569
|
+
},
|
|
2570
|
+
"XCircle": {
|
|
2571
|
+
"width": "24",
|
|
2572
|
+
"height": "24",
|
|
2573
|
+
"viewBox": "0 0 24 24",
|
|
2574
|
+
"fill": "none",
|
|
2575
|
+
"paths": [{
|
|
2576
|
+
"d": "M15 9L9 15M9 9L15 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z",
|
|
2577
|
+
"stroke": "#8C8C8C",
|
|
2578
|
+
"strokeWidth": "2",
|
|
2579
|
+
"strokeLinecap": "round",
|
|
2580
|
+
"strokeLinejoin": "round"
|
|
2581
|
+
}],
|
|
2582
|
+
"circles": []
|
|
2583
|
+
},
|
|
2584
|
+
"XLargeThin": {
|
|
2585
|
+
"width": "18",
|
|
2586
|
+
"height": "18",
|
|
2587
|
+
"viewBox": "0 0 18 18",
|
|
2588
|
+
"fill": "none",
|
|
2589
|
+
"paths": [{
|
|
2590
|
+
"d": "M13.5 4.5L4.5 13.5M4.5 4.5L13.5 13.5",
|
|
2591
|
+
"stroke": "#8C8C8C",
|
|
2592
|
+
"strokeWidth": "1.5",
|
|
2593
|
+
"strokeLinecap": "round",
|
|
2594
|
+
"strokeLinejoin": "round"
|
|
2595
|
+
}],
|
|
2596
|
+
"circles": []
|
|
2597
|
+
},
|
|
2598
|
+
"XLarge": {
|
|
2599
|
+
"width": "24",
|
|
2600
|
+
"height": "24",
|
|
2601
|
+
"viewBox": "0 0 24 24",
|
|
2602
|
+
"fill": "none",
|
|
2603
|
+
"paths": [{
|
|
2604
|
+
"d": "M18 6L6 18M6 6L18 18",
|
|
2605
|
+
"stroke": "#8C8C8C",
|
|
2606
|
+
"strokeWidth": "2",
|
|
2607
|
+
"strokeLinecap": "round",
|
|
2608
|
+
"strokeLinejoin": "round"
|
|
2609
|
+
}],
|
|
2610
|
+
"circles": []
|
|
2611
|
+
},
|
|
2612
|
+
"XSmallThin": {
|
|
2613
|
+
"width": "18",
|
|
2614
|
+
"height": "18",
|
|
2615
|
+
"viewBox": "0 0 18 18",
|
|
2616
|
+
"fill": "none",
|
|
2617
|
+
"paths": [{
|
|
2618
|
+
"d": "M12.75 5.25L5.25 12.75M5.25 5.25L12.75 12.75",
|
|
2619
|
+
"stroke": "#8C8C8C",
|
|
2620
|
+
"strokeWidth": "1.5",
|
|
2621
|
+
"strokeLinecap": "round",
|
|
2622
|
+
"strokeLinejoin": "round"
|
|
2623
|
+
}],
|
|
2624
|
+
"circles": []
|
|
2625
|
+
},
|
|
2626
|
+
"XSmall": {
|
|
2627
|
+
"width": "24",
|
|
2628
|
+
"height": "24",
|
|
2629
|
+
"viewBox": "0 0 24 24",
|
|
2630
|
+
"fill": "none",
|
|
2631
|
+
"paths": [{
|
|
2632
|
+
"d": "M17 7L7 17M7 7L17 17",
|
|
2633
|
+
"stroke": "#8C8C8C",
|
|
2634
|
+
"strokeWidth": "2",
|
|
2635
|
+
"strokeLinecap": "round",
|
|
2636
|
+
"strokeLinejoin": "round"
|
|
2637
|
+
}],
|
|
2638
|
+
"circles": []
|
|
2639
|
+
},
|
|
2640
|
+
"ZoomIn": {
|
|
2641
|
+
"width": "18",
|
|
2642
|
+
"height": "18",
|
|
2643
|
+
"viewBox": "0 0 18 18",
|
|
2644
|
+
"fill": "none",
|
|
2645
|
+
"paths": [{
|
|
2646
|
+
"d": "M15.75 15.75L12.4875 12.4875M8.25 6V10.5M6 8.25H10.5M14.25 8.25C14.25 11.5637 11.5637 14.25 8.25 14.25C4.93629 14.25 2.25 11.5637 2.25 8.25C2.25 4.93629 4.93629 2.25 8.25 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25Z",
|
|
2647
|
+
"stroke": "#8C8C8C",
|
|
2648
|
+
"strokeWidth": "2",
|
|
2649
|
+
"strokeLinecap": "round",
|
|
2650
|
+
"strokeLinejoin": "round"
|
|
2651
|
+
}],
|
|
2652
|
+
"circles": []
|
|
2653
|
+
},
|
|
2654
|
+
"ZoomOut": {
|
|
2655
|
+
"width": "18",
|
|
2656
|
+
"height": "18",
|
|
2657
|
+
"viewBox": "0 0 18 18",
|
|
2658
|
+
"fill": "none",
|
|
2659
|
+
"paths": [{
|
|
2660
|
+
"d": "M15.75 15.75L12.4875 12.4875M6 8.25H10.5M14.25 8.25C14.25 11.5637 11.5637 14.25 8.25 14.25C4.93629 14.25 2.25 11.5637 2.25 8.25C2.25 4.93629 4.93629 2.25 8.25 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25Z",
|
|
2661
|
+
"stroke": "#8C8C8C",
|
|
2662
|
+
"strokeWidth": "2",
|
|
2663
|
+
"strokeLinecap": "round",
|
|
2664
|
+
"strokeLinejoin": "round"
|
|
2665
|
+
}],
|
|
2666
|
+
"circles": []
|
|
2667
|
+
}
|
|
2668
|
+
};
|
|
2669
|
+
var ICONS = {
|
|
2670
|
+
"K": "K",
|
|
2671
|
+
"T": "T",
|
|
2672
|
+
"V": "V",
|
|
2673
|
+
"AddLineThin": "AddLineThin",
|
|
2674
|
+
"AlertCircleThin": "AlertCircleThin",
|
|
2675
|
+
"AlertTriangleThin": "AlertTriangleThin",
|
|
2676
|
+
"AlertTriangle": "AlertTriangle",
|
|
2677
|
+
"ArrowRightThin": "ArrowRightThin",
|
|
2678
|
+
"ArrowRight": "ArrowRight",
|
|
2679
|
+
"Atom01Thin": "Atom01Thin",
|
|
2680
|
+
"BarChart10": "BarChart10",
|
|
2681
|
+
"BarChartSquare01": "BarChartSquare01",
|
|
2682
|
+
"BookOpen02Thin": "BookOpen02Thin",
|
|
2683
|
+
"BookOpen02": "BookOpen02",
|
|
2684
|
+
"CalendarDate": "CalendarDate",
|
|
2685
|
+
"CalendarThin": "CalendarThin",
|
|
2686
|
+
"Calendar": "Calendar",
|
|
2687
|
+
"CheckboxIndeterminateThin": "CheckboxIndeterminateThin",
|
|
2688
|
+
"CheckboxIndeterminate": "CheckboxIndeterminate",
|
|
2689
|
+
"CheckboxOffThin": "CheckboxOffThin",
|
|
2690
|
+
"CheckboxOff": "CheckboxOff",
|
|
2691
|
+
"CheckboxOnThin": "CheckboxOnThin",
|
|
2692
|
+
"CheckboxOn": "CheckboxOn",
|
|
2693
|
+
"ChevronDownThin": "ChevronDownThin",
|
|
2694
|
+
"ChevronDown": "ChevronDown",
|
|
2695
|
+
"ChevronLeftDoubleThin": "ChevronLeftDoubleThin",
|
|
2696
|
+
"ChevronLeftThin": "ChevronLeftThin",
|
|
2697
|
+
"ChevronLeft": "ChevronLeft",
|
|
2698
|
+
"ChevronRightDoubleThin": "ChevronRightDoubleThin",
|
|
2699
|
+
"ChevronRightThin": "ChevronRightThin",
|
|
2700
|
+
"ChevronRight": "ChevronRight",
|
|
2701
|
+
"ChevronSelectorVerticalThin": "ChevronSelectorVerticalThin",
|
|
2702
|
+
"ChevronSelectorVertical": "ChevronSelectorVertical",
|
|
2703
|
+
"ChevronUpThin": "ChevronUpThin",
|
|
2704
|
+
"ChevronUp": "ChevronUp",
|
|
2705
|
+
"ClipboardCheckThin": "ClipboardCheckThin",
|
|
2706
|
+
"ClipboardCheck": "ClipboardCheck",
|
|
2707
|
+
"ClipboardPlusThin": "ClipboardPlusThin",
|
|
2708
|
+
"ClipboardPlus": "ClipboardPlus",
|
|
2709
|
+
"ClipboardThin": "ClipboardThin",
|
|
2710
|
+
"Clipboard": "Clipboard",
|
|
2711
|
+
"CodeSnippet02": "CodeSnippet02",
|
|
2712
|
+
"Copy03Thin": "Copy03Thin",
|
|
2713
|
+
"Copy03": "Copy03",
|
|
2714
|
+
"CornerDownRightThin": "CornerDownRightThin",
|
|
2715
|
+
"CornerDownRight": "CornerDownRight",
|
|
2716
|
+
"CornerUpLeft": "CornerUpLeft",
|
|
2717
|
+
"CornerUpRight": "CornerUpRight",
|
|
2718
|
+
"CurrencyDollar": "CurrencyDollar",
|
|
2719
|
+
"Cursor04": "Cursor04",
|
|
2720
|
+
"CursorBox": "CursorBox",
|
|
2721
|
+
"Database01Thin": "Database01Thin",
|
|
2722
|
+
"Database01": "Database01",
|
|
2723
|
+
"Database02Thin": "Database02Thin",
|
|
2724
|
+
"Database03Thin": "Database03Thin",
|
|
2725
|
+
"Database03": "Database03",
|
|
2726
|
+
"Dataflow01Thin": "Dataflow01Thin",
|
|
2727
|
+
"Dataflow01": "Dataflow01",
|
|
2728
|
+
"Dataflow04Thin": "Dataflow04Thin",
|
|
2729
|
+
"Dataflow04": "Dataflow04",
|
|
2730
|
+
"Dotpoints01": "Dotpoints01",
|
|
2731
|
+
"DotsGridThin": "DotsGridThin",
|
|
2732
|
+
"DotsGrid": "DotsGrid",
|
|
2733
|
+
"DotsVerticalThin": "DotsVerticalThin",
|
|
2734
|
+
"DotsVertical": "DotsVertical",
|
|
2735
|
+
"DownThin": "DownThin",
|
|
2736
|
+
"Download01Thin": "Download01Thin",
|
|
2737
|
+
"Download01": "Download01",
|
|
2738
|
+
"Downstream": "Downstream",
|
|
2739
|
+
"Edit03Thin": "Edit03Thin",
|
|
2740
|
+
"Edit03": "Edit03",
|
|
2741
|
+
"Expand": "Expand",
|
|
2742
|
+
"FiEyeOffThin": "FiEyeOffThin",
|
|
2743
|
+
"FiEyeThin": "FiEyeThin",
|
|
2744
|
+
"File02Thin": "File02Thin",
|
|
2745
|
+
"File02": "File02",
|
|
2746
|
+
"File06Thin": "File06Thin",
|
|
2747
|
+
"File06": "File06",
|
|
2748
|
+
"FileCheck02Thin": "FileCheck02Thin",
|
|
2749
|
+
"FileCheck02": "FileCheck02",
|
|
2750
|
+
"FileCheck03Thin": "FileCheck03Thin",
|
|
2751
|
+
"FileCheck03": "FileCheck03",
|
|
2752
|
+
"FilePlus02Thin": "FilePlus02Thin",
|
|
2753
|
+
"FilePlus02": "FilePlus02",
|
|
2754
|
+
"FileQuestion02Thin": "FileQuestion02Thin",
|
|
2755
|
+
"FileQuestion02": "FileQuestion02",
|
|
2756
|
+
"FileSearch02": "FileSearch02",
|
|
2757
|
+
"FileX02Thin": "FileX02Thin",
|
|
2758
|
+
"FilterLinesThin": "FilterLinesThin",
|
|
2759
|
+
"FilterLines": "FilterLines",
|
|
2760
|
+
"FolderUploadThin": "FolderUploadThin",
|
|
2761
|
+
"FolderUpload": "FolderUpload",
|
|
2762
|
+
"Globe01Thin": "Globe01Thin",
|
|
2763
|
+
"GraduationHat01Thin": "GraduationHat01Thin",
|
|
2764
|
+
"GraduationHat01": "GraduationHat01",
|
|
2765
|
+
"InformationThin": "InformationThin",
|
|
2766
|
+
"Information": "Information",
|
|
2767
|
+
"LineChartDown01": "LineChartDown01",
|
|
2768
|
+
"Loading02Thin": "Loading02Thin",
|
|
2769
|
+
"Loading02": "Loading02",
|
|
2770
|
+
"LogOut01Thin": "LogOut01Thin",
|
|
2771
|
+
"MessageCheckSquare": "MessageCheckSquare",
|
|
2772
|
+
"MessageCheckThin": "MessageCheckThin",
|
|
2773
|
+
"MessageNotificationSquare": "MessageNotificationSquare",
|
|
2774
|
+
"MessageNotificationThin": "MessageNotificationThin",
|
|
2775
|
+
"MessageTextSquare02": "MessageTextSquare02",
|
|
2776
|
+
"MessageTextThin": "MessageTextThin",
|
|
2777
|
+
"MessageXSquare": "MessageXSquare",
|
|
2778
|
+
"MessageXThin": "MessageXThin",
|
|
2779
|
+
"Message": "Message",
|
|
2780
|
+
"MoveThin": "MoveThin",
|
|
2781
|
+
"Move": "Move",
|
|
2782
|
+
"Network03": "Network03",
|
|
2783
|
+
"Network04": "Network04",
|
|
2784
|
+
"PauseThin": "PauseThin",
|
|
2785
|
+
"Pause": "Pause",
|
|
2786
|
+
"PieChart02": "PieChart02",
|
|
2787
|
+
"PieChart03": "PieChart03",
|
|
2788
|
+
"PlayCircle_left": "PlayCircle_left",
|
|
2789
|
+
"PlayCircle_right": "PlayCircle_right",
|
|
2790
|
+
"PlusCircleThin": "PlusCircleThin",
|
|
2791
|
+
"PlusCircle": "PlusCircle",
|
|
2792
|
+
"RadioOffThin": "RadioOffThin",
|
|
2793
|
+
"RadioOnThin": "RadioOnThin",
|
|
2794
|
+
"RefreshCcw02Thin": "RefreshCcw02Thin",
|
|
2795
|
+
"RefreshCcw02": "RefreshCcw02",
|
|
2796
|
+
"RefreshCw01Thin": "RefreshCw01Thin",
|
|
2797
|
+
"RefreshCw02Thin": "RefreshCw02Thin",
|
|
2798
|
+
"ReverseLeft": "ReverseLeft",
|
|
2799
|
+
"SearchMdThin": "SearchMdThin",
|
|
2800
|
+
"SearchMd": "SearchMd",
|
|
2801
|
+
"Settings02Thin": "Settings02Thin",
|
|
2802
|
+
"Share03Thin": "Share03Thin",
|
|
2803
|
+
"Share03": "Share03",
|
|
2804
|
+
"SortOutlineThin": "SortOutlineThin",
|
|
2805
|
+
"SortOutline": "SortOutline",
|
|
2806
|
+
"StateThin": "StateThin",
|
|
2807
|
+
"StopCircleThin": "StopCircleThin",
|
|
2808
|
+
"StopCircle": "StopCircle",
|
|
2809
|
+
"SubtractLineThin": "SubtractLineThin",
|
|
2810
|
+
"SuccessThin": "SuccessThin",
|
|
2811
|
+
"SwitchHorizontal02Thin": "SwitchHorizontal02Thin",
|
|
2812
|
+
"SwitchHorizontal02": "SwitchHorizontal02",
|
|
2813
|
+
"Trash01Thin": "Trash01Thin",
|
|
2814
|
+
"Trash01": "Trash01",
|
|
2815
|
+
"Type01": "Type01",
|
|
2816
|
+
"UpThin": "UpThin",
|
|
2817
|
+
"Upload01Thin": "Upload01Thin",
|
|
2818
|
+
"Upload01": "Upload01",
|
|
2819
|
+
"UserCircleThin": "UserCircleThin",
|
|
2820
|
+
"UserPlusThin": "UserPlusThin",
|
|
2821
|
+
"Users01Thin": "Users01Thin",
|
|
2822
|
+
"Users01": "Users01",
|
|
2823
|
+
"XCircleThin": "XCircleThin",
|
|
2824
|
+
"XCircle": "XCircle",
|
|
2825
|
+
"XLargeThin": "XLargeThin",
|
|
2826
|
+
"XLarge": "XLarge",
|
|
2827
|
+
"XSmallThin": "XSmallThin",
|
|
2828
|
+
"XSmall": "XSmall",
|
|
2829
|
+
"ZoomIn": "ZoomIn",
|
|
2830
|
+
"ZoomOut": "ZoomOut"
|
|
2831
|
+
};
|
|
2832
|
+
|
|
2833
|
+
function Icon(_a) {
|
|
2834
|
+
var name = _a.name,
|
|
2835
|
+
_b = _a.color,
|
|
2836
|
+
color = _b === void 0 ? 'secondary' : _b,
|
|
2837
|
+
_c = _a.size,
|
|
2838
|
+
size = _c === void 0 ? 24 : _c;
|
|
2839
|
+
var keyColor = useColor(color).keyColor;
|
|
2840
|
+
var _d = iconmap[name],
|
|
2841
|
+
width = _d.width,
|
|
2842
|
+
height = _d.height,
|
|
2843
|
+
viewBox = _d.viewBox,
|
|
2844
|
+
fill = _d.fill,
|
|
2845
|
+
paths = _d.paths,
|
|
2846
|
+
circles = _d.circles;
|
|
2847
|
+
return jsxs("svg", __assign({
|
|
2848
|
+
width: size || width,
|
|
2849
|
+
height: size || height,
|
|
2850
|
+
viewBox: viewBox,
|
|
2851
|
+
fill: fill,
|
|
2852
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
2853
|
+
}, {
|
|
2854
|
+
children: [circles.map(function (circle) {
|
|
2855
|
+
return (
|
|
2856
|
+
// eslint-disable-next-line react/jsx-key
|
|
2857
|
+
jsx("circle", {
|
|
2858
|
+
cx: circle.cx,
|
|
2859
|
+
cy: circle.cy,
|
|
2860
|
+
r: circle.r,
|
|
2861
|
+
fill: circle.fill && keyColor
|
|
2862
|
+
})
|
|
2863
|
+
);
|
|
2864
|
+
}), paths.map(function (path) {
|
|
2865
|
+
return (
|
|
2866
|
+
// eslint-disable-next-line react/jsx-key
|
|
2867
|
+
jsx("path", {
|
|
2868
|
+
d: path.d,
|
|
2869
|
+
fill: path.fill && keyColor,
|
|
2870
|
+
fillRule: path.fillRule,
|
|
2871
|
+
clipRule: path.clipRule,
|
|
2872
|
+
stroke: path.stroke && keyColor,
|
|
2873
|
+
strokeWidth: path.strokeWidth,
|
|
2874
|
+
strokeLinecap: path.strokeLinecap,
|
|
2875
|
+
strokeLinejoin: path.strokeLinejoin
|
|
2876
|
+
})
|
|
2877
|
+
);
|
|
2878
|
+
})]
|
|
2879
|
+
}));
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2882
|
+
var css_248z$a = ".size-small {\n padding: 6px 12px;\n border-radius: 6px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 12px;\n letter-spacing: -0.48px;\n font-weight: 600;\n}\n\n.size-normal {\n padding: 8px 10px;\n border-radius: 8px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 600;\n}\n\n.size-large {\n padding: 4px 12px;\n border-radius: 8px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 600;\n}\n\n.maru-button {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n border: 0;\n cursor: pointer;\n gap: 8px;\n}\n.maru-button:focus-within {\n outline: none;\n}\n.maru-button:disabled {\n cursor: default;\n opacity: 0.5;\n pointer-events: none;\n}\n.maru-button-primary-default {\n background-color: var(--p);\n color: white;\n}\n.maru-button-primary-default:hover {\n box-shadow: 0 0 6px var(--p);\n}\n.maru-button-primary-default:focus, .maru-button-primary-default:active {\n box-shadow: none;\n background-color: var(--p-10);\n color: var(--p);\n}\n.maru-button-primary-default-light {\n background-color: var(--p-10);\n color: var(--p);\n}\n.maru-button-primary-default-light:hover {\n box-shadow: 0 0 6px var(--p-50-per);\n}\n.maru-button-primary-default-light:focus, .maru-button-primary-default-light:active {\n box-shadow: none;\n background-color: var(--p);\n color: white;\n}\n.maru-button-primary-outline {\n background-color: white;\n color: var(--p);\n box-shadow: 0 0 0 1px var(--p) inset;\n}\n.maru-button-primary-outline:hover {\n box-shadow: 0 0 6px var(--p-20);\n}\n.maru-button-primary-outline:focus, .maru-button-primary-outline:active {\n box-shadow: none;\n background-color: var(--p-20);\n box-shadow: 0 0 0 1px var(--p) inset;\n}\n.maru-button-primary-outline:hover {\n box-shadow: 0 0 6px var(--p-50-per);\n}\n.maru-button-primary-outline:focus, .maru-button-primary-outline:active {\n box-shadow: none;\n background-color: var(--p-10);\n box-shadow: 0 0 0 1px var(--p) inset;\n}\n.maru-button-primary-text {\n background-color: white;\n color: var(--p);\n}\n.maru-button-primary-color-on-focus {\n background-color: white;\n color: #bdbdbd;\n box-shadow: 0 0 0 1px #bdbdbd inset;\n padding: 5px 8px !important;\n gap: 4px;\n}\n.maru-button-primary-color-on-focus:hover {\n box-shadow: 0px 0px 6px 0px #e4e4e4;\n}\n.maru-button-primary-color-on-focus:focus, .maru-button-primary-color-on-focus:active {\n background-color: var(--p-10);\n color: var(--p);\n box-shadow: 0 0 0 1px var(--p) inset;\n}\n.maru-button-secondary-default {\n background-color: #8c8c8c;\n color: white;\n background-color: #e4e4e4;\n color: #8c8c8c;\n}\n.maru-button-secondary-default:hover {\n box-shadow: 0 0 6px #8c8c8c;\n}\n.maru-button-secondary-default:focus, .maru-button-secondary-default:active {\n box-shadow: none;\n background-color: #fafafa;\n color: #8c8c8c;\n}\n.maru-button-secondary-default:hover {\n box-shadow: 0 0 6px #e4e4e4;\n}\n.maru-button-secondary-default:focus, .maru-button-secondary-default:active {\n box-shadow: none;\n background-color: #8c8c8c;\n color: white;\n}\n.maru-button-secondary-default-light {\n background-color: #fafafa;\n color: #8c8c8c;\n}\n.maru-button-secondary-default-light:hover {\n box-shadow: 0 0 6px;\n}\n.maru-button-secondary-default-light:focus, .maru-button-secondary-default-light:active {\n box-shadow: none;\n background-color: #8c8c8c;\n color: white;\n}\n.maru-button-secondary-outline {\n background-color: white;\n color: #8c8c8c;\n box-shadow: 0 0 0 1px #8c8c8c inset;\n}\n.maru-button-secondary-outline:hover {\n box-shadow: 0 0 6px #e4e4e4;\n}\n.maru-button-secondary-outline:focus, .maru-button-secondary-outline:active {\n box-shadow: none;\n background-color: #e4e4e4;\n box-shadow: 0 0 0 1px #8c8c8c inset;\n}\n.maru-button-secondary-text {\n background-color: white;\n color: #8c8c8c;\n}\n.maru-button-secondary-color-on-focus {\n background-color: white;\n color: #bdbdbd;\n box-shadow: 0 0 0 1px #bdbdbd inset;\n padding: 5px 8px !important;\n gap: 4px;\n}\n.maru-button-secondary-color-on-focus:hover {\n box-shadow: 0px 0px 6px 0px #e4e4e4;\n}\n.maru-button-secondary-color-on-focus:focus, .maru-button-secondary-color-on-focus:active {\n background-color: #e4e4e4;\n color: #5c5c5c;\n box-shadow: 0 0 0 1px #5c5c5c inset;\n}\n.maru-button-positive-default {\n background-color: #58c5a6;\n color: white;\n}\n.maru-button-positive-default:hover {\n box-shadow: 0 0 6px #58c5a6;\n}\n.maru-button-positive-default:focus, .maru-button-positive-default:active {\n box-shadow: none;\n color: #58c5a6;\n}\n.maru-button-positive-default-light {\n color: #58c5a6;\n}\n.maru-button-positive-default-light:hover {\n box-shadow: 0 0 6px rgba(88, 196, 166, 0.5019607843);\n}\n.maru-button-positive-default-light:focus, .maru-button-positive-default-light:active {\n box-shadow: none;\n background-color: #58c5a6;\n color: white;\n}\n.maru-button-positive-outline {\n background-color: white;\n color: #58c5a6;\n box-shadow: 0 0 0 1px #58c5a6 inset;\n}\n.maru-button-positive-outline:hover {\n box-shadow: 0 0 6px #def3ed;\n}\n.maru-button-positive-outline:focus, .maru-button-positive-outline:active {\n box-shadow: none;\n background-color: #def3ed;\n box-shadow: 0 0 0 1px #58c5a6 inset;\n}\n.maru-button-positive-text {\n background-color: white;\n color: #58c5a6;\n}\n.maru-button-positive-color-on-focus {\n background-color: white;\n color: #bdbdbd;\n box-shadow: 0 0 0 1px #bdbdbd inset;\n padding: 5px 8px !important;\n gap: 4px;\n}\n.maru-button-positive-color-on-focus:hover {\n box-shadow: 0px 0px 6px 0px #e4e4e4;\n}\n.maru-button-positive-color-on-focus:focus, .maru-button-positive-color-on-focus:active {\n color: #58c5a6;\n box-shadow: 0 0 0 1px #58c5a6 inset;\n}\n.maru-button-warning-default {\n background-color: #ffb020;\n color: white;\n}\n.maru-button-warning-default:hover {\n box-shadow: 0 0 6px #ffb020;\n}\n.maru-button-warning-default:focus, .maru-button-warning-default:active {\n box-shadow: none;\n background-color: #ffefd2;\n color: #ffb020;\n}\n.maru-button-warning-default-light {\n background-color: #fff7e9;\n color: #ffb020;\n}\n.maru-button-warning-default-light:hover {\n box-shadow: 0 0 6px rgba(255, 177, 32, 0.5019607843);\n}\n.maru-button-warning-default-light:focus, .maru-button-warning-default-light:active {\n box-shadow: none;\n background-color: #ffb020;\n color: white;\n}\n.maru-button-warning-outline {\n background-color: white;\n color: #ffb020;\n box-shadow: 0 0 0 1px #ffb020 inset;\n}\n.maru-button-warning-outline:hover {\n box-shadow: 0 0 6px #ffefd2;\n}\n.maru-button-warning-outline:focus, .maru-button-warning-outline:active {\n box-shadow: none;\n background-color: #ffefd2;\n box-shadow: 0 0 0 1px #ffb020 inset;\n}\n.maru-button-warning-text {\n background-color: white;\n color: #ffb020;\n}\n.maru-button-warning-color-on-focus {\n background-color: white;\n color: #bdbdbd;\n box-shadow: 0 0 0 1px #bdbdbd inset;\n padding: 5px 8px !important;\n gap: 4px;\n}\n.maru-button-warning-color-on-focus:hover {\n box-shadow: 0px 0px 6px 0px #e4e4e4;\n}\n.maru-button-warning-color-on-focus:focus, .maru-button-warning-color-on-focus:active {\n background-color: #ffefd2;\n color: #ffb020;\n box-shadow: 0 0 0 1px #ffb020 inset;\n}\n.maru-button-danger-default {\n background-color: #e53e3e;\n color: white;\n}\n.maru-button-danger-default:hover {\n box-shadow: 0 0 6px #e53e3e;\n}\n.maru-button-danger-default:focus, .maru-button-danger-default:active {\n box-shadow: none;\n background-color: #fcecec;\n color: #e53e3e;\n}\n.maru-button-danger-default-light {\n background-color: #fcecec;\n color: #e53e3e;\n}\n.maru-button-danger-default-light:hover {\n box-shadow: 0 0 6px rgba(229, 62, 62, 0.5019607843);\n}\n.maru-button-danger-default-light:focus, .maru-button-danger-default-light:active {\n box-shadow: none;\n background-color: #e53e3e;\n color: white;\n}\n.maru-button-danger-outline {\n background-color: white;\n color: #e53e3e;\n box-shadow: 0 0 0 1px #e53e3e inset;\n}\n.maru-button-danger-outline:hover {\n box-shadow: 0 0 6px #fad8d8;\n}\n.maru-button-danger-outline:focus, .maru-button-danger-outline:active {\n box-shadow: none;\n background-color: #fad8d8;\n box-shadow: 0 0 0 1px #e53e3e inset;\n}\n.maru-button-danger-text {\n background-color: white;\n color: #e53e3e;\n}\n.maru-button-danger-color-on-focus {\n background-color: white;\n color: #bdbdbd;\n box-shadow: 0 0 0 1px #bdbdbd inset;\n padding: 5px 8px !important;\n gap: 4px;\n}\n.maru-button-danger-color-on-focus:hover {\n box-shadow: 0px 0px 6px 0px #e4e4e4;\n}\n.maru-button-danger-color-on-focus:focus, .maru-button-danger-color-on-focus:active {\n background-color: #fcecec;\n color: #e53e3e;\n box-shadow: 0 0 0 1px #e53e3e inset;\n}\n\n.maru-button-with-start-icon.size-normal,\n.maru-button-with-end-icon.size-normal {\n padding: 8px 14px;\n}\n.maru-button-with-start-icon.size-small,\n.maru-button-with-end-icon.size-small {\n padding: 6px 12px;\n}\n.maru-button-with-start-icon.maru-button-primary-text:hover, .maru-button-with-start-icon.maru-button-primary-text:focus, .maru-button-with-start-icon.maru-button-primary-text:active,\n.maru-button-with-end-icon.maru-button-primary-text:hover,\n.maru-button-with-end-icon.maru-button-primary-text:focus,\n.maru-button-with-end-icon.maru-button-primary-text:active {\n background-color: var(--p-10);\n color: var(--p);\n}\n.maru-button-with-start-icon.maru-button-secondary-default-light:hover, .maru-button-with-start-icon.maru-button-secondary-default-light:focus, .maru-button-with-start-icon.maru-button-secondary-default-light:active,\n.maru-button-with-end-icon.maru-button-secondary-default-light:hover,\n.maru-button-with-end-icon.maru-button-secondary-default-light:focus,\n.maru-button-with-end-icon.maru-button-secondary-default-light:active {\n box-shadow: none;\n background-color: #fafafa;\n color: #8c8c8c;\n}\n\n.maru-button-only-icon {\n padding: 0;\n justify-content: center;\n background-color: transparent;\n}\n.maru-button-only-icon:hover, .maru-button-only-icon:focus, .maru-button-only-icon:active {\n box-shadow: none;\n background-color: transparent;\n}";
|
|
2883
|
+
styleInject(css_248z$a);
|
|
2884
|
+
|
|
35
2885
|
var Button = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
36
2886
|
var children = _a.children,
|
|
37
2887
|
_b = _a.color,
|
|
38
|
-
color = _b === void 0 ? 'primary' : _b
|
|
39
|
-
|
|
2888
|
+
color = _b === void 0 ? 'primary' : _b,
|
|
2889
|
+
_c = _a.size,
|
|
2890
|
+
size = _c === void 0 ? 'normal' : _c,
|
|
2891
|
+
_d = _a.variant,
|
|
2892
|
+
variant = _d === void 0 ? 'default' : _d,
|
|
2893
|
+
startIcon = _a.startIcon,
|
|
2894
|
+
endIcon = _a.endIcon,
|
|
2895
|
+
props = __rest(_a, ["children", "color", "size", "variant", "startIcon", "endIcon"]);
|
|
2896
|
+
var _e = useButtonState(),
|
|
2897
|
+
mouseState = _e[0],
|
|
2898
|
+
_f = _e[1],
|
|
2899
|
+
setIsHover = _f.setIsHover,
|
|
2900
|
+
setIsActive = _f.setIsActive,
|
|
2901
|
+
setIsFocused = _f.setIsFocused;
|
|
2902
|
+
var getIconColor = function getIconColor(icon) {
|
|
2903
|
+
var _a;
|
|
2904
|
+
if (color === 'primary' && variant === 'default' && (mouseState.isActive || mouseState.isFocused)) {
|
|
2905
|
+
return 'primary';
|
|
2906
|
+
}
|
|
2907
|
+
if (color === 'primary' && !children) {
|
|
2908
|
+
if (mouseState.isActive || mouseState.isFocused) {
|
|
2909
|
+
return 'primary';
|
|
2910
|
+
}
|
|
2911
|
+
if (mouseState.isHover) {
|
|
2912
|
+
return 'var(--p-50)';
|
|
2913
|
+
}
|
|
2914
|
+
}
|
|
2915
|
+
if (color === 'danger' && !children) {
|
|
2916
|
+
if (mouseState.isActive || mouseState.isFocused) {
|
|
2917
|
+
return 'danger';
|
|
2918
|
+
}
|
|
2919
|
+
if (mouseState.isHover) {
|
|
2920
|
+
return '#F29E9E';
|
|
2921
|
+
}
|
|
2922
|
+
}
|
|
2923
|
+
return (_a = icon === null || icon === void 0 ? void 0 : icon.color) !== null && _a !== void 0 ? _a : 'secondary';
|
|
2924
|
+
};
|
|
2925
|
+
return jsxs("button", __assign({
|
|
40
2926
|
ref: ref,
|
|
41
2927
|
type: "button",
|
|
42
|
-
|
|
43
|
-
|
|
2928
|
+
className: classNames('maru-button', "maru-button-".concat(color, "-").concat(variant), "size-".concat(size), {
|
|
2929
|
+
'maru-button-with-start-icon': children && startIcon
|
|
2930
|
+
}, {
|
|
2931
|
+
'maru-button-with-end-icon': children && endIcon
|
|
2932
|
+
}, {
|
|
2933
|
+
'maru-button-only-icon': !children && (startIcon || endIcon)
|
|
2934
|
+
}, props.className),
|
|
2935
|
+
onMouseEnter: function onMouseEnter() {
|
|
2936
|
+
return setIsHover(true);
|
|
2937
|
+
},
|
|
2938
|
+
onMouseLeave: function onMouseLeave() {
|
|
2939
|
+
return setIsHover(false);
|
|
2940
|
+
},
|
|
2941
|
+
onMouseDown: function onMouseDown() {
|
|
2942
|
+
return setIsActive(true);
|
|
2943
|
+
},
|
|
2944
|
+
onMouseUp: function onMouseUp() {
|
|
2945
|
+
return setIsActive(false);
|
|
2946
|
+
},
|
|
2947
|
+
onFocus: function onFocus() {
|
|
2948
|
+
return setIsFocused(true);
|
|
2949
|
+
},
|
|
2950
|
+
onBlur: function onBlur() {
|
|
2951
|
+
return setIsFocused(false);
|
|
2952
|
+
}
|
|
2953
|
+
}, props, {
|
|
2954
|
+
children: [startIcon && jsx(Icon, {
|
|
2955
|
+
name: startIcon.name,
|
|
2956
|
+
size: startIcon.size,
|
|
2957
|
+
color: getIconColor(startIcon)
|
|
2958
|
+
}), children, endIcon && jsx(Icon, {
|
|
2959
|
+
name: endIcon.name,
|
|
2960
|
+
size: endIcon.size,
|
|
2961
|
+
color: getIconColor(endIcon)
|
|
2962
|
+
})]
|
|
2963
|
+
}));
|
|
2964
|
+
});
|
|
2965
|
+
Button.defaultProps = {
|
|
2966
|
+
children: undefined,
|
|
2967
|
+
color: 'primary',
|
|
2968
|
+
size: 'normal',
|
|
2969
|
+
variant: 'default',
|
|
2970
|
+
startIcon: undefined,
|
|
2971
|
+
endIcon: undefined
|
|
2972
|
+
};
|
|
2973
|
+
Button.displayName = 'Button';
|
|
2974
|
+
|
|
2975
|
+
/**
|
|
2976
|
+
* 파라미터로 들어온 ref들을 generic type을 가진 ref로 바꾸는 hook
|
|
2977
|
+
* ex. refs(주로 부모 refs)가 HTMLInputElement인 RefObject일 때,
|
|
2978
|
+
* combineRef를 선언한 컴포넌트의 ref<T>로 바꿀때 사용.
|
|
2979
|
+
* 참고 : RefObejct는 default로 null을 가지고, MutableRefObject는 그 외 다른 값을 가짐
|
|
2980
|
+
* @param refs RefObject or function
|
|
2981
|
+
* @returns RefObject
|
|
2982
|
+
*/
|
|
2983
|
+
var useCombineRef = function useCombineRef() {
|
|
2984
|
+
var refs = [];
|
|
2985
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
2986
|
+
refs[_i] = arguments[_i];
|
|
2987
|
+
}
|
|
2988
|
+
var targetRef = useRef(null);
|
|
2989
|
+
useEffect(function () {
|
|
2990
|
+
refs.forEach(function (ref) {
|
|
2991
|
+
if (!ref) {
|
|
2992
|
+
return;
|
|
2993
|
+
}
|
|
2994
|
+
if (typeof ref === 'function') {
|
|
2995
|
+
ref(targetRef.current);
|
|
2996
|
+
} else if (targetRef.current) {
|
|
2997
|
+
ref.current = targetRef.current;
|
|
2998
|
+
}
|
|
2999
|
+
});
|
|
3000
|
+
}, [refs]);
|
|
3001
|
+
return targetRef;
|
|
3002
|
+
};
|
|
3003
|
+
|
|
3004
|
+
/* eslint-disable no-bitwise */
|
|
3005
|
+
/**
|
|
3006
|
+
* 최대 32자리의 uuid를 생성합니다.
|
|
3007
|
+
* @param length 1 <= lenght <= 32 or undefined
|
|
3008
|
+
* @returns uuid
|
|
3009
|
+
*/
|
|
3010
|
+
function uuidv4(length) {
|
|
3011
|
+
try {
|
|
3012
|
+
if (length != null && (length < 1 || length > 32)) {
|
|
3013
|
+
throw new Error('Length can be from 1 to 32 or undefined');
|
|
44
3014
|
}
|
|
3015
|
+
var defaultId = "".concat(1e3, "-").concat(1e3, "-").concat(4e3, "-").concat(8e7, "-").concat(1e12);
|
|
3016
|
+
return defaultId.replace(/[018]/g, function (c) {
|
|
3017
|
+
return (+c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> +c / 4).toString(16);
|
|
3018
|
+
}).slice(0, length);
|
|
3019
|
+
} catch (e) {
|
|
3020
|
+
throw new Error('Length can be from 1 to 32 or undefined');
|
|
3021
|
+
}
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
var css_248z$9 = ".maru-checkbox-wrapper-4px {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n gap: 4px;\n}\n\n.maru-checkbox-wrapper-8px {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n gap: 8px;\n}\n\n.maru-checkbox-inner-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n}\n\n.maru-checkbox {\n position: absolute;\n opacity: 0;\n cursor: pointer;\n}\n\n.maru-checkbox-label {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n color: #5c5c5c;\n cursor: pointer;\n}\n.maru-checkbox-label.label-disabled {\n color: #8c8c8c;\n}\n\n.maru-checkbox:disabled,\n.label-disabled {\n cursor: default;\n}";
|
|
3025
|
+
styleInject(css_248z$9);
|
|
3026
|
+
|
|
3027
|
+
var Checkbox = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
3028
|
+
var checked = _a.checked,
|
|
3029
|
+
_b = _a.color,
|
|
3030
|
+
color = _b === void 0 ? 'primary' : _b,
|
|
3031
|
+
_c = _a.gap,
|
|
3032
|
+
gap = _c === void 0 ? '4px' : _c,
|
|
3033
|
+
label = _a.label,
|
|
3034
|
+
_d = _a.size,
|
|
3035
|
+
size = _d === void 0 ? 18 : _d,
|
|
3036
|
+
props = __rest(_a, ["checked", "color", "gap", "label", "size"]);
|
|
3037
|
+
var keyColor = useColor(color).keyColor;
|
|
3038
|
+
var hashId = uuidv4(4);
|
|
3039
|
+
var combineRef = useCombineRef(ref);
|
|
3040
|
+
return jsxs("div", __assign({
|
|
3041
|
+
className: "maru-checkbox-wrapper-".concat(gap)
|
|
45
3042
|
}, {
|
|
46
|
-
children:
|
|
3043
|
+
children: [jsxs("div", __assign({
|
|
3044
|
+
className: "maru-checkbox-inner-wrapper"
|
|
3045
|
+
}, {
|
|
3046
|
+
children: [jsx("input", __assign({
|
|
3047
|
+
ref: combineRef,
|
|
3048
|
+
id: "maru-checkbox-".concat(hashId),
|
|
3049
|
+
type: "checkbox",
|
|
3050
|
+
checked: checked == null ? undefined : !!checked,
|
|
3051
|
+
className: "maru-checkbox"
|
|
3052
|
+
}, props)), jsx(Icon, {
|
|
3053
|
+
name: checked ? 'CheckboxOn' : 'CheckboxOff',
|
|
3054
|
+
size: size,
|
|
3055
|
+
color: props.disabled ? '#BDBDBD' : keyColor
|
|
3056
|
+
})]
|
|
3057
|
+
})), label && jsx("label", __assign({
|
|
3058
|
+
htmlFor: "maru-checkbox-".concat(hashId),
|
|
3059
|
+
className: classNames('maru-checkbox-label', {
|
|
3060
|
+
'label-disabled': props.disabled
|
|
3061
|
+
})
|
|
3062
|
+
}, {
|
|
3063
|
+
children: label
|
|
3064
|
+
}))]
|
|
3065
|
+
}));
|
|
3066
|
+
});
|
|
3067
|
+
Checkbox.defaultProps = {
|
|
3068
|
+
checked: undefined,
|
|
3069
|
+
color: 'primary',
|
|
3070
|
+
gap: '4px',
|
|
3071
|
+
label: undefined,
|
|
3072
|
+
size: 18
|
|
3073
|
+
};
|
|
3074
|
+
Checkbox.displayName = 'Checkbox';
|
|
3075
|
+
|
|
3076
|
+
var css_248z$8 = ".maru-chip {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n border-radius: 10px;\n}\n.maru-chip-primary-default {\n background-color: var(--p-10);\n color: var(--p);\n}\n.maru-chip-primary-default.maru-chip-warning-default, .maru-chip-primary-default.maru-chip-positive-default {\n background-color: var(--p-20);\n}\n.maru-chip-primary-outline {\n background-color: var(--p-10);\n border: 1px solid var(--p);\n color: var(--p);\n}\n.maru-chip-primary-outline.maru-chip-warning-default, .maru-chip-primary-outline.maru-chip-positive-default {\n background-color: var(--p-20);\n}\n.maru-chip-primary-dot {\n color: var(--p);\n}\n.maru-chip-secondary-default {\n background-color: #fafafa;\n color: #8c8c8c;\n}\n.maru-chip-secondary-default.maru-chip-warning-default, .maru-chip-secondary-default.maru-chip-positive-default {\n background-color: #e4e4e4;\n}\n.maru-chip-secondary-outline {\n background-color: #fafafa;\n border: 1px solid #8c8c8c;\n color: #8c8c8c;\n}\n.maru-chip-secondary-outline.maru-chip-warning-default, .maru-chip-secondary-outline.maru-chip-positive-default {\n background-color: #e4e4e4;\n}\n.maru-chip-secondary-dot {\n color: #8c8c8c;\n}\n.maru-chip-positive-default {\n color: #58c5a6;\n}\n.maru-chip-positive-default.maru-chip-warning-default, .maru-chip-positive-default.maru-chip-positive-default {\n background-color: #def3ed;\n}\n.maru-chip-positive-outline {\n border: 1px solid #58c5a6;\n color: #58c5a6;\n}\n.maru-chip-positive-outline.maru-chip-warning-default, .maru-chip-positive-outline.maru-chip-positive-default {\n background-color: #def3ed;\n}\n.maru-chip-positive-dot {\n color: #58c5a6;\n}\n.maru-chip-warning-default {\n background-color: #fff7e9;\n color: #ffb020;\n}\n.maru-chip-warning-default.maru-chip-warning-default, .maru-chip-warning-default.maru-chip-positive-default {\n background-color: #ffefd2;\n}\n.maru-chip-warning-outline {\n background-color: #fff7e9;\n border: 1px solid #ffb020;\n color: #ffb020;\n}\n.maru-chip-warning-outline.maru-chip-warning-default, .maru-chip-warning-outline.maru-chip-positive-default {\n background-color: #ffefd2;\n}\n.maru-chip-warning-dot {\n color: #ffb020;\n}\n.maru-chip-danger-default {\n background-color: #fcecec;\n color: #e53e3e;\n}\n.maru-chip-danger-default.maru-chip-warning-default, .maru-chip-danger-default.maru-chip-positive-default {\n background-color: #fad8d8;\n}\n.maru-chip-danger-outline {\n background-color: #fcecec;\n border: 1px solid #e53e3e;\n color: #e53e3e;\n}\n.maru-chip-danger-outline.maru-chip-warning-default, .maru-chip-danger-outline.maru-chip-positive-default {\n background-color: #fad8d8;\n}\n.maru-chip-danger-dot {\n color: #e53e3e;\n}\n.maru-chip-size-small {\n padding: 1.5px 8px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 12px;\n letter-spacing: -0.48px;\n font-weight: 500;\n}\n.maru-chip-size-normal {\n padding: 2px 10px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n}";
|
|
3077
|
+
styleInject(css_248z$8);
|
|
3078
|
+
|
|
3079
|
+
var css_248z$7 = ".maru-input-wrapper .maru-input-label {\n margin-bottom: 8px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 600;\n}\n.maru-input-wrapper .maru-input {\n border: 1px solid #e4e4e4;\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n height: 37px;\n padding: 8px 10px 8px 14px;\n border-radius: 8px;\n}\n.maru-input-wrapper .maru-input:focus-visible, .maru-input-wrapper .maru-input:focus-within {\n border: 2px solid #e4e4e4;\n background-color: #fafafa;\n}\n.maru-input-wrapper .maru-input.errored {\n border: 2px solid #e53e3e;\n}\n.maru-input-wrapper .maru-input.errored:focus-visible, .maru-input-wrapper .maru-input.errored:focus-within {\n border: 2px solid #e4e4e4;\n background-color: #fafafa;\n}\n.maru-input-wrapper .maru-input:hover {\n border: 2px solid #e4e4e4;\n background-color: #fafafa;\n}\n.maru-input-wrapper .maru-input > input {\n width: 100%;\n border: unset;\n outline: unset;\n background-color: transparent;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n color: #5c5c5c;\n}\n.maru-input-wrapper .maru-input > input::-webkit-input-placeholder {\n color: #bdbdbd;\n}\n.maru-input-wrapper .maru-input > input::-moz-placeholder {\n color: #bdbdbd;\n}\n.maru-input-wrapper .maru-input > input:-ms-input-placeholder {\n color: #bdbdbd;\n}\n.maru-input-wrapper .maru-input > input::-ms-input-placeholder {\n color: #bdbdbd;\n}\n.maru-input-wrapper .maru-input > input::placeholder {\n color: #bdbdbd;\n}\n.maru-input-wrapper .maru-input-start-node {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n margin-right: 10px;\n}\n.maru-input-wrapper .maru-input-end-node-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n}\n.maru-input-wrapper .maru-input-end-node-wrapper > button {\n padding: unset;\n margin: unset;\n border: unset;\n background-color: unset;\n cursor: pointer;\n}\n.maru-input-wrapper .maru-input-end-node-wrapper > button:last-of-type {\n margin-left: 0.25em;\n}\n.maru-input-wrapper .maru-input-end-node-wrapper .maru-input-end-icon-wrapper {\n width: 16px;\n height: 16px;\n}\n.maru-input-wrapper .maru-input-end-node-wrapper .maru-input-end-node {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n margin-left: 10px;\n}\n.maru-input-wrapper .maru-input-footer {\n display: block;\n margin-top: 4px;\n}\n.maru-input-wrapper .maru-input-footer > span {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 12px;\n letter-spacing: -0.48px;\n font-weight: 500;\n color: #e53e3e;\n}\n.maru-input-wrapper.maru-input-disabled input {\n opacity: 0.5;\n pointer-events: none;\n}\n.maru-input-wrapper.maru-input-disabled .maru-input-default:hover,\n.maru-input-wrapper.maru-input-disabled .maru-input-default:focus-within,\n.maru-input-wrapper.maru-input-disabled .maru-input-underline:hover,\n.maru-input-wrapper.maru-input-disabled .maru-input-underline:focus-within {\n border-color: transparent;\n outline: transparent;\n}";
|
|
3080
|
+
styleInject(css_248z$7);
|
|
3081
|
+
|
|
3082
|
+
var Input = /*#__PURE__*/forwardRef(function (_a, inputRef) {
|
|
3083
|
+
var errorMessage = _a.errorMessage,
|
|
3084
|
+
label = _a.label,
|
|
3085
|
+
onClear = _a.onClear,
|
|
3086
|
+
_b = _a.type,
|
|
3087
|
+
type = _b === void 0 ? 'text' : _b,
|
|
3088
|
+
wrapperRef = _a.wrapperRef,
|
|
3089
|
+
startNode = _a.startNode,
|
|
3090
|
+
endNode = _a.endNode,
|
|
3091
|
+
props = __rest(_a, ["errorMessage", "label", "onClear", "type", "wrapperRef", "startNode", "endNode"]);
|
|
3092
|
+
var _c = useState(true),
|
|
3093
|
+
isPwdInVisible = _c[0],
|
|
3094
|
+
setIsPwdInVisible = _c[1];
|
|
3095
|
+
var _d = useState(false),
|
|
3096
|
+
showClearButton = _d[0],
|
|
3097
|
+
setShowClearButton = _d[1];
|
|
3098
|
+
var combineRef = useCombineRef(inputRef);
|
|
3099
|
+
var hashId = uuidv4(4);
|
|
3100
|
+
var currType = type !== 'password' ? 'text' : !isPwdInVisible ? 'text' : 'password';
|
|
3101
|
+
var setShowClearButtnWithClearProp = function setShowClearButtnWithClearProp(bool) {
|
|
3102
|
+
if (onClear) {
|
|
3103
|
+
setShowClearButton(bool);
|
|
3104
|
+
}
|
|
3105
|
+
};
|
|
3106
|
+
useEffect(function () {
|
|
3107
|
+
return function () {
|
|
3108
|
+
setIsPwdInVisible(false);
|
|
3109
|
+
setShowClearButtnWithClearProp(false);
|
|
3110
|
+
};
|
|
3111
|
+
}, []);
|
|
3112
|
+
useEffect(function () {
|
|
3113
|
+
if (props.defaultValue) {
|
|
3114
|
+
setShowClearButtnWithClearProp(true);
|
|
3115
|
+
}
|
|
3116
|
+
}, [props.defaultValue]);
|
|
3117
|
+
useEffect(function () {
|
|
3118
|
+
var _a;
|
|
3119
|
+
if ((_a = combineRef.current) === null || _a === void 0 ? void 0 : _a.value) {
|
|
3120
|
+
setShowClearButtnWithClearProp(true);
|
|
3121
|
+
}
|
|
3122
|
+
}, [combineRef.current]);
|
|
3123
|
+
var handleInputChange = function handleInputChange(e) {
|
|
3124
|
+
var _a, _b;
|
|
3125
|
+
setShowClearButtnWithClearProp(true);
|
|
3126
|
+
var currValue = e.currentTarget.value;
|
|
3127
|
+
if (!currValue) {
|
|
3128
|
+
setShowClearButtnWithClearProp(false);
|
|
3129
|
+
}
|
|
3130
|
+
if (type === 'number' && !!currValue.at(-1)) {
|
|
3131
|
+
if (!/[0-9,-]/.test(currValue.at(-1)) || /^-*/.test(currValue) && (((_a = currValue.match(/-/g)) === null || _a === void 0 ? void 0 : _a.length) || 0) > 1) {
|
|
3132
|
+
e.currentTarget.value = currValue.slice(0, currValue.length - 1);
|
|
3133
|
+
}
|
|
3134
|
+
}
|
|
3135
|
+
(_b = props.onChange) === null || _b === void 0 ? void 0 : _b.call(props, e);
|
|
3136
|
+
};
|
|
3137
|
+
var handleInputBlur = function handleInputBlur(e) {
|
|
3138
|
+
var _a;
|
|
3139
|
+
if (type === 'number') {
|
|
3140
|
+
var currValue = e.currentTarget.value;
|
|
3141
|
+
e.currentTarget.value = "".concat(currValue != null && currValue !== '' ? +currValue : '');
|
|
3142
|
+
}
|
|
3143
|
+
(_a = props.onBlur) === null || _a === void 0 ? void 0 : _a.call(props, e);
|
|
3144
|
+
};
|
|
3145
|
+
var handlePwdVisibleClick = function handlePwdVisibleClick(isVisible) {
|
|
3146
|
+
return function () {
|
|
3147
|
+
setIsPwdInVisible(isVisible);
|
|
3148
|
+
};
|
|
3149
|
+
};
|
|
3150
|
+
var handleQueryClearClick = function handleQueryClearClick() {
|
|
3151
|
+
if (combineRef.current) {
|
|
3152
|
+
setShowClearButtnWithClearProp(false);
|
|
3153
|
+
combineRef.current.value = '';
|
|
3154
|
+
combineRef.current.focus();
|
|
3155
|
+
}
|
|
3156
|
+
onClear === null || onClear === void 0 ? void 0 : onClear();
|
|
3157
|
+
};
|
|
3158
|
+
var EndNode = function EndNode() {
|
|
3159
|
+
var passwordElement = null;
|
|
3160
|
+
var clearElement = null;
|
|
3161
|
+
var nodeElement = null;
|
|
3162
|
+
if (type === 'password') {
|
|
3163
|
+
if (!isPwdInVisible) {
|
|
3164
|
+
passwordElement = jsx("button", __assign({
|
|
3165
|
+
type: "button",
|
|
3166
|
+
onClick: handlePwdVisibleClick(true),
|
|
3167
|
+
className: "maru-input-end-icon-wrapper",
|
|
3168
|
+
tabIndex: -1
|
|
3169
|
+
}, {
|
|
3170
|
+
children: jsx(Icon, {
|
|
3171
|
+
name: ICONS.FiEyeOffThin,
|
|
3172
|
+
color: "#bdbdbd",
|
|
3173
|
+
size: 16
|
|
3174
|
+
})
|
|
3175
|
+
}));
|
|
3176
|
+
} else {
|
|
3177
|
+
passwordElement = jsx("button", __assign({
|
|
3178
|
+
type: "button",
|
|
3179
|
+
onClick: handlePwdVisibleClick(false),
|
|
3180
|
+
className: "maru-input-end-icon-wrapper",
|
|
3181
|
+
tabIndex: -1
|
|
3182
|
+
}, {
|
|
3183
|
+
children: jsx(Icon, {
|
|
3184
|
+
name: ICONS.FiEyeThin,
|
|
3185
|
+
color: "#bdbdbd",
|
|
3186
|
+
size: 16
|
|
3187
|
+
})
|
|
3188
|
+
}));
|
|
3189
|
+
}
|
|
3190
|
+
}
|
|
3191
|
+
if (endNode) {
|
|
3192
|
+
nodeElement = jsx("span", __assign({
|
|
3193
|
+
className: "maru-input-end-node"
|
|
3194
|
+
}, {
|
|
3195
|
+
children: endNode
|
|
3196
|
+
}));
|
|
3197
|
+
}
|
|
3198
|
+
if (onClear && showClearButton) {
|
|
3199
|
+
clearElement = jsx("button", __assign({
|
|
3200
|
+
type: "button",
|
|
3201
|
+
onClick: handleQueryClearClick,
|
|
3202
|
+
className: "maru-input-end-icon-wrapper",
|
|
3203
|
+
tabIndex: -1
|
|
3204
|
+
}, {
|
|
3205
|
+
children: jsx(Icon, {
|
|
3206
|
+
name: ICONS.XSmallThin,
|
|
3207
|
+
color: "#bdbdbd",
|
|
3208
|
+
size: 16
|
|
3209
|
+
})
|
|
3210
|
+
}));
|
|
3211
|
+
}
|
|
3212
|
+
return jsxs("div", __assign({
|
|
3213
|
+
className: "maru-input-end-node-wrapper"
|
|
3214
|
+
}, {
|
|
3215
|
+
children: [!props.disabled && passwordElement, !clearElement ? nodeElement : null, !props.disabled && clearElement]
|
|
3216
|
+
}));
|
|
3217
|
+
};
|
|
3218
|
+
return jsxs("div", __assign({
|
|
3219
|
+
ref: wrapperRef,
|
|
3220
|
+
className: classNames('maru-input-wrapper', props.className, {
|
|
3221
|
+
'maru-input-disabled': props.disabled
|
|
3222
|
+
})
|
|
3223
|
+
}, {
|
|
3224
|
+
children: [label && jsx("div", __assign({
|
|
3225
|
+
className: "maru-input-label"
|
|
3226
|
+
}, {
|
|
3227
|
+
children: jsx("label", __assign({
|
|
3228
|
+
htmlFor: "maru-input-".concat(hashId)
|
|
3229
|
+
}, {
|
|
3230
|
+
children: label
|
|
3231
|
+
}))
|
|
3232
|
+
})), jsxs("div", __assign({
|
|
3233
|
+
className: classNames('maru-input', {
|
|
3234
|
+
errored: errorMessage
|
|
3235
|
+
})
|
|
3236
|
+
}, {
|
|
3237
|
+
children: [startNode && jsx("span", __assign({
|
|
3238
|
+
className: "maru-input-start-node"
|
|
3239
|
+
}, {
|
|
3240
|
+
children: startNode
|
|
3241
|
+
})), jsx("input", __assign({}, props, {
|
|
3242
|
+
id: "maru-input-".concat(hashId),
|
|
3243
|
+
ref: combineRef,
|
|
3244
|
+
type: currType,
|
|
3245
|
+
onChange: handleInputChange,
|
|
3246
|
+
onBlur: handleInputBlur
|
|
3247
|
+
})), EndNode()]
|
|
3248
|
+
})), errorMessage && jsx("div", __assign({
|
|
3249
|
+
className: "maru-input-footer"
|
|
3250
|
+
}, {
|
|
3251
|
+
children: jsx("span", {
|
|
3252
|
+
children: errorMessage
|
|
3253
|
+
})
|
|
3254
|
+
}))]
|
|
47
3255
|
}));
|
|
48
3256
|
});
|
|
3257
|
+
Input.defaultProps = {
|
|
3258
|
+
errorMessage: undefined,
|
|
3259
|
+
label: undefined,
|
|
3260
|
+
onClear: undefined,
|
|
3261
|
+
type: 'text',
|
|
3262
|
+
wrapperRef: undefined,
|
|
3263
|
+
startNode: undefined,
|
|
3264
|
+
endNode: undefined
|
|
3265
|
+
};
|
|
3266
|
+
Input.displayName = 'Input';
|
|
3267
|
+
|
|
3268
|
+
var css_248z$6 = ".maru-popover-background {\n position: fixed;\n top: 0;\n left: 0;\n width: 100vw;\n height: 100vh;\n z-index: 1611;\n}\n\n.maru-popover {\n border-radius: 8px;\n background-color: white;\n outline: none;\n box-shadow: 0px 0px 6px #e4e4e4;\n}";
|
|
3269
|
+
styleInject(css_248z$6);
|
|
3270
|
+
|
|
3271
|
+
var css_248z$5 = ".maru-radio-wrapper-8px {\n display: flex;\n gap: 8px;\n}\n\n.maru-radio-wrapper-4px {\n display: flex;\n gap: 4px;\n}\n\n.maru-radio {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n width: 16px;\n height: 16px;\n border-radius: 50%;\n border: 2px solid #5c5c5c;\n position: relative;\n display: inline-block;\n cursor: pointer;\n}\n.maru-radio:hover::before, .maru-radio:checked::before {\n content: \"\";\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 7px;\n height: 7px;\n border-radius: 50%;\n background-color: #5c5c5c;\n}\n\n.maru-radio-label {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n color: #5c5c5c;\n cursor: pointer;\n}\n\n.maru-radio:disabled,\n.label-disabled {\n cursor: default;\n opacity: 0.5;\n}";
|
|
3272
|
+
styleInject(css_248z$5);
|
|
3273
|
+
|
|
3274
|
+
var Radio = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
3275
|
+
var checked = _a.checked,
|
|
3276
|
+
_b = _a.gap,
|
|
3277
|
+
gap = _b === void 0 ? '8px' : _b,
|
|
3278
|
+
label = _a.label,
|
|
3279
|
+
props = __rest(_a, ["checked", "gap", "label"]);
|
|
3280
|
+
var hashId = uuidv4(4);
|
|
3281
|
+
var combineRef = useCombineRef(ref);
|
|
3282
|
+
return jsxs("div", __assign({
|
|
3283
|
+
className: classNames("maru-radio-wrapper-".concat(gap), props.className)
|
|
3284
|
+
}, {
|
|
3285
|
+
children: [jsx("input", __assign({
|
|
3286
|
+
ref: combineRef,
|
|
3287
|
+
id: "maru-radio-id-".concat(hashId),
|
|
3288
|
+
type: "radio",
|
|
3289
|
+
checked: checked == null ? undefined : !!checked,
|
|
3290
|
+
className: "maru-radio"
|
|
3291
|
+
}, props)), label && jsx("label", __assign({
|
|
3292
|
+
htmlFor: "maru-radio-id-".concat(hashId),
|
|
3293
|
+
className: classNames('maru-radio-label', {
|
|
3294
|
+
'label-disabled': props.disabled
|
|
3295
|
+
})
|
|
3296
|
+
}, {
|
|
3297
|
+
children: label
|
|
3298
|
+
}))]
|
|
3299
|
+
}));
|
|
3300
|
+
});
|
|
3301
|
+
Radio.defaultProps = {
|
|
3302
|
+
checked: undefined,
|
|
3303
|
+
gap: '8px',
|
|
3304
|
+
label: undefined
|
|
3305
|
+
};
|
|
3306
|
+
Radio.displayName = 'Radio';
|
|
3307
|
+
|
|
3308
|
+
var css_248z$4 = ".maru-toggle-wrapper {\n display: inline-block;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper {\n position: relative;\n width: 30.67px;\n height: 18px;\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n width: 100%;\n height: 100%;\n position: absolute;\n z-index: 11;\n cursor: pointer;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle:not(:checked) ~ .maru-toggle-rail {\n background-color: #bdbdbd;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle-rail {\n position: absolute;\n width: 30.67px;\n height: 18px;\n border-radius: 17.5px;\n background-color: var(--p);\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle-rail-primary {\n background-color: var(--p);\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle-rail-secondary {\n background-color: #8c8c8c;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle-rail-positive {\n background-color: #58c5a6;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle-rail-warning {\n background-color: #ffb020;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle-rail-danger {\n background-color: #e53e3e;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle-thumb {\n position: absolute;\n width: 15.33px;\n height: 15.33px;\n border-radius: 50%;\n transition: all 0.2s ease-in-out;\n background-color: white;\n top: 1.33px;\n right: 14px;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper .maru-toggle:checked ~ .maru-toggle-thumb {\n transform: translateX(12.67px);\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper.toggle-disabled .maru-toggle {\n cursor: default;\n}\n.maru-toggle-wrapper .maru-toggle-inner-wrapper.toggle-disabled .maru-toggle-rail {\n background-color: #e4e4e4 !important;\n}\n\n.maru-toggle-text {\n position: relative;\n width: 66px;\n height: 23px;\n background-color: white;\n border-radius: 62px;\n overflow: hidden;\n}\n.maru-toggle-text-primary {\n box-shadow: 0 0 0 1px var(--p) inset;\n}\n.maru-toggle-text-primary .maru-toggle-text-thumb {\n background-color: var(--p);\n}\n.maru-toggle-text-primary .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px var(--p-20);\n}\n.maru-toggle-text-primary .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px var(--p-20);\n}\n.maru-toggle-text-primary .maru-toggle-text-button {\n color: var(--p);\n}\n.maru-toggle-text-primary .toggle-active {\n color: white;\n}\n.maru-toggle-text-primary.maru-toggle-text-disabled {\n box-shadow: 0 0 0 1px var(--p-50) inset;\n}\n.maru-toggle-text-primary.maru-toggle-text-disabled .maru-toggle-text-thumb {\n background-color: var(--p-50);\n}\n.maru-toggle-text-primary.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px var(--p-10);\n}\n.maru-toggle-text-primary.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px var(--p-10);\n}\n.maru-toggle-text-primary.maru-toggle-text-disabled .maru-toggle-text-button {\n color: var(--p-50);\n cursor: default;\n}\n.maru-toggle-text-primary.maru-toggle-text-disabled .toggle-active {\n color: white;\n}\n.maru-toggle-text-secondary {\n box-shadow: 0 0 0 1px #8c8c8c inset;\n}\n.maru-toggle-text-secondary .maru-toggle-text-thumb {\n background-color: #8c8c8c;\n}\n.maru-toggle-text-secondary .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px #e4e4e4;\n}\n.maru-toggle-text-secondary .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px #e4e4e4;\n}\n.maru-toggle-text-secondary .maru-toggle-text-button {\n color: #8c8c8c;\n}\n.maru-toggle-text-secondary .toggle-active {\n color: white;\n}\n.maru-toggle-text-secondary.maru-toggle-text-disabled {\n box-shadow: 0 0 0 1px #bdbdbd inset;\n}\n.maru-toggle-text-secondary.maru-toggle-text-disabled .maru-toggle-text-thumb {\n background-color: #bdbdbd;\n}\n.maru-toggle-text-secondary.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px #fafafa;\n}\n.maru-toggle-text-secondary.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px #fafafa;\n}\n.maru-toggle-text-secondary.maru-toggle-text-disabled .maru-toggle-text-button {\n color: #bdbdbd;\n cursor: default;\n}\n.maru-toggle-text-secondary.maru-toggle-text-disabled .toggle-active {\n color: white;\n}\n.maru-toggle-text-positive {\n box-shadow: 0 0 0 1px #58c5a6 inset;\n}\n.maru-toggle-text-positive .maru-toggle-text-thumb {\n background-color: #58c5a6;\n}\n.maru-toggle-text-positive .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px #def3ed;\n}\n.maru-toggle-text-positive .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px #def3ed;\n}\n.maru-toggle-text-positive .maru-toggle-text-button {\n color: #58c5a6;\n}\n.maru-toggle-text-positive .toggle-active {\n color: white;\n}\n.maru-toggle-text-positive.maru-toggle-text-disabled {\n box-shadow: 0 0 0 1px #abe1d2 inset;\n}\n.maru-toggle-text-positive.maru-toggle-text-disabled .maru-toggle-text-thumb {\n background-color: #abe1d2;\n}\n.maru-toggle-text-positive.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px;\n}\n.maru-toggle-text-positive.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px;\n}\n.maru-toggle-text-positive.maru-toggle-text-disabled .maru-toggle-text-button {\n color: #abe1d2;\n cursor: default;\n}\n.maru-toggle-text-positive.maru-toggle-text-disabled .toggle-active {\n color: white;\n}\n.maru-toggle-text-warning {\n box-shadow: 0 0 0 1px #ffb020 inset;\n}\n.maru-toggle-text-warning .maru-toggle-text-thumb {\n background-color: #ffb020;\n}\n.maru-toggle-text-warning .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px #ffefd2;\n}\n.maru-toggle-text-warning .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px #ffefd2;\n}\n.maru-toggle-text-warning .maru-toggle-text-button {\n color: #ffb020;\n}\n.maru-toggle-text-warning .toggle-active {\n color: white;\n}\n.maru-toggle-text-warning.maru-toggle-text-disabled {\n box-shadow: 0 0 0 1px #ffd78f inset;\n}\n.maru-toggle-text-warning.maru-toggle-text-disabled .maru-toggle-text-thumb {\n background-color: #ffd78f;\n}\n.maru-toggle-text-warning.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px #fff7e9;\n}\n.maru-toggle-text-warning.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px #fff7e9;\n}\n.maru-toggle-text-warning.maru-toggle-text-disabled .maru-toggle-text-button {\n color: #ffd78f;\n cursor: default;\n}\n.maru-toggle-text-warning.maru-toggle-text-disabled .toggle-active {\n color: white;\n}\n.maru-toggle-text-danger {\n box-shadow: 0 0 0 1px #e53e3e inset;\n}\n.maru-toggle-text-danger .maru-toggle-text-thumb {\n background-color: #e53e3e;\n}\n.maru-toggle-text-danger .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px #fad8d8;\n}\n.maru-toggle-text-danger .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px #fad8d8;\n}\n.maru-toggle-text-danger .maru-toggle-text-button {\n color: #e53e3e;\n}\n.maru-toggle-text-danger .toggle-active {\n color: white;\n}\n.maru-toggle-text-danger.maru-toggle-text-disabled {\n box-shadow: 0 0 0 1px #f29e9e inset;\n}\n.maru-toggle-text-danger.maru-toggle-text-disabled .maru-toggle-text-thumb {\n background-color: #f29e9e;\n}\n.maru-toggle-text-danger.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-before {\n box-shadow: -4px 0px 4px 0px #fcecec;\n}\n.maru-toggle-text-danger.maru-toggle-text-disabled .maru-toggle-text-thumb.shadow-after {\n box-shadow: 4px 0px 4px 0px #fcecec;\n}\n.maru-toggle-text-danger.maru-toggle-text-disabled .maru-toggle-text-button {\n color: #f29e9e;\n cursor: default;\n}\n.maru-toggle-text-danger.maru-toggle-text-disabled .toggle-active {\n color: white;\n}\n.maru-toggle-text .maru-toggle-text-thumb {\n top: 0;\n left: 0;\n position: absolute;\n width: 33px;\n height: 23px;\n border-radius: 62px;\n transition: all 0.2s ease-in-out;\n z-index: 1;\n}\n\n.slide-after {\n transform: translateX(33px);\n}\n\n.maru-toggle-text-button-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n}\n\n.maru-toggle-text-button {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 10px;\n letter-spacing: -0.4px;\n font-weight: 700;\n position: relative;\n width: 33px;\n height: 23px;\n cursor: pointer;\n z-index: 2;\n background-color: transparent;\n border: 0;\n transition: color 0.4s ease;\n}";
|
|
3309
|
+
styleInject(css_248z$4);
|
|
3310
|
+
|
|
3311
|
+
var css_248z$3 = ".maru-tooltip-wrapper {\n position: relative;\n display: inline-flex;\n}\n\n.maru-tooltip {\n z-index: 1612;\n position: absolute;\n border-radius: 5px;\n padding: 2px 4px;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n}\n\n.maru-tooltip-default {\n background-color: rgba(92, 92, 92, 0.5019607843);\n}\n.maru-tooltip-default,\n.maru-tooltip-default span,\n.maru-tooltip-default p,\n.maru-tooltip-default pre {\n color: white;\n white-space: pre-wrap;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n}\n\n.maru-tooltip-danger {\n background-color: rgba(229, 62, 62, 0.1019607843);\n}\n.maru-tooltip-danger,\n.maru-tooltip-danger span,\n.maru-tooltip-danger p,\n.maru-tooltip-danger pre {\n color: #e53e3e;\n white-space: pre-wrap;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n}";
|
|
3312
|
+
styleInject(css_248z$3);
|
|
3313
|
+
|
|
3314
|
+
var css_248z$2 = ".maru-dropdown .maru-dropdown-label {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 600;\n color: #5c5c5c;\n display: block;\n margin-bottom: 4px;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper {\n width: 100%;\n border-radius: 8px;\n border: 1px solid #e4e4e4;\n cursor: pointer;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:hover {\n border: 1px solid var(--p);\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:hover .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:hover .maru-dropdown-input > input {\n color: var(--p);\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:active, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:focus-within {\n border: 1px solid var(--p);\n outline: none;\n background-color: var(--p-10);\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:active .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:active .maru-dropdown-input > input, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:focus-within .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-primary:focus-within .maru-dropdown-input > input {\n color: var(--p);\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:hover {\n border: 1px solid #8c8c8c;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:hover .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:hover .maru-dropdown-input > input {\n color: #8c8c8c;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:active, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:focus-within {\n border: 1px solid #8c8c8c;\n outline: none;\n background-color: #fafafa;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:active .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:active .maru-dropdown-input > input, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:focus-within .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-secondary:focus-within .maru-dropdown-input > input {\n color: #8c8c8c;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:hover {\n border: 1px solid #58c5a6;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:hover .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:hover .maru-dropdown-input > input {\n color: #58c5a6;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:active, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:focus-within {\n border: 1px solid #58c5a6;\n outline: none;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:active .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:active .maru-dropdown-input > input, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:focus-within .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-positive:focus-within .maru-dropdown-input > input {\n color: #58c5a6;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:hover {\n border: 1px solid #ffb020;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:hover .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:hover .maru-dropdown-input > input {\n color: #ffb020;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:active, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:focus-within {\n border: 1px solid #ffb020;\n outline: none;\n background-color: #fff7e9;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:active .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:active .maru-dropdown-input > input, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:focus-within .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-warning:focus-within .maru-dropdown-input > input {\n color: #ffb020;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:hover {\n border: 1px solid #e53e3e;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:hover .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:hover .maru-dropdown-input > input {\n color: #e53e3e;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:active, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:focus-within {\n border: 1px solid #e53e3e;\n outline: none;\n background-color: #fcecec;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:active .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:active .maru-dropdown-input > input, .maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:focus-within .maru-dropdown-button,\n.maru-dropdown .maru-dropdown-toggle-wrapper.maru-dropdown-toggle-wrapper-danger:focus-within .maru-dropdown-input > input {\n color: #e53e3e;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.inline-label-wrapper .maru-dropdown-button {\n padding: 2px 10px 2px 14px;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .inline-label {\n display: block;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 10px;\n letter-spacing: -0.4px;\n font-weight: 500;\n color: #bdbdbd;\n padding: 2px 10px 0 14px;\n transform: translateY(3px);\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-button {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-direction: row;\n width: 100%;\n height: 37px;\n border: unset;\n border-radius: 8px;\n background-color: transparent;\n cursor: pointer;\n padding: 8px 10px 8px 14px;\n color: #5c5c5c;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-button .maru-dropdown-button-contents {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-button .maru-dropdown-button-contents.placeholder {\n color: #bdbdbd;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-input {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-direction: row;\n width: 100%;\n height: 37px;\n border: unset;\n border-radius: 8px;\n background-color: transparent;\n cursor: pointer;\n padding: 8px 10px 8px 14px;\n color: #5c5c5c;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-input > input {\n width: 100%;\n height: 100%;\n border: unset;\n outline: unset;\n background-color: unset;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-input > input::-webkit-input-placeholder {\n color: #bdbdbd;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-input > input::-moz-placeholder {\n color: #bdbdbd;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-input > input:-ms-input-placeholder {\n color: #bdbdbd;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-input > input::-ms-input-placeholder {\n color: #bdbdbd;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-input > input::placeholder {\n color: #bdbdbd;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper .maru-dropdown-toggle-arrow {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n}\n.maru-dropdown .maru-dropdown-toggle-wrapper.errored {\n border: 2px solid #e53e3e;\n}\n.maru-dropdown .maru-dropdown-error-message {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 12px;\n letter-spacing: -0.48px;\n font-weight: 500;\n color: #e53e3e;\n display: block;\n margin-top: 4px;\n}\n\n.maru-dropdown-menu-wrapper {\n top: 0;\n left: 0;\n width: 100vw;\n height: 100vh;\n position: fixed;\n z-index: 1600;\n display: none;\n}\n.maru-dropdown-menu-wrapper .maru-dropdown-menu {\n margin-top: 4px;\n position: absolute;\n z-index: 1601;\n border-radius: 8px;\n box-shadow: 0px 0px 6px #e4e4e4;\n}\n.maru-dropdown-menu-wrapper .maru-dropdown-menu .maru-dropdown-menu-item-wrapper {\n overflow-y: auto;\n border-top-left-radius: 8px;\n border-top-right-radius: 8px;\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px;\n}\n.maru-dropdown-menu-wrapper .maru-dropdown-menu .maru-dropdown-menu-item-wrapper .maru-dropdown-menu-item {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-direction: row;\n width: 100%;\n background-color: white;\n border: unset;\n cursor: pointer;\n height: 37px;\n padding: 8px 14px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 14px;\n letter-spacing: -0.56px;\n font-weight: 500;\n color: #5c5c5c;\n}\n.maru-dropdown-menu-wrapper .maru-dropdown-menu .maru-dropdown-menu-item-wrapper .maru-dropdown-menu-item-selected, .maru-dropdown-menu-wrapper .maru-dropdown-menu .maru-dropdown-menu-item-wrapper .maru-dropdown-menu-item:hover {\n background-color: #fafafa;\n}\n.maru-dropdown-menu-wrapper .maru-dropdown-menu .maru-dropdown-menu-item-wrapper .maru-dropdown-menu-item-span {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n flex: 1;\n text-align: start;\n}\n.maru-dropdown-menu-wrapper .maru-dropdown-menu .maru-dropdown-menu-item-wrapper .maru-dropdown-menu-item-span em {\n font-style: unset;\n background-color: var(--p-20-per);\n}\n.maru-dropdown-menu-wrapper .maru-dropdown-menu .maru-dropdown-menu-item-wrapper .maru-dropdown-menu-no-data {\n background-color: transparent;\n border: unset;\n}";
|
|
3315
|
+
styleInject(css_248z$2);
|
|
3316
|
+
|
|
3317
|
+
var css_248z$1 = ".maru-modal-wrapper {\n width: 100vw;\n height: 100vh;\n position: fixed;\n top: 0;\n left: 0;\n background-color: rgba(92, 92, 92, 0.5019607843);\n display: none;\n z-index: 6006;\n}\n.maru-modal-wrapper[data-show=true] {\n display: block;\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n}\n.maru-modal-wrapper .maru-modal {\n background-color: white;\n padding: 40px;\n border-radius: 20px;\n box-shadow: 0px 5px 20px 5px #8c8c8c;\n}\n.maru-modal-wrapper .maru-modal.maru-modal-xs {\n width: 300px;\n}\n.maru-modal-wrapper .maru-modal.maru-modal-s {\n width: 400px;\n}\n.maru-modal-wrapper .maru-modal.maru-modal-m {\n width: 550px;\n}\n.maru-modal-wrapper .maru-modal.maru-modal-m .maru-modal-header {\n padding-bottom: 8px;\n border-bottom: 1px solid #e4e4e4;\n}\n.maru-modal-wrapper .maru-modal.maru-modal-l {\n width: 860px;\n}\n.maru-modal-wrapper .maru-modal.maru-modal-l .maru-modal-header {\n padding-bottom: 8px;\n border-bottom: 1px solid #e4e4e4;\n}\n.maru-modal-wrapper .maru-modal.maru-modal-xl {\n width: 1160px;\n}\n.maru-modal-wrapper .maru-modal.maru-modal-xl .maru-modal-header {\n padding-bottom: 8px;\n border-bottom: 1px solid #e4e4e4;\n}\n.maru-modal-wrapper .maru-modal .maru-modal-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-direction: row;\n margin-bottom: 24px;\n}\n.maru-modal-wrapper .maru-modal .maru-modal-header > h1 {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 16px;\n letter-spacing: -0.64px;\n font-weight: 700;\n color: #5c5c5c;\n}\n.maru-modal-wrapper .maru-modal .maru-modal-footer {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n flex-direction: row;\n margin-top: 24px;\n}\n.maru-modal-wrapper .maru-modal .maru-modal-footer button {\n margin: 0 0 0 8px;\n}";
|
|
3318
|
+
styleInject(css_248z$1);
|
|
3319
|
+
|
|
3320
|
+
var css_248z = ".maru-pagination-wrapper .maru-pagination {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n}\n.maru-pagination-wrapper .maru-pagination button {\n cursor: pointer;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 12px;\n letter-spacing: -0.48px;\n font-weight: 500;\n color: #8c8c8c;\n padding: unset;\n margin: unset;\n background-color: unset;\n border: unset;\n min-width: 30px;\n min-height: 30px;\n border-radius: 6px;\n}\n.maru-pagination-wrapper .maru-pagination button > span {\n display: flex;\n justify-content: center;\n align-items: center;\n flex-direction: row;\n}\n.maru-pagination-wrapper .maru-pagination button:hover {\n background-color: #e4e4e4;\n font-weight: 700;\n}\n.maru-pagination-wrapper .maru-pagination button:disabled {\n cursor: default;\n}\n.maru-pagination-wrapper .maru-pagination .maru-pagination-default-wrapper {\n display: flex;\n justify-content: space-evenly;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n.maru-pagination-wrapper .maru-pagination .maru-pagination-default-wrapper .maru-pagination-page-button {\n line-height: 140%;\n padding: 6px 12px;\n}\n.maru-pagination-wrapper .maru-pagination .maru-pagination-default-wrapper .maru-pagination-page-button.selected {\n font-weight: 700;\n color: white;\n background-color: #bdbdbd;\n}\n.maru-pagination-wrapper .maru-pagination .maru-pagination-input-wrapper .maru-pagination-input {\n border: 1px solid #e4e4e4;\n border-radius: 6px;\n padding: 2px 20px;\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 12px;\n letter-spacing: -0.48px;\n font-weight: 700;\n margin: 0 8px;\n color: #5c5c5c;\n text-align: center;\n}\n.maru-pagination-wrapper .maru-pagination .maru-pagination-input-wrapper .maru-pagination-input::-webkit-outer-spin-button, .maru-pagination-wrapper .maru-pagination .maru-pagination-input-wrapper .maru-pagination-input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n.maru-pagination-wrapper .maru-pagination .maru-pagination-input-wrapper .maru-pagination-input:disabled {\n pointer-events: none;\n border: none;\n background-color: transparent;\n width: auto;\n margin-right: 0;\n padding: 0;\n}\n.maru-pagination-wrapper .maru-pagination .maru-pagination-input-wrapper > span {\n font-family: Pretendard;\n font-style: normal;\n line-height: 150%;\n font-size: 12px;\n letter-spacing: -0.48px;\n font-weight: 500;\n color: #8c8c8c;\n}";
|
|
3321
|
+
styleInject(css_248z);
|
|
49
3322
|
|
|
50
|
-
export {
|
|
3323
|
+
export { StyleProvider };
|