@baseline-ui/icons 0.8.0 → 0.8.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/20/index.js CHANGED
@@ -1,591 +1,86 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
-
20
- // src/20/index.ts
21
- var __exports = {};
22
- __export(__exports, {
23
- CaretLeftIcon: () => CaretLeftIcon_default,
24
- CaretRightIcon: () => CaretRightIcon_default,
25
- CheckFilledIcon: () => CheckFilledIcon_default,
26
- CheckmarkIcon: () => CheckmarkIcon_default,
27
- CrossIcon: () => CrossIcon_default,
28
- DragHandleIcon: () => DragHandleIcon_default,
29
- EllipseIcon: () => EllipseIcon_default,
30
- ErrorAltFilledIcon: () => ErrorAltFilledIcon_default,
31
- InfoFilledIcon: () => InfoFilledIcon_default,
32
- MinusIcon: () => MinusIcon_default,
33
- PlusIcon: () => PlusIcon_default,
34
- SearchIcon: () => SearchIcon_default,
35
- StarIcon: () => StarIcon_default,
36
- UploadIcon: () => UploadIcon_default,
37
- WarningFilledIcon: () => WarningFilledIcon_default
38
- });
39
- module.exports = __toCommonJS(__exports);
40
-
41
- // src/20/CaretLeftIcon.tsx
42
- var import_jsx_runtime = require("react/jsx-runtime");
43
- var SvgCaretLeftIcon = ({
44
- title,
45
- titleId,
46
- ...props
47
- }) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
48
- "svg",
49
- {
50
- xmlns: "http://www.w3.org/2000/svg",
51
- width: props.size || "1em",
52
- height: props.size || "1em",
53
- fill: "none",
54
- viewBox: "0 0 20 20",
55
- "aria-labelledby": titleId,
56
- ...props,
57
- children: [
58
- title ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { id: titleId, children: title }) : null,
59
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
60
- "path",
61
- {
62
- fill: "currentColor",
63
- fillRule: "evenodd",
64
- d: "M13.03 15.53a.75.75 0 0 0 0-1.06L8.56 10l4.47-4.47a.75.75 0 0 0-1.06-1.06l-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 0 0 1.06 0",
65
- clipRule: "evenodd"
66
- }
67
- )
68
- ]
69
- }
70
- );
71
- var CaretLeftIcon_default = SvgCaretLeftIcon;
72
-
73
- // src/20/CaretRightIcon.tsx
74
- var import_jsx_runtime2 = require("react/jsx-runtime");
75
- var SvgCaretRightIcon = ({
76
- title,
77
- titleId,
78
- ...props
79
- }) => /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
80
- "svg",
81
- {
82
- xmlns: "http://www.w3.org/2000/svg",
83
- width: props.size || "1em",
84
- height: props.size || "1em",
85
- fill: "none",
86
- viewBox: "0 0 20 20",
87
- "aria-labelledby": titleId,
88
- ...props,
89
- children: [
90
- title ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { id: titleId, children: title }) : null,
91
- /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
92
- "path",
93
- {
94
- fill: "currentColor",
95
- fillRule: "evenodd",
96
- d: "M6.97 4.47a.75.75 0 0 0 0 1.06L11.44 10l-4.47 4.47a.75.75 0 1 0 1.06 1.06l5-5a.75.75 0 0 0 0-1.06l-5-5a.75.75 0 0 0-1.06 0",
97
- clipRule: "evenodd"
98
- }
99
- )
100
- ]
101
- }
102
- );
103
- var CaretRightIcon_default = SvgCaretRightIcon;
104
-
105
- // src/20/CheckFilledIcon.tsx
106
- var import_jsx_runtime3 = require("react/jsx-runtime");
107
- var SvgCheckFilledIcon = ({
108
- title,
109
- titleId,
110
- ...props
111
- }) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
112
- "svg",
113
- {
114
- xmlns: "http://www.w3.org/2000/svg",
115
- width: props.size || "1em",
116
- height: props.size || "1em",
117
- fill: "none",
118
- viewBox: "0 0 20 20",
119
- "aria-labelledby": titleId,
120
- ...props,
121
- children: [
122
- title ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { id: titleId, children: title }) : null,
123
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("g", { clipPath: "url(#check-filled-icon_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
124
- "path",
125
- {
126
- fill: "currentColor",
127
- fillRule: "evenodd",
128
- d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m4.53-11.97a.75.75 0 1 0-1.06-1.06L9 11.44 7.03 9.47a.75.75 0 1 0-1.06 1.06L9 13.56z",
129
- clipRule: "evenodd"
130
- }
131
- ) }),
132
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("clipPath", { id: "check-filled-icon_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "transparent", d: "M0 0h20v20H0z" }) }) })
133
- ]
134
- }
135
- );
136
- var CheckFilledIcon_default = SvgCheckFilledIcon;
137
-
138
- // src/20/CheckmarkIcon.tsx
139
- var import_jsx_runtime4 = require("react/jsx-runtime");
140
- var SvgCheckmarkIcon = ({
141
- title,
142
- titleId,
143
- ...props
144
- }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
145
- "svg",
146
- {
147
- xmlns: "http://www.w3.org/2000/svg",
148
- width: props.size || "1em",
149
- height: props.size || "1em",
150
- fill: "none",
151
- viewBox: "0 0 20 20",
152
- "aria-labelledby": titleId,
153
- ...props,
154
- children: [
155
- title ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { id: titleId, children: title }) : null,
156
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
157
- "path",
158
- {
159
- stroke: "currentColor",
160
- strokeLinecap: "round",
161
- strokeWidth: 1.5,
162
- d: "m16 6-8 8-4-4"
163
- }
164
- )
165
- ]
166
- }
167
- );
168
- var CheckmarkIcon_default = SvgCheckmarkIcon;
169
-
170
- // src/20/CrossIcon.tsx
171
- var import_jsx_runtime5 = require("react/jsx-runtime");
172
- var SvgCrossIcon = ({
173
- title,
174
- titleId,
175
- ...props
176
- }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
177
- "svg",
178
- {
179
- xmlns: "http://www.w3.org/2000/svg",
180
- width: props.size || "1em",
181
- height: props.size || "1em",
182
- fill: "none",
183
- viewBox: "0 0 20 20",
184
- "aria-labelledby": titleId,
185
- ...props,
186
- children: [
187
- title ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { id: titleId, children: title }) : null,
188
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("g", { clipPath: "url(#cross-icon_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
189
- "path",
190
- {
191
- fill: "currentColor",
192
- fillRule: "evenodd",
193
- d: "M16.894 3.106a.75.75 0 0 1 0 1.06L11.061 10l5.833 5.834a.75.75 0 0 1-1.06 1.06L10 11.061l-5.834 5.833a.75.75 0 1 1-1.06-1.06L8.939 10 3.106 4.166a.75.75 0 0 1 1.06-1.06L10 8.939l5.834-5.833a.75.75 0 0 1 1.06 0",
194
- clipRule: "evenodd"
195
- }
196
- ) }),
197
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("clipPath", { id: "cross-icon_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { fill: "#fff", d: "M0 0h20v20H0z" }) }) })
198
- ]
199
- }
200
- );
201
- var CrossIcon_default = SvgCrossIcon;
202
-
203
- // src/20/DragHandleIcon.tsx
204
- var import_jsx_runtime6 = require("react/jsx-runtime");
205
- var SvgDragHandleIcon = ({
206
- title,
207
- titleId,
208
- ...props
209
- }) => /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
210
- "svg",
211
- {
212
- xmlns: "http://www.w3.org/2000/svg",
213
- width: props.size || "1em",
214
- height: props.size || "1em",
215
- fill: "none",
216
- viewBox: "0 0 20 20",
217
- "aria-labelledby": titleId,
218
- ...props,
219
- children: [
220
- title ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { id: titleId, children: title }) : null,
221
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
222
- "circle",
223
- {
224
- cx: 15.417,
225
- cy: 7.5,
226
- r: 1.25,
227
- fill: "currentColor",
228
- transform: "rotate(90 15.417 7.5)"
229
- }
230
- ),
231
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
232
- "circle",
233
- {
234
- cx: 10,
235
- cy: 7.5,
236
- r: 1.25,
237
- fill: "currentColor",
238
- transform: "rotate(90 10 7.5)"
239
- }
240
- ),
241
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
242
- "circle",
243
- {
244
- cx: 4.583,
245
- cy: 7.5,
246
- r: 1.25,
247
- fill: "currentColor",
248
- transform: "rotate(90 4.583 7.5)"
249
- }
250
- ),
251
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
252
- "circle",
253
- {
254
- cx: 15.417,
255
- cy: 12.5,
256
- r: 1.25,
257
- fill: "currentColor",
258
- transform: "rotate(90 15.417 12.5)"
259
- }
260
- ),
261
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
262
- "circle",
263
- {
264
- cx: 10,
265
- cy: 12.5,
266
- r: 1.25,
267
- fill: "currentColor",
268
- transform: "rotate(90 10 12.5)"
269
- }
270
- ),
271
- /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
272
- "circle",
273
- {
274
- cx: 4.583,
275
- cy: 12.5,
276
- r: 1.25,
277
- fill: "currentColor",
278
- transform: "rotate(90 4.583 12.5)"
279
- }
280
- )
281
- ]
282
- }
283
- );
284
- var DragHandleIcon_default = SvgDragHandleIcon;
285
-
286
- // src/20/EllipseIcon.tsx
287
- var import_jsx_runtime7 = require("react/jsx-runtime");
288
- var SvgEllipseIcon = ({
289
- title,
290
- titleId,
291
- ...props
292
- }) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
293
- "svg",
294
- {
295
- xmlns: "http://www.w3.org/2000/svg",
296
- width: props.size || "1em",
297
- height: props.size || "1em",
298
- fill: "none",
299
- viewBox: "0 0 20 20",
300
- "aria-labelledby": titleId,
301
- ...props,
302
- children: [
303
- title ? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("title", { id: titleId, children: title }) : null,
304
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
305
- "path",
306
- {
307
- fill: "currentColor",
308
- fillRule: "evenodd",
309
- d: "M10 16.834a6.833 6.833 0 1 0 0-13.667 6.833 6.833 0 0 0 0 13.667m0 1.5a8.333 8.333 0 1 0 0-16.667 8.333 8.333 0 0 0 0 16.667",
310
- clipRule: "evenodd"
311
- }
312
- )
313
- ]
314
- }
315
- );
316
- var EllipseIcon_default = SvgEllipseIcon;
317
-
318
- // src/20/ErrorAltFilledIcon.tsx
319
- var import_jsx_runtime8 = require("react/jsx-runtime");
320
- var SvgErrorAltFilledIcon = ({
321
- title,
322
- titleId,
323
- ...props
324
- }) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
325
- "svg",
326
- {
327
- xmlns: "http://www.w3.org/2000/svg",
328
- width: props.size || "1em",
329
- height: props.size || "1em",
330
- fill: "none",
331
- viewBox: "0 0 20 20",
332
- "aria-labelledby": titleId,
333
- ...props,
334
- children: [
335
- title ? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("title", { id: titleId, children: title }) : null,
336
- /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
337
- "path",
338
- {
339
- fill: "currentColor",
340
- fillRule: "evenodd",
341
- d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m3.53-12.47a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 1 0 1.06 1.06z",
342
- clipRule: "evenodd"
343
- }
344
- )
345
- ]
346
- }
347
- );
348
- var ErrorAltFilledIcon_default = SvgErrorAltFilledIcon;
349
-
350
- // src/20/InfoFilledIcon.tsx
351
- var import_jsx_runtime9 = require("react/jsx-runtime");
352
- var SvgInfoFilledIcon = ({
353
- title,
354
- titleId,
355
- ...props
356
- }) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
357
- "svg",
358
- {
359
- xmlns: "http://www.w3.org/2000/svg",
360
- width: props.size || "1em",
361
- height: props.size || "1em",
362
- fill: "none",
363
- viewBox: "0 0 20 20",
364
- "aria-labelledby": titleId,
365
- ...props,
366
- children: [
367
- title ? /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("title", { id: titleId, children: title }) : null,
368
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("g", { clipPath: "url(#info-filled-icon_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
369
- "path",
370
- {
371
- fill: "currentColor",
372
- fillRule: "evenodd",
373
- d: "M20 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10m-8.75-4.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M8.5 8.25a.75.75 0 0 0 0 1.5h.75v4.5H8.5a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.75v-6z",
374
- clipRule: "evenodd"
375
- }
376
- ) }),
377
- /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("clipPath", { id: "info-filled-icon_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", { fill: "#fff", d: "M0 0h20v20H0z" }) }) })
378
- ]
379
- }
380
- );
381
- var InfoFilledIcon_default = SvgInfoFilledIcon;
382
-
383
- // src/20/MinusIcon.tsx
384
- var import_jsx_runtime10 = require("react/jsx-runtime");
385
- var SvgMinusIcon = ({
386
- title,
387
- titleId,
388
- ...props
389
- }) => /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
390
- "svg",
391
- {
392
- xmlns: "http://www.w3.org/2000/svg",
393
- width: props.size || "1em",
394
- height: props.size || "1em",
395
- fill: "none",
396
- viewBox: "0 0 20 20",
397
- "aria-labelledby": titleId,
398
- ...props,
399
- children: [
400
- title ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("title", { id: titleId, children: title }) : null,
401
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
402
- "path",
403
- {
404
- fill: "currentColor",
405
- fillRule: "evenodd",
406
- d: "M3.25 10A.75.75 0 0 1 4 9.25h12a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75",
407
- clipRule: "evenodd"
408
- }
409
- )
410
- ]
411
- }
412
- );
413
- var MinusIcon_default = SvgMinusIcon;
414
-
415
- // src/20/PlusIcon.tsx
416
- var import_jsx_runtime11 = require("react/jsx-runtime");
417
- var SvgPlusIcon = ({
418
- title,
419
- titleId,
420
- ...props
421
- }) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
422
- "svg",
423
- {
424
- xmlns: "http://www.w3.org/2000/svg",
425
- width: props.size || "1em",
426
- height: props.size || "1em",
427
- fill: "none",
428
- viewBox: "0 0 20 20",
429
- "aria-labelledby": titleId,
430
- ...props,
431
- children: [
432
- title ? /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("title", { id: titleId, children: title }) : null,
433
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
434
- "path",
435
- {
436
- fill: "currentColor",
437
- fillRule: "evenodd",
438
- d: "M9.25 16a.75.75 0 0 0 1.5 0v-5.25H16a.75.75 0 0 0 0-1.5h-5.25V4a.75.75 0 0 0-1.5 0v5.25H4a.75.75 0 0 0 0 1.5h5.25z",
439
- clipRule: "evenodd"
440
- }
441
- )
442
- ]
443
- }
444
- );
445
- var PlusIcon_default = SvgPlusIcon;
446
-
447
- // src/20/SearchIcon.tsx
448
- var import_jsx_runtime12 = require("react/jsx-runtime");
449
- var SvgSearchIcon = ({
450
- title,
451
- titleId,
452
- ...props
453
- }) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
454
- "svg",
455
- {
456
- xmlns: "http://www.w3.org/2000/svg",
457
- width: props.size || "1em",
458
- height: props.size || "1em",
459
- fill: "none",
460
- viewBox: "0 0 20 20",
461
- "aria-labelledby": titleId,
462
- ...props,
463
- children: [
464
- title ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("title", { id: titleId, children: title }) : null,
465
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
466
- "path",
467
- {
468
- fill: "currentColor",
469
- fillRule: "evenodd",
470
- d: "M2.78 8.5a5.72 5.72 0 1 1 11.44 0 5.72 5.72 0 0 1-11.44 0M8.5 1.22a7.28 7.28 0 1 0 4.59 12.93l3.88 3.88a.75.75 0 0 0 1.06-1.06l-3.88-3.88A7.28 7.28 0 0 0 8.5 1.22",
471
- clipRule: "evenodd"
472
- }
473
- )
474
- ]
475
- }
476
- );
477
- var SearchIcon_default = SvgSearchIcon;
478
-
479
- // src/20/StarIcon.tsx
480
- var import_jsx_runtime13 = require("react/jsx-runtime");
481
- var SvgStarIcon = ({
482
- title,
483
- titleId,
484
- ...props
485
- }) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
486
- "svg",
487
- {
488
- xmlns: "http://www.w3.org/2000/svg",
489
- width: props.size || "1em",
490
- height: props.size || "1em",
491
- fill: "none",
492
- viewBox: "0 0 20 20",
493
- "aria-labelledby": titleId,
494
- ...props,
495
- children: [
496
- title ? /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("title", { id: titleId, children: title }) : null,
497
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
498
- "path",
499
- {
500
- fill: "currentColor",
501
- fillRule: "evenodd",
502
- d: "M10 .5a.75.75 0 0 1 .693.462l2.249 5.406 5.836.468a.75.75 0 0 1 .428 1.318l-4.447 3.809 1.359 5.696a.75.75 0 0 1-1.12.814L10 15.42l-4.997 3.052a.75.75 0 0 1-1.12-.814l1.358-5.696-4.447-3.81a.75.75 0 0 1 .428-1.317l5.837-.468L9.308.962A.75.75 0 0 1 10 .5m0 2.703L8.268 7.367a.75.75 0 0 1-.632.46l-4.496.36 3.425 2.935a.75.75 0 0 1 .242.743L5.76 16.253l3.85-2.351a.75.75 0 0 1 .781 0l3.85 2.35-1.047-4.387a.75.75 0 0 1 .241-.743l3.426-2.934-4.496-.36a.75.75 0 0 1-.633-.46z",
503
- clipRule: "evenodd"
504
- }
505
- )
506
- ]
507
- }
508
- );
509
- var StarIcon_default = SvgStarIcon;
510
-
511
- // src/20/UploadIcon.tsx
512
- var import_jsx_runtime14 = require("react/jsx-runtime");
513
- var SvgUploadIcon = ({
514
- title,
515
- titleId,
516
- ...props
517
- }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
518
- "svg",
519
- {
520
- xmlns: "http://www.w3.org/2000/svg",
521
- width: props.size || "1em",
522
- height: props.size || "1em",
523
- fill: "none",
524
- viewBox: "0 0 20 20",
525
- "aria-labelledby": titleId,
526
- ...props,
527
- children: [
528
- title ? /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("title", { id: titleId, children: title }) : null,
529
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
530
- "path",
531
- {
532
- fill: "currentColor",
533
- fillRule: "evenodd",
534
- d: "M10.75 13a.75.75 0 0 1-1.5 0V4.844L7.537 6.6a.75.75 0 1 1-1.074-1.048L10 1.926l3.537 3.627a.75.75 0 1 1-1.074 1.048L10.75 4.844zm-8 0a.75.75 0 0 0-1.5 0v3c0 .966.784 1.75 1.75 1.75h14A1.75 1.75 0 0 0 18.75 16v-3a.75.75 0 0 0-1.5 0v3a.25.25 0 0 1-.25.25H3a.25.25 0 0 1-.25-.25z",
535
- clipRule: "evenodd"
536
- }
537
- )
538
- ]
539
- }
540
- );
541
- var UploadIcon_default = SvgUploadIcon;
542
-
543
- // src/20/WarningFilledIcon.tsx
544
- var import_jsx_runtime15 = require("react/jsx-runtime");
545
- var SvgWarningFilledIcon = ({
546
- title,
547
- titleId,
548
- ...props
549
- }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
550
- "svg",
551
- {
552
- xmlns: "http://www.w3.org/2000/svg",
553
- width: props.size || "1em",
554
- height: props.size || "1em",
555
- fill: "none",
556
- viewBox: "0 0 20 20",
557
- "aria-labelledby": titleId,
558
- ...props,
559
- children: [
560
- title ? /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("title", { id: titleId, children: title }) : null,
561
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
562
- "path",
563
- {
564
- fill: "currentColor",
565
- fillRule: "evenodd",
566
- d: "M19.527 14.966 11.999 2.419l-.932.559.932-.559c-.906-1.51-3.095-1.51-4.002 0L.47 14.966c-.933 1.555.187 3.534 2 3.534h15.057c1.814 0 2.934-1.979 2-3.534M9.998 6.25a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0V7a.75.75 0 0 1 .75-.75m0 9.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5",
567
- clipRule: "evenodd"
568
- }
569
- )
570
- ]
571
- }
572
- );
573
- var WarningFilledIcon_default = SvgWarningFilledIcon;
574
- // Annotate the CommonJS export names for ESM import in node:
575
- 0 && (module.exports = {
576
- CaretLeftIcon,
577
- CaretRightIcon,
578
- CheckFilledIcon,
579
- CheckmarkIcon,
580
- CrossIcon,
581
- DragHandleIcon,
582
- EllipseIcon,
583
- ErrorAltFilledIcon,
584
- InfoFilledIcon,
585
- MinusIcon,
586
- PlusIcon,
587
- SearchIcon,
588
- StarIcon,
589
- UploadIcon,
590
- WarningFilledIcon
591
- });
1
+ 'use strict';
2
+
3
+ var jsxRuntime = require('react/jsx-runtime');
4
+
5
+ var C0=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M4.167 1.583a.083.083 0 0 0-.083.084v16.666c0 .046.037.084.083.084h11.667a.083.083 0 0 0 .083-.084V6.167h-3.833a.75.75 0 0 1-.75-.75V1.583zm-1.583.084c0-.875.709-1.584 1.583-1.584h7.917a.75.75 0 0 1 .53.22l4.584 4.583c.14.141.22.332.22.53v12.917c0 .875-.71 1.584-1.584 1.584H4.167a1.583 1.583 0 0 1-1.583-1.584zM10 9.25a.75.75 0 0 1 .75.75v1.75h1.75a.75.75 0 0 1 0 1.5h-1.75V15a.75.75 0 0 1-1.5 0v-1.75H7.5a.75.75 0 0 1 0-1.5h1.75V10a.75.75 0 0 1 .75-.75",clipRule:"evenodd"})]}),H0=C0;var A0=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#anonymous-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M4.308 2.044A2.75 2.75 0 0 1 8.486.927l.764.573a1.25 1.25 0 0 0 1.5 0l.764-.573a2.75 2.75 0 0 1 4.178 1.117l1.802 4.206H19a.75.75 0 0 1 0 1.5H1a.75.75 0 0 1 0-1.5h1.505zm10.005.59 1.55 3.616H4.136l1.55-3.616a1.25 1.25 0 0 1 1.899-.507l.764.573a2.75 2.75 0 0 0 3.3 0l.764-.573a1.25 1.25 0 0 1 1.899.507ZM3.25 8.75h13.5V10a3.25 3.25 0 0 1-6.49.25h-.52A3.25 3.25 0 0 1 3.25 10zm1.518 1.5a1.75 1.75 0 0 0 3.464 0zm7 0a1.75 1.75 0 0 0 3.464 0zM2 14.25a.75.75 0 0 0-.624 1.166l1.529 2.293-1.24.62a.75.75 0 1 0 .67 1.342l2-1a.75.75 0 0 0 .29-1.087L3.401 15.75H9.25V19a.75.75 0 0 0 1.5 0v-3.25h5.85l-1.223 1.834a.75.75 0 0 0 .289 1.087l2 1a.75.75 0 1 0 .67-1.342l-1.24-.62 1.53-2.293A.75.75 0 0 0 18 14.25z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"anonymous-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),B0=A0;var k0=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10.114 16.78a.75.75 0 0 0 0-1.06l-4.97-4.97h10.69a.75.75 0 0 0 0-1.5H5.143l4.97-4.97a.75.75 0 0 0-1.061-1.06L2.273 10l6.78 6.78a.75.75 0 0 0 1.06 0Z",clipRule:"evenodd"})]}),F0=k0;var T0=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M9.053 3.22a.75.75 0 0 0 0 1.06l4.97 4.97H3.332a.75.75 0 0 0 0 1.5h10.69l-4.97 4.97a.75.75 0 1 0 1.06 1.06l6.78-6.78-6.78-6.78a.75.75 0 0 0-1.06 0Z",clipRule:"evenodd"})]}),Z0=T0;var U0=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#arrow-up-circle-filled-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m.53-15.03L10 4.44l-.53.53-3.5 3.5a.75.75 0 1 0 1.06 1.06l2.22-2.22v7.19a.75.75 0 0 0 1.5 0V7.31l2.22 2.22a.75.75 0 0 0 1.06-1.06z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"arrow-up-circle-filled-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),W0=U0;var J0=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m2.5-12.5a2.5 2.5 0 1 1-4.999.001A2.5 2.5 0 0 1 12.5 7.5M5 13.75c0-1.662 3.331-2.5 5-2.5s5 .838 5 2.5V15H5z",clipRule:"evenodd"})]}),K0=J0;var O0=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{d:"M4 15.74c0 .696.564 1.26 1.26 1.26h5.79c3.321 0 5.357-1.586 5.357-4.221 0-1.8-1.028-3.172-2.871-3.579 1.543-.579 2.293-1.693 2.293-3.321C15.829 3.543 14.093 2 11.22 2H5.26A1.26 1.26 0 0 0 4 3.26zm3.6-7.89V5h2.807c1.136 0 1.757.557 1.757 1.393 0 .921-.685 1.457-1.693 1.457zm0 6.15v-3.15h3.171c1.286 0 1.993.6 1.993 1.564 0 1.029-.793 1.586-1.928 1.586z"})]}),Q0=O0;var $0=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#callout-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M4.75 5A3.25 3.25 0 0 1 8 1.75h7A3.25 3.25 0 0 1 18.25 5v3A3.25 3.25 0 0 1 15 11.25H8A3.25 3.25 0 0 1 4.75 8zM8 .25A4.75 4.75 0 0 0 3.25 5v3A4.75 4.75 0 0 0 8 12.75h7A4.75 4.75 0 0 0 19.75 8V5A4.75 4.75 0 0 0 15 .25zm1 3a.75.75 0 0 0 0 1.5h1.75V9a.75.75 0 0 0 1.5 0V4.75H14a.75.75 0 0 0 0-1.5zm1.75 12.635V14.25h1.5v2.25a.75.75 0 0 1-.603.735L2.92 18.98a1.5 1.5 0 1 1-.294-1.47l8.123-1.625Z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"callout-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),j0=$0;var l1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.03 15.53a.75.75 0 0 0 0-1.06L8.56 10l4.47-4.47a.75.75 0 0 0-1.06-1.06l-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 0 0 1.06 0",clipRule:"evenodd"})]}),o1=l1;var a1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.97 4.47a.75.75 0 0 0 0 1.06L11.44 10l-4.47 4.47a.75.75 0 1 0 1.06 1.06l5-5a.75.75 0 0 0 0-1.06l-5-5a.75.75 0 0 0-1.06 0",clipRule:"evenodd"})]}),r1=a1;var s1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#check-circle-filled-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m4.53-11.97a.75.75 0 1 0-1.06-1.06L9 11.44 7.03 9.47a.75.75 0 1 0-1.06 1.06L9 13.56z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"check-circle-filled-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),p1=s1;var m1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#check-filled-icon_svg__a)",children:jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m4.53-11.97a.75.75 0 1 0-1.06-1.06L9 11.44 7.03 9.47a.75.75 0 1 0-1.06 1.06L9 13.56z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"check-filled-icon_svg__a",children:jsxRuntime.jsx("path",{fill:"transparent",d:"M0 0h20v20H0z"})})})]}),n1=m1;var v1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#checkmark-circle-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M18.5 10a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0m1.5 0c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10m-5.47-1.97a.75.75 0 1 0-1.06-1.06L9 11.44 7.03 9.47a.75.75 0 1 0-1.06 1.06L9 13.56z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"checkmark-circle-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),f1=v1;var g1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.5,d:"m16 6-8 8-4-4"})]}),S1=g1;var w1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{d:"M17.53 13.47a.75.75 0 1 1-1.06 1.06l-4-4a.75.75 0 0 1 0-1.06l4-4a.75.75 0 1 1 1.06 1.06L14.06 10zM2.47 6.53a.75.75 0 0 1 1.06-1.06l4 4a.75.75 0 0 1 0 1.06l-4 4a.75.75 0 0 1-1.06-1.06L5.94 10z"})]}),G1=w1;var P1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M3.667 2.25A2.417 2.417 0 0 0 1.25 4.667v8.666a2.417 2.417 0 0 0 2.417 2.417H5.25v2.75a.75.75 0 0 0 1.244.564l3.788-3.314h6.051a2.417 2.417 0 0 0 2.417-2.417V4.667a2.417 2.417 0 0 0-2.417-2.417zM2.75 4.667c0-.507.41-.917.917-.917h12.666c.507 0 .917.41.917.917v8.666c0 .507-.41.917-.917.917H10a.75.75 0 0 0-.494.186L6.75 16.847V15a.75.75 0 0 0-.75-.75H3.667a.917.917 0 0 1-.917-.917zM7 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2m7.667-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-4.333 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2",clipRule:"evenodd"})]}),R1=P1;var z1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#copy-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M3.334.917A2.417 2.417 0 0 0 .917 3.333V12.5a2.417 2.417 0 0 0 2.417 2.417h1.749v1.75A2.417 2.417 0 0 0 7.5 19.083h9.166a2.417 2.417 0 0 0 2.417-2.416V7.5a2.417 2.417 0 0 0-2.417-2.417h-1.749v-1.75A2.417 2.417 0 0 0 12.5.917zm10.083 4.166v-1.75a.917.917 0 0 0-.917-.916H3.334a.917.917 0 0 0-.917.916V12.5c0 .506.41.917.917.917h1.749V7.5A2.417 2.417 0 0 1 7.5 5.083zm-6.834 9.115V7.5c0-.506.41-.917.917-.917h9.166c.507 0 .917.41.917.917v9.167c0 .506-.41.916-.917.916H7.5a.917.917 0 0 1-.917-.916z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"copy-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),x1=z1;var M1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#cross-circle-filled-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10M7.53 6.47a.75.75 0 0 0-1.06 1.06L8.94 10l-2.47 2.47a.75.75 0 1 0 1.06 1.06L10 11.06l2.47 2.47a.75.75 0 0 0 1.06-1.06L11.06 10l2.47-2.47a.75.75 0 0 0-1.06-1.06L10 8.94z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"cross-circle-filled-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),b1=M1;var C1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#cross-icon_svg__a)",children:jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.894 3.106a.75.75 0 0 1 0 1.06L11.061 10l5.833 5.834a.75.75 0 0 1-1.06 1.06L10 11.061l-5.834 5.833a.75.75 0 1 1-1.06-1.06L8.939 10 3.106 4.166a.75.75 0 0 1 1.06-1.06L10 8.939l5.834-5.833a.75.75 0 0 1 1.06 0",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"cross-icon_svg__a",children:jsxRuntime.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),H1=C1;var A1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#cut-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M5.263 13.281a2 2 0 1 1-3.464 2 2 2 0 0 1 3.464-2m1.6-.072A3.501 3.501 0 0 1 .5 16.031a3.5 3.5 0 0 1 5.609-4.118l2.364-1.353.13-.849a4.85 4.85 0 0 1 2.385-3.48l3.558-2.037a2.39 2.39 0 0 1 2.339-.02l2.897 1.59-10.25 5.918zm9.862-7.412L10.157 9.59a3.35 3.35 0 0 1 1.577-2.056l3.557-2.037a.89.89 0 0 1 .872-.008l.562.31Zm-9.862.994A3.501 3.501 0 0 0 .5 3.969a3.5 3.5 0 0 0 5.609 4.118l1.166.667c.135-.49.328-.96.572-1.4zm7.083 4.075 4.683 2.703 1.153.666-1.167.641-1.73.95a2.39 2.39 0 0 1-2.34-.02l-3.557-2.037a5 5 0 0 1-.909-.672l.198-.113.007-.004 1.183-.683q.128.09.267.17l3.557 2.037c.27.154.6.157.872.008l.562-.31-4.28-2.47 1.5-.866ZM5.263 6.719a2 2 0 1 0-3.464-2 2 2 0 0 0 3.464 2",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"cut-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),B1=A1;var k1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M3 6.25a.75.75 0 0 1 .75.75v2.25h12.5V7a.75.75 0 0 1 1.5 0v6a.75.75 0 0 1-1.5 0v-2.25H3.75V13a.75.75 0 0 1-1.5 0V7A.75.75 0 0 1 3 6.25",clipRule:"evenodd"})]}),F1=k1;var T1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 1.75a.75.75 0 0 1 .75.75v10.69l2.053-2.054a.75.75 0 0 1 1.06 1.061L10 16.061l-3.864-3.864a.75.75 0 0 1 1.061-1.06l2.053 2.052V2.5a.75.75 0 0 1 .75-.75M2.5 13.417a.75.75 0 0 1 .75.75v2.5c0 .506.41.916.917.916h11.666c.507 0 .917-.41.917-.916v-2.5a.75.75 0 0 1 1.5 0v2.5a2.417 2.417 0 0 1-2.417 2.416H4.167a2.417 2.417 0 0 1-2.417-2.416v-2.5a.75.75 0 0 1 .75-.75",clipRule:"evenodd"})]}),Z1=T1;var U1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("circle",{cx:15.417,cy:7.5,r:1.25,fill:"currentColor",transform:"rotate(90 15.417 7.5)"}),jsxRuntime.jsx("circle",{cx:10,cy:7.5,r:1.25,fill:"currentColor",transform:"rotate(90 10 7.5)"}),jsxRuntime.jsx("circle",{cx:4.583,cy:7.5,r:1.25,fill:"currentColor",transform:"rotate(90 4.583 7.5)"}),jsxRuntime.jsx("circle",{cx:15.417,cy:12.5,r:1.25,fill:"currentColor",transform:"rotate(90 15.417 12.5)"}),jsxRuntime.jsx("circle",{cx:10,cy:12.5,r:1.25,fill:"currentColor",transform:"rotate(90 10 12.5)"}),jsxRuntime.jsx("circle",{cx:4.583,cy:12.5,r:1.25,fill:"currentColor",transform:"rotate(90 4.583 12.5)"})]}),W1=U1;var J1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsxs("g",{clipPath:"url(#duplicate-icon_svg__a)",children:[jsxRuntime.jsx("path",{d:"M12.833 9.583a.75.75 0 0 0-1.5 0v1.75h-1.75a.75.75 0 0 0 0 1.5h1.75v1.75a.75.75 0 0 0 1.5 0v-1.75h1.75a.75.75 0 0 0 0-1.5h-1.75z"}),jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M.917 3.333A2.417 2.417 0 0 1 3.334.917H12.5a2.417 2.417 0 0 1 2.417 2.416v1.75h1.75A2.417 2.417 0 0 1 19.082 7.5v9.167a2.417 2.417 0 0 1-2.417 2.416H7.5a2.417 2.417 0 0 1-2.417-2.416v-1.75h-1.75A2.417 2.417 0 0 1 .918 12.5V3.333Zm12.5 0v1.75H7.5A2.417 2.417 0 0 0 5.083 7.5v5.917h-1.75a.917.917 0 0 1-.916-.917V3.333c0-.506.41-.916.917-.916H12.5c.507 0 .917.41.917.916M6.584 14.167l-.001.031v2.469c0 .506.41.916.917.916h9.166c.507 0 .917-.41.917-.916V7.5a.917.917 0 0 0-.917-.917H7.5a.917.917 0 0 0-.917.917z",clipRule:"evenodd"})]}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"duplicate-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),K1=J1;var N1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M12.874 2.732a2.417 2.417 0 0 1 3.418 0l.976.976a2.417 2.417 0 0 1 0 3.417L6.608 17.787c-.297.297-.7.464-1.12.464H1.75v-3.738c0-.42.167-.823.464-1.12zm2.357 1.06a.917.917 0 0 0-1.296 0L12.727 5 15 7.273l1.208-1.208a.917.917 0 0 0 0-1.297zM13.94 8.333l-2.272-2.272-8.393 8.392a.08.08 0 0 0-.024.059v2.238h2.238a.08.08 0 0 0 .06-.024z",clipRule:"evenodd"})]}),O1=N1;var Y1=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 16.834a6.833 6.833 0 1 0 0-13.667 6.833 6.833 0 0 0 0 13.667m0 1.5a8.333 8.333 0 1 0 0-16.667 8.333 8.333 0 0 0 0 16.667",clipRule:"evenodd"})]}),$1=Y1;var e5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#emoji-smile-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M18.5 10a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0m1.5 0c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10M6.697 11.722a.75.75 0 1 0-1.393.556C6.012 14.051 7.882 15.25 10 15.25s3.988-1.199 4.697-2.972a.75.75 0 1 0-1.393-.556c-.456 1.14-1.728 2.028-3.304 2.028s-2.848-.888-3.303-2.028M8.5 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0M13 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"emoji-smile-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),l5=e5;var t5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#error-alt-circle-filled-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m3.53-12.47a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 1 0 1.06 1.06z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"error-alt-circle-filled-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),a5=t5;var i5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m3.53-12.47a.75.75 0 0 0-1.06-1.06l-6 6a.75.75 0 1 0 1.06 1.06z",clipRule:"evenodd"})]}),s5=i5;var c5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#error-alternative-circle-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M18.5 10a8.5 8.5 0 0 1-13.957 6.517L16.517 4.543A8.47 8.47 0 0 1 18.5 10M3.483 15.457 15.457 3.483A8.5 8.5 0 0 0 3.483 15.457M20 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"error-alternative-circle-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),m5=c5;var d5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#error-circle-filled-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M20 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10m-8.75 4.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M10.75 5a.75.75 0 0 0-1.5 0v6a.75.75 0 0 0 1.5 0z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"error-circle-filled-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),v5=d5;var h5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#error-circle-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 18.5a8.5 8.5 0 1 0 0-17 8.5 8.5 0 0 0 0 17m0 1.5c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m1.25-5.75a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M10.75 5a.75.75 0 0 0-1.5 0v6a.75.75 0 0 0 1.5 0z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"error-circle-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),g5=h5;var V5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{d:"M6.53 13.47a.75.75 0 1 1-1.06 1.06l-4-4a.75.75 0 0 1 0-1.06l4-4a.75.75 0 0 1 1.06 1.06L3.06 10zm6.94-6.94a.75.75 0 0 1 1.06-1.06l4 4a.75.75 0 0 1 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06L16.94 10z"})]}),w5=V5;var u5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{d:"M15.833 14.583a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m0-4.166a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m-4.583 4.166a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m0-4.166a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m-4.583 4.166a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0"}),jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M6.166.833a.75.75 0 0 0-1.5 0v1H3.333A3.167 3.167 0 0 0 .166 5v10.833A3.167 3.167 0 0 0 3.333 19h13.333a3.167 3.167 0 0 0 3.167-3.167V5a3.167 3.167 0 0 0-3.167-3.167h-1.333v-1a.75.75 0 0 0-1.5 0v1H6.166zm-1.5 2.5V5a.75.75 0 1 0 1.5 0V3.333h7.667V5a.75.75 0 0 0 1.5 0V3.333h1.333c.92 0 1.667.746 1.667 1.667v1.333H1.666V5c0-.92.746-1.667 1.667-1.667zm-3 12.5v-8h16.667v8c0 .92-.746 1.667-1.667 1.667H3.333c-.92 0-1.667-.746-1.667-1.667",clipRule:"evenodd"})]}),P5=u5;var y5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M5.989 15.833H1.667c-.92 0-1.667-.746-1.667-1.666V5.833c0-.92.746-1.666 1.667-1.666h16.666c.92 0 1.667.746 1.667 1.666v8.334c0 .92-.746 1.666-1.667 1.666H10.67c-.17.598-.358 1.16-.559 1.66-.246.614-.527 1.171-.844 1.59-.29.381-.751.834-1.389.834-.754 0-1.181-.59-1.392-1.025-.228-.472-.36-1.062-.43-1.627a9.5 9.5 0 0 1-.067-1.432M1.667 5.667h16.666c.092 0 .167.074.167.166v8.334a.167.167 0 0 1-.167.166h-7.285c.094-.426.178-.858.253-1.288.133-.77.236-1.55.298-2.289.374-.242.752-.458 1.123-.637q.045.117.105.266c.096.237.224.536.39.783.138.204.467.624 1.025.624.914 0 1.66-.522 2.175-1.205.516-.684.857-1.593.992-2.567a.75.75 0 0 0-1.486-.206c-.107.775-.372 1.43-.704 1.87-.267.354-.542.53-.794.587a4 4 0 0 1-.207-.448l-.08-.2a10 10 0 0 0-.194-.476 2 2 0 0 0-.2-.35c-.054-.072-.289-.38-.714-.38a.8.8 0 0 0-.27.05 10 10 0 0 0-1.098.51 11 11 0 0 0-.016-.402c-.037-.617-.13-1.207-.328-1.667-.194-.452-.596-.991-1.318-.991-.46 0-1.059.189-1.629.413a21 21 0 0 0-1.978.923c-1.355.712-2.782 1.604-3.557 2.29a.75.75 0 1 0 .994 1.123c.639-.565 1.94-1.391 3.26-2.085a19 19 0 0 1 1.83-.855c.473-.186.802-.276.984-.301l.036.075c.096.223.175.61.209 1.165.022.378.022.806 0 1.267-.423.307-.832.637-1.216.979-1.138 1.012-2.125 2.182-2.638 3.24a2 2 0 0 0-.076.182H1.667a.167.167 0 0 1-.167-.166V5.833c0-.092.075-.166.167-.166m7.438 10.166c-.122.397-.252.767-.386 1.101-.224.558-.446.977-.648 1.242a1.3 1.3 0 0 1-.165.188q-.03-.044-.07-.125c-.126-.262-.23-.67-.292-1.16a8 8 0 0 1-.054-1.246zm.404-1.5H7.908c.448-.717 1.16-1.535 2.022-2.301l.015-.014a27 27 0 0 1-.436 2.315m.359-6.963q0-.002.008.01zM7.97 18.44q0 .003-.01-.007.01.006.01.008Zm6.536-8.054-.013-.013z",clipRule:"evenodd"})]}),z5=y5;var I5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#form-text-field-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M7.5.917a.75.75 0 0 0 0 1.5c.966 0 1.75.783 1.75 1.75H1.667C.747 4.167 0 4.913 0 5.833v8.334c0 .92.746 1.666 1.667 1.666H9.25a1.75 1.75 0 0 1-1.75 1.75.75.75 0 0 0 0 1.5A3.24 3.24 0 0 0 10 17.91a3.24 3.24 0 0 0 2.5 1.173.75.75 0 0 0 0-1.5 1.75 1.75 0 0 1-1.75-1.748v-.002h7.583c.92 0 1.667-.746 1.667-1.666V5.833c0-.92-.746-1.666-1.667-1.666H10.75c0-.967.784-1.75 1.75-1.75a.75.75 0 0 0 0-1.5A3.24 3.24 0 0 0 10 2.09 3.24 3.24 0 0 0 7.5.917m1.75 4.75H1.667a.167.167 0 0 0-.167.166v8.334c0 .092.075.166.167.166H9.25v-3.708h-1a.75.75 0 0 1 0-1.5h1zm1.5 8.666v-3.708h1a.75.75 0 0 0 0-1.5h-1V5.667h7.583c.092 0 .167.074.167.166v8.334a.167.167 0 0 1-.167.166z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"form-text-field-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),M5=I5;var _5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M3 0a3 3 0 0 0-3 3v13a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3zm2 3.25a.75.75 0 0 0 0 1.5h4.25V15a.75.75 0 0 0 1.5 0V4.75H15a.75.75 0 0 0 0-1.5z",clipRule:"evenodd"})]}),C5=_5;var E5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M9.545 1.403a.75.75 0 0 1 .91 0l7 5.334a.75.75 0 0 1 .295.596V18a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V7.333a.75.75 0 0 1 .295-.596zm6.705 6.302L10 2.943 3.75 7.705v9.545h3.5V14a2.75 2.75 0 1 1 5.5 0v3.25h3.5zm-5 9.545V14a1.25 1.25 0 1 0-2.5 0v3.25z",clipRule:"evenodd"})]}),A5=E5;var L5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#image-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M18.333 3.5H1.667a.167.167 0 0 0-.167.167v9.776l2.922-2.912a.75.75 0 0 1 1.059 0l2.104 2.098 5.178-5.16a.75.75 0 0 1 1.06 0L18.5 12.13V3.667a.167.167 0 0 0-.167-.167M-.06 14.998l.061-.06V3.667A1.666 1.666 0 0 1 1.667 2h16.666C19.253 2 20 2.746 20 3.667v9.958l.06.06-.06.062v2.586c0 .92-.746 1.667-1.667 1.667H1.667C.747 18 0 17.254 0 16.333V15.06L-.06 15Zm18.56 1.335v-2.085l-5.207-5.19-5.178 5.16a.75.75 0 0 1-1.059 0l-2.105-2.097-3.451 3.44v.772c0 .092.075.167.167.167h16.666a.167.167 0 0 0 .167-.167M5.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"image-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),k5=L5;var q5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#info-circle-filled-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M20 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10m-8.75-4.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M8.5 8.25a.75.75 0 0 0 0 1.5h.75v4.5H8.5a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.75v-6z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"info-circle-filled-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),T5=q5;var D5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#info-circle-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 18.5a8.5 8.5 0 1 0 0-17 8.5 8.5 0 0 0 0 17m0 1.5c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10m1.25-14.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M8.5 8.25a.75.75 0 0 0 0 1.5h.75v4.5H8.5a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.75v-6z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"info-circle-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),U5=D5;var X5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#info-filled-icon_svg__a)",children:jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M20 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10m-8.75-4.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0M8.5 8.25a.75.75 0 0 0 0 1.5h.75v4.5H8.5a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.75v-6z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"info-filled-icon_svg__a",children:jsxRuntime.jsx("path",{fill:"#fff",d:"M0 0h20v20H0z"})})})]}),J5=X5;var N5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M7.75 4a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-1.901l-2.16 9.5H11a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1 0-1.5h1.901l2.16-9.5H8.5A.75.75 0 0 1 7.75 4",clipRule:"evenodd"})]}),O5=N5;var Y5=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"m17.026 8.54-1.944 1.945a.75.75 0 0 1-1.06-1.06l1.944-1.945a1.75 1.75 0 0 0 0-2.475l-.707-.707a1.75 1.75 0 0 0-2.475 0L9.248 7.834a1.75 1.75 0 0 0 0 2.475l.354.353a.75.75 0 1 1-1.06 1.06l-.354-.353a3.25 3.25 0 0 1 0-4.596l3.535-3.536a3.25 3.25 0 0 1 4.596 0l.707.708a3.25 3.25 0 0 1 0 4.596ZM5.065 9.897a.75.75 0 1 1 1.06 1.06L4.3 12.784a1.75 1.75 0 0 0 0 2.475l.707.707a1.75 1.75 0 0 0 2.475 0l3.535-3.535a1.75 1.75 0 0 0 0-2.475l-.354-.354a.75.75 0 1 1 1.061-1.06l.354.353a3.25 3.25 0 0 1 0 4.596L8.54 17.026a3.25 3.25 0 0 1-4.596 0l-.707-.707a3.25 3.25 0 0 1 0-4.596l1.827-1.827Z",clipRule:"evenodd"})]}),$5=Y5;var ee=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M3.75 5.417a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5m4.167-2a.75.75 0 1 0 0 1.5h9.167a.75.75 0 0 0 0-1.5zm0 5.833a.75.75 0 0 0 0 1.5h9.167a.75.75 0 0 0 0-1.5zm-.75 6.583a.75.75 0 0 1 .75-.75h9.167a.75.75 0 0 1 0 1.5H7.917a.75.75 0 0 1-.75-.75M5 10a1.25 1.25 0 1 1-2.5 0A1.25 1.25 0 0 1 5 10m-1.25 7.083a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5",clipRule:"evenodd"})]}),le=ee;var te=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M6.75 5a3.25 3.25 0 1 1 6.5 0v2.5h-6.5zm-1.5 2.5V5a4.75 4.75 0 0 1 9.5 0v2.5H15a3.5 3.5 0 0 1 3.5 3.5v5a3.5 3.5 0 0 1-3.5 3.5H5A3.5 3.5 0 0 1 1.5 16v-5A3.5 3.5 0 0 1 5 7.5zM5 9a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-5a2 2 0 0 0-2-2zm6.5 3.5a1.5 1.5 0 0 1-.75 1.3V15a.75.75 0 0 1-1.5 0v-1.2a1.5 1.5 0 1 1 2.25-1.3",clipRule:"evenodd"})]}),ae=te;var ie=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{d:"M7.667 1.833a.833.833 0 1 1-1.667 0 .833.833 0 0 1 1.667 0m3.673.251c.109-.763 1.21-.763 1.32 0l.657 4.6 4.599.656c.763.109.763 1.21 0 1.32l-4.6.657-.656 4.599c-.11.763-1.211.763-1.32 0l-.657-4.6-4.599-.656c-.763-.11-.763-1.21 0-1.32l4.599-.657zM2.832 14.142c.11-.773 1.226-.773 1.336 0l.212 1.479 1.478.21c.773.111.773 1.227 0 1.337l-1.478.211-.212 1.479c-.11.773-1.226.773-1.336 0l-.211-1.479-1.479-.21c-.773-.111-.773-1.227 0-1.337l1.479-.212zm-.999-3.475a.833.833 0 1 0 0-1.667.833.833 0 0 0 0 1.667m12.667 8.5a.833.833 0 1 0 0-1.667.833.833 0 0 0 0 1.667"})]}),se=ie;var ce=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.25 10A.75.75 0 0 1 4 9.25h12a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75",clipRule:"evenodd"})]}),me=ce;var de=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#monkey-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 .25C4.615.25.25 4.615.25 10s4.365 9.75 9.75 9.75h5a.75.75 0 0 0 0-1.5h-5a8.25 8.25 0 0 1 0-16.5h1.365a6.885 6.885 0 0 1 6.885 6.885v3.115a2 2 0 1 1-4 0V5a.75.75 0 0 0-1.5 0v.896a4.5 4.5 0 0 0-7.5 3.354v1.5a4.5 4.5 0 0 0 8.009 2.818 3.5 3.5 0 0 0 6.491-1.818V8.635A8.385 8.385 0 0 0 11.365.25zm2.75 10.5v-1.5a3 3 0 1 0-6 0v1.5a3 3 0 1 0 6 0",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"monkey-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),ve=de;var he=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M3.5 8.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m5 1.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0m6.5 0a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0",clipRule:"evenodd"})]}),ge=he;var Ve=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{d:"M10 8.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m0 6.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3m0-13a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3"})]}),we=Ve;var ue=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M3.637 2.803a.75.75 0 1 1 1.06 1.061l-1.22 1.22H5a5.75 5.75 0 0 1 5 2.908 5.75 5.75 0 0 1 5-2.908h1.523l-1.22-1.22a.75.75 0 1 1 1.061-1.06l3.03 3.03-3.03 3.03a.75.75 0 0 1-1.06-1.06l1.22-1.22H15a4.25 4.25 0 0 0-4.25 4.25V17.5a.75.75 0 0 1-1.5 0v-6.666A4.25 4.25 0 0 0 5 6.584H3.478l1.22 1.22a.75.75 0 1 1-1.061 1.06l-3.03-3.03z",clipRule:"evenodd"})]}),Pe=ue;var ye=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#paste-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M14.5 14.5h4v-13h-10v1H7V1a1 1 0 0 1 1-1h11a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-4.5zm-3 4h-10v-13H8V8a1 1 0 0 0 1 1h2.5zM0 19V5a1 1 0 0 1 1-1h7.586a1 1 0 0 1 .707.293l3.414 3.414a1 1 0 0 1 .293.707V19a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1M11.5 2.75a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"paste-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),ze=ye;var Ie=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"m16.256 9.773-1.179 1.179a.833.833 0 0 1-1.178 0l-.59-.59L6.42 17.25a3.2 3.2 0 0 1-1.785.9l-.203.032a2.58 2.58 0 0 0-1.437.725L1.23 17.139c.389-.389.643-.892.725-1.436l.03-.204a3.2 3.2 0 0 1 .902-1.785l6.887-6.887-.589-.59a.833.833 0 0 1 0-1.178l1.179-1.178a.833.833 0 0 1 1.178 0 .833.833 0 0 0 1.179 0l1.768-1.768a2.5 2.5 0 1 1 3.535 3.536l-1.767 1.767a.833.833 0 0 0 0 1.179.833.833 0 0 1 0 1.178Zm-1.061-3.417a2.33 2.33 0 0 0-.403 2.76l-.304.304-3.771-3.771.304-.305a2.33 2.33 0 0 0 2.76-.403l1.767-1.767a1 1 0 0 1 1.415 1.414zM4.209 16.698c-.35.053-.69.15-1.01.29l-.052-.051q.21-.483.29-1.01l.03-.204a1.7 1.7 0 0 1 .48-.948l6.879-6.88L12.24 9.31l-6.88 6.88a1.7 1.7 0 0 1-.948.479l-.203.03Z",clipRule:"evenodd"})]}),Me=Ie;var _e=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M9.25 16a.75.75 0 0 0 1.5 0v-5.25H16a.75.75 0 0 0 0-1.5h-5.25V4a.75.75 0 0 0-1.5 0v5.25H4a.75.75 0 0 0 0 1.5h5.25z",clipRule:"evenodd"})]}),Ce=_e;var Ee=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M4.25 2.917c0-.875.709-1.584 1.583-1.584h8.334c.874 0 1.583.71 1.583 1.584V4.25h1.75a2.417 2.417 0 0 1 2.416 2.417v6.666A2.417 2.417 0 0 1 17.5 15.75h-1.75v2.583c0 .875-.709 1.584-1.583 1.584H5.833a1.583 1.583 0 0 1-1.583-1.584V15.75H2.5a2.417 2.417 0 0 1-2.417-2.417V6.667A2.417 2.417 0 0 1 2.5 4.25h1.75zM15 5.75H2.5a.917.917 0 0 0-.917.917v6.666c0 .507.41.917.917.917h1.75v-3.417c0-.874.709-1.583 1.583-1.583h8.334c.874 0 1.583.709 1.583 1.583v3.417h1.75c.506 0 .916-.41.916-.917V6.667a.917.917 0 0 0-.916-.917zm-.75-2.833V4.25h-8.5V2.917c0-.046.037-.084.083-.084h8.334c.046 0 .083.038.083.084m0 7.916v7.5a.083.083 0 0 1-.083.084H5.833a.083.083 0 0 1-.083-.084v-7.5c0-.046.037-.083.083-.083h8.334c.046 0 .083.037.083.083m-.5-2.5a.833.833 0 1 0 0-1.666.833.833 0 0 0 0 1.666m-5.417 4.25a.75.75 0 0 0 0 1.5h3.333a.75.75 0 1 0 0-1.5zm0 2.5a.75.75 0 0 0 0 1.5h3.333a.75.75 0 1 0 0-1.5z",clipRule:"evenodd"})]}),Ae=Ee;var Le=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M9.09 2.231a.75.75 0 1 1 .987-1.129l3.979 3.481-3.979 3.481a.75.75 0 0 1-.987-1.128l1.948-1.705a5.083 5.083 0 1 0 4.046 4.978.75.75 0 1 1 1.5 0 6.583 6.583 0 1 1-5.856-6.544z",clipRule:"evenodd"})]}),ke=Le;var qe=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.78 8.5a5.72 5.72 0 1 1 11.44 0 5.72 5.72 0 0 1-11.44 0M8.5 1.22a7.28 7.28 0 1 0 4.59 12.93l3.88 3.88a.75.75 0 0 0 1.06-1.06l-3.88-3.88A7.28 7.28 0 0 0 8.5 1.22",clipRule:"evenodd"})]}),Te=qe;var De=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsxs("g",{fillRule:"evenodd",clipPath:"url(#settings-icon_svg__a)",clipRule:"evenodd",children:[jsxRuntime.jsx("path",{d:"M13.334 10a3.333 3.333 0 1 1-6.667 0 3.333 3.333 0 0 1 6.667 0m-1.5 0a1.833 1.833 0 1 1-3.667 0 1.833 1.833 0 0 1 3.667 0"}),jsxRuntime.jsx("path",{d:"M9.433.917c-.755 0-1.405.532-1.553 1.273l-.334 1.67s-.001.007-.011.018a.2.2 0 0 1-.057.04.14.14 0 0 1-.064.011.04.04 0 0 1-.021-.005l-1.418-.945a1.58 1.58 0 0 0-1.998.197l-.801.802a1.58 1.58 0 0 0-.198 1.998l.945 1.417a.04.04 0 0 1 .005.022.14.14 0 0 1-.012.064.2.2 0 0 1-.038.056q-.018.013-.019.012l-1.67.334A1.58 1.58 0 0 0 .916 9.433v1.134c0 .755.533 1.405 1.273 1.553l1.67.334s.007 0 .018.01a.16.16 0 0 1 .052.122.04.04 0 0 1-.006.021l-.945 1.417a1.58 1.58 0 0 0 .198 1.998l.802.802c.533.533 1.37.616 1.997.198l1.418-.945q.002-.004.021-.006a.14.14 0 0 1 .064.012.2.2 0 0 1 .057.039c.01.012.01.018.01.018l.335 1.67c.148.74.798 1.273 1.553 1.273h1.133c.755 0 1.405-.532 1.553-1.272l.334-1.67s0-.007.011-.02a.2.2 0 0 1 .057-.038.15.15 0 0 1 .064-.012q.02.002.021.006l1.418.945a1.58 1.58 0 0 0 1.998-.198l.801-.802c.534-.533.617-1.37.198-1.998l-.945-1.417a.04.04 0 0 1-.006-.022.14.14 0 0 1 .012-.063.2.2 0 0 1 .04-.057q.016-.013.018-.011l1.67-.335a1.58 1.58 0 0 0 1.273-1.552V9.433c0-.754-.533-1.404-1.273-1.552l-1.67-.334s-.007-.001-.019-.012a.2.2 0 0 1-.039-.056.14.14 0 0 1-.012-.064q.003-.02.006-.021l.945-1.418a1.58 1.58 0 0 0-.198-1.998l-.801-.802a1.58 1.58 0 0 0-1.998-.197l-1.418.945a.04.04 0 0 1-.021.005.14.14 0 0 1-.064-.012.2.2 0 0 1-.057-.039q-.013-.017-.011-.018l-.334-1.67A1.58 1.58 0 0 0 10.566.917zM9.35 2.484a.08.08 0 0 1 .082-.067h1.133c.04 0 .074.028.082.067l.334 1.67c.11.552.506.959.964 1.149a1.59 1.59 0 0 0 1.492-.131l1.418-.945a.08.08 0 0 1 .105.01l.802.802a.08.08 0 0 1 .01.105l-.945 1.418a1.59 1.59 0 0 0-.131 1.492c.19.457.596.853 1.148.963l1.67.335a.08.08 0 0 1 .068.081v1.134c0 .04-.028.074-.067.082l-1.67.334c-.553.11-.96.506-1.15.964a1.59 1.59 0 0 0 .132 1.492l.945 1.417a.08.08 0 0 1-.01.105l-.802.802a.084.084 0 0 1-.105.01l-1.418-.944a1.59 1.59 0 0 0-1.492-.131c-.458.19-.854.596-.964 1.148l-.334 1.67a.08.08 0 0 1-.082.067H9.433a.08.08 0 0 1-.082-.067l-.334-1.67a1.6 1.6 0 0 0-.964-1.148 1.59 1.59 0 0 0-1.492.13l-1.418.946a.08.08 0 0 1-.105-.01l-.801-.803a.08.08 0 0 1-.01-.105l.944-1.417c.31-.466.322-1.03.13-1.492a1.6 1.6 0 0 0-1.148-.964l-1.67-.334a.08.08 0 0 1-.067-.082V9.433c0-.04.028-.074.067-.081l1.67-.335c.553-.11.959-.506 1.149-.964a1.59 1.59 0 0 0-.131-1.492l-.945-1.417a.08.08 0 0 1 .01-.105l.802-.802a.08.08 0 0 1 .105-.01l1.417.945c.467.31 1.031.322 1.493.13.457-.19.853-.596.964-1.148z"})]}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"settings-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),Ue=De;var We=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M2.417 7.5a5.083 5.083 0 0 1 10.112-.75H8.333c-.874 0-1.583.709-1.583 1.583v4.195A5.084 5.084 0 0 1 2.417 7.5m4.333 6.541a6.584 6.584 0 1 1 7.291-7.29H17.5c.875 0 1.583.708 1.583 1.582V17.5c0 .875-.709 1.583-1.583 1.583H8.333A1.583 1.583 0 0 1 6.75 17.5zm1.5-5.708c0-.046.037-.083.083-.083H17.5c.046 0 .083.037.083.083V17.5a.083.083 0 0 1-.083.083H8.333a.083.083 0 0 1-.083-.083z",clipRule:"evenodd"})]}),Xe=We;var Ke=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M15.417 6.5a2.75 2.75 0 1 0-2.667-2.077L6.5 8.028a2.75 2.75 0 1 0 0 3.943l6.25 3.606A2.752 2.752 0 0 0 15.417 19a2.75 2.75 0 1 0-1.917-4.722l-6.25-3.605a2.76 2.76 0 0 0 0-1.346l6.25-3.605a2.74 2.74 0 0 0 1.917.778M4.583 8.75c.306 0 .586.11.803.292l.428.742a1.3 1.3 0 0 1 0 .432l-.428.742a1.25 1.25 0 1 1-.803-2.208m12.084-5a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m0 12.5a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0",clipRule:"evenodd"})]}),Ne=Ke;var Qe=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M9.07 2.813c1.006-.966 2.68-.253 2.68 1.142v12.09c0 1.395-1.674 2.108-2.68 1.142l-4.598-4.414a.08.08 0 0 0-.057-.023H1.833A1.583 1.583 0 0 1 .25 11.167V8.433c0-.874.709-1.583 1.583-1.583h2.998a.08.08 0 0 0 .058-.023zm1.08 1.058c-.007.001-.02.004-.041.024L5.928 7.909a1.58 1.58 0 0 1-1.097.441H1.833a.083.083 0 0 0-.083.083v2.734c0 .046.037.083.083.083h2.582c.408 0 .801.158 1.096.441l4.598 4.414c.02.02.034.023.042.024q.018.003.048-.008a.1.1 0 0 0 .04-.03c.004-.006.011-.018.011-.046V3.955c0-.028-.007-.04-.011-.047a.1.1 0 0 0-.04-.03.1.1 0 0 0-.048-.007Z",clipRule:"evenodd"}),jsxRuntime.jsx("path",{d:"M13.005 6.005a.75.75 0 0 1 1.06 0 5.995 5.995 0 0 1 0 8.478.75.75 0 0 1-1.06-1.06 4.495 4.495 0 0 0 0-6.358.75.75 0 0 1 0-1.06"}),jsxRuntime.jsx("path",{d:"M16.834 4.47a.75.75 0 1 0-1.06 1.06 6.75 6.75 0 0 1 0 9.546.75.75 0 1 0 1.06 1.06 8.25 8.25 0 0 0 0-11.666"})]}),Ye=Qe;var je=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M10 .25A3.75 3.75 0 0 0 6.25 4v6a3.75 3.75 0 1 0 7.5 0V4A3.75 3.75 0 0 0 10 .25M7.75 4a2.25 2.25 0 0 1 4.5 0v6a2.25 2.25 0 0 1-4.5 0zm-3 3a.75.75 0 0 0-1.5 0v3a6.75 6.75 0 0 0 6 6.709v1.541H7a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-2.25v-1.541a6.75 6.75 0 0 0 6-6.709V7a.75.75 0 0 0-1.5 0v3a5.25 5.25 0 1 1-10.5 0z",clipRule:"evenodd"})]}),e7=je;var o7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 .5a.75.75 0 0 1 .693.462l2.249 5.406 5.836.468a.75.75 0 0 1 .428 1.318l-4.447 3.809 1.359 5.696a.75.75 0 0 1-1.12.814L10 15.42l-4.997 3.052a.75.75 0 0 1-1.12-.814l1.358-5.696-4.447-3.81a.75.75 0 0 1 .428-1.317l5.837-.468L9.308.962A.75.75 0 0 1 10 .5m0 2.703L8.268 7.367a.75.75 0 0 1-.632.46l-4.496.36 3.425 2.935a.75.75 0 0 1 .242.743L5.76 16.253l3.85-2.351a.75.75 0 0 1 .781 0l3.85 2.35-1.047-4.387a.75.75 0 0 1 .241-.743l3.426-2.934-4.496-.36a.75.75 0 0 1-.633-.46z",clipRule:"evenodd"})]}),t7=o7;var r7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M14.842 15.206c.6-.6.621-1.559.063-2.183l3.232-3.232c.95-.95.95-2.49 0-3.44L12.255.47a.75.75 0 0 0-1.25.32v.002l-.003.006-.008.03a15 15 0 0 1-.194.582c-.14.394-.351.947-.634 1.57-.48 1.06-1.15 2.287-2.004 3.303a1.59 1.59 0 0 0-2.158.084l-.932.932a1.59 1.59 0 0 0 0 2.25l1.767 1.768a.09.09 0 0 1-.015.14L2.893 13.96a3.156 3.156 0 1 0 4.357 4.358l2.502-3.93a.09.09 0 0 1 .14-.016l1.769 1.767a1.59 1.59 0 0 0 2.25 0l.931-.932ZM7.66 7.894l-.01-.01-.456-.456a.09.09 0 0 0-.129 0l-.932.932a.09.09 0 0 0 0 .129L7.9 10.256a1.59 1.59 0 0 1-.271 2.467l-3.931 2.502a1.656 1.656 0 1 0 2.287 2.287l2.501-3.931a1.59 1.59 0 0 1 2.468-.27l1.767 1.767a.09.09 0 0 0 .129 0l.932-.932a.09.09 0 0 0 0-.129l-.456-.455-.01-.01zM11.532 3.6c-.519 1.144-1.28 2.555-2.303 3.743l4.617 4.617 3.23-3.23a.93.93 0 0 0 0-1.318l-.402-.402-1.945 1.945a.75.75 0 1 1-1.06-1.06c.732-.733 1.025-1.48 1.14-2.03a3 3 0 0 0 .072-.648l-2.84-2.84c-.135.355-.304.771-.51 1.223ZM5.183 16.026a.75.75 0 1 0-1.06 1.06.75.75 0 0 0 1.06-1.06",clipRule:"evenodd"})]}),i7=r7;var p7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M1.75 3.75A.75.75 0 0 1 2.5 3h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75m2.5 4.167a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 0 1.5H5a.75.75 0 0 1-.75-.75m-2.5 4.166a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75m2.5 4.167A.75.75 0 0 1 5 15.5h10a.75.75 0 0 1 0 1.5H5a.75.75 0 0 1-.75-.75",clipRule:"evenodd"})]}),c7=p7;var n7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M1.75 3.75A.75.75 0 0 1 2.5 3h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75m0 4.167a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75m0 4.166a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75m0 4.167a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75",clipRule:"evenodd"})]}),d7=n7;var f7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{d:"M2.5 3a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5zm0 4.167a.75.75 0 1 0 0 1.5h10a.75.75 0 0 0 0-1.5zm-.75 4.916a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75M2.5 15.5a.75.75 0 0 0 0 1.5h10a.75.75 0 0 0 0-1.5z"})]}),h7=f7;var S7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M1.75 3.75A.75.75 0 0 1 2.5 3h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75m5 4.167a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 0 1.5h-10a.75.75 0 0 1-.75-.75m-5 4.166a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75m5 4.167a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 0 1.5h-10a.75.75 0 0 1-.75-.75",clipRule:"evenodd"})]}),V7=S7;var G7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M4.25 4A.75.75 0 0 1 5 3.25h10a.75.75 0 0 1 0 1.5h-4.25V15a.75.75 0 0 1-1.5 0V4.75H5A.75.75 0 0 1 4.25 4",clipRule:"evenodd"})]}),u7=G7;var R7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M4.167 3.417a.75.75 0 0 0-.75.75v4.166c0 .415.336.75.75.75h4.167a.75.75 0 0 0 .75-.75V4.167a.75.75 0 0 0-.75-.75zm.75 4.166V4.917h2.667v2.666zm-.75 3.334a.75.75 0 0 0-.75.75v4.166c0 .414.336.75.75.75h4.167a.75.75 0 0 0 .75-.75v-4.166a.75.75 0 0 0-.75-.75zm.75 4.166v-2.666h2.667v2.666zm6-3.416a.75.75 0 0 1 .75-.75h4.167a.75.75 0 0 1 .75.75v4.166a.75.75 0 0 1-.75.75h-4.167a.75.75 0 0 1-.75-.75zm1.5.75v2.666h2.667v-2.666zm-.75-9a.75.75 0 0 0-.75.75v4.166c0 .415.336.75.75.75h4.167a.75.75 0 0 0 .75-.75V4.167a.75.75 0 0 0-.75-.75zm.75 4.166V4.917h2.667v2.666z",clipRule:"evenodd"})]}),y7=R7;var x7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M11.75.98h2.74l-.02.01c2.22 0 3.32 1.29 3.4 2.49.02.24-.01.46-.07.67.15.11.3.25.42.41.48.62.59 1.49.29 2.22q-.06.165-.15.3c.08.07.15.15.22.24.47.62.58 1.48.28 2.2q-.15.345-.39.6c.3.42.43.95.35 1.52a2.123 2.123 0 0 1-2.14 1.85H13.7c-.13 0-.19.07-.22.11l-.003.005a.28.28 0 0 0-.017.245l1.43 3.48c.34 1.06-.24 2.21-1.28 2.56-.96.33-2.03-.1-2.48-1.01-1.37-2.73-2.67-4.32-3.71-5.59q-.227-.277-.44-.54H4c-.52 0-.959-.24-1.296-.559-.333-.316-.598-.738-.804-1.202-.414-.93-.65-2.164-.65-3.49 0-1.325.236-2.559.65-3.49.206-.463.472-.885.804-1.201.337-.32.777-.559 1.296-.559h3.5q.1.001.193.026C8.806 1.455 10.2.979 11.75.979Zm-5.5 2.77c-.787 1.115-1.24 2.503-1.24 4.04 0 1.477.339 2.515.897 3.46H4c-.034 0-.121-.013-.263-.147-.146-.139-.311-.374-.467-.723-.31-.697-.52-1.713-.52-2.88 0-1.168.21-2.184.52-2.88.156-.35.321-.586.467-.724.142-.134.23-.147.263-.147h2.25Zm6.68 14.75a.54.54 0 0 1-.47-.29c-1.44-2.88-2.8-4.54-3.89-5.87C7.23 10.71 6.5 9.81 6.5 7.79c0-2.57 1.84-5.31 5.24-5.31h2.74c1.34 0 1.87.66 1.9 1.1 0 .08 0 .21-.09.22-.41.06-.7.44-.64.85s.44.7.85.64q.36-.045.54.18c.15.19.19.5.09.73-.08.2-.24.3-.5.34-.38.05-.66.37-.66.74v.1c.05.41.42.71.84.65.25-.03.44.03.56.2.15.19.18.49.09.71-.08.19-.24.3-.5.33-.35.04-.62.33-.65.68s.19.68.53.78c.5.15.5.54.48.69-.04.26-.23.57-.65.57h-2.98c-.59 0-1.14.28-1.47.77s-.39 1.11-.16 1.66l1.41 3.42c.07.22-.09.53-.37.63a.6.6 0 0 1-.17.03",clipRule:"evenodd"})]}),I7=x7;var b7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#thumbs-up-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M11.75 19.02h2.74l-.02-.01c2.22 0 3.32-1.29 3.4-2.49.02-.24-.01-.46-.07-.67.15-.11.3-.25.42-.41.48-.62.59-1.49.29-2.22q-.06-.165-.15-.3c.08-.07.15-.15.22-.24.47-.62.58-1.48.28-2.2q-.15-.345-.39-.6c.3-.42.43-.95.35-1.52a2.123 2.123 0 0 0-2.14-1.85H13.7c-.13 0-.19-.07-.22-.11l-.003-.005c-.021-.042-.065-.13-.017-.245l1.43-3.48c.34-1.06-.24-2.21-1.28-2.56-.96-.33-2.03.1-2.48 1.01-1.37 2.73-2.67 4.32-3.71 5.59q-.227.277-.44.54H4c-.52 0-.959.239-1.296.559-.333.315-.598.737-.804 1.201-.414.93-.65 2.164-.65 3.49s.236 2.56.65 3.49c.206.464.472.886.804 1.202.337.32.777.558 1.296.558h3.5a.8.8 0 0 0 .193-.025c1.113.82 2.507 1.295 4.057 1.295m-5.5-2.77c-.787-1.116-1.24-2.503-1.24-4.04 0-1.478.339-2.516.897-3.46H4c-.034 0-.121.012-.263.147-.146.138-.311.374-.467.723-.31.696-.52 1.713-.52 2.88s.21 2.184.52 2.88c.156.35.321.585.467.723.142.135.23.147.263.147zM12.93 1.5a.54.54 0 0 0-.47.29c-1.44 2.88-2.8 4.54-3.89 5.87-1.34 1.63-2.07 2.53-2.07 4.55 0 2.57 1.84 5.31 5.24 5.31h2.74c1.34 0 1.87-.66 1.9-1.1 0-.08 0-.21-.09-.22a.754.754 0 0 1-.64-.85c.06-.41.44-.7.85-.64q.36.045.54-.18c.15-.19.19-.5.09-.73-.08-.2-.24-.3-.5-.34a.75.75 0 0 1-.66-.74v-.1a.74.74 0 0 1 .84-.65c.25.03.44-.03.56-.2.15-.19.18-.49.09-.71-.08-.19-.24-.3-.5-.33a.746.746 0 0 1-.65-.68c-.03-.35.19-.68.53-.78.5-.15.5-.54.48-.69-.04-.26-.23-.57-.65-.57h-2.98c-.59 0-1.14-.28-1.47-.77s-.39-1.11-.16-1.66l1.41-3.42c.07-.22-.09-.53-.37-.63a.6.6 0 0 0-.17-.03",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"thumbs-up-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),_7=b7;var H7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M8.25 3.5a1.75 1.75 0 1 1 3.5 0v.25h-3.5zm5 0a3.25 3.25 0 0 0-6.5 0v.25H2a.75.75 0 0 0 0 1.5h1.25v12.083a2.417 2.417 0 0 0 2.417 2.417h8.666a2.417 2.417 0 0 0 2.417-2.417V5.25H18a.75.75 0 0 0 0-1.5h-4.75zm-8.5 13.833V5.25h10.5v12.083c0 .507-.41.917-.917.917H5.667a.917.917 0 0 1-.917-.917m6-9.333a.75.75 0 0 0-1.5 0v7a.75.75 0 0 0 1.5 0zM7 7.25a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-1.5 0V8A.75.75 0 0 1 7 7.25m6.75.75a.75.75 0 0 0-1.5 0v7a.75.75 0 0 0 1.5 0z",clipRule:"evenodd"})]}),E7=H7;var B7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M6.75 4a.75.75 0 0 0-1.5 0v7a4.75 4.75 0 1 0 9.5 0V4a.75.75 0 0 0-1.5 0v7a3.25 3.25 0 0 1-6.5 0zM3 17.25a.75.75 0 0 0 0 1.5h14a.75.75 0 0 0 0-1.5z",clipRule:"evenodd"})]}),L7=B7;var F7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.75 13a.75.75 0 0 1-1.5 0V4.844L7.537 6.6a.75.75 0 1 1-1.074-1.048L10 1.926l3.537 3.627a.75.75 0 1 1-1.074 1.048L10.75 4.844zm-8 0a.75.75 0 0 0-1.5 0v3c0 .966.784 1.75 1.75 1.75h14A1.75 1.75 0 0 0 18.75 16v-3a.75.75 0 0 0-1.5 0v3a.25.25 0 0 1-.25.25H3a.25.25 0 0 1-.25-.25z",clipRule:"evenodd"})]}),q7=F7;var Z7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M19.527 14.966 11.999 2.419l-.932.559.932-.559c-.906-1.51-3.095-1.51-4.002 0L.47 14.966c-.933 1.555.187 3.534 2 3.534h15.057c1.814 0 2.934-1.979 2-3.534M9.998 6.25a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0V7a.75.75 0 0 1 .75-.75m0 9.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5",clipRule:"evenodd"})]}),D7=Z7;var W7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"m12.001 2.42 7.528 12.546c.933 1.555-.187 3.534-2.001 3.534H2.472C.658 18.5-.462 16.521.47 14.966L7.999 2.42c.907-1.51 3.096-1.51 4.002 0l-1.276.766zM1.757 15.737 9.286 3.19a.833.833 0 0 1 1.429 0l7.528 12.547A.833.833 0 0 1 17.528 17H2.472a.833.833 0 0 1-.715-1.262ZM10 6.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V7a.75.75 0 0 1 .75-.75m-1.25 8a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0",clipRule:"evenodd"})]}),X7=W7;var K7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#x-circle-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M18.5 10a8.5 8.5 0 1 1-17 0 8.5 8.5 0 0 1 17 0m1.5 0c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0s10 4.477 10 10M7.53 6.47a.75.75 0 1 0-1.06 1.06L8.94 10l-2.47 2.47a.75.75 0 0 0 1.06 1.06L10 11.06l2.47 2.47a.75.75 0 0 0 1.06-1.06L11.06 10l2.47-2.47a.75.75 0 1 0-1.06-1.06L10 8.94z",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"x-circle-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),N7=K7;var Q7=({title:l,titleId:o,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 20 20","aria-labelledby":o,...e,children:[l?jsxRuntime.jsx("title",{id:o,children:l}):null,jsxRuntime.jsx("g",{clipPath:"url(#x-icon_svg__a)",children:jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M16.894 3.106a.75.75 0 0 1 0 1.06L11.061 10l5.833 5.834a.75.75 0 0 1-1.06 1.06L10 11.061l-5.834 5.833a.75.75 0 1 1-1.06-1.06L8.939 10 3.106 4.166a.75.75 0 0 1 1.06-1.06L10 8.939l5.834-5.833a.75.75 0 0 1 1.06 0",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"x-icon_svg__a",children:jsxRuntime.jsx("path",{d:"M0 0h20v20H0z"})})})]}),Y7=Q7;
6
+
7
+ exports.AddPageIcon = H0;
8
+ exports.AnonymousIcon = B0;
9
+ exports.ArrowLeftIcon = F0;
10
+ exports.ArrowRightIcon = Z0;
11
+ exports.ArrowUpCircleFilledIcon = W0;
12
+ exports.AvatarFilledIcon = K0;
13
+ exports.BoldIcon = Q0;
14
+ exports.CalloutIcon = j0;
15
+ exports.CaretLeftIcon = o1;
16
+ exports.CaretRightIcon = r1;
17
+ exports.CheckCircleFilledIcon = p1;
18
+ exports.CheckFilledIcon = n1;
19
+ exports.CheckmarkCircleIcon = f1;
20
+ exports.CheckmarkIcon = S1;
21
+ exports.CollapseIcon = G1;
22
+ exports.CommentIcon = R1;
23
+ exports.CopyIcon = x1;
24
+ exports.CrossCircleFilledIcon = b1;
25
+ exports.CrossIcon = H1;
26
+ exports.CutIcon = B1;
27
+ exports.DistanceIcon = F1;
28
+ exports.DownloadIcon = Z1;
29
+ exports.DragHandleIcon = W1;
30
+ exports.DuplicateIcon = K1;
31
+ exports.EditIcon = O1;
32
+ exports.EllipseIcon = $1;
33
+ exports.EmojiSmileIcon = l5;
34
+ exports.ErrorAltCircleFilledIcon = a5;
35
+ exports.ErrorAltFilledIcon = s5;
36
+ exports.ErrorAlternativeCircleIcon = m5;
37
+ exports.ErrorCircleFilledIcon = v5;
38
+ exports.ErrorCircleIcon = g5;
39
+ exports.ExpandIcon = w5;
40
+ exports.FormDateIcon = P5;
41
+ exports.FormSignatureIcon = z5;
42
+ exports.FormTextFieldIcon = M5;
43
+ exports.HighlightIcon = C5;
44
+ exports.HomeIcon = A5;
45
+ exports.ImageIcon = k5;
46
+ exports.InfoCircleFilledIcon = T5;
47
+ exports.InfoCircleIcon = U5;
48
+ exports.InfoFilledIcon = J5;
49
+ exports.ItalicIcon = O5;
50
+ exports.LinkIcon = $5;
51
+ exports.ListIcon = le;
52
+ exports.LockIcon = ae;
53
+ exports.MagicIcon = se;
54
+ exports.MinusIcon = me;
55
+ exports.MonkeyIcon = ve;
56
+ exports.MoreIcon = ge;
57
+ exports.MoreVerticalIcon = we;
58
+ exports.MoveIcon = Pe;
59
+ exports.PasteIcon = ze;
60
+ exports.PipetteIcon = Me;
61
+ exports.PlusIcon = Ce;
62
+ exports.PrintIcon = Ae;
63
+ exports.RotateClockwiseIcon = ke;
64
+ exports.SearchIcon = Te;
65
+ exports.SettingsIcon = Ue;
66
+ exports.ShapeIcon = Xe;
67
+ exports.ShareIcon = Ne;
68
+ exports.SoundIcon = Ye;
69
+ exports.SoundRecordIcon = e7;
70
+ exports.StarIcon = t7;
71
+ exports.StyleIcon = i7;
72
+ exports.TextAlignCenterIcon = c7;
73
+ exports.TextAlignJustifyIcon = d7;
74
+ exports.TextAlignLeftIcon = h7;
75
+ exports.TextAlignRightIcon = V7;
76
+ exports.TextIcon = u7;
77
+ exports.ThumbnailsIcon = y7;
78
+ exports.ThumbsDownIcon = I7;
79
+ exports.ThumbsUpIcon = _7;
80
+ exports.TrashIcon = E7;
81
+ exports.UnderlineIcon = L7;
82
+ exports.UploadIcon = q7;
83
+ exports.WarningFilledIcon = D7;
84
+ exports.WarningIcon = X7;
85
+ exports.XCircleIcon = N7;
86
+ exports.XIcon = Y7;