odaptos_design_system 2.0.341 → 2.0.343
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/index.cjs +870 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +413 -339
- package/dist/index.d.ts +413 -339
- package/dist/index.js +865 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -312,12 +312,87 @@ var Title_modules_default = {
|
|
|
312
312
|
};
|
|
313
313
|
style_inject_es_default(css_248z$82);
|
|
314
314
|
|
|
315
|
+
//#endregion
|
|
316
|
+
//#region src/Atoms/Typography/renderInlineMarkdown.tsx
|
|
317
|
+
/**
|
|
318
|
+
* Minimal inline markdown renderer for typography components.
|
|
319
|
+
* Supports: **bold**, *italic*, `code`, line breaks, and simple lists.
|
|
320
|
+
*/
|
|
321
|
+
const renderInlineMarkdown = (rawText) => {
|
|
322
|
+
if (!rawText) return rawText;
|
|
323
|
+
const renderCode = (text) => {
|
|
324
|
+
return text.split(/`([^`]+)`/g).map((part, index) => {
|
|
325
|
+
if (!(index % 2 === 1)) return part;
|
|
326
|
+
return /* @__PURE__ */ react.default.createElement("code", { key: `code-${index}` }, part);
|
|
327
|
+
});
|
|
328
|
+
};
|
|
329
|
+
const renderStrongAndEm = (nodes) => {
|
|
330
|
+
const renderStrong = (text) => {
|
|
331
|
+
return text.split(/\*\*([^*]+)\*\*/g).map((part, index) => {
|
|
332
|
+
if (!(index % 2 === 1)) return part;
|
|
333
|
+
return /* @__PURE__ */ react.default.createElement("strong", { key: `strong-${index}` }, part);
|
|
334
|
+
});
|
|
335
|
+
};
|
|
336
|
+
const renderEm = (text) => {
|
|
337
|
+
return text.split(/\*([^*]+)\*/g).map((part, index) => {
|
|
338
|
+
if (!(index % 2 === 1)) return part;
|
|
339
|
+
return /* @__PURE__ */ react.default.createElement("em", { key: `em-${index}` }, part);
|
|
340
|
+
});
|
|
341
|
+
};
|
|
342
|
+
return nodes.flatMap((node) => {
|
|
343
|
+
if (typeof node !== "string") return [node];
|
|
344
|
+
return renderStrong(node).flatMap((strongNode) => {
|
|
345
|
+
if (typeof strongNode !== "string") return [strongNode];
|
|
346
|
+
return renderEm(strongNode);
|
|
347
|
+
});
|
|
348
|
+
});
|
|
349
|
+
};
|
|
350
|
+
const renderInline = (text) => {
|
|
351
|
+
const codeNodes = renderCode(text);
|
|
352
|
+
return renderStrongAndEm(codeNodes);
|
|
353
|
+
};
|
|
354
|
+
const lines = rawText.split("\n");
|
|
355
|
+
const blocks = [];
|
|
356
|
+
let i = 0;
|
|
357
|
+
while (i < lines.length) {
|
|
358
|
+
const line = lines[i] ?? "";
|
|
359
|
+
const unorderedMatch = line.match(/^\s*[-*]\s+(.*)$/);
|
|
360
|
+
const orderedMatch = line.match(/^\s*(\d+)\.\s+(.*)$/);
|
|
361
|
+
if (unorderedMatch) {
|
|
362
|
+
const items = [];
|
|
363
|
+
while (i < lines.length) {
|
|
364
|
+
const match = (lines[i] ?? "").match(/^\s*[-*]\s+(.*)$/);
|
|
365
|
+
if (!match) break;
|
|
366
|
+
items.push(match[1]);
|
|
367
|
+
i += 1;
|
|
368
|
+
}
|
|
369
|
+
blocks.push(/* @__PURE__ */ react.default.createElement("ul", { key: `ul-${blocks.length}` }, items.map((item, index) => /* @__PURE__ */ react.default.createElement("li", { key: `ul-li-${index}` }, renderInline(item)))));
|
|
370
|
+
continue;
|
|
371
|
+
}
|
|
372
|
+
if (orderedMatch) {
|
|
373
|
+
const items = [];
|
|
374
|
+
while (i < lines.length) {
|
|
375
|
+
const match = (lines[i] ?? "").match(/^\s*\d+\.\s+(.*)$/);
|
|
376
|
+
if (!match) break;
|
|
377
|
+
items.push(match[1]);
|
|
378
|
+
i += 1;
|
|
379
|
+
}
|
|
380
|
+
blocks.push(/* @__PURE__ */ react.default.createElement("ol", { key: `ol-${blocks.length}` }, items.map((item, index) => /* @__PURE__ */ react.default.createElement("li", { key: `ol-li-${index}` }, renderInline(item)))));
|
|
381
|
+
continue;
|
|
382
|
+
}
|
|
383
|
+
blocks.push(/* @__PURE__ */ react.default.createElement(react.default.Fragment, { key: `p-${blocks.length}` }, renderInline(line)));
|
|
384
|
+
if (i < lines.length - 1) blocks.push(/* @__PURE__ */ react.default.createElement("br", { key: `br-${blocks.length}` }));
|
|
385
|
+
i += 1;
|
|
386
|
+
}
|
|
387
|
+
return blocks;
|
|
388
|
+
};
|
|
389
|
+
|
|
315
390
|
//#endregion
|
|
316
391
|
//#region src/Atoms/Typography/Title.tsx
|
|
317
392
|
/** This text should only be used to display titles
|
|
318
393
|
* Figma link: https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-357&mode=dev
|
|
319
394
|
*/
|
|
320
|
-
const Title = ({ id, text, color = "#26292E", size = "base", weight = "semi-bold", italic = false, className, type = "h2", required,...props$1 }) => {
|
|
395
|
+
const Title = ({ id, text, color = "#26292E", size = "base", weight = "semi-bold", italic = false, className, type = "h2", required, isMarkdown = false,...props$1 }) => {
|
|
321
396
|
const getTextSize = () => {
|
|
322
397
|
if (size === "xs") return Title_modules_default.title_xs;
|
|
323
398
|
else if (size === "sm") return Title_modules_default.title_sm;
|
|
@@ -335,49 +410,50 @@ const Title = ({ id, text, color = "#26292E", size = "base", weight = "semi-bold
|
|
|
335
410
|
else if (weight === "regular") return Title_modules_default.title_regular;
|
|
336
411
|
else return Title_modules_default.title_regular;
|
|
337
412
|
};
|
|
413
|
+
const content = isMarkdown ? renderInlineMarkdown(text) : text;
|
|
338
414
|
switch (type) {
|
|
339
415
|
case "h1": return /* @__PURE__ */ react.default.createElement("h1", {
|
|
340
416
|
...props$1,
|
|
341
417
|
id,
|
|
342
418
|
style: { color },
|
|
343
419
|
className: (0, clsx.default)(Title_modules_default.title, italic && Title_modules_default.title_italic, getTextWeight(), className, getTextSize(), required && Title_modules_default.title_required)
|
|
344
|
-
},
|
|
420
|
+
}, content);
|
|
345
421
|
case "h2": return /* @__PURE__ */ react.default.createElement("h2", {
|
|
346
422
|
...props$1,
|
|
347
423
|
id,
|
|
348
424
|
style: { color },
|
|
349
425
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
350
|
-
},
|
|
426
|
+
}, content);
|
|
351
427
|
case "h3": return /* @__PURE__ */ react.default.createElement("h3", {
|
|
352
428
|
...props$1,
|
|
353
429
|
id,
|
|
354
430
|
style: { color },
|
|
355
431
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
356
|
-
},
|
|
432
|
+
}, content);
|
|
357
433
|
case "h4": return /* @__PURE__ */ react.default.createElement("h4", {
|
|
358
434
|
...props$1,
|
|
359
435
|
id,
|
|
360
436
|
style: { color },
|
|
361
437
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
362
|
-
},
|
|
438
|
+
}, content);
|
|
363
439
|
case "h5": return /* @__PURE__ */ react.default.createElement("h5", {
|
|
364
440
|
...props$1,
|
|
365
441
|
id,
|
|
366
442
|
style: { color },
|
|
367
443
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
368
|
-
},
|
|
444
|
+
}, content);
|
|
369
445
|
case "h6": return /* @__PURE__ */ react.default.createElement("h6", {
|
|
370
446
|
...props$1,
|
|
371
447
|
id,
|
|
372
448
|
style: { color },
|
|
373
449
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
374
|
-
},
|
|
450
|
+
}, content);
|
|
375
451
|
default: return /* @__PURE__ */ react.default.createElement("h2", {
|
|
376
452
|
...props$1,
|
|
377
453
|
id,
|
|
378
454
|
style: { color },
|
|
379
455
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
380
|
-
},
|
|
456
|
+
}, content);
|
|
381
457
|
}
|
|
382
458
|
};
|
|
383
459
|
|
|
@@ -409,7 +485,7 @@ style_inject_es_default(css_248z$81);
|
|
|
409
485
|
/** This text should be use to display basic text
|
|
410
486
|
* Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-751&mode=dev
|
|
411
487
|
*/
|
|
412
|
-
const Text = ({ text, color = "#26292E", size = "base", weight = "regular", italic = false, textDecoration, className, required, id,...props$1 }) => {
|
|
488
|
+
const Text = ({ text, color = "#26292E", size = "base", weight = "regular", italic = false, textDecoration, className, required, id, isMarkdown = false,...props$1 }) => {
|
|
413
489
|
const getTextSize = () => {
|
|
414
490
|
if (size === "xs") return Text_modules_default.text_xs;
|
|
415
491
|
else if (size === "sm") return Text_modules_default.text_sm;
|
|
@@ -432,12 +508,13 @@ const Text = ({ text, color = "#26292E", size = "base", weight = "regular", ital
|
|
|
432
508
|
else if (textDecoration === "line-through") return Text_modules_default.text_line_through;
|
|
433
509
|
else return "";
|
|
434
510
|
};
|
|
511
|
+
const content = isMarkdown ? renderInlineMarkdown(text) : text;
|
|
435
512
|
return /* @__PURE__ */ react.default.createElement("p", {
|
|
436
513
|
...props$1,
|
|
437
514
|
id,
|
|
438
515
|
style: { color },
|
|
439
516
|
className: (0, clsx.default)(Text_modules_default.text, italic && Text_modules_default.text_italic, getTextWeight(), getTextDecoration(), className, required && Text_modules_default.text_required, getTextSize())
|
|
440
|
-
},
|
|
517
|
+
}, content);
|
|
441
518
|
};
|
|
442
519
|
|
|
443
520
|
//#endregion
|
|
@@ -3563,6 +3640,621 @@ function IntegratedUsabilityScore({ ...rest }) {
|
|
|
3563
3640
|
})));
|
|
3564
3641
|
}
|
|
3565
3642
|
|
|
3643
|
+
//#endregion
|
|
3644
|
+
//#region src/DesignTokens/Icons/Illustrations/PdfReport.tsx
|
|
3645
|
+
function PdfReport({ stroke, strokeWidth, fill,...rest }) {
|
|
3646
|
+
return /* @__PURE__ */ react.default.createElement(__mui_material.SvgIcon, {
|
|
3647
|
+
strokeWidth: strokeWidth ?? .1,
|
|
3648
|
+
stroke: stroke ? stroke : "currentColor",
|
|
3649
|
+
...rest
|
|
3650
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
3651
|
+
width: "518",
|
|
3652
|
+
height: "338",
|
|
3653
|
+
viewBox: "0 0 518 338",
|
|
3654
|
+
fill: "none",
|
|
3655
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
3656
|
+
}, /* @__PURE__ */ react.default.createElement("path", {
|
|
3657
|
+
d: "M162.921 189.114C166.86 195.446 168.348 203.341 166.711 210.64C166.646 210.931 166.574 211.223 166.497 211.514",
|
|
3658
|
+
stroke: "#004799",
|
|
3659
|
+
strokeWidth: "3",
|
|
3660
|
+
strokeLinecap: "round",
|
|
3661
|
+
strokeLinejoin: "round"
|
|
3662
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3663
|
+
d: "M57.6729 322.4H471.189",
|
|
3664
|
+
stroke: "#004799",
|
|
3665
|
+
strokeWidth: "3",
|
|
3666
|
+
strokeLinecap: "round",
|
|
3667
|
+
strokeLinejoin: "round"
|
|
3668
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3669
|
+
d: "M253.804 54.719C253.651 51.7964 253.296 48.7766 251.801 46.264C250.35 43.8251 247.899 42.4558 245.077 42.3665C234.115 42.0188 218.049 42.1724 209.713 43.0242C206.909 43.3107 203.959 44.1968 202.14 46.3576C200.724 48.0378 200.246 50.3295 200.195 52.5294C200.143 54.7291 200.124 61.1855 200.31 62.9112C200.68 66.3394 202.544 68.6458 204.974 69.9088C204.789 74.6433 203.902 79.3501 202.335 83.8195C207.317 80.4747 211.569 76.0667 214.702 70.94C221.994 70.7906 230.173 70.8356 236.997 70.5841C243.478 70.3451 249.842 71.0725 252.534 64.4708C253.784 61.406 253.977 58.026 253.804 54.719Z",
|
|
3670
|
+
fill: "#D5DFE8",
|
|
3671
|
+
stroke: "#D5DFE8",
|
|
3672
|
+
strokeWidth: "3",
|
|
3673
|
+
strokeLinecap: "round",
|
|
3674
|
+
strokeLinejoin: "round"
|
|
3675
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3676
|
+
d: "M209.423 53.058L243.724 52.42",
|
|
3677
|
+
stroke: "#004799",
|
|
3678
|
+
strokeWidth: "3",
|
|
3679
|
+
strokeLinecap: "round",
|
|
3680
|
+
strokeLinejoin: "round"
|
|
3681
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3682
|
+
d: "M209.566 60.8429L235.27 60.3648",
|
|
3683
|
+
stroke: "#004799",
|
|
3684
|
+
strokeWidth: "3",
|
|
3685
|
+
strokeLinecap: "round",
|
|
3686
|
+
strokeLinejoin: "round"
|
|
3687
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3688
|
+
d: "M386.635 306.756H68.8411C68.0071 306.756 67.3303 307.432 67.3273 308.269C67.3168 311.27 67.2803 314.404 67.2803 316.805C67.2803 319.614 70.1311 322.4 75.8905 322.4",
|
|
3689
|
+
stroke: "#004799",
|
|
3690
|
+
strokeWidth: "3",
|
|
3691
|
+
strokeLinecap: "round",
|
|
3692
|
+
strokeLinejoin: "round"
|
|
3693
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3694
|
+
d: "M159.899 175.64L165.89 123.062C166.699 115.965 172.682 110.606 179.798 110.606H390.075C396.065 110.606 401.473 111.727 403.517 113.833C405.422 115.796 407.242 118.893 406.53 124.98L386.518 310.186C385.767 317.135 379.923 322.4 372.96 322.4H364.287",
|
|
3695
|
+
stroke: "#004799",
|
|
3696
|
+
strokeWidth: "3",
|
|
3697
|
+
strokeLinecap: "round",
|
|
3698
|
+
strokeLinejoin: "round"
|
|
3699
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3700
|
+
d: "M144.747 306.756L154.522 220.963",
|
|
3701
|
+
stroke: "#004799",
|
|
3702
|
+
strokeWidth: "3",
|
|
3703
|
+
strokeLinecap: "round",
|
|
3704
|
+
strokeLinejoin: "round"
|
|
3705
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3706
|
+
d: "M305.489 198.056C302.891 198.056 300.871 195.784 301.166 193.192L308.302 130.516C308.592 127.961 310.75 126.033 313.304 126.033H378.708C380.866 126.033 382.812 126.44 383.543 127.192C384.23 127.899 384.882 129.013 384.627 131.206L377.994 192.597C377.659 195.702 375.047 198.056 371.935 198.056H305.489Z",
|
|
3707
|
+
stroke: "#004799",
|
|
3708
|
+
strokeWidth: "3",
|
|
3709
|
+
strokeLinecap: "round",
|
|
3710
|
+
strokeLinejoin: "round"
|
|
3711
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3712
|
+
d: "M296.233 288.191C293.635 288.191 291.615 285.919 291.911 283.327L299.046 220.651C299.336 218.096 301.494 216.168 304.048 216.168H369.452C371.61 216.168 373.556 216.575 374.287 217.326C374.974 218.034 375.626 219.148 375.371 221.341L368.738 282.732C368.403 285.837 365.791 288.191 362.679 288.191H296.233Z",
|
|
3713
|
+
stroke: "#004799",
|
|
3714
|
+
strokeWidth: "3",
|
|
3715
|
+
strokeLinecap: "round",
|
|
3716
|
+
strokeLinejoin: "round"
|
|
3717
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3718
|
+
d: "M349.838 164.918C350.006 160.479 346.316 156.734 341.598 156.555C336.88 156.375 332.919 159.829 332.751 164.269C332.584 168.709 336.273 172.453 340.992 172.632C345.71 172.812 349.671 169.358 349.838 164.918Z",
|
|
3719
|
+
fill: "#FFDB29",
|
|
3720
|
+
stroke: "#FFDB29",
|
|
3721
|
+
strokeWidth: "3",
|
|
3722
|
+
strokeLinecap: "round",
|
|
3723
|
+
strokeLinejoin: "round"
|
|
3724
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3725
|
+
d: "M338.02 166.003C338.966 166.931 340.39 167.339 341.682 167.055C342.974 166.77 344.096 165.8 344.569 164.56",
|
|
3726
|
+
stroke: "#004799",
|
|
3727
|
+
strokeWidth: "3",
|
|
3728
|
+
strokeLinecap: "round",
|
|
3729
|
+
strokeLinejoin: "round"
|
|
3730
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3731
|
+
d: "M316.589 167.82C318.155 161.435 320.649 155.251 325.509 150.844C330.37 146.436 336.797 143.464 343.335 143.858C349.597 144.236 355.461 147.715 359.397 152.619C363.333 157.522 365.444 163.736 366.069 170.002",
|
|
3732
|
+
stroke: "url(#paint0_linear_18150_166853)",
|
|
3733
|
+
strokeWidth: "3",
|
|
3734
|
+
strokeLinecap: "round",
|
|
3735
|
+
strokeLinejoin: "round"
|
|
3736
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3737
|
+
d: "M314.133 166.299C314.952 166.457 315.77 166.616 316.589 166.775",
|
|
3738
|
+
stroke: "#004799",
|
|
3739
|
+
strokeWidth: "3",
|
|
3740
|
+
strokeLinecap: "round",
|
|
3741
|
+
strokeLinejoin: "round"
|
|
3742
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3743
|
+
d: "M328.603 146.055C329.031 146.542 329.46 147.029 329.889 147.516",
|
|
3744
|
+
stroke: "#004799",
|
|
3745
|
+
strokeWidth: "3",
|
|
3746
|
+
strokeLinecap: "round",
|
|
3747
|
+
strokeLinejoin: "round"
|
|
3748
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3749
|
+
d: "M356.746 149.264C357.243 148.764 357.741 148.265 358.238 147.766",
|
|
3750
|
+
stroke: "#004799",
|
|
3751
|
+
strokeWidth: "3",
|
|
3752
|
+
strokeLinecap: "round",
|
|
3753
|
+
strokeLinejoin: "round"
|
|
3754
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3755
|
+
d: "M366.068 168.682C366.897 168.599 367.726 168.516 368.555 168.433",
|
|
3756
|
+
stroke: "#004799",
|
|
3757
|
+
strokeWidth: "3",
|
|
3758
|
+
strokeLinecap: "round",
|
|
3759
|
+
strokeLinejoin: "round"
|
|
3760
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3761
|
+
d: "M340.337 255.341C343.06 249.794 346.834 243.136 350.133 237.914L350.699 255.341",
|
|
3762
|
+
stroke: "#004799",
|
|
3763
|
+
strokeWidth: "3",
|
|
3764
|
+
strokeLinecap: "round",
|
|
3765
|
+
strokeLinejoin: "round"
|
|
3766
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3767
|
+
d: "M343.491 249.382H350.514",
|
|
3768
|
+
stroke: "#004799",
|
|
3769
|
+
strokeWidth: "3",
|
|
3770
|
+
strokeLinecap: "round",
|
|
3771
|
+
strokeLinejoin: "round"
|
|
3772
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3773
|
+
d: "M357.42 235.533C357.328 237.078 357.236 238.624 357.145 240.169",
|
|
3774
|
+
stroke: "#004799",
|
|
3775
|
+
strokeWidth: "3",
|
|
3776
|
+
strokeLinecap: "round",
|
|
3777
|
+
strokeLinejoin: "round"
|
|
3778
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3779
|
+
d: "M355.143 237.922C356.6 237.917 358.058 237.911 359.516 237.906",
|
|
3780
|
+
stroke: "#004799",
|
|
3781
|
+
strokeWidth: "3",
|
|
3782
|
+
strokeLinecap: "round",
|
|
3783
|
+
strokeLinejoin: "round"
|
|
3784
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3785
|
+
d: "M304.411 269.223C304.887 269.223 358.37 269.223 358.37 269.223",
|
|
3786
|
+
stroke: "url(#paint1_linear_18150_166853)",
|
|
3787
|
+
strokeWidth: "3",
|
|
3788
|
+
strokeLinecap: "round",
|
|
3789
|
+
strokeLinejoin: "round"
|
|
3790
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3791
|
+
d: "M304.836 270.136C304.921 269.561 305.006 268.986 305.091 268.41",
|
|
3792
|
+
stroke: "#004799",
|
|
3793
|
+
strokeWidth: "3",
|
|
3794
|
+
strokeLinecap: "round",
|
|
3795
|
+
strokeLinejoin: "round"
|
|
3796
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3797
|
+
d: "M337.242 268.094C337.014 268.609 336.946 269.22 337.052 269.787",
|
|
3798
|
+
stroke: "#004799",
|
|
3799
|
+
strokeWidth: "3",
|
|
3800
|
+
strokeLinecap: "round",
|
|
3801
|
+
strokeLinejoin: "round"
|
|
3802
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3803
|
+
d: "M345.776 268.094C345.549 268.609 345.48 269.22 345.586 269.787",
|
|
3804
|
+
stroke: "#004799",
|
|
3805
|
+
strokeWidth: "3",
|
|
3806
|
+
strokeLinecap: "round",
|
|
3807
|
+
strokeLinejoin: "round"
|
|
3808
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3809
|
+
d: "M357.683 268.094C357.456 268.609 357.387 269.22 357.493 269.787",
|
|
3810
|
+
stroke: "#004799",
|
|
3811
|
+
strokeWidth: "3",
|
|
3812
|
+
strokeLinecap: "round",
|
|
3813
|
+
strokeLinejoin: "round"
|
|
3814
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3815
|
+
d: "M309.344 235.533H332.887",
|
|
3816
|
+
stroke: "#004799",
|
|
3817
|
+
strokeWidth: "3",
|
|
3818
|
+
strokeLinecap: "round",
|
|
3819
|
+
strokeLinejoin: "round"
|
|
3820
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3821
|
+
d: "M308.263 242.057H322.619",
|
|
3822
|
+
stroke: "#004799",
|
|
3823
|
+
strokeWidth: "3",
|
|
3824
|
+
strokeLinecap: "round",
|
|
3825
|
+
strokeLinejoin: "round"
|
|
3826
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3827
|
+
d: "M307.182 248.691H324.613",
|
|
3828
|
+
stroke: "#004799",
|
|
3829
|
+
strokeWidth: "3",
|
|
3830
|
+
strokeLinecap: "round",
|
|
3831
|
+
strokeLinejoin: "round"
|
|
3832
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3833
|
+
d: "M255.186 234.249L235.32 217.172L227.289 181.197C227.163 180.635 226.683 180.222 226.11 180.184C225.533 180.158 225.007 180.493 224.809 181.035L212.907 213.691C208.248 217.317 203.434 221.43 198.776 225.41C194.04 229.457 189.142 233.641 184.439 237.285C184.001 237.625 183.826 238.206 184.004 238.732C184.182 239.258 184.673 239.612 185.227 239.614L214.606 239.709C217.313 241.878 234.728 255.868 237.643 258.932C237.889 259.19 238.227 259.334 238.58 259.334C238.623 259.334 238.667 259.332 238.711 259.327C239.108 259.287 239.465 259.064 239.677 258.725C244.028 251.754 255.279 236.156 255.393 235.999C255.788 235.451 255.699 234.689 255.186 234.249Z",
|
|
3834
|
+
fill: "url(#paint2_linear_18150_166853)"
|
|
3835
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3836
|
+
d: "M223.076 224.648L223.612 223.786",
|
|
3837
|
+
stroke: "#004799",
|
|
3838
|
+
strokeWidth: "3",
|
|
3839
|
+
strokeLinecap: "round",
|
|
3840
|
+
strokeLinejoin: "round"
|
|
3841
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3842
|
+
d: "M267.218 226.546C269.694 199.581 251.381 175.841 226.315 173.522C201.249 171.204 178.922 191.184 176.447 218.149C173.972 245.115 192.285 268.855 217.351 271.173C242.416 273.492 264.743 253.512 267.218 226.546Z",
|
|
3843
|
+
stroke: "#004799",
|
|
3844
|
+
strokeWidth: "3",
|
|
3845
|
+
strokeLinecap: "round",
|
|
3846
|
+
strokeLinejoin: "round"
|
|
3847
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3848
|
+
d: "M188.027 189.927L187.746 189.363",
|
|
3849
|
+
stroke: "#004799",
|
|
3850
|
+
strokeWidth: "3",
|
|
3851
|
+
strokeLinecap: "round",
|
|
3852
|
+
strokeLinejoin: "round"
|
|
3853
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3854
|
+
d: "M224.761 165.123C226.259 165.201 227.757 165.279 229.255 165.357",
|
|
3855
|
+
stroke: "#004799",
|
|
3856
|
+
strokeWidth: "3",
|
|
3857
|
+
strokeLinecap: "round",
|
|
3858
|
+
strokeLinejoin: "round"
|
|
3859
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3860
|
+
d: "M269.772 193.696C271.176 193.665 272.579 193.635 273.982 193.605",
|
|
3861
|
+
stroke: "#004799",
|
|
3862
|
+
strokeWidth: "3",
|
|
3863
|
+
strokeLinecap: "round",
|
|
3864
|
+
strokeLinejoin: "round"
|
|
3865
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3866
|
+
d: "M261.346 200.083C261.907 199.707 262.469 199.331 263.03 198.956",
|
|
3867
|
+
stroke: "#004799",
|
|
3868
|
+
strokeWidth: "3",
|
|
3869
|
+
strokeLinecap: "round",
|
|
3870
|
+
strokeLinejoin: "round"
|
|
3871
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3872
|
+
d: "M226.209 173.916C226.209 173.634 226.209 173.352 226.209 173.071",
|
|
3873
|
+
stroke: "#004799",
|
|
3874
|
+
strokeWidth: "3",
|
|
3875
|
+
strokeLinecap: "round",
|
|
3876
|
+
strokeLinejoin: "round"
|
|
3877
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3878
|
+
d: "M176.459 183.395L182.082 183.578",
|
|
3879
|
+
stroke: "#004799",
|
|
3880
|
+
strokeWidth: "3",
|
|
3881
|
+
strokeLinecap: "round",
|
|
3882
|
+
strokeLinejoin: "round"
|
|
3883
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3884
|
+
d: "M271.877 242.368L278.336 242.575",
|
|
3885
|
+
stroke: "#004799",
|
|
3886
|
+
strokeWidth: "3",
|
|
3887
|
+
strokeLinecap: "round",
|
|
3888
|
+
strokeLinejoin: "round"
|
|
3889
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3890
|
+
d: "M264.152 238.17L265.556 238.733",
|
|
3891
|
+
stroke: "#004799",
|
|
3892
|
+
strokeWidth: "3",
|
|
3893
|
+
strokeLinecap: "round",
|
|
3894
|
+
strokeLinejoin: "round"
|
|
3895
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3896
|
+
d: "M242.396 265.469C242.676 265.844 242.957 266.22 243.238 266.596",
|
|
3897
|
+
stroke: "#004799",
|
|
3898
|
+
strokeWidth: "3",
|
|
3899
|
+
strokeLinecap: "round",
|
|
3900
|
+
strokeLinejoin: "round"
|
|
3901
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3902
|
+
d: "M244.783 273.045L250.397 273.119",
|
|
3903
|
+
stroke: "#004799",
|
|
3904
|
+
strokeWidth: "3",
|
|
3905
|
+
strokeLinecap: "round",
|
|
3906
|
+
strokeLinejoin: "round"
|
|
3907
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3908
|
+
d: "M187.787 272.519C190.407 272.707 193.028 272.894 195.648 273.082",
|
|
3909
|
+
stroke: "#004799",
|
|
3910
|
+
strokeWidth: "3",
|
|
3911
|
+
strokeLinecap: "round",
|
|
3912
|
+
strokeLinejoin: "round"
|
|
3913
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3914
|
+
d: "M197.551 264.914L197.843 264.356",
|
|
3915
|
+
stroke: "#004799",
|
|
3916
|
+
strokeWidth: "3",
|
|
3917
|
+
strokeLinecap: "round",
|
|
3918
|
+
strokeLinejoin: "round"
|
|
3919
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3920
|
+
d: "M178.607 240.333C179.05 240.111 179.492 239.889 179.934 239.667",
|
|
3921
|
+
stroke: "#004799",
|
|
3922
|
+
strokeWidth: "3",
|
|
3923
|
+
strokeLinecap: "round",
|
|
3924
|
+
strokeLinejoin: "round"
|
|
3925
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3926
|
+
d: "M164.847 244.85C167.499 244.854 170.152 244.858 172.804 244.862",
|
|
3927
|
+
stroke: "#004799",
|
|
3928
|
+
strokeWidth: "3",
|
|
3929
|
+
strokeLinecap: "round",
|
|
3930
|
+
strokeLinejoin: "round"
|
|
3931
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3932
|
+
d: "M321.122 185.331H356.872",
|
|
3933
|
+
stroke: "#004799",
|
|
3934
|
+
strokeWidth: "3",
|
|
3935
|
+
strokeLinecap: "round",
|
|
3936
|
+
strokeLinejoin: "round"
|
|
3937
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3938
|
+
d: "M65.9683 135.293C74.4176 129.037 85.3981 124.982 97.7224 123.566C108.883 122.288 120.675 123.148 131.831 126.062C143.414 129.088 152.673 135.41 157.904 143.864C162.512 151.312 165.594 159.677 166.637 169.065C167.834 179.839 165.749 189.663 160.887 198.743C156.337 207.238 149.762 213.554 142.905 216.985C134.683 221.099 124.981 222.747 116.117 223.359C111.981 223.645 107.984 223.713 104.279 223.653C102.775 227.221 101.068 230.752 98.7171 233.927C94.9774 238.979 90.1294 242.196 85.0668 242.987C84.6448 243.052 84.2239 243.099 83.8032 243.128C78.1103 243.521 72.6408 240.594 70.48 235.855C68.3824 231.256 68.6032 221.53 68.9353 215.998C68.0745 215.473 67.2407 214.92 66.4347 214.34C56.6491 207.29 51.6733 196.726 49.2226 189.106C42.7875 169.1 49.5171 147.474 65.9683 135.293Z",
|
|
3939
|
+
fill: "url(#paint3_linear_18150_166853)"
|
|
3940
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3941
|
+
d: "M110.402 223.632L106.806 306.734",
|
|
3942
|
+
stroke: "#004799",
|
|
3943
|
+
strokeWidth: "3",
|
|
3944
|
+
strokeLinecap: "round",
|
|
3945
|
+
strokeLinejoin: "round"
|
|
3946
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3947
|
+
d: "M138.539 217.323C137.928 245.835 133.321 270.207 128.53 299.246C128.357 300.293 128.505 301.372 128.956 302.332C129.582 303.666 130.495 305.592 131.084 306.756",
|
|
3948
|
+
stroke: "#004799",
|
|
3949
|
+
strokeWidth: "3",
|
|
3950
|
+
strokeLinecap: "round",
|
|
3951
|
+
strokeLinejoin: "round"
|
|
3952
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3953
|
+
d: "M82.4299 243.163C82.6132 261.821 83.0903 279.897 85.0452 298.356C85.1588 299.428 84.9432 300.506 84.4194 301.447C83.5618 302.988 82.2185 305.389 81.415 306.756",
|
|
3954
|
+
stroke: "#004799",
|
|
3955
|
+
strokeWidth: "3",
|
|
3956
|
+
strokeLinecap: "round",
|
|
3957
|
+
strokeLinejoin: "round"
|
|
3958
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3959
|
+
d: "M130.062 146.126C126.526 145.373 122.876 145.486 119.38 146.456",
|
|
3960
|
+
stroke: "#004799",
|
|
3961
|
+
strokeWidth: "3",
|
|
3962
|
+
strokeLinecap: "round",
|
|
3963
|
+
strokeLinejoin: "round"
|
|
3964
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3965
|
+
d: "M111.276 153.308V151.757",
|
|
3966
|
+
stroke: "#004799",
|
|
3967
|
+
strokeWidth: "3",
|
|
3968
|
+
strokeLinecap: "round",
|
|
3969
|
+
strokeLinejoin: "round"
|
|
3970
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3971
|
+
d: "M143.636 153.308V151.757",
|
|
3972
|
+
stroke: "#004799",
|
|
3973
|
+
strokeWidth: "3",
|
|
3974
|
+
strokeLinecap: "round",
|
|
3975
|
+
strokeLinejoin: "round"
|
|
3976
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3977
|
+
d: "M128.708 168.637C125.518 169.991 121.52 169.101 119.199 166.521",
|
|
3978
|
+
stroke: "#004799",
|
|
3979
|
+
strokeWidth: "3",
|
|
3980
|
+
strokeLinecap: "round",
|
|
3981
|
+
strokeLinejoin: "round"
|
|
3982
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3983
|
+
d: "M106.427 162.371L106.427 162.371C113.833 162.008 119.544 155.687 119.183 148.253L118.007 124.035C117.646 116.6 111.349 110.867 103.943 111.229L103.943 111.229C96.5374 111.592 90.8264 117.913 91.1875 125.347L92.3638 149.565C92.7249 157 99.0213 162.733 106.427 162.371Z",
|
|
3984
|
+
stroke: "#004799",
|
|
3985
|
+
strokeWidth: "3",
|
|
3986
|
+
strokeLinecap: "round",
|
|
3987
|
+
strokeLinejoin: "round"
|
|
3988
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3989
|
+
d: "M144.33 162.371L144.33 162.371C151.736 162.008 157.447 155.687 157.085 148.253L155.909 124.035C155.548 116.6 149.252 110.867 141.846 111.229L141.846 111.229C134.44 111.592 128.729 117.913 129.09 125.347L130.266 149.565C130.627 157 136.924 162.733 144.33 162.371Z",
|
|
3990
|
+
stroke: "#004799",
|
|
3991
|
+
strokeWidth: "3",
|
|
3992
|
+
strokeLinecap: "round",
|
|
3993
|
+
strokeLinejoin: "round"
|
|
3994
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
3995
|
+
d: "M111.743 197.032C110.927 194.193 108.47 191.139 105.754 190.002C103.037 188.864 99.12 189.023 96.2049 189.432C93.6196 189.794 90.518 190.948 88.4803 192.586C86.4427 194.224 85.0363 196.798 85.262 199.408C85.5466 202.701 88.426 205.388 91.6402 206.102C94.8544 206.816 98.2571 205.84 101.077 204.135C103.897 202.43 106.234 200.043 108.539 197.683C120.612 196.072 133.011 195.735 145.121 197.046",
|
|
3996
|
+
stroke: "#004799",
|
|
3997
|
+
strokeWidth: "3",
|
|
3998
|
+
strokeLinecap: "round",
|
|
3999
|
+
strokeLinejoin: "round"
|
|
4000
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4001
|
+
d: "M98.0114 205.068C97.8959 200.354 99.5968 195.619 102.682 192.064",
|
|
4002
|
+
stroke: "#004799",
|
|
4003
|
+
strokeWidth: "3",
|
|
4004
|
+
strokeLinecap: "round",
|
|
4005
|
+
strokeLinejoin: "round"
|
|
4006
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4007
|
+
d: "M90.3708 205.27C90.2552 200.556 91.9561 195.821 95.0417 192.266",
|
|
4008
|
+
stroke: "#004799",
|
|
4009
|
+
strokeWidth: "3",
|
|
4010
|
+
strokeLinecap: "round",
|
|
4011
|
+
strokeLinejoin: "round"
|
|
4012
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4013
|
+
d: "M81.6004 186.718C74.6334 193.832 71.8305 204.786 74.5197 214.389C75.4958 217.875 77.3408 221.38 80.5484 223.036C83.3556 224.485 86.7174 224.274 89.8185 223.682C96.1506 222.474 102.115 219.852 108.016 217.25C116.535 213.495 125.055 209.738 133.432 205.676C136.722 204.081 140.022 202.418 142.831 200.073C145.639 197.729 147.952 194.615 148.687 191.022",
|
|
4014
|
+
stroke: "#004799",
|
|
4015
|
+
strokeWidth: "3",
|
|
4016
|
+
strokeLinecap: "round",
|
|
4017
|
+
strokeLinejoin: "round"
|
|
4018
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4019
|
+
d: "M166.498 211.514C165.636 214.754 164.004 217.92 161.144 219.593C158.417 221.188 155.049 221.156 151.921 220.728C145.534 219.856 120.49 211.708 120.49 211.708",
|
|
4020
|
+
stroke: "#004799",
|
|
4021
|
+
strokeWidth: "3",
|
|
4022
|
+
strokeLinecap: "round",
|
|
4023
|
+
strokeLinejoin: "round"
|
|
4024
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4025
|
+
d: "M272.293 306.756C271.459 306.756 270.782 307.432 270.779 308.269C270.769 311.27 270.732 314.404 270.732 316.805C270.732 319.614 273.583 322.4 279.343 322.4",
|
|
4026
|
+
stroke: "#004799",
|
|
4027
|
+
strokeWidth: "3",
|
|
4028
|
+
strokeLinecap: "round",
|
|
4029
|
+
strokeLinejoin: "round"
|
|
4030
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4031
|
+
d: "M82.404 94.5482C90.2393 94.5482 96.5911 88.1719 96.5911 80.3063C96.5911 72.4407 90.2393 66.0643 82.404 66.0643C74.5686 66.0643 68.2168 72.4407 68.2168 80.3063C68.2168 88.1719 74.5686 94.5482 82.404 94.5482Z",
|
|
4032
|
+
fill: "#8AEB8A",
|
|
4033
|
+
stroke: "#8AEB8A",
|
|
4034
|
+
strokeWidth: "3",
|
|
4035
|
+
strokeLinecap: "round",
|
|
4036
|
+
strokeLinejoin: "round"
|
|
4037
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4038
|
+
d: "M77.218 76.8695L77.2178 75.821",
|
|
4039
|
+
stroke: "#004799",
|
|
4040
|
+
strokeWidth: "3",
|
|
4041
|
+
strokeLinecap: "round",
|
|
4042
|
+
strokeLinejoin: "round"
|
|
4043
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4044
|
+
d: "M83.0207 76.8695L83.0205 75.821",
|
|
4045
|
+
stroke: "#004799",
|
|
4046
|
+
strokeWidth: "3",
|
|
4047
|
+
strokeLinecap: "round",
|
|
4048
|
+
strokeLinejoin: "round"
|
|
4049
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4050
|
+
d: "M78.0479 84.9537C79.9827 86.2291 82.6461 86.2866 84.6338 85.0958C86.6215 83.9049 87.8355 81.5245 87.6358 79.2094",
|
|
4051
|
+
stroke: "#004799",
|
|
4052
|
+
strokeWidth: "3",
|
|
4053
|
+
strokeLinecap: "round",
|
|
4054
|
+
strokeLinejoin: "round"
|
|
4055
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4056
|
+
d: "M190.631 134.533L191.106 134.638L192.308 134.908C192.362 134.924 192.407 134.96 192.435 135.009C192.461 135.067 192.461 135.115 192.382 135.221C192.303 135.327 191.385 137.058 188.691 137.058C187.256 137.14 185.879 136.476 185.047 135.3C184.926 135.168 184.889 135.067 184.942 135.009C185.01 134.934 185.104 134.888 185.205 134.882L185.875 134.728L186.634 134.549C186.684 134.533 186.737 134.533 186.787 134.549C186.856 134.549 186.898 134.665 187.088 134.808C187.528 135.181 188.094 135.371 188.67 135.337C189.307 135.37 189.929 135.141 190.394 134.702C190.484 134.623 190.552 134.501 190.631 134.533ZM183.676 124.343C186.195 124.34 188.24 126.388 188.242 128.916C188.245 131.445 186.206 133.497 183.687 133.5C181.168 133.503 179.123 131.456 179.12 128.927C179.12 128.925 179.12 128.923 179.12 128.922C179.117 126.396 181.155 124.346 183.671 124.343C183.673 124.343 183.674 124.343 183.676 124.343ZM198.361 122.818V128.922C198.361 131.45 196.319 133.5 193.8 133.5C191.281 133.5 189.239 131.45 189.239 128.921C189.239 126.392 191.282 124.342 193.801 124.342C194.704 124.343 195.586 124.612 196.337 125.116V124.851C196.334 123.742 197.219 122.836 198.325 122.818H198.361ZM183.676 126.375C182.278 126.375 181.145 127.513 181.145 128.916C181.145 130.32 182.278 131.457 183.676 131.457C185.074 131.457 186.207 130.32 186.207 128.916C186.207 127.513 185.074 126.375 183.676 126.375ZM193.8 126.375C192.402 126.375 191.269 127.513 191.269 128.916C191.269 130.32 192.402 131.457 193.8 131.457C195.198 131.457 196.331 130.32 196.331 128.916C196.331 127.513 195.198 126.375 193.8 126.375Z",
|
|
4057
|
+
fill: "#004799"
|
|
4058
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4059
|
+
d: "M214.497 124.364C217.022 124.363 219.07 126.416 219.071 128.951C219.073 131.485 217.027 133.541 214.502 133.543C213.597 133.543 212.713 133.274 211.96 132.77V133.548C211.961 134.659 211.074 135.566 209.967 135.586H209.936V128.953C209.933 126.422 211.975 124.367 214.497 124.364ZM203.982 124.364C206.475 124.369 208.506 126.377 208.549 128.879V133.972C207.72 133.973 206.975 133.468 206.666 132.696C204.607 134.163 201.753 133.676 200.292 131.609C198.831 129.542 199.315 126.678 201.374 125.211C202.137 124.667 203.047 124.372 203.982 124.364ZM237.044 124.518C237.787 124.502 238.523 124.666 239.19 124.994C239.823 125.311 240.318 125.85 240.583 126.508L238.642 127.307C238.501 126.983 238.251 126.719 237.935 126.561C237.647 126.416 237.33 126.34 237.007 126.338C236.714 126.332 236.423 126.402 236.164 126.54C235.95 126.628 235.809 126.836 235.805 127.069C235.808 127.271 235.924 127.453 236.106 127.54C236.364 127.678 236.639 127.783 236.923 127.852L238.215 128.165C238.937 128.298 239.604 128.644 240.129 129.16C240.544 129.601 240.769 130.189 240.757 130.796C240.757 131.164 240.668 131.527 240.498 131.854C240.315 132.193 240.064 132.491 239.76 132.728C239.422 132.999 239.038 133.207 238.626 133.342C238.152 133.499 237.655 133.576 237.155 133.569C236.659 133.575 236.165 133.505 235.689 133.363C235.291 133.245 234.914 133.067 234.571 132.833C234.264 132.619 233.994 132.356 233.77 132.055C233.554 131.783 233.377 131.482 233.242 131.161L235.288 130.266V130.309C235.482 130.673 235.747 130.994 236.069 131.251C236.391 131.468 236.772 131.58 237.16 131.574C237.502 131.589 237.841 131.511 238.141 131.346C238.347 131.247 238.484 131.045 238.5 130.817C238.493 130.59 238.371 130.383 238.178 130.266C237.853 130.073 237.496 129.942 237.123 129.88L235.937 129.615C235.656 129.552 235.382 129.46 235.12 129.34C234.843 129.214 234.586 129.05 234.355 128.853C234.137 128.652 233.957 128.414 233.823 128.149C233.671 127.849 233.595 127.516 233.601 127.18C233.594 126.793 233.685 126.411 233.865 126.069C234.046 125.743 234.296 125.461 234.598 125.243C234.927 125.002 235.297 124.823 235.689 124.713C236.13 124.588 236.586 124.527 237.044 124.533V124.518ZM220.07 122.326H220.107C221.215 122.343 222.104 123.252 222.101 124.364H223.113V126.407H222.101V129.583C222.101 131.171 223.113 131.261 223.113 131.261V133.564H223.06C222.649 133.564 220.076 133.416 220.076 130.208L220.07 122.326ZM228.333 124.364C230.858 124.361 232.907 126.413 232.91 128.948C232.913 131.483 230.869 133.54 228.344 133.543C225.821 133.546 223.773 131.497 223.767 128.964C223.761 126.429 225.803 124.37 228.328 124.364C228.33 124.364 228.331 124.364 228.333 124.364ZM203.982 126.407C202.579 126.416 201.448 127.565 201.457 128.975C201.465 130.384 202.61 131.519 204.014 131.51C205.411 131.501 206.54 130.362 206.54 128.959C206.543 127.552 205.41 126.41 204.009 126.407C204 126.407 203.991 126.407 203.982 126.407ZM214.497 126.407C213.093 126.404 211.953 127.544 211.95 128.953C211.947 130.362 213.083 131.507 214.486 131.51C215.89 131.513 217.03 130.373 217.033 128.964C217.033 128.962 217.033 128.96 217.033 128.959C217.033 127.553 215.898 126.413 214.497 126.413V126.407ZM228.333 126.407C226.93 126.404 225.789 127.544 225.786 128.953C225.783 130.362 226.919 131.507 228.323 131.51C229.726 131.513 230.867 130.373 230.87 128.964C230.87 128.962 230.87 128.96 230.87 128.959C230.872 127.553 229.739 126.41 228.339 126.407C228.337 126.407 228.335 126.407 228.333 126.407Z",
|
|
4060
|
+
fill: "#004799"
|
|
4061
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4062
|
+
d: "M436.439 82.5301C438.64 80.1449 439.044 76.7603 439.052 73.3524C439.06 69.6121 438.456 65.8434 436.046 63.3355C432.368 59.5099 426.357 59.7323 421.452 59.7029C416.125 59.6711 410.807 59.8857 405.503 60.3826C401.984 60.7124 399.434 62.0078 397.775 63.8616C395.845 66.0186 395.329 68.4827 395.244 72.3213C395.18 75.2239 395.485 77.9554 396.668 80.8289C398.543 85.3804 402.881 86.5794 407.443 86.7015C409.548 86.7579 413.91 86.8137 418.272 86.767C421.507 92.7094 426.467 97.704 432.411 100.913C430.592 96.2697 429.369 91.2883 428.691 86.2775C428.904 86.2478 429.106 86.217 429.283 86.184C431.96 85.6856 434.589 84.5352 436.439 82.5301Z",
|
|
4063
|
+
fill: "#FFE299",
|
|
4064
|
+
stroke: "#FFE299",
|
|
4065
|
+
strokeWidth: "3",
|
|
4066
|
+
strokeLinecap: "round",
|
|
4067
|
+
strokeLinejoin: "round"
|
|
4068
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4069
|
+
d: "M408.722 73.3523H409.652",
|
|
4070
|
+
stroke: "#004799",
|
|
4071
|
+
strokeWidth: "3",
|
|
4072
|
+
strokeLinecap: "round",
|
|
4073
|
+
strokeLinejoin: "round"
|
|
4074
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4075
|
+
d: "M416.163 73.3523H417.093",
|
|
4076
|
+
stroke: "#004799",
|
|
4077
|
+
strokeWidth: "3",
|
|
4078
|
+
strokeLinecap: "round",
|
|
4079
|
+
strokeLinejoin: "round"
|
|
4080
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4081
|
+
d: "M423.605 73.3523H424.536",
|
|
4082
|
+
stroke: "#004799",
|
|
4083
|
+
strokeWidth: "3",
|
|
4084
|
+
strokeLinecap: "round",
|
|
4085
|
+
strokeLinejoin: "round"
|
|
4086
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4087
|
+
d: "M387.546 180.046C382.209 178.686 375.56 177.952 370.471 178.658C368.578 178.92 366.421 179.587 365.742 181.38C365.052 183.201 366.276 185.172 367.622 186.575C370.498 189.571 375.201 192.75 379.004 194.404C386.941 197.857 399.445 201.316 408.397 201.783L415.006 203.309L413.584 183.922L387.546 180.046Z",
|
|
4088
|
+
fill: "white",
|
|
4089
|
+
stroke: "#004799",
|
|
4090
|
+
strokeWidth: "3",
|
|
4091
|
+
strokeLinecap: "round",
|
|
4092
|
+
strokeLinejoin: "round"
|
|
4093
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4094
|
+
d: "M444.268 204.066C444.668 208.89 445.067 213.757 444.444 218.557C443.822 223.357 442.089 228.149 438.743 231.634C435.397 235.119 430.264 237.079 425.602 235.841C422.423 234.997 419.754 232.803 417.603 230.306C413.504 225.549 410.98 219.592 409.474 213.487C407.967 207.383 408.322 199.991 408.806 193.72L413.531 181.473L438.193 185.35L444.268 204.066Z",
|
|
4095
|
+
fill: "white",
|
|
4096
|
+
stroke: "#004799",
|
|
4097
|
+
strokeWidth: "3",
|
|
4098
|
+
strokeLinecap: "round",
|
|
4099
|
+
strokeLinejoin: "round"
|
|
4100
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4101
|
+
d: "M432.91 193.273C434.812 201.745 438.711 208.962 444.117 215.742C446.707 218.99 449.703 221.995 453.339 223.993C455.041 224.928 457.257 225.596 458.825 224.449C460.37 223.319 460.444 221.055 460.198 219.152C458.794 208.269 451.05 197.637 444.182 189.099",
|
|
4102
|
+
fill: "white"
|
|
4103
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4104
|
+
d: "M432.91 193.273C434.812 201.745 438.711 208.962 444.117 215.742C446.707 218.99 449.703 221.995 453.339 223.993C455.041 224.928 457.257 225.596 458.825 224.449C460.37 223.319 460.444 221.055 460.198 219.152C458.794 208.269 451.05 197.637 444.182 189.099",
|
|
4105
|
+
stroke: "#004799",
|
|
4106
|
+
strokeWidth: "3",
|
|
4107
|
+
strokeLinecap: "round",
|
|
4108
|
+
strokeLinejoin: "round"
|
|
4109
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4110
|
+
d: "M384.208 168.582C386.922 190.019 402.292 194.556 420.826 194.583C430.184 194.596 440.009 192.323 447.676 186.936C453.66 182.731 457.998 176.225 459.588 169.067C461.179 161.91 460.008 154.17 456.371 147.81C452.114 140.364 444.68 136.24 436.606 133.41C428.532 130.579 415.764 130.551 406.811 133.774C395.091 137.993 381.493 147.145 384.208 168.582Z",
|
|
4111
|
+
fill: "white",
|
|
4112
|
+
stroke: "#004799",
|
|
4113
|
+
strokeWidth: "3",
|
|
4114
|
+
strokeLinecap: "round",
|
|
4115
|
+
strokeLinejoin: "round"
|
|
4116
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4117
|
+
d: "M416.339 228.397C425.039 229.603 434.021 228.714 442.319 225.826",
|
|
4118
|
+
stroke: "#004799",
|
|
4119
|
+
strokeWidth: "3",
|
|
4120
|
+
strokeLinecap: "round",
|
|
4121
|
+
strokeLinejoin: "round"
|
|
4122
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4123
|
+
d: "M427.129 145.439L398.186 148.599C393.159 149.148 389.527 153.684 390.074 158.73L391.754 174.235C392.301 179.281 396.819 182.927 401.846 182.379L430.789 179.218C435.816 178.67 439.448 174.134 438.901 169.087L437.221 153.583C436.675 148.536 432.156 144.89 427.129 145.439Z",
|
|
4124
|
+
fill: "url(#paint4_linear_18150_166853)"
|
|
4125
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4126
|
+
d: "M404.356 169.049C407.867 169.049 410.714 166.192 410.714 162.666C410.714 159.141 407.867 156.283 404.356 156.283C400.844 156.283 397.997 159.141 397.997 162.666C397.997 166.192 400.844 169.049 404.356 169.049Z",
|
|
4127
|
+
stroke: "white",
|
|
4128
|
+
strokeWidth: "3",
|
|
4129
|
+
strokeLinecap: "round",
|
|
4130
|
+
strokeLinejoin: "round"
|
|
4131
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4132
|
+
d: "M423.503 166.959C427.015 166.959 429.861 164.101 429.861 160.576C429.861 157.05 427.015 154.193 423.503 154.193C419.991 154.193 417.145 157.05 417.145 160.576C417.145 164.101 419.991 166.959 423.503 166.959Z",
|
|
4133
|
+
stroke: "white",
|
|
4134
|
+
strokeWidth: "3",
|
|
4135
|
+
strokeLinecap: "round",
|
|
4136
|
+
strokeLinejoin: "round"
|
|
4137
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4138
|
+
d: "M410.657 171.894C411.172 173.136 412.342 174.082 413.661 174.323C414.98 174.563 416.406 174.091 417.324 173.111C418.242 172.13 418.622 170.672 418.301 169.365C415.913 170.246 413.127 171.28 410.657 171.894Z",
|
|
4139
|
+
stroke: "white",
|
|
4140
|
+
strokeWidth: "3",
|
|
4141
|
+
strokeLinecap: "round",
|
|
4142
|
+
strokeLinejoin: "round"
|
|
4143
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4144
|
+
d: "M429.25 241.9C431.786 242.1 434.373 241.599 436.653 240.466",
|
|
4145
|
+
stroke: "#004799",
|
|
4146
|
+
strokeWidth: "3",
|
|
4147
|
+
strokeLinecap: "round",
|
|
4148
|
+
strokeLinejoin: "round"
|
|
4149
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4150
|
+
d: "M433.302 247.574C434.23 247.618 435.919 247.139 435.919 247.139",
|
|
4151
|
+
stroke: "#004799",
|
|
4152
|
+
strokeWidth: "3",
|
|
4153
|
+
strokeLinecap: "round",
|
|
4154
|
+
strokeLinejoin: "round"
|
|
4155
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4156
|
+
d: "M297.484 119.835C305.319 119.835 311.671 113.458 311.671 105.593C311.671 97.727 305.319 91.3507 297.484 91.3507C289.649 91.3507 283.297 97.727 283.297 105.593C283.297 113.458 289.649 119.835 297.484 119.835Z",
|
|
4157
|
+
fill: "#F5836C",
|
|
4158
|
+
stroke: "#F5836C",
|
|
4159
|
+
strokeWidth: "3",
|
|
4160
|
+
strokeLinecap: "round",
|
|
4161
|
+
strokeLinejoin: "round"
|
|
4162
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4163
|
+
d: "M291.633 102.633L292.067 103.614",
|
|
4164
|
+
stroke: "#004799",
|
|
4165
|
+
strokeWidth: "3",
|
|
4166
|
+
strokeLinecap: "round",
|
|
4167
|
+
strokeLinejoin: "round"
|
|
4168
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4169
|
+
d: "M298.033 99.7369L298.468 100.718",
|
|
4170
|
+
stroke: "#004799",
|
|
4171
|
+
strokeWidth: "3",
|
|
4172
|
+
strokeLinecap: "round",
|
|
4173
|
+
strokeLinejoin: "round"
|
|
4174
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4175
|
+
d: "M293.546 110.767C294.484 109.022 296.051 107.627 297.889 106.903C299.728 106.178 301.822 106.129 303.692 106.766",
|
|
4176
|
+
stroke: "#004799",
|
|
4177
|
+
strokeWidth: "3",
|
|
4178
|
+
strokeLinecap: "round",
|
|
4179
|
+
strokeLinejoin: "round"
|
|
4180
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4181
|
+
d: "M422.544 290.918C423.428 288.092 423.493 282.404 423.465 278.497C423.437 274.591 422.123 272.537 421.111 271.594C418.796 269.437 415.611 268.953 412.553 268.683C406.712 268.167 384.203 268.311 378.829 268.24C376.133 268.204 373.401 268.172 370.787 268.836C368.173 269.5 365.81 271.537 364.493 273.899C363.333 275.98 362.803 282.333 362.618 288.342C362.529 291.252 363.628 294.383 366.014 296.037C368.007 297.419 370.595 297.482 373.017 297.496C382.854 297.55 392.69 297.604 402.527 297.659C404.107 297.668 405.892 297.766 407.733 297.806C411.757 302.362 416.901 306.032 422.556 308.157C420.565 304.388 419.127 300.327 418.285 296.145C420.211 295.115 421.74 293.485 422.544 290.918Z",
|
|
4182
|
+
fill: "#D5DFE8",
|
|
4183
|
+
stroke: "#D5DFE8",
|
|
4184
|
+
strokeWidth: "3",
|
|
4185
|
+
strokeLinecap: "round",
|
|
4186
|
+
strokeLinejoin: "round"
|
|
4187
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4188
|
+
d: "M372.307 279.227L409.348 279.681",
|
|
4189
|
+
stroke: "#004799",
|
|
4190
|
+
strokeWidth: "3",
|
|
4191
|
+
strokeLinecap: "round",
|
|
4192
|
+
strokeLinejoin: "round"
|
|
4193
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
4194
|
+
d: "M372.087 287.179L396.31 287.276",
|
|
4195
|
+
stroke: "#004799",
|
|
4196
|
+
strokeWidth: "3",
|
|
4197
|
+
strokeLinecap: "round",
|
|
4198
|
+
strokeLinejoin: "round"
|
|
4199
|
+
}), /* @__PURE__ */ react.default.createElement("defs", null, /* @__PURE__ */ react.default.createElement("linearGradient", {
|
|
4200
|
+
id: "paint0_linear_18150_166853",
|
|
4201
|
+
x1: "315.294",
|
|
4202
|
+
y1: "156.913",
|
|
4203
|
+
x2: "367.364",
|
|
4204
|
+
y2: "156.913",
|
|
4205
|
+
gradientUnits: "userSpaceOnUse"
|
|
4206
|
+
}, /* @__PURE__ */ react.default.createElement("stop", { stopColor: "#8AEB8A" }), /* @__PURE__ */ react.default.createElement("stop", {
|
|
4207
|
+
offset: "0.5",
|
|
4208
|
+
stopColor: "#FFDB29"
|
|
4209
|
+
}), /* @__PURE__ */ react.default.createElement("stop", {
|
|
4210
|
+
offset: "1",
|
|
4211
|
+
stopColor: "#F5836C"
|
|
4212
|
+
})), /* @__PURE__ */ react.default.createElement("linearGradient", {
|
|
4213
|
+
id: "paint1_linear_18150_166853",
|
|
4214
|
+
x1: "nan",
|
|
4215
|
+
y1: "nan",
|
|
4216
|
+
x2: "nan",
|
|
4217
|
+
y2: "nan",
|
|
4218
|
+
gradientUnits: "userSpaceOnUse"
|
|
4219
|
+
}, /* @__PURE__ */ react.default.createElement("stop", { stopColor: "#8AEB8A" }), /* @__PURE__ */ react.default.createElement("stop", {
|
|
4220
|
+
offset: "0.5",
|
|
4221
|
+
stopColor: "#FFDB29"
|
|
4222
|
+
}), /* @__PURE__ */ react.default.createElement("stop", {
|
|
4223
|
+
offset: "1",
|
|
4224
|
+
stopColor: "#F5836C"
|
|
4225
|
+
})), /* @__PURE__ */ react.default.createElement("linearGradient", {
|
|
4226
|
+
id: "paint2_linear_18150_166853",
|
|
4227
|
+
x1: "218.343",
|
|
4228
|
+
y1: "243.783",
|
|
4229
|
+
x2: "227.515",
|
|
4230
|
+
y2: "199.623",
|
|
4231
|
+
gradientUnits: "userSpaceOnUse"
|
|
4232
|
+
}, /* @__PURE__ */ react.default.createElement("stop", { stopColor: "#C552FF" }), /* @__PURE__ */ react.default.createElement("stop", {
|
|
4233
|
+
offset: "1",
|
|
4234
|
+
stopColor: "#F5836C"
|
|
4235
|
+
})), /* @__PURE__ */ react.default.createElement("linearGradient", {
|
|
4236
|
+
id: "paint3_linear_18150_166853",
|
|
4237
|
+
x1: "89.9805",
|
|
4238
|
+
y1: "129.983",
|
|
4239
|
+
x2: "123.551",
|
|
4240
|
+
y2: "216.227",
|
|
4241
|
+
gradientUnits: "userSpaceOnUse"
|
|
4242
|
+
}, /* @__PURE__ */ react.default.createElement("stop", { stopColor: "#8AEB8A" }), /* @__PURE__ */ react.default.createElement("stop", {
|
|
4243
|
+
offset: "1",
|
|
4244
|
+
stopColor: "#33A7FF"
|
|
4245
|
+
})), /* @__PURE__ */ react.default.createElement("linearGradient", {
|
|
4246
|
+
id: "paint4_linear_18150_166853",
|
|
4247
|
+
x1: "423.673",
|
|
4248
|
+
y1: "183.807",
|
|
4249
|
+
x2: "410.545",
|
|
4250
|
+
y2: "155.586",
|
|
4251
|
+
gradientUnits: "userSpaceOnUse"
|
|
4252
|
+
}, /* @__PURE__ */ react.default.createElement("stop", { stopColor: "#0077FF" }), /* @__PURE__ */ react.default.createElement("stop", {
|
|
4253
|
+
offset: "1",
|
|
4254
|
+
stopColor: "#33A7FF"
|
|
4255
|
+
})))));
|
|
4256
|
+
}
|
|
4257
|
+
|
|
3566
4258
|
//#endregion
|
|
3567
4259
|
//#region src/DesignTokens/Icons/Illustrations/InterviewTranscript.tsx
|
|
3568
4260
|
function InterviewTranscript({ ...rest }) {
|
|
@@ -10488,6 +11180,35 @@ function LanguageIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
10488
11180
|
})))));
|
|
10489
11181
|
}
|
|
10490
11182
|
|
|
11183
|
+
//#endregion
|
|
11184
|
+
//#region src/DesignTokens/Icons/Miscellaneous/ColorSample.tsx
|
|
11185
|
+
function ColorSample({ stroke, strokeWidth, fill = "#26292E", size = "base",...rest }) {
|
|
11186
|
+
return /* @__PURE__ */ react.default.createElement(__mui_material.SvgIcon, {
|
|
11187
|
+
strokeWidth: strokeWidth ?? .1,
|
|
11188
|
+
stroke: stroke ? stroke : "currentColor",
|
|
11189
|
+
sx: {
|
|
11190
|
+
height: getIconSize(size),
|
|
11191
|
+
width: getIconSize(size)
|
|
11192
|
+
},
|
|
11193
|
+
...rest
|
|
11194
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
11195
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11196
|
+
width: "20",
|
|
11197
|
+
height: "20",
|
|
11198
|
+
viewBox: "0 0 20 20",
|
|
11199
|
+
fill: "none"
|
|
11200
|
+
}, /* @__PURE__ */ react.default.createElement("g", { clipPath: "url(#clip0_18537_9750)" }, /* @__PURE__ */ react.default.createElement("path", {
|
|
11201
|
+
fillRule: "evenodd",
|
|
11202
|
+
clipRule: "evenodd",
|
|
11203
|
+
d: "M2.35175 0.00428385C1.85467 0.0528672 1.43783 0.260201 1.10308 0.625617C0.867583 0.8827 0.689833 1.26637 0.6415 1.62195C0.609083 1.85987 0.609083 18.14 0.6415 18.378C0.732417 19.0465 1.21008 19.6485 1.83175 19.8779C2.16575 20.001 2.06808 19.9959 4.21508 20.0043C5.48142 20.0093 6.278 20.0039 6.42025 19.9897C6.96092 19.9353 7.4645 19.6526 7.76075 19.2374C7.84083 19.1253 8.81883 18.2829 13.257 14.504C16.2264 11.9757 18.7124 9.85237 18.7814 9.78562C18.9334 9.63837 19.1021 9.39928 19.1888 9.20795C19.459 8.6122 19.3767 7.8507 18.986 7.33137C18.8119 7.10003 16.366 4.3992 16.258 4.31903C15.9413 4.0842 15.4874 4.21187 15.3237 4.5817C15.2589 4.7282 15.2643 4.93787 15.3367 5.0857C15.3772 5.16828 15.7572 5.60453 16.6829 6.63078C17.6034 7.6512 17.9897 8.09445 18.0318 8.17845C18.1476 8.4097 18.0935 8.70512 17.9018 8.8887C17.8518 8.93653 15.8658 10.6314 13.4884 12.655C11.111 14.6787 9.104 16.3884 9.02825 16.4543C8.89092 16.5739 8.89075 16.5739 8.92275 16.4991C8.94042 16.4579 10.2144 13.6308 11.7539 10.2166C13.2934 6.80253 14.5784 3.92628 14.6095 3.82495C14.6596 3.66145 14.6658 3.60428 14.6658 3.31578C14.6658 3.02387 14.6598 2.97095 14.6067 2.79578C14.4377 2.23862 14.0532 1.80703 13.5209 1.5767C12.7659 1.24995 9.971 0.112784 9.89267 0.100367C9.32483 0.0106172 8.95158 0.694201 9.33225 1.12662C9.38067 1.1817 9.45575 1.24462 9.499 1.26637C9.54217 1.28812 10.3744 1.6352 11.3483 2.03753C13.2642 2.82903 13.2421 2.81812 13.3532 3.03112C13.4018 3.12437 13.4114 3.1707 13.4119 3.31578L13.4126 3.48912L10.7801 9.32412L8.14758 15.1591L8.13608 8.39245C8.12558 2.20637 8.1215 1.61345 8.08892 1.48162C7.88733 0.667367 7.24825 0.0967839 6.44283 0.0119505C6.25983 -0.00729948 2.542 -0.0142995 2.35175 0.00428385ZM2.38083 1.26887C2.18067 1.3092 2.0235 1.43528 1.93575 1.62578L1.88592 1.73412L1.88 3.57037L1.87417 5.40662H4.37792H6.88167L6.8755 3.57037C6.86933 1.7557 6.86875 1.73295 6.82358 1.63553C6.75692 1.49137 6.65517 1.38637 6.51567 1.31787L6.39258 1.25745L4.43175 1.25403C3.35325 1.2522 2.43042 1.25887 2.38083 1.26887ZM1.87508 8.7432V10.8233H4.37767H6.88033L6.87475 8.7487L6.86925 6.67412L4.37217 6.66862L1.87508 6.66312V8.7432ZM1.88025 15.1728L1.88592 18.2658L1.93708 18.379C2.00017 18.5184 2.13525 18.6465 2.27717 18.7011C2.37975 18.7407 2.46917 18.7424 4.38842 18.7424H6.39258L6.51242 18.6836C6.6565 18.6129 6.72525 18.5433 6.80742 18.385L6.86925 18.2658V15.1783V12.0908L4.37192 12.0853L1.8745 12.0798L1.88025 15.1728ZM4.05142 15.6654C3.89508 15.7147 3.78442 15.7832 3.66008 15.9075C3.2015 16.3661 3.33817 17.1371 3.9275 17.4163C4.06625 17.4819 4.08792 17.4858 4.32342 17.4858C4.54933 17.4858 4.58433 17.4803 4.69842 17.4269C5.30117 17.1445 5.44525 16.3708 4.98142 15.9069C4.79217 15.7177 4.58208 15.6321 4.31458 15.6354C4.21817 15.6366 4.09975 15.65 4.05142 15.6654Z",
|
|
11204
|
+
fill
|
|
11205
|
+
})), /* @__PURE__ */ react.default.createElement("defs", null, /* @__PURE__ */ react.default.createElement("clipPath", { id: "clip0_18537_9750" }, /* @__PURE__ */ react.default.createElement("rect", {
|
|
11206
|
+
width: "20",
|
|
11207
|
+
height: "20",
|
|
11208
|
+
fill: "white"
|
|
11209
|
+
})))));
|
|
11210
|
+
}
|
|
11211
|
+
|
|
10491
11212
|
//#endregion
|
|
10492
11213
|
//#region src/DesignTokens/Icons/Miscellaneous/ArrowsIcon.tsx
|
|
10493
11214
|
function ArrowsIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
@@ -11440,6 +12161,133 @@ function ViewIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
11440
12161
|
})));
|
|
11441
12162
|
}
|
|
11442
12163
|
|
|
12164
|
+
//#endregion
|
|
12165
|
+
//#region src/DesignTokens/Icons/Miscellaneous/QuoteIcon.tsx
|
|
12166
|
+
function QuoteIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
12167
|
+
return /* @__PURE__ */ react.default.createElement(__mui_material.SvgIcon, {
|
|
12168
|
+
strokeWidth: strokeWidth ?? .1,
|
|
12169
|
+
stroke: stroke ? stroke : "currentColor",
|
|
12170
|
+
sx: {
|
|
12171
|
+
height: getIconSize(size),
|
|
12172
|
+
width: getIconSize(size)
|
|
12173
|
+
},
|
|
12174
|
+
fill,
|
|
12175
|
+
...rest
|
|
12176
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
12177
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12178
|
+
width: "16",
|
|
12179
|
+
height: "16",
|
|
12180
|
+
viewBox: "0 0 16 16",
|
|
12181
|
+
fill: "none"
|
|
12182
|
+
}, /* @__PURE__ */ react.default.createElement("g", { clipPath: "url(#clip0_18069_4470)" }, /* @__PURE__ */ react.default.createElement("path", {
|
|
12183
|
+
fillRule: "evenodd",
|
|
12184
|
+
clipRule: "evenodd",
|
|
12185
|
+
d: "M4.95243 0.166992C5.53173 0.167016 6.09212 0.385863 6.50907 0.782227C6.92678 1.1794 7.16661 1.72344 7.16663 2.29655V10.445C7.16657 11.8825 6.56528 13.2556 5.50452 14.264C4.44463 15.2715 3.01254 15.8336 1.52405 15.8337C1.17205 15.8337 0.829108 15.7009 0.572876 15.4574C0.315895 15.213 0.166626 14.8756 0.166626 14.5186V12.889C0.166687 12.5321 0.315991 12.1952 0.572876 11.9508C0.829108 11.7073 1.17205 11.5745 1.52405 11.5745C1.85388 11.5745 2.1653 11.4494 2.39124 11.2347C2.61632 11.0207 2.73818 10.7361 2.73824 10.445V9.62988C2.73822 9.55485 2.70685 9.47753 2.64254 9.41634C2.57728 9.3543 2.48348 9.31543 2.38082 9.31543C1.80153 9.31541 1.24113 9.09656 0.824178 8.7002C0.406368 8.303 0.166626 7.75842 0.166626 7.18522V2.29655C0.166646 1.72344 0.406475 1.1794 0.824178 0.782227C1.24113 0.385863 1.80153 0.167016 2.38082 0.166992H4.95243ZM2.38082 1.16699C2.05086 1.16702 1.73896 1.29201 1.51298 1.50684C1.28798 1.72082 1.16665 2.00547 1.16663 2.29655V7.18522C1.16663 7.47639 1.28787 7.76157 1.51298 7.97559C1.73896 8.19041 2.05086 8.31541 2.38082 8.31543C2.73282 8.31543 3.07511 8.44815 3.33134 8.69173C3.58836 8.9361 3.73822 9.27283 3.73824 9.62988V10.445C3.73818 11.018 3.49834 11.5622 3.08069 11.9593C2.66378 12.3556 2.10327 12.5745 1.52405 12.5745C1.42143 12.5745 1.32758 12.6135 1.26233 12.6755C1.19799 12.7366 1.16669 12.814 1.16663 12.889V14.5186C1.16663 14.5936 1.19793 14.6715 1.26233 14.7327C1.32758 14.7947 1.42146 14.8337 1.52405 14.8337C2.76321 14.8336 3.9468 14.3654 4.81571 13.5394C5.68379 12.7142 6.16657 11.6005 6.16663 10.445V2.29655C6.16661 2.00547 6.04527 1.72082 5.82027 1.50684C5.59429 1.29201 5.28239 1.16702 4.95243 1.16699H2.38082Z",
|
|
12186
|
+
fill
|
|
12187
|
+
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
12188
|
+
fillRule: "evenodd",
|
|
12189
|
+
clipRule: "evenodd",
|
|
12190
|
+
d: "M13.6191 0.166992C14.1984 0.167016 14.7588 0.385863 15.1757 0.782227C15.5934 1.1794 15.8333 1.72344 15.8333 2.29655V10.445C15.8332 11.8825 15.2319 13.2556 14.1712 14.264C13.1113 15.2715 11.6792 15.8336 10.1907 15.8337C9.83872 15.8337 9.49577 15.7009 9.23954 15.4574C8.98256 15.213 8.83329 14.8756 8.83329 14.5186V12.889C8.83335 12.5321 8.98266 12.1952 9.23954 11.9508C9.49577 11.7073 9.83872 11.5745 10.1907 11.5745C10.5205 11.5745 10.832 11.4494 11.0579 11.2347C11.283 11.0207 11.4048 10.7361 11.4049 10.445V9.62988C11.4049 9.55485 11.3735 9.47753 11.3092 9.41634C11.2439 9.3543 11.1501 9.31543 11.0475 9.31543C10.4682 9.31541 9.9078 9.09656 9.49085 8.7002C9.07304 8.303 8.83329 7.75842 8.83329 7.18522V2.29655C8.83331 1.72344 9.07314 1.1794 9.49085 0.782227C9.9078 0.385863 10.4682 0.167016 11.0475 0.166992H13.6191ZM11.0475 1.16699C10.7175 1.16702 10.4056 1.29201 10.1796 1.50684C9.95465 1.72082 9.83331 2.00547 9.83329 2.29655V7.18522C9.83329 7.47639 9.95454 7.76156 10.1796 7.97559C10.4056 8.19041 10.7175 8.31541 11.0475 8.31543C11.3995 8.31543 11.7418 8.44815 11.998 8.69173C12.255 8.93611 12.4049 9.27283 12.4049 9.62988V10.445C12.4048 11.018 12.165 11.5622 11.7474 11.9593C11.3304 12.3556 10.7699 12.5745 10.1907 12.5745C10.0881 12.5745 9.99425 12.6135 9.929 12.6755C9.86466 12.7366 9.83335 12.814 9.83329 12.889V14.5186C9.83329 14.5936 9.8646 14.6715 9.929 14.7327C9.99425 14.7947 10.0881 14.8337 10.1907 14.8337C11.4299 14.8336 12.6135 14.3654 13.4824 13.5394C14.3505 12.7142 14.8332 11.6005 14.8333 10.445V2.29655C14.8333 2.00547 14.7119 1.72082 14.4869 1.50684C14.261 1.29201 13.9491 1.16702 13.6191 1.16699H11.0475Z",
|
|
12191
|
+
fill
|
|
12192
|
+
})), /* @__PURE__ */ react.default.createElement("defs", null, /* @__PURE__ */ react.default.createElement("clipPath", { id: "clip0_18069_4470" }, /* @__PURE__ */ react.default.createElement("rect", {
|
|
12193
|
+
width: "16",
|
|
12194
|
+
height: "16",
|
|
12195
|
+
fill: "white"
|
|
12196
|
+
})))));
|
|
12197
|
+
}
|
|
12198
|
+
|
|
12199
|
+
//#endregion
|
|
12200
|
+
//#region src/DesignTokens/Icons/Miscellaneous/HistoryIcon.tsx
|
|
12201
|
+
function HistoryIcon({ stroke, strokeWidth, fill = "#00040A", size = "base",...rest }) {
|
|
12202
|
+
return /* @__PURE__ */ react.default.createElement(__mui_material.SvgIcon, {
|
|
12203
|
+
strokeWidth: strokeWidth ?? .1,
|
|
12204
|
+
stroke: stroke ? stroke : "#00040A",
|
|
12205
|
+
sx: {
|
|
12206
|
+
height: getIconSize(size),
|
|
12207
|
+
width: getIconSize(size)
|
|
12208
|
+
},
|
|
12209
|
+
fill,
|
|
12210
|
+
...rest
|
|
12211
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
12212
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12213
|
+
width: "24",
|
|
12214
|
+
height: "24",
|
|
12215
|
+
viewBox: "0 0 24 24",
|
|
12216
|
+
fill: "none"
|
|
12217
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
12218
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12219
|
+
width: "24",
|
|
12220
|
+
height: "21",
|
|
12221
|
+
viewBox: "0 0 24 21",
|
|
12222
|
+
fill: "none"
|
|
12223
|
+
}, /* @__PURE__ */ react.default.createElement("path", {
|
|
12224
|
+
fillRule: "evenodd",
|
|
12225
|
+
clipRule: "evenodd",
|
|
12226
|
+
d: "M12.7133 0.00942167C9.49234 0.270475 6.6165 1.93679 4.81455 4.58626C4.24224 5.42767 3.8523 6.21844 3.53108 7.18878C3.293 7.90828 3.11983 8.67983 3.06211 9.27911L3.04371 9.46969L2.10447 8.53449C1.22465 7.65854 1.15522 7.59558 1.00907 7.54102C0.512491 7.35604 0.000605359 7.71239 0.000205214 8.2434C-9.48941e-05 8.56752 -0.0515136 8.50646 1.70592 10.2681C2.63306 11.1975 3.33981 11.8858 3.39833 11.9162C3.64272 12.0433 3.96334 12.0181 4.18452 11.8544C4.25484 11.8025 5.00422 11.0651 5.84992 10.216C7.29995 8.76021 7.39078 8.66361 7.443 8.52157C7.55194 8.22559 7.48981 7.9315 7.27254 7.71409C7.05486 7.49628 6.76025 7.43432 6.46554 7.54423C6.32719 7.59578 6.24486 7.67005 5.45018 8.45981C4.85306 9.05309 4.58536 9.30303 4.58536 9.267C4.58536 9.17391 4.69 8.62788 4.76663 8.32088C5.10775 6.95485 5.75129 5.70815 6.66762 4.63831C6.95092 4.30749 7.56424 3.71501 7.90156 3.44635C9.20294 2.40975 10.6738 1.79515 12.4402 1.55002C12.8279 1.49616 14.2385 1.50457 14.6487 1.56313C16.0918 1.76913 17.3671 2.25079 18.5134 3.02274C19.344 3.58198 20.11 4.31159 20.7151 5.11978C22.3359 7.28437 22.8922 10.1325 22.2069 12.7582C21.7953 14.3353 21.0127 15.6992 19.8542 16.8585C18.8296 17.8836 17.6909 18.5871 16.3185 19.0428C15.5086 19.3117 14.8079 19.4401 13.8944 19.4868C13.2964 19.5173 13.2207 19.5315 13.0685 19.6419C12.8411 19.8067 12.7354 20.0399 12.7583 20.3263C12.7806 20.6036 12.9445 20.8296 13.2075 20.946C13.3248 20.998 13.3755 21.0032 13.7277 20.9988C16.9963 20.9587 20.1197 19.3076 22.0549 16.5969C23.4213 14.6828 24.1017 12.3605 23.9877 9.99951C23.9604 9.43376 23.9339 9.18942 23.8419 8.65921C23.4568 6.43625 22.302 4.3171 20.6462 2.79502C18.9752 1.25893 17.03 0.354857 14.755 0.0568677C14.4418 0.0158279 13.037 -0.0168037 12.7133 0.00942167ZM12.4217 3.81781C12.2506 3.9045 12.1616 3.99238 12.0684 4.16685L12.0111 4.27396L12.0041 7.84292L11.9973 11.412L12.0826 11.5767C12.1767 11.7586 12.3484 11.9105 12.5172 11.961C12.5875 11.9821 13.4038 11.9903 15.3953 11.9901L18.1753 11.9899L18.3053 11.9286C18.4645 11.8535 18.6107 11.7093 18.6864 11.5529C18.7633 11.394 18.7647 11.1156 18.6893 10.9455C18.6214 10.7923 18.4523 10.6221 18.2962 10.5499C18.1757 10.4942 18.1667 10.494 15.8414 10.4866L13.5076 10.4792L13.5006 7.38958C13.4936 4.30579 13.4935 4.29978 13.4386 4.18287C13.4084 4.1184 13.3381 4.02071 13.2825 3.96566C13.13 3.81441 13.0033 3.75956 12.7783 3.74694C12.6 3.73704 12.5695 3.74314 12.4217 3.81781Z",
|
|
12227
|
+
fill
|
|
12228
|
+
}))));
|
|
12229
|
+
}
|
|
12230
|
+
|
|
12231
|
+
//#endregion
|
|
12232
|
+
//#region src/DesignTokens/Icons/Miscellaneous/ExpandIcon.tsx
|
|
12233
|
+
function ExpandIcon({ stroke, strokeWidth, fill = "#26292E", size = "base",...rest }) {
|
|
12234
|
+
return /* @__PURE__ */ react.default.createElement(__mui_material.SvgIcon, {
|
|
12235
|
+
strokeWidth: strokeWidth ?? .1,
|
|
12236
|
+
stroke: stroke ? stroke : "currentColor",
|
|
12237
|
+
sx: {
|
|
12238
|
+
height: getIconSize(size),
|
|
12239
|
+
width: getIconSize(size)
|
|
12240
|
+
},
|
|
12241
|
+
fill,
|
|
12242
|
+
...rest
|
|
12243
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
12244
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12245
|
+
width: "24",
|
|
12246
|
+
height: "24",
|
|
12247
|
+
viewBox: "0 0 24 24",
|
|
12248
|
+
fill: "none"
|
|
12249
|
+
}, /* @__PURE__ */ react.default.createElement("g", { "clip-path": "url(#clip0_18344_13088)" }, /* @__PURE__ */ react.default.createElement("path", {
|
|
12250
|
+
"fill-rule": "evenodd",
|
|
12251
|
+
"clip-rule": "evenodd",
|
|
12252
|
+
d: "M16.3351 0.0161639C16.1081 0.0700639 15.9305 0.212264 15.8184 0.429764C15.7364 0.588864 15.7335 0.884964 15.8123 1.05406C15.885 1.21026 16.0355 1.35886 16.1969 1.43406L16.329 1.49556L18.8768 1.49576L21.4246 1.49606L17.5326 5.38956C13.2145 9.70926 13.5085 9.39056 13.5085 9.75106C13.5085 10.0556 13.6743 10.3136 13.95 10.4381C14.1205 10.5151 14.3898 10.5113 14.561 10.4295C14.6664 10.3791 15.4274 9.63046 18.578 6.47766C20.7158 4.33836 22.4737 2.58806 22.4845 2.58806C22.4952 2.58806 22.5041 3.73176 22.5043 5.12956L22.5045 7.67106L22.566 7.80316C22.6965 8.08346 22.939 8.23956 23.2459 8.24086C23.5574 8.24216 23.8104 8.07856 23.9442 7.78936L23.999 7.67106V4.13506C23.999 0.729064 23.9972 0.594364 23.9498 0.471564C23.8865 0.307364 23.7506 0.158064 23.5846 0.0705639L23.453 0.00106394L19.943 -0.00303606C17.9537 -0.00533606 16.3906 0.00296394 16.3351 0.0161639ZM9.61428 13.5135C9.53908 13.5246 9.42788 13.5643 9.36728 13.6016C9.30658 13.6389 7.51078 15.4144 5.37648 17.5472L1.49598 21.4249V18.8746V16.3244L1.41638 16.1652C1.33708 16.0065 1.23058 15.901 1.05398 15.8065C0.914277 15.7318 0.584277 15.7377 0.429977 15.8178C0.265777 15.903 0.131377 16.0409 0.0610766 16.1963L0.000976562 16.3291V19.8781V23.4271L0.0557766 23.5454C0.135777 23.7184 0.257877 23.8444 0.425277 23.9266L0.572977 23.9991H4.12198H7.67098L7.81868 23.9266C8.36208 23.6597 8.39878 22.9334 7.88558 22.604L7.75018 22.5171L5.16908 22.5101C3.74948 22.5063 2.58798 22.4946 2.58798 22.4841C2.58798 22.4736 4.33828 20.7159 6.47758 18.5781C9.63038 15.4275 10.379 14.6665 10.4294 14.5611C10.5112 14.3899 10.515 14.1206 10.438 13.9501C10.2945 13.6325 9.97028 13.4606 9.61428 13.5135Z",
|
|
12253
|
+
fill
|
|
12254
|
+
})), /* @__PURE__ */ react.default.createElement("defs", null, /* @__PURE__ */ react.default.createElement("clipPath", { id: "clip0_18344_13088" }, /* @__PURE__ */ react.default.createElement("rect", {
|
|
12255
|
+
width: "24",
|
|
12256
|
+
height: "24",
|
|
12257
|
+
fill: "white"
|
|
12258
|
+
})))));
|
|
12259
|
+
}
|
|
12260
|
+
|
|
12261
|
+
//#endregion
|
|
12262
|
+
//#region src/DesignTokens/Icons/Miscellaneous/PaintingPaletteIcon.tsx
|
|
12263
|
+
function PaintingPaletteIcon({ stroke, strokeWidth, fill = "#26292E", size = "base",...rest }) {
|
|
12264
|
+
return /* @__PURE__ */ react.default.createElement(__mui_material.SvgIcon, {
|
|
12265
|
+
strokeWidth: strokeWidth ?? .1,
|
|
12266
|
+
stroke: stroke ? stroke : "currentColor",
|
|
12267
|
+
sx: {
|
|
12268
|
+
height: getIconSize(size),
|
|
12269
|
+
width: getIconSize(size)
|
|
12270
|
+
},
|
|
12271
|
+
fill,
|
|
12272
|
+
...rest
|
|
12273
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
12274
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12275
|
+
width: "20",
|
|
12276
|
+
height: "20",
|
|
12277
|
+
viewBox: "0 0 20 20",
|
|
12278
|
+
fill: "none"
|
|
12279
|
+
}, /* @__PURE__ */ react.default.createElement("g", { clipPath: "url(#clip0_18344_15038)" }, /* @__PURE__ */ react.default.createElement("path", {
|
|
12280
|
+
fillRule: "evenodd",
|
|
12281
|
+
clipRule: "evenodd",
|
|
12282
|
+
d: "M9.7724 0.0126009C7.39907 0.190601 5.16915 1.18968 3.49207 2.8266C1.22707 5.03735 0.20132 8.1921 0.714903 11.368C0.953903 12.846 1.60032 14.3523 2.5219 15.5791C3.5149 16.9009 4.8264 17.9562 6.45149 18.7409C8.18832 19.5797 9.9104 19.9927 11.6682 19.992C12.8298 19.9916 13.7752 19.8277 14.7043 19.4656C15.2872 19.2384 15.9746 18.8433 16.4566 18.4584C16.6933 18.2693 17.186 17.7768 17.3751 17.5399C17.7716 17.0434 18.1696 16.349 18.4172 15.7216C18.5934 15.2752 18.6351 15.0977 18.6068 14.9144C18.5475 14.5304 18.2655 14.2707 17.82 14.1895C17.6232 14.1537 17.162 14.1595 16.5836 14.2051C15.8596 14.2622 15.1472 14.2257 14.8068 14.1139C14.2585 13.9338 13.9827 13.5565 13.9775 12.9791C13.9752 12.7294 14.0221 12.6295 14.2466 12.4048C14.5286 12.1224 14.8123 11.9462 15.8932 11.3814C16.6755 10.9729 16.9574 10.8168 17.3046 10.6004C18.4744 9.87093 19.1207 9.06735 19.3142 8.10168C19.5682 6.8336 19.0199 5.37068 17.6178 3.57577C16.8918 2.64643 16.2123 1.99002 15.4382 1.4701C14.2844 0.695268 12.9076 0.199768 11.4732 0.0431009C11.1003 0.00235093 10.139 -0.0148157 9.7724 0.0126009ZM9.8049 1.26918C6.90315 1.51902 4.35565 3.11027 2.9574 5.54627C1.93907 7.32035 1.5989 9.42702 2.0064 11.4346C2.40599 13.4026 3.47974 15.1404 5.0924 16.4291C6.44115 17.5068 8.39407 18.35 10.1731 18.6227C11.6567 18.85 13.0365 18.7486 14.1564 18.3298C15.2364 17.9259 16.0732 17.2679 16.6942 16.334C16.8586 16.0868 17.1716 15.5051 17.1716 15.4469C17.1716 15.4349 17.0743 15.4333 16.9278 15.4429C15.9659 15.5065 15.346 15.4991 14.8744 15.4184C13.6615 15.2108 12.9212 14.485 12.74 13.3258C12.5863 12.3426 13.0021 11.6279 14.145 10.9102C14.3876 10.7579 14.7881 10.538 15.5357 10.1469C16.6615 9.55777 17.1113 9.26385 17.5182 8.85135C17.8115 8.5541 17.9713 8.28968 18.0627 7.95052C18.1297 7.70202 18.1291 7.27485 18.0613 6.97743C17.884 6.19943 17.4309 5.37335 16.5996 4.31243C15.6736 3.1306 14.7818 2.40927 13.616 1.8991C12.9291 1.59843 12.2629 1.41393 11.4913 1.31077C11.1091 1.2596 10.1816 1.23668 9.8049 1.26918ZM11.9282 3.04685C11.2778 3.12393 10.694 3.55843 10.4264 4.16443C10.1251 4.84677 10.2609 5.65902 10.767 6.20202C10.9491 6.39735 11.129 6.52852 11.3683 6.64027C11.6609 6.77693 11.7846 6.80243 12.1557 6.80243C12.4021 6.80243 12.5148 6.79302 12.6216 6.76343C12.9594 6.66993 13.2534 6.50127 13.4829 6.26935C13.6647 6.08568 13.7574 5.9536 13.8676 5.72077C14.0037 5.43318 14.0409 5.25793 14.04 4.90827C14.0392 4.58702 14.002 4.40852 13.8799 4.13927C13.5436 3.39752 12.7442 2.9501 11.9282 3.04685ZM12.0032 4.30952C11.5127 4.43152 11.3592 5.05535 11.7363 5.39443C11.9967 5.6286 12.3738 5.61235 12.6157 5.35668C13.0505 4.89693 12.6175 4.15668 12.0032 4.30952ZM6.53457 4.39018C5.6384 4.5061 4.95257 5.24835 4.89457 6.16493C4.82424 7.2761 5.7659 8.2156 6.88599 8.15185C7.1549 8.13652 7.33257 8.09285 7.56615 7.98468C7.78765 7.8821 7.91474 7.79577 8.09032 7.62868C8.98557 6.7766 8.82665 5.30352 7.76924 4.65277C7.56099 4.5246 7.26282 4.42118 7.01049 4.3896C6.80549 4.36393 6.73657 4.36402 6.53457 4.39018ZM6.6154 5.65243C6.2309 5.76043 6.03707 6.19577 6.21615 6.54918C6.40624 6.92427 6.89007 7.01802 7.19965 6.73977C7.4664 6.49985 7.49149 6.11735 7.25832 5.84493C7.11257 5.67468 6.83365 5.59118 6.6154 5.65243ZM5.60082 9.24035C4.84715 9.39935 4.25899 10.0093 4.12674 10.7687C4.11124 10.8576 4.10532 11.0245 4.1119 11.1893C4.12099 11.4172 4.1339 11.4965 4.18999 11.6683C4.39282 12.2894 4.88774 12.7559 5.52574 12.9275C5.77165 12.9937 6.21149 12.9937 6.4574 12.9275C7.0954 12.7559 7.59032 12.2894 7.79315 11.6683C7.90815 11.3161 7.90515 10.8389 7.78565 10.4894C7.64907 10.0898 7.38499 9.7471 7.03424 9.5141C6.61865 9.2381 6.08999 9.1371 5.60082 9.24035ZM5.7604 10.5003C5.34057 10.6617 5.22574 11.2254 5.54782 11.5434C5.67799 11.6719 5.80132 11.7214 5.99157 11.7214C6.11582 11.7214 6.17757 11.7099 6.25374 11.6728C6.66165 11.474 6.74865 10.9449 6.42507 10.6309C6.25432 10.4653 5.98774 10.4129 5.7604 10.5003ZM8.8299 13.2433C8.1429 13.3588 7.5584 13.8546 7.3334 14.5126C7.1709 14.9882 7.2054 15.4902 7.43232 15.9513C7.75015 16.5969 8.3944 17.0004 9.10949 17.0018C9.23607 17.0019 9.37857 16.9954 9.42607 16.9873C9.82732 16.9182 10.2686 16.6805 10.5209 16.3975C11.2022 15.6335 11.1761 14.4967 10.4608 13.7815C10.0941 13.4147 9.62582 13.2244 9.10707 13.2312C8.9844 13.2329 8.85974 13.2383 8.8299 13.2433ZM8.93807 14.5039C8.76857 14.5594 8.62207 14.6934 8.54432 14.8641C8.47857 15.0084 8.47749 15.2338 8.54182 15.3733C8.66915 15.6493 8.95915 15.795 9.2584 15.7334C9.74124 15.6339 9.9274 15.0307 9.5829 14.682C9.44765 14.5453 9.34682 14.5006 9.1549 14.4928C9.06557 14.4891 8.96799 14.4941 8.93807 14.5039Z",
|
|
12283
|
+
fill
|
|
12284
|
+
})), /* @__PURE__ */ react.default.createElement("defs", null, /* @__PURE__ */ react.default.createElement("clipPath", { id: "clip0_18344_15038" }, /* @__PURE__ */ react.default.createElement("rect", {
|
|
12285
|
+
width: "20",
|
|
12286
|
+
height: "20",
|
|
12287
|
+
fill: "white"
|
|
12288
|
+
})))));
|
|
12289
|
+
}
|
|
12290
|
+
|
|
11443
12291
|
//#endregion
|
|
11444
12292
|
//#region src/DesignTokens/Icons/Miscellaneous/ViewOffIcon.tsx
|
|
11445
12293
|
function ViewOffIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
@@ -16283,7 +17131,7 @@ const Switch = ({ id, label, labelWeight = "bold", rightLabel, checked, disabled
|
|
|
16283
17131
|
|
|
16284
17132
|
//#endregion
|
|
16285
17133
|
//#region src/Atoms/Tag/Tag.modules.scss
|
|
16286
|
-
var css_248z$66 = ".Tag-modules_tag__sYiD6{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;padding:0 .375rem;width:-moz-fit-content;width:fit-content}.Tag-modules_tag__sYiD6 p{padding:0!important;white-space:nowrap}.Tag-modules_tag_ellipsis__-WHk-{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;padding:0 .375rem;width:-moz-fit-content;width:fit-content}.Tag-modules_tag_ellipsis__-WHk- p{max-width:95%;overflow:hidden;padding:0!important;text-overflow:ellipsis;white-space:nowrap!important;width:100%}.Tag-modules_tag_idle__ym-G7{background:var(--color-neutral-dark-shades-600,#717376)}.Tag-modules_tag_idle__ym-G7 svg{fill:#fff!important;stroke:#fff!important}.Tag-modules_tag_info__Q6-WL{background:var(--color-primary-100,#e5f1ff)}.Tag-modules_tag_info__Q6-WL svg{fill:#004799!important;stroke:#004799!important}.Tag-modules_tag_violet__CgNel{background:var(--Color-Extended-Purple-100,#e9d3fd)}.Tag-modules_tag_violet__CgNel svg{fill:#5c1994!important;stroke:#5c1994!important}.Tag-modules_tag_light__RqIr6{background:var(--Color-Neutral-Clear-Shades-150,#eee)}.Tag-modules_tag_light__RqIr6 svg{fill:#32353a!important;stroke:#32353a!important}.Tag-modules_tag_success__yANfh{background:var(--color-extended-green-100,#e8f5ea)}.Tag-modules_tag_success__yANfh svg{fill:#3c743d!important;stroke:#3c743d!important}.Tag-modules_tag_warning__C-O5t{background:var(--color-extended-yellow-100,#fff3d6)}.Tag-modules_tag_warning__C-O5t svg{fill:#6e4f00!important;stroke:#6e4f00!important}.Tag-modules_tag_critical__v79so{background:var(--color-extended-red-100,#fddbdb)}.Tag-modules_tag_critical__v79so svg{fill:#98312e!important;stroke:#98312e!important}.Tag-modules_tag_sm__KQwsr{height:1.25rem}.Tag-modules_tag_sm__KQwsr svg{height:.75rem;width:.75rem}.Tag-modules_tag_base__omYEM{height:1.75rem}.Tag-modules_tag_base__omYEM svg{height:1rem;width:1rem}.Tag-modules_canBeRemoved__ei-3U svg{cursor:pointer}";
|
|
17134
|
+
var css_248z$66 = ".Tag-modules_tag__sYiD6{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;padding:0 .375rem;width:-moz-fit-content;width:fit-content}.Tag-modules_tag__sYiD6 p{padding:0!important;white-space:nowrap}.Tag-modules_tag_ellipsis__-WHk-{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;padding:0 .375rem;width:-moz-fit-content;width:fit-content}.Tag-modules_tag_ellipsis__-WHk- p{max-width:95%;overflow:hidden;padding:0!important;text-overflow:ellipsis;white-space:nowrap!important;width:100%}.Tag-modules_tag_idle__ym-G7{background:var(--color-neutral-dark-shades-600,#717376)}.Tag-modules_tag_idle__ym-G7 svg{fill:#fff!important;stroke:#fff!important}.Tag-modules_tag_info__Q6-WL{background:var(--color-primary-100,#e5f1ff)}.Tag-modules_tag_info__Q6-WL svg{fill:#004799!important;stroke:#004799!important}.Tag-modules_tag_violet__CgNel{background:var(--Color-Extended-Purple-100,#e9d3fd)}.Tag-modules_tag_violet__CgNel svg{fill:#5c1994!important;stroke:#5c1994!important}.Tag-modules_tag_light__RqIr6{background:var(--Color-Neutral-Clear-Shades-150,#eee)}.Tag-modules_tag_light__RqIr6 svg{fill:#32353a!important;stroke:#32353a!important}.Tag-modules_tag_success__yANfh{background:var(--color-extended-green-100,#e8f5ea)}.Tag-modules_tag_success__yANfh svg{fill:#3c743d!important;stroke:#3c743d!important}.Tag-modules_tag_warning__C-O5t{background:var(--color-extended-yellow-100,#fff3d6)}.Tag-modules_tag_warning__C-O5t svg{fill:#6e4f00!important;stroke:#6e4f00!important}.Tag-modules_tag_critical__v79so{background:var(--color-extended-red-100,#fddbdb)}.Tag-modules_tag_critical__v79so svg{fill:#98312e!important;stroke:#98312e!important}.Tag-modules_tag_sm__KQwsr{height:1.25rem}.Tag-modules_tag_sm__KQwsr svg{height:.75rem;width:.75rem}.Tag-modules_tag_base__omYEM{height:1.75rem}.Tag-modules_tag_base__omYEM svg{height:1rem;width:1rem}.Tag-modules_tag_lg__E0lbY{height:2.25rem;padding:.25rem .75rem!important}.Tag-modules_tag_lg__E0lbY svg{height:1.5rem;width:1.5rem}.Tag-modules_canBeRemoved__ei-3U svg{cursor:pointer}";
|
|
16287
17135
|
var Tag_modules_default = {
|
|
16288
17136
|
"tag": "Tag-modules_tag__sYiD6",
|
|
16289
17137
|
"tag_ellipsis": "Tag-modules_tag_ellipsis__-WHk-",
|
|
@@ -16296,6 +17144,7 @@ var Tag_modules_default = {
|
|
|
16296
17144
|
"tag_critical": "Tag-modules_tag_critical__v79so",
|
|
16297
17145
|
"tag_sm": "Tag-modules_tag_sm__KQwsr",
|
|
16298
17146
|
"tag_base": "Tag-modules_tag_base__omYEM",
|
|
17147
|
+
"tag_lg": "Tag-modules_tag_lg__E0lbY",
|
|
16299
17148
|
"canBeRemoved": "Tag-modules_canBeRemoved__ei-3U"
|
|
16300
17149
|
};
|
|
16301
17150
|
style_inject_es_default(css_248z$66);
|
|
@@ -16331,12 +17180,14 @@ const Tag = ({ text, id, status = "idle", size = "base", iconLeft, iconRight, am
|
|
|
16331
17180
|
const getTagSize = () => {
|
|
16332
17181
|
if (size === "sm") return Tag_modules_default.tag_sm;
|
|
16333
17182
|
else if (size === "base") return Tag_modules_default.tag_base;
|
|
17183
|
+
else if (size === "lg") return Tag_modules_default.tag_lg;
|
|
16334
17184
|
else return Tag_modules_default.tag_base;
|
|
16335
17185
|
};
|
|
16336
17186
|
const getTextSize = () => {
|
|
16337
17187
|
if (size === "sm") return "xs";
|
|
16338
17188
|
else if (size === "base") return "sm";
|
|
16339
|
-
else return "
|
|
17189
|
+
else if (size === "lg") return "base";
|
|
17190
|
+
else return "base";
|
|
16340
17191
|
};
|
|
16341
17192
|
const [isEllipsisActive, setIsEllipsisActive] = (0, react.useState)(false);
|
|
16342
17193
|
(0, react.useEffect)(() => {
|
|
@@ -76708,7 +77559,7 @@ const Table = ({ tableId, headers, rows, hasFooter = true, isSelectable = false,
|
|
|
76708
77559
|
|
|
76709
77560
|
//#endregion
|
|
76710
77561
|
//#region src/Organisms/Textarea/Textarea.module.scss
|
|
76711
|
-
var css_248z$2 = ".Textarea-module_text_area_container__1NnwK{width:100%}.Textarea-module_text_area_container__1NnwK .Textarea-module_helperTexts__h4sFp{display:flex;justify-content:space-between;padding:.25rem .5rem .25rem .75rem}.Textarea-module_text_area_container__1NnwK .Textarea-module_helperTexts__h4sFp .Textarea-module_counter__jFTMR{margin-left:auto}.Textarea-module_text_area_container__1NnwK{font-family:Open Sans;font-size:1rem;font-style:normal;font-weight:400;line-height:150%}";
|
|
77562
|
+
var css_248z$2 = ".Textarea-module_text_area_container__1NnwK{width:100%}.Textarea-module_text_area_container__1NnwK .Textarea-module_helperTexts__h4sFp{display:flex;gap:.5rem;justify-content:space-between;padding:.25rem .5rem .25rem .75rem}.Textarea-module_text_area_container__1NnwK .Textarea-module_helperTexts__h4sFp .Textarea-module_counter__jFTMR{margin-left:auto;white-space:nowrap}.Textarea-module_text_area_container__1NnwK{font-family:Open Sans;font-size:1rem;font-style:normal;font-weight:400;line-height:150%}";
|
|
76712
77563
|
var Textarea_module_default = {
|
|
76713
77564
|
"text_area_container": "Textarea-module_text_area_container__1NnwK",
|
|
76714
77565
|
"helperTexts": "Textarea-module_helperTexts__h4sFp",
|
|
@@ -77150,6 +78001,7 @@ exports.CloudUpload = CloudUpload;
|
|
|
77150
78001
|
exports.Cluster = Cluster;
|
|
77151
78002
|
exports.CogIcon = CogIcon;
|
|
77152
78003
|
exports.ColorPicker = ColorPicker;
|
|
78004
|
+
exports.ColorSample = ColorSample;
|
|
77153
78005
|
exports.ConfusedInterviewee = ConfusedInterviewee;
|
|
77154
78006
|
exports.ConfusedIntervieweeFemale = ConfusedIntervieweeFemale;
|
|
77155
78007
|
exports.ContentPenWriteIcon = ContentPenWriteIcon;
|
|
@@ -77171,6 +78023,7 @@ exports.EditIcon = EditIcon;
|
|
|
77171
78023
|
exports.EditTextIcon = EditTextIcon;
|
|
77172
78024
|
exports.EmotionsHeatMap = EmotionsHeatMap;
|
|
77173
78025
|
exports.EndRecording = EndRecording;
|
|
78026
|
+
exports.ExpandIcon = ExpandIcon;
|
|
77174
78027
|
exports.FaceCenterIcon = FaceCenterIcon;
|
|
77175
78028
|
exports.FaceRecognitionIcon = FaceRecognitionIcon;
|
|
77176
78029
|
exports.Faq = Faq;
|
|
@@ -77195,6 +78048,7 @@ exports.HeartIcon = HeartIcon;
|
|
|
77195
78048
|
exports.HeartIconFilled = HeartIconFilled;
|
|
77196
78049
|
exports.HelpIcon = HelpIcon;
|
|
77197
78050
|
exports.HelpIconAlt = HelpIconAlt;
|
|
78051
|
+
exports.HistoryIcon = HistoryIcon;
|
|
77198
78052
|
exports.IconButton = IconButton;
|
|
77199
78053
|
exports.InfoCircledIcon = InfoCircledIcon;
|
|
77200
78054
|
exports.IntegratedUsabilityScore = IntegratedUsabilityScore;
|
|
@@ -77267,6 +78121,7 @@ exports.OdaWaiting = OdaWaiting;
|
|
|
77267
78121
|
exports.OfficeDrawerIcon = OfficeDrawerIcon;
|
|
77268
78122
|
exports.OneColumnIcon = OneColumnIcon;
|
|
77269
78123
|
exports.OtherTab = OtherTab;
|
|
78124
|
+
exports.PaintingPaletteIcon = PaintingPaletteIcon;
|
|
77270
78125
|
exports.Partner1SVG = Partner1;
|
|
77271
78126
|
exports.Partner2SVG = Partner2;
|
|
77272
78127
|
exports.Partner3SVG = Partner3;
|
|
@@ -77278,6 +78133,7 @@ exports.Partner8SVG = Partner8;
|
|
|
77278
78133
|
exports.Partner9SVG = Partner9;
|
|
77279
78134
|
exports.PasswordField = PasswordField;
|
|
77280
78135
|
exports.PauseIcon = PauseIcon;
|
|
78136
|
+
exports.PdfReport = PdfReport;
|
|
77281
78137
|
exports.PencilWriteIcon = PencilWriteIcon;
|
|
77282
78138
|
exports.PlayFillIcon = PlayFillIcon;
|
|
77283
78139
|
exports.PlayIcon = PlayIcon;
|
|
@@ -77291,6 +78147,7 @@ exports.ProjectHoverSvg = ProjectSvg;
|
|
|
77291
78147
|
exports.ProjectSvg = ProjectSvg$1;
|
|
77292
78148
|
exports.QuestionButton = QuestionButton;
|
|
77293
78149
|
exports.QuestionCircledIcon = QuestionCircledIcon;
|
|
78150
|
+
exports.QuoteIcon = QuoteIcon;
|
|
77294
78151
|
exports.Radio = Radio;
|
|
77295
78152
|
exports.RatingScale = RatingScale;
|
|
77296
78153
|
exports.RecordIcon = RecordIcon;
|