odaptos_design_system 2.0.345 → 2.0.347
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 +51 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +51 -11
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -327,6 +327,34 @@ const renderInlineMarkdown = (rawText) => {
|
|
|
327
327
|
});
|
|
328
328
|
};
|
|
329
329
|
const renderStrongAndEm = (nodes) => {
|
|
330
|
+
const renderUnderlineAndStrong = (text) => {
|
|
331
|
+
return text.split(/__(\*\*[^*]+\*\*)__/g).map((part, index) => {
|
|
332
|
+
if (!(index % 2 === 1)) return part;
|
|
333
|
+
const strongText = part.slice(2, -2);
|
|
334
|
+
return /* @__PURE__ */ react.default.createElement("u", { key: `u-strong-${index}` }, /* @__PURE__ */ react.default.createElement("strong", null, strongText));
|
|
335
|
+
});
|
|
336
|
+
};
|
|
337
|
+
const renderStrongAndUnderline = (text) => {
|
|
338
|
+
return text.split(/\*\*(__[^_]+__)\*\*/g).map((part, index) => {
|
|
339
|
+
if (!(index % 2 === 1)) return part;
|
|
340
|
+
const underlineText = part.slice(2, -2);
|
|
341
|
+
return /* @__PURE__ */ react.default.createElement("strong", { key: `strong-u-${index}` }, /* @__PURE__ */ react.default.createElement("u", null, underlineText));
|
|
342
|
+
});
|
|
343
|
+
};
|
|
344
|
+
const renderUnderlineAndEm = (text) => {
|
|
345
|
+
return text.split(/__(\*[^*]+\*)__/g).map((part, index) => {
|
|
346
|
+
if (!(index % 2 === 1)) return part;
|
|
347
|
+
const emText = part.slice(1, -1);
|
|
348
|
+
return /* @__PURE__ */ react.default.createElement("u", { key: `u-em-${index}` }, /* @__PURE__ */ react.default.createElement("em", null, emText));
|
|
349
|
+
});
|
|
350
|
+
};
|
|
351
|
+
const renderEmAndUnderline = (text) => {
|
|
352
|
+
return text.split(/\*(__[^_]+__)\*/g).map((part, index) => {
|
|
353
|
+
if (!(index % 2 === 1)) return part;
|
|
354
|
+
const underlineText = part.slice(2, -2);
|
|
355
|
+
return /* @__PURE__ */ react.default.createElement("em", { key: `em-u-${index}` }, /* @__PURE__ */ react.default.createElement("u", null, underlineText));
|
|
356
|
+
});
|
|
357
|
+
};
|
|
330
358
|
const renderHtmlUnderline = (text) => {
|
|
331
359
|
return text.split(/<u>(.*?)<\/u>/g).map((part, index) => {
|
|
332
360
|
if (!(index % 2 === 1)) return part;
|
|
@@ -353,7 +381,19 @@ const renderInlineMarkdown = (rawText) => {
|
|
|
353
381
|
};
|
|
354
382
|
return nodes.flatMap((node) => {
|
|
355
383
|
if (typeof node !== "string") return [node];
|
|
356
|
-
return
|
|
384
|
+
return renderUnderlineAndStrong(node).flatMap((underlineAndStrongNode) => {
|
|
385
|
+
if (typeof underlineAndStrongNode !== "string") return [underlineAndStrongNode];
|
|
386
|
+
return renderStrongAndUnderline(underlineAndStrongNode);
|
|
387
|
+
}).flatMap((strongAndUnderlineNode) => {
|
|
388
|
+
if (typeof strongAndUnderlineNode !== "string") return [strongAndUnderlineNode];
|
|
389
|
+
return renderUnderlineAndEm(strongAndUnderlineNode);
|
|
390
|
+
}).flatMap((underlineAndEmNode) => {
|
|
391
|
+
if (typeof underlineAndEmNode !== "string") return [underlineAndEmNode];
|
|
392
|
+
return renderEmAndUnderline(underlineAndEmNode);
|
|
393
|
+
}).flatMap((emAndUnderlineNode) => {
|
|
394
|
+
if (typeof emAndUnderlineNode !== "string") return [emAndUnderlineNode];
|
|
395
|
+
return renderHtmlUnderline(emAndUnderlineNode);
|
|
396
|
+
}).flatMap((htmlUnderlineNode) => {
|
|
357
397
|
if (typeof htmlUnderlineNode !== "string") return [htmlUnderlineNode];
|
|
358
398
|
return renderUnderline(htmlUnderlineNode);
|
|
359
399
|
}).flatMap((underlineNode) => {
|
|
@@ -7873,7 +7913,7 @@ function CheckedIconThin({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
7873
7913
|
viewBox: "0 0 17 16",
|
|
7874
7914
|
fill: "none",
|
|
7875
7915
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7876
|
-
}, /* @__PURE__ */ react.default.createElement("g", {
|
|
7916
|
+
}, /* @__PURE__ */ react.default.createElement("g", { clipPath: "url(#clip0_9430_1784)" }, /* @__PURE__ */ react.default.createElement("path", {
|
|
7877
7917
|
fillRule: "evenodd",
|
|
7878
7918
|
clipRule: "evenodd",
|
|
7879
7919
|
d: "M15.8176 0.0334288C15.7721 0.0509008 15.7058 0.0919248 15.6702 0.124597C15.6345 0.157269 13.3334 3.43119 10.5566 7.39999C6.31354 13.4644 5.48935 14.6339 5.39201 14.728C5.20674 14.9071 4.99676 14.9922 4.74082 14.9917C4.49265 14.9913 4.26898 14.9086 4.09615 14.7534C4.04729 14.7095 3.48591 13.9755 2.70013 12.928C1.97727 11.9644 1.35927 11.1527 1.32679 11.1243C1.24669 11.0541 1.19698 11.0305 1.08253 11.008C0.841654 10.9606 0.592038 11.1167 0.521542 11.3588C0.48911 11.4702 0.49991 11.6174 0.547334 11.7103C0.590134 11.7942 3.18146 15.2492 3.30001 15.3804C3.46396 15.5619 3.75233 15.7594 3.9958 15.8569C4.81625 16.1854 5.7638 15.9268 6.29493 15.2295C6.46647 15.0043 16.4096 0.791397 16.4507 0.712565C16.486 0.644917 16.4921 0.612901 16.4918 0.496565C16.4915 0.380277 16.4851 0.348101 16.4492 0.279989C16.3254 0.0455248 16.0578 -0.0589392 15.8176 0.0334288Z",
|
|
@@ -10073,8 +10113,8 @@ function WalletIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
10073
10113
|
viewBox: "0 0 16 16",
|
|
10074
10114
|
fill: "none"
|
|
10075
10115
|
}, /* @__PURE__ */ react.default.createElement("path", {
|
|
10076
|
-
|
|
10077
|
-
|
|
10116
|
+
fillRule: "evenodd",
|
|
10117
|
+
clipRule: "evenodd",
|
|
10078
10118
|
d: "M9.79828 0.0146202C9.75572 0.0219116 9.6701 0.0436715 9.60803 0.0629464C9.54125 0.0836763 8.04002 0.841921 5.9319 1.91965C3.12031 3.35703 2.35599 3.74136 2.30866 3.74158C2.23257 3.74195 2.00677 3.7796 1.87236 3.81436C1.6679 3.86721 1.39298 3.98607 1.20939 4.10095C0.556487 4.50955 0.124834 5.1828 0.0251877 5.94799C-0.00896586 6.21023 -0.00811842 13.5459 0.0260991 13.7919C0.143782 14.6384 0.650265 15.3535 1.40575 15.7398C1.58875 15.8334 1.84599 15.9183 2.08996 15.9656C2.22189 15.9912 2.61983 15.9937 7.34134 15.9987C10.6923 16.0023 12.5223 15.9984 12.6602 15.9875C12.9131 15.9676 13.0682 15.9368 13.2826 15.864C13.8981 15.6551 14.4138 15.2036 14.7097 14.6149C14.9265 14.1833 14.98 13.9313 14.9952 13.2691L15.0052 12.8326L15.0485 12.8228C15.1164 12.8076 15.3272 12.6786 15.45 12.5771C15.6272 12.4308 15.7957 12.1974 15.8805 11.981C15.9217 11.8758 15.9941 11.6869 16 11.6167C16 11.6167 15.9937 9.42453 15.9983 10C15.9983 12.0906 16.0029 10.5755 15.9983 10C16 8.09418 16.0029 9.42004 15.9983 10C15.9937 10.58 16 8.09418 16 8.09418C16 8 15.8981 7.78339 15.8405 7.66427C15.7575 7.4925 15.6799 7.38147 15.5498 7.24846C15.4172 7.11288 15.2947 7.02562 15.1226 6.94394L15.0054 6.88839L14.9953 6.45515C14.9828 5.9202 14.9536 5.72287 14.8409 5.41022C14.5584 4.62668 13.9215 4.03482 13.1274 3.81768C13.045 3.79515 12.9415 3.77198 12.8973 3.76616L12.817 3.7556L12.0712 2.23212C11.3958 0.852498 11.315 0.695585 11.2161 0.570241C10.9866 0.279417 10.679 0.0911312 10.318 0.0204566C10.1924 -0.00413156 9.92503 -0.00713968 9.79828 0.0146202ZM9.81971 1.08108C9.75375 1.11146 8.56294 1.71835 7.17345 2.42972L4.64711 3.72313L8.16082 3.72405L11.6745 3.72495L11.0675 2.48372C10.7337 1.80106 10.4391 1.21763 10.413 1.18723C10.3298 1.09032 10.2145 1.03836 10.0677 1.03169C9.95014 1.02633 9.9298 1.03039 9.81971 1.08108ZM2.31264 4.77308C1.67055 4.85497 1.12883 5.38607 1.02589 6.0346C1.00304 6.17855 1.0037 13.5531 1.02658 13.6975C1.09258 14.1144 1.36025 14.5179 1.72447 14.7497C1.83971 14.823 2.05138 14.9039 2.21999 14.9391C2.38121 14.9726 2.39499 14.9727 7.48966 14.9727C13.0458 14.9727 12.7125 14.9781 12.9841 14.8835C13.4077 14.7358 13.7613 14.3742 13.9056 13.9412C13.9694 13.75 13.9928 13.5582 13.9929 13.2275L13.993 12.9292L12.8937 12.929C11.8066 12.9289 11.64 12.9224 11.3873 12.8706C11.0912 12.8099 10.7205 12.6607 10.4467 12.4921C9.84734 12.1231 9.3592 11.4969 9.14171 10.818C8.94072 10.1907 8.95177 9.4177 9.17019 8.8244C9.58086 7.70884 10.5365 6.94342 11.6779 6.81583C11.7718 6.80532 12.2595 6.79847 12.9131 6.79847H13.993L13.9929 6.50828C13.9927 6.1711 13.9687 5.98091 13.9008 5.77963C13.8014 5.48534 13.5836 5.19713 13.3302 5.02472C13.1688 4.91496 13.0549 4.86225 12.8577 4.80624L12.7058 4.76308L7.56519 4.76095C4.71783 4.75978 2.37464 4.76519 2.31264 4.77308ZM0.0100297 9.87199C0.0100297 11.9626 0.0118844 12.8178 0.0141549 11.7725C0.0164254 10.7272 0.0164254 9.01677 0.0141549 7.97148C0.0118844 6.9262 0.0100297 7.78142 0.0100297 9.87199ZM11.6655 7.85391C11.2741 7.92119 10.9121 8.10764 10.6206 8.39204C10.1767 8.82526 9.94739 9.45264 10.0107 10.0607C10.0612 10.5455 10.2463 10.9498 10.5745 11.2923C10.863 11.5934 11.2005 11.7781 11.6227 11.8658C11.7827 11.8991 11.8214 11.8998 13.2136 11.8955L14.6405 11.891L14.7256 11.8429C14.8206 11.7891 14.8865 11.7196 14.9402 11.6167L14.9763 11.5477L14.9806 9.89385C14.9849 8.24719 14.9848 8.23958 14.9513 8.14801C14.9064 8.02551 14.7919 7.90819 14.6725 7.86253C14.5845 7.82887 14.5655 7.82844 13.1889 7.83009C12.0957 7.8314 11.7666 7.83654 11.6655 7.85391ZM11.7784 9.12568C11.6046 9.18437 11.4265 9.33097 11.3388 9.48757C11.246 9.65344 11.219 9.86974 11.2673 10.0594C11.3419 10.3522 11.5968 10.5863 11.8808 10.6227C12.1347 10.6553 12.3481 10.584 12.5187 10.4096C12.627 10.2988 12.6865 10.1961 12.7213 10.0594C12.8116 9.70507 12.6439 9.33821 12.3159 9.17247C12.2018 9.11479 12.1872 9.11162 12.0191 9.10796C11.9058 9.10548 11.8194 9.11185 11.7784 9.12568Z",
|
|
10079
10119
|
fill
|
|
10080
10120
|
})));
|
|
@@ -10528,7 +10568,7 @@ function DisketteIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
10528
10568
|
height: "20",
|
|
10529
10569
|
viewBox: "0 0 20 20",
|
|
10530
10570
|
fill: "none"
|
|
10531
|
-
}, /* @__PURE__ */ react.default.createElement("g", {
|
|
10571
|
+
}, /* @__PURE__ */ react.default.createElement("g", { clipPath: "url(#clip0_3418_1176)" }, /* @__PURE__ */ react.default.createElement("path", {
|
|
10532
10572
|
fillRule: "evenodd",
|
|
10533
10573
|
clipRule: "evenodd",
|
|
10534
10574
|
d: "M5.58087 0.0241305C5.05087 0.101915 4.5778 0.302122 4.12428 0.640565C3.90786 0.80206 0.804837 3.90999 0.643597 4.12675C0.286464 4.60683 0.0844347 5.10749 0.0176046 5.67805C0.00153663 5.81516 -0.00290006 7.62429 0.00173648 12.1635L0.00817167 18.4587L0.0497806 18.5988C0.258425 19.3015 0.753055 19.7878 1.43629 19.9618C1.58258 19.9991 1.78754 20 9.9899 20C18.1922 20 18.3972 19.9991 18.5435 19.9618C19.2273 19.7876 19.7485 19.2734 19.9251 18.5988C19.9453 18.5218 19.9619 18.4345 19.9621 18.4048C19.9623 18.3752 19.9714 18.3454 19.9824 18.3386C20.0055 18.3243 20.006 7.76505 19.9831 3.92659C19.9694 1.62116 19.9677 1.5401 19.9287 1.40448C19.7319 0.719831 19.2651 0.251841 18.5735 0.0458086L18.4336 0.00413383L12.0983 0.000751004C6.90368 -0.0020113 5.73026 0.00221222 5.58087 0.0241305ZM5.70813 1.27505C5.41829 1.32394 5.0797 1.48267 4.83459 1.68462C4.76268 1.74385 4.01958 2.4797 3.18324 3.31984C1.61427 4.89596 1.54928 4.96726 1.42533 5.24797C1.39757 5.31082 1.35047 5.44005 1.32063 5.53515L1.26641 5.70807L1.26124 11.9771L1.25604 18.246L1.29793 18.3582C1.35377 18.5076 1.49716 18.6514 1.64611 18.7072C1.75357 18.7475 1.79286 18.749 2.74543 18.749H3.73331L3.7396 15.181L3.74588 11.613L3.79011 11.447C3.97539 10.7512 4.48039 10.2363 5.15351 10.0569L5.32338 10.0117H9.9899H14.6564L14.8196 10.0553C15.5106 10.2401 16.0316 10.7797 16.1979 11.4829C16.2311 11.6233 16.2339 11.8647 16.2399 15.191L16.2464 18.749H17.2343C18.1869 18.749 18.2262 18.7475 18.3337 18.7072C18.4824 18.6515 18.626 18.5076 18.6817 18.3587L18.7234 18.247V10.0017V1.75628L18.6817 1.64466C18.626 1.49572 18.4824 1.35184 18.3337 1.29611C18.2262 1.25586 18.1869 1.25436 17.2346 1.25436H16.2469L16.2399 3.56128C16.2334 5.67887 16.2299 5.88054 16.1976 6.01833C16.0331 6.71986 15.5106 7.26109 14.8196 7.44592L14.6564 7.48956H11.239H7.82152L7.65834 7.44592C6.96729 7.26109 6.44484 6.71986 6.28033 6.01833C6.24801 5.88054 6.24453 5.67887 6.23804 3.56128L6.23098 1.25436L6.017 1.25672C5.89931 1.258 5.76034 1.26627 5.70813 1.27505ZM7.49634 3.51124L7.50175 5.76812L7.54936 5.87361C7.60913 6.00608 7.77611 6.16261 7.90431 6.20637C7.98929 6.23537 8.31585 6.23852 11.239 6.23852C14.1621 6.23852 14.4886 6.23537 14.5736 6.20637C14.7018 6.16261 14.8688 6.00608 14.9286 5.87361L14.9762 5.76812L14.9816 3.51124L14.987 1.25436H11.239H7.49092L7.49634 3.51124ZM12.9177 2.52198C12.752 2.58707 12.6251 2.7006 12.5447 2.85569C12.4985 2.94493 12.498 2.95297 12.4923 3.72314L12.4867 4.50051L12.5384 4.61388C12.6062 4.76272 12.7102 4.86883 12.8578 4.93979C13.2226 5.11524 13.6605 4.87974 13.7264 4.4726C13.7376 4.40349 13.7468 4.07671 13.7468 3.74644C13.7468 3.41616 13.7376 3.08939 13.7264 3.02027C13.6765 2.71207 13.4154 2.49309 13.1024 2.49691C13.0338 2.49775 12.9507 2.50902 12.9177 2.52198ZM0.00723238 12.0534C0.00723238 15.5213 0.00953066 16.9429 0.0123486 15.2126C0.0151665 13.4823 0.0151665 10.645 0.0123486 8.90736C0.00953066 7.16977 0.00723238 8.58547 0.00723238 12.0534ZM5.39799 11.2961C5.2773 11.3389 5.10884 11.4999 5.05123 11.6276L5.00362 11.7331L4.99834 15.241L4.99309 18.749H9.9899H14.9867L14.9814 15.241L14.9762 11.7331L14.9286 11.6276C14.8688 11.4951 14.7018 11.3386 14.5736 11.2949C14.4882 11.2657 14.0619 11.2628 9.98134 11.2643C6.02358 11.2657 5.47301 11.2695 5.39799 11.2961ZM6.64801 12.5426C6.36862 12.6519 6.20446 12.9376 6.25221 13.2314C6.27625 13.3793 6.33015 13.4781 6.44622 13.5868C6.63846 13.7669 6.47312 13.7548 8.74083 13.7548C11.0085 13.7548 10.8432 13.7669 11.0354 13.5868C11.1503 13.4792 11.206 13.3783 11.2285 13.2371C11.2765 12.9352 11.1123 12.6496 10.8285 12.5416C10.7331 12.5053 10.6442 12.5038 8.73561 12.5047C6.84682 12.5056 6.73739 12.5075 6.64801 12.5426ZM6.64801 15.0446C6.30189 15.1802 6.14245 15.5925 6.30941 15.9202C6.36502 16.0294 6.52586 16.1733 6.64296 16.2185C6.73942 16.2558 6.83681 16.2569 9.9899 16.2569C13.143 16.2569 13.2404 16.2558 13.3368 16.2185C13.4541 16.1732 13.6148 16.0294 13.6706 15.9198C13.838 15.5913 13.675 15.1763 13.3266 15.0437C13.2304 15.0071 13.1187 15.0059 9.98468 15.0068C6.88178 15.0077 6.73827 15.0093 6.64801 15.0446Z",
|
|
@@ -11599,8 +11639,8 @@ function OfficeDrawerIcon({ stroke, strokeWidth, fill, size = "base",...rest })
|
|
|
11599
11639
|
d: "M9.96971 10.9791H6.08888C5.82124 10.9791 5.62051 10.7782 5.62051 10.5105C5.62051 10.2427 5.82124 10.0418 6.08888 10.0418H10.0366C10.3043 10.0418 10.505 10.2427 10.505 10.5105C10.505 10.7782 10.2373 10.9791 9.96971 10.9791Z",
|
|
11600
11640
|
fill
|
|
11601
11641
|
}), /* @__PURE__ */ react.default.createElement("path", {
|
|
11602
|
-
|
|
11603
|
-
|
|
11642
|
+
fillRule: "evenodd",
|
|
11643
|
+
clipRule: "evenodd",
|
|
11604
11644
|
d: "M1.07057 8.03483V4.68618C1.07057 4.35146 1.20439 4.08367 1.40513 3.88284C1.60586 3.682 1.8735 3.54811 2.20805 3.54811H7.82856C7.9874 3.54811 8.10434 3.59003 8.24569 3.64069C8.28297 3.65406 8.32195 3.66803 8.36385 3.682L8.6984 4.01673L9.36751 5.08786H13.3822C13.6498 5.08786 13.9844 5.22175 14.1851 5.42259C14.3858 5.62342 14.5196 5.89121 14.5196 6.22593V8.03347H14.8542C15.3226 8.03347 15.9917 8.30126 15.9917 9.17155V14.8619C16.0586 15.3305 15.724 16 14.9211 16H1.13748C0.669108 16 0 15.7322 0 14.8619V9.17155C0 8.71517 0.253849 8.0683 1.07057 8.03483ZM13.5829 8.03347V6.15899C13.5829 6.09204 13.5829 6.09204 13.516 6.0251C13.516 6.0251 13.4491 5.95815 13.3822 5.95815H9.09986C8.96604 5.95815 8.76531 5.89121 8.6984 5.75731L7.89547 4.48535H2.14114C2.07423 4.48535 2.07423 4.48535 2.00732 4.55229V8.03347H13.5829ZM1.13748 9.03766H14.9211C15.0549 9.03766 15.0549 9.17155 15.0549 9.23849V14.9289C15.0549 15.1297 14.9211 15.1297 14.8542 15.1297H1.13748C0.936751 15.1297 0.936751 14.9958 0.936751 14.9289V9.23849C0.936751 9.03766 1.07057 9.03766 1.13748 9.03766Z",
|
|
11605
11645
|
fill
|
|
11606
11646
|
})));
|
|
@@ -11948,7 +11988,7 @@ function StarFilledIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
11948
11988
|
height: "20",
|
|
11949
11989
|
viewBox: "0 0 20 20",
|
|
11950
11990
|
fill: "none"
|
|
11951
|
-
}, /* @__PURE__ */ react.default.createElement("g", {
|
|
11991
|
+
}, /* @__PURE__ */ react.default.createElement("g", { clipPath: "url(#clip0_5614_18230)" }, /* @__PURE__ */ react.default.createElement("path", {
|
|
11952
11992
|
d: "M9.72211 0.0280374C9.90921 -0.0088598 10.0565 -0.00927474 10.245 0.0264094C10.5275 0.0799083 10.819 0.256507 11.0134 0.492004C11.0937 0.589727 11.4244 1.23403 12.9488 4.26234C13.5587 5.4741 13.8007 5.93716 13.8253 5.93832C13.9729 5.9385 18.906 6.44311 19.0215 6.46985C19.1673 6.50605 19.2541 6.54561 19.411 6.64729C19.5326 6.72615 19.7176 6.91461 19.7859 7.02823C19.8816 7.1878 19.9634 7.40041 19.9639 7.49301C19.9641 7.51778 19.9733 7.5386 19.9843 7.5386C20.0222 7.53985 20.0052 7.81417 19.955 8.00745C19.8978 8.22751 19.8428 8.34304 19.7175 8.50886C19.6661 8.57635 18.6865 9.56033 17.5391 10.6968C16.3934 11.8316 15.4593 12.7705 15.459 12.7871C15.4787 12.8434 16.9853 18.3373 17.0073 18.4329C17.0366 18.5637 17.0351 18.8312 17.0048 18.9742C16.9235 19.3577 16.6423 19.7111 16.2819 19.8817C16.0096 20.0106 15.6064 20.0378 15.3378 19.9452C15.2719 19.9225 14.0452 19.3223 12.6121 18.6119C11.1837 17.9039 10.0076 17.324 9.99208 17.3202C9.98419 17.3202 8.83164 17.8883 7.43142 18.5826C6.03198 19.2766 4.84654 19.8626 4.79595 19.885C4.15929 20.1665 3.41177 19.903 3.09887 19.2867C2.97375 19.0403 2.92599 18.7104 2.97933 18.4565C2.99618 18.377 4.46069 13.0237 4.5276 12.7969C4.53004 12.7706 3.89577 12.1287 2.46297 10.7066C1.32348 9.57566 0.352231 8.60528 0.303203 8.54874C0.134629 8.3535 0.0325339 8.08931 0.00964951 7.81942C0.01095 7.82758 0.0127655 7.82278 0.0145285 7.80314C0.0187279 7.75637 0.0187394 7.6797 0.0145285 7.63302C0.0103411 7.58662 0.00639685 7.62512 0.00639685 7.71849C0.0063985 7.7507 0.00731152 7.77633 0.00802318 7.79419C0.000345329 7.67794 0.00640485 7.56105 0.0299787 7.44825C0.132003 6.96029 0.553779 6.54368 1.03912 6.45112C1.1233 6.43526 2.3165 6.3108 3.69248 6.17519L6.19622 5.92855L6.97767 4.37793C8.58576 1.18474 8.89207 0.586303 8.96993 0.492004C9.159 0.263055 9.45505 0.0806853 9.72211 0.0280374Z",
|
|
11953
11993
|
fill: "#FFB800"
|
|
11954
11994
|
})), /* @__PURE__ */ react.default.createElement("defs", null, /* @__PURE__ */ react.default.createElement("clipPath", { id: "clip0_5614_18230" }, /* @__PURE__ */ react.default.createElement("rect", {
|
|
@@ -12289,9 +12329,9 @@ function ExpandIcon({ stroke, strokeWidth, fill = "#26292E", size = "base",...re
|
|
|
12289
12329
|
height: "24",
|
|
12290
12330
|
viewBox: "0 0 24 24",
|
|
12291
12331
|
fill: "none"
|
|
12292
|
-
}, /* @__PURE__ */ react.default.createElement("g", {
|
|
12293
|
-
|
|
12294
|
-
|
|
12332
|
+
}, /* @__PURE__ */ react.default.createElement("g", { clipPath: "url(#clip0_18344_13088)" }, /* @__PURE__ */ react.default.createElement("path", {
|
|
12333
|
+
fillRule: "evenodd",
|
|
12334
|
+
clipRule: "evenodd",
|
|
12295
12335
|
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",
|
|
12296
12336
|
fill
|
|
12297
12337
|
})), /* @__PURE__ */ react.default.createElement("defs", null, /* @__PURE__ */ react.default.createElement("clipPath", { id: "clip0_18344_13088" }, /* @__PURE__ */ react.default.createElement("rect", {
|