@crystallize/design-system 1.11.5 → 1.11.6
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/CHANGELOG.md +6 -0
- package/dist/index.css +8 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +1050 -963
- package/dist/index.mjs +931 -844
- package/package.json +1 -1
- package/src/card/card.css +2 -2
- package/src/iconography/catalogue.tsx +0 -1
- package/src/iconography/check-with-circle.tsx +38 -0
- package/src/iconography/copy-with-cloud.tsx +51 -0
- package/src/iconography/copy.tsx +19 -5
- package/src/iconography/edit.tsx +9 -7
- package/src/iconography/index.ts +6 -2
- package/src/input-with-label/input-with-label.css +1 -1
package/dist/index.mjs
CHANGED
|
@@ -659,11 +659,49 @@ var Catalogue = forwardRef11((delegated, ref) => {
|
|
|
659
659
|
});
|
|
660
660
|
Catalogue.displayName = "CatalogueIcon";
|
|
661
661
|
|
|
662
|
-
// src/iconography/
|
|
662
|
+
// src/iconography/check-with-circle.tsx
|
|
663
663
|
import { forwardRef as forwardRef12 } from "react";
|
|
664
664
|
import { jsx as jsx19, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
665
|
-
var
|
|
665
|
+
var CheckWithCircle = forwardRef12((delegated, ref) => {
|
|
666
666
|
return /* @__PURE__ */ jsxs11("svg", {
|
|
667
|
+
ref,
|
|
668
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
669
|
+
width: "22",
|
|
670
|
+
height: "22",
|
|
671
|
+
fill: "none",
|
|
672
|
+
viewBox: "0 0 22 22",
|
|
673
|
+
...delegated,
|
|
674
|
+
children: [
|
|
675
|
+
/* @__PURE__ */ jsx19("path", {
|
|
676
|
+
fill: "#BFF6F8",
|
|
677
|
+
d: "M19.152 11a8.152 8.152 0 1 1-16.304 0 8.152 8.152 0 0 1 16.304 0Z"
|
|
678
|
+
}),
|
|
679
|
+
/* @__PURE__ */ jsx19("path", {
|
|
680
|
+
fill: "#528693",
|
|
681
|
+
fillRule: "evenodd",
|
|
682
|
+
d: "M11 18.637a7.637 7.637 0 1 0 0-15.274 7.637 7.637 0 0 0 0 15.274Zm0 .515a8.152 8.152 0 1 0 0-16.304 8.152 8.152 0 0 0 0 16.304Z",
|
|
683
|
+
clipRule: "evenodd"
|
|
684
|
+
}),
|
|
685
|
+
/* @__PURE__ */ jsx19("path", {
|
|
686
|
+
fill: "#fff",
|
|
687
|
+
d: "m6.536 12.863 2.703 2.34c.183.231.432.382.705.426.064.01.13.014.194.013.353-.009.694-.191.936-.501l4.637-5.925a1.64 1.64 0 0 0 .34-1.048 1.458 1.458 0 0 0-.386-.983 1.107 1.107 0 0 0-.625-.335c-.417-.067-.84.115-1.13.488l-3.772 4.805-1.727-1.273a1.129 1.129 0 0 0-.698-.417c-.369-.059-.745.078-1.031.375-.523.542-.588 1.455-.146 2.035Z"
|
|
688
|
+
}),
|
|
689
|
+
/* @__PURE__ */ jsx19("path", {
|
|
690
|
+
fill: "#528693",
|
|
691
|
+
fillRule: "evenodd",
|
|
692
|
+
d: "M13.707 7.179c.34-.435.852-.667 1.374-.583.293.047.56.19.77.41.29.303.448.716.458 1.156.01.441-.128.872-.395 1.213l-4.637 5.924c-.284.363-.694.59-1.133.6a1.313 1.313 0 0 1-.24-.016 1.385 1.385 0 0 1-.851-.5L6.348 13.04l-.016-.022c-.524-.686-.442-1.74.164-2.37.338-.35.796-.524 1.258-.45.325.052.618.225.836.483l1.5 1.105 3.617-4.608Zm1.292-.075c-.311-.05-.645.083-.887.392l-3.926 5.002-1.954-1.44-.021-.027a.872.872 0 0 0-.538-.324c-.277-.044-.571.056-.806.3-.432.448-.487 1.204-.141 1.68l2.7 2.337.015.02c.145.183.34.298.544.33a.803.803 0 0 0 .146.01c.267-.006.54-.145.74-.402l4.638-5.925c.19-.243.293-.556.286-.883a1.201 1.201 0 0 0-.316-.811M15 7.104a.85.85 0 0 1 .48.259Z",
|
|
693
|
+
clipRule: "evenodd"
|
|
694
|
+
})
|
|
695
|
+
]
|
|
696
|
+
});
|
|
697
|
+
});
|
|
698
|
+
CheckWithCircle.displayName = "CheckWithCircleIcon";
|
|
699
|
+
|
|
700
|
+
// src/iconography/cloud.tsx
|
|
701
|
+
import { forwardRef as forwardRef13 } from "react";
|
|
702
|
+
import { jsx as jsx20, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
703
|
+
var Cloud = forwardRef13((delegated, ref) => {
|
|
704
|
+
return /* @__PURE__ */ jsxs12("svg", {
|
|
667
705
|
ref,
|
|
668
706
|
width: "17",
|
|
669
707
|
height: "16",
|
|
@@ -671,11 +709,11 @@ var Cloud = forwardRef12((delegated, ref) => {
|
|
|
671
709
|
fill: "none",
|
|
672
710
|
...delegated,
|
|
673
711
|
children: [
|
|
674
|
-
/* @__PURE__ */
|
|
712
|
+
/* @__PURE__ */ jsx20("path", {
|
|
675
713
|
d: "M15.3703 10.3495c-.4864 1.0088-1.473 1.1455-2.3741 1.1455-.2567 0-.5141-.0125-.7631-.0242-.2065-.0092-.4024-.0183-.5894-.0209l-4.6526-.055c-.0401 0-.081-.0008-.1226-.0008-.138 0-.2829.0025-.4324.005-.1588.0025-.3237.005-.4918.005-1.3019 0-2.5683-.1717-3.01-1.4157-.26-.7314-.1128-1.566.366-2.0778.3483-.3632.8141-.5649 1.298-.562.2632.0001.5236.0583.7654.1708a.1098.1098 0 0 0 .0397.04.0996.0996 0 0 0 .0528.0135.106.106 0 0 0 .0512-.0124.1154.1154 0 0 0 .0405-.036.1146.1146 0 0 0 .01-.0984c-.296-.9047.074-1.6442.5435-1.9493.2408-.1525.5156-.2312.7947-.2276.2177-.004.4338.0412.6344.133.2006.0918.3812.228.5301.3998a.1116.1116 0 0 0 .0228.0431.1008.1008 0 0 0 .038.0278.064.064 0 0 0 .0417.015.0772.0772 0 0 0 .0395-.012.0854.0854 0 0 0 .0291-.0313.1006.1006 0 0 0 .02-.041c.2798-1.203 1.4276-2.1084 2.6685-2.1084a2.318 2.318 0 0 1 .4772.0492c.8376.1784 1.655.8479 2.0334 1.6658.2012.4335.3707 1.1072.0393 1.8517a.0972.0972 0 0 0-.0077.0484.136.136 0 0 0 .0046.1125.0944.0944 0 0 0 .034.036.0845.0845 0 0 0 .0462.0123.122.122 0 0 0 .0162-.0007 1.5263 1.5263 0 0 1 .222-.0159c.5989 0 1.1562.3569 1.4915.9547.3493.6219.384 1.3548.0934 1.9603Z",
|
|
676
714
|
fill: "#fff"
|
|
677
715
|
}),
|
|
678
|
-
/* @__PURE__ */
|
|
716
|
+
/* @__PURE__ */ jsx20("path", {
|
|
679
717
|
fillRule: "evenodd",
|
|
680
718
|
clipRule: "evenodd",
|
|
681
719
|
d: "M11.3917 3.8908a2.0927 2.0927 0 0 0-.4337-.045c-1.1526 0-2.2078.8525-2.4612 1.9518v.0005a.4044.4044 0 0 1-.0635.142.3682.3682 0 0 1-.112.1124.3395.3395 0 0 1-.1747.0535l-.0031.0001a.3251.3251 0 0 1-.1783-.0515.3801.3801 0 0 1-.1083-.0881.4042.4042 0 0 1-.0507-.0754 1.3197 1.3197 0 0 0-.4204-.3097 1.2186 1.2186 0 0 0-.5347-.113H6.843c-.2336-.0031-.464.0631-.6665.1922-.3701.2436-.6983.862-.4398 1.6627.0198.058.0268.1201.0206.1813a.4197.4197 0 0 1-.06.178l-.0041.0067-.0045.0065a.3969.3969 0 0 1-.1388.1243.3675.3675 0 0 1-.1729.0435.3614.3614 0 0 1-.1868-.0496.3828.3828 0 0 1-.0707-.0531 1.577 1.577 0 0 0-.6209-.1285h-.0013c-.4204-.0025-.8264.174-1.1314.494-.4055.4387-.5433 1.1754-.3113 1.834.1915.5441.5562.8558 1.0429 1.0381.4996.1871 1.116.2323 1.7765.2323.1694 0 .3361-.0025.4983-.0051l.015-.0002c.147-.0025.2922-.005.431-.005.0226 0 .0449.0002.0655.0004.021.0003.0407.0005.0596.0005h.0031l4.7535.0567h.0004c.184.0025.3755.0112.5716.02l.0392.0018.0242.0012c.2478.0117.4964.0234.7434.0234.9184 0 1.7643-.1477 2.1819-1.0217.2513-.5287.2259-1.1784-.0869-1.7403-.2993-.5384-.7845-.8415-1.2887-.8415h-.0004a1.2916 1.2916 0 0 0-.1892.0137l-.004.0005-.0039.0005a.3822.3822 0 0 1-.045.0025.3465.3465 0 0 1-.1836-.051.3794.3794 0 0 1-.1369-.1463l-.0027-.0051a.4442.4442 0 0 1-.0475-.1833.4513.4513 0 0 1 .0113-.1205.4034.4034 0 0 1 .0324-.1243c.2909-.6593.146-1.2565-.0382-1.6571-.3497-.7624-1.1143-1.3938-1.8856-1.5598Zm-.4341-.6272a2.6066 2.6066 0 0 1 .5408.0563l.0009.0002c.94.202 1.8454.951 2.269 1.8747.208.4522.3945 1.1555.1264 1.9441.7157.0039 1.3652.4359 1.7493 1.1268.4008.72.4463 1.5811.1041 2.3006l-.0003.0005c-.5761 1.2058-1.7462 1.3399-2.6691 1.3399-.2595 0-.5188-.0123-.7635-.0238l-.0283-.0014-.0357-.0016c-.1985-.009-.3823-.0173-.5578-.0197l-4.7516-.0567a6.361 6.361 0 0 1-.0631-.0004c-.021-.0002-.0408-.0004-.0605-.0004-.1344 0-.2757.0024-.4242.0049l-.0133.0002a31.4585 31.4585 0 0 1-.5068.0052c-.6696 0-1.3653-.0434-1.9579-.2653-.6055-.2268-1.1135-.6448-1.3733-1.3829m8.4149-6.9012c-1.2761.0001-2.4734.8635-2.9009 2.082a1.8444 1.8444 0 0 0-.4535-.2983 1.7369 1.7369 0 0 0-.7576-.1611c-.3348-.0037-.6638.092-.9519.276l-.0026.0018c-.519.3404-.9122 1.0848-.7608 1.9849a2.085 2.085 0 0 0-.6307-.0987c-.5676-.0031-1.1125.2357-1.5192.6634l-.0025.0026c-.5716.6168-.7341 1.6-.4352 2.4486",
|
|
@@ -687,10 +725,10 @@ var Cloud = forwardRef12((delegated, ref) => {
|
|
|
687
725
|
Cloud.displayName = "CloudIcon";
|
|
688
726
|
|
|
689
727
|
// src/iconography/cloud-with-key-hole.tsx
|
|
690
|
-
import { forwardRef as
|
|
691
|
-
import { jsx as
|
|
692
|
-
var CloudWithKeyHole =
|
|
693
|
-
return /* @__PURE__ */
|
|
728
|
+
import { forwardRef as forwardRef14 } from "react";
|
|
729
|
+
import { jsx as jsx21, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
730
|
+
var CloudWithKeyHole = forwardRef14((delegated, ref) => {
|
|
731
|
+
return /* @__PURE__ */ jsxs13("svg", {
|
|
694
732
|
ref,
|
|
695
733
|
width: "16",
|
|
696
734
|
height: "16",
|
|
@@ -698,19 +736,19 @@ var CloudWithKeyHole = forwardRef13((delegated, ref) => {
|
|
|
698
736
|
fill: "none",
|
|
699
737
|
...delegated,
|
|
700
738
|
children: [
|
|
701
|
-
/* @__PURE__ */
|
|
739
|
+
/* @__PURE__ */ jsx21("path", {
|
|
702
740
|
fillRule: "evenodd",
|
|
703
741
|
clipRule: "evenodd",
|
|
704
742
|
d: "M3.32328 1.85821C2.33372 2.42954 1.99467 3.69488 2.56599 4.68444L4.48715 8.01198L8.07066 5.94304L6.1495 2.6155C5.57818 1.62594 4.31284 1.28689 3.32328 1.85821ZM3.69314 2.45527C3.01523 2.84666 2.78297 3.71349 3.17436 4.39139L4.5917 6.8463L7.0466 5.42896L5.62926 2.97405C5.23787 2.29615 4.37104 2.06388 3.69314 2.45527Z",
|
|
705
743
|
fill: "#528693"
|
|
706
744
|
}),
|
|
707
|
-
/* @__PURE__ */
|
|
745
|
+
/* @__PURE__ */ jsx21("path", {
|
|
708
746
|
d: "M15.1197 10.7414L15.1195 10.7418C14.5193 11.8973 13.3026 12.0262 12.3362 12.0262C12.0645 12.0262 11.7928 12.0143 11.5358 12.0032L11.5069 12.0019L11.5063 12.0019L11.4685 12.0003C11.2605 11.9917 11.0673 11.9836 10.8828 11.9813C10.8828 11.9813 10.8827 11.9813 10.8826 11.9813L5.89575 11.9266C5.87369 11.9266 5.85168 11.9264 5.83087 11.9262L5.82962 11.9261C5.80755 11.9259 5.7867 11.9257 5.76585 11.9257C5.62467 11.9257 5.47619 11.9281 5.32041 11.9305L5.30635 11.9307L5.30611 11.9307C5.1359 11.9332 4.95726 11.9357 4.77487 11.9357C4.07255 11.9357 3.34599 11.8938 2.72802 11.6809C2.098 11.4639 1.5686 11.0639 1.29729 10.3548C0.984363 9.53772 1.15538 8.59242 1.75107 8.0012L1.75351 7.99879L1.75352 7.9988C2.17718 7.58896 2.74366 7.36115 3.33242 7.36416M15.1197 10.7414L14.7817 8.66754C14.4221 8.07267 13.8245 7.71755 13.1824 7.71755L13.1828 7.44973C13.1828 7.44973 13.1827 7.44973 13.1826 7.44973C13.1778 7.44972 13.1729 7.44973 13.1681 7.44976C13.4573 6.6847 13.2608 6.00141 13.0418 5.56332C12.5986 4.67468 11.6526 3.95613 10.6739 3.76263L10.6729 3.76245C10.4875 3.72647 10.299 3.70845 10.1102 3.70863M15.1197 10.7414C15.4774 10.0497 15.4298 9.22135 15.0109 8.529L15.1197 10.7414ZM3.33242 7.36416C3.56513 7.36437 3.79603 7.39931 4.01762 7.46741C3.84768 6.59092 4.26225 5.86733 4.80493 5.53999L4.80752 5.53843L4.80753 5.53845C5.1067 5.36256 5.44789 5.27149 5.79467 5.275C6.06436 5.27086 6.33194 5.32319 6.58031 5.42865C6.75985 5.50488 6.92647 5.60764 7.0748 5.73314C7.51346 4.54767 8.77249 3.70868 10.1102 3.70863M3.33242 7.36416C3.33263 7.36416 3.33284 7.36416 3.33306 7.36417L3.33161 7.63198L3.33178 7.36416C3.33199 7.36416 3.3322 7.36416 3.33242 7.36416ZM10.1102 3.70863C10.1101 3.70863 10.1101 3.70863 10.11 3.70863L10.1103 3.97646V3.70863C10.1102 3.70863 10.1102 3.70863 10.1102 3.70863ZM7.23424 5.90822C7.24554 5.91549 7.25589 5.92416 7.26504 5.93405C7.26606 5.93515 7.26707 5.93627 7.26805 5.9374C7.2732 5.94328 7.27788 5.94951 7.28208 5.95604C7.2832 5.95237 7.28433 5.94871 7.28547 5.94506L6.99715 5.97877M7.23424 5.90822C7.24784 5.9144 7.26076 5.92214 7.27272 5.93135L7.24148 5.9073L7.22728 5.90189L7.20464 5.89327C7.21198 5.89607 7.21908 5.89939 7.22588 5.9032C7.22872 5.90479 7.23151 5.90646 7.23424 5.90822ZM7.23424 5.90822C7.23112 5.90681 7.22797 5.90547 7.22478 5.90422C7.21772 5.90145 7.2105 5.89909 7.20316 5.89716C7.18637 5.89273 7.16894 5.89052 7.1513 5.89069L7.15209 5.97212L7.15265 6.02979L7.15273 6.03798L7.15276 6.04083L7.15284 6.04921L7.15285 6.0504M7.15285 6.0504L7.15162 6.05009M7.15285 6.0504L7.15285 6.0506M7.15285 6.0504L7.15471 6.05087L7.17646 6.05636L7.24897 6.07468L7.17637 6.05649L7.15501 6.05114L7.15285 6.0506M7.15162 6.05009L7.15158 6.04809L7.15144 6.04122L7.15139 6.03922L7.15127 6.03342L7.15003 5.97405L7.14828 5.89074C7.11749 5.89139 7.08744 5.8999 7.06096 5.91539C7.04936 5.92218 7.03863 5.93021 7.02892 5.93929C7.02293 5.94489 7.01733 5.9509 7.01216 5.95727M7.15162 6.05009L7.14551 6.04855L7.14221 6.04771L7.13775 6.04659L7.13536 6.04598L7.09131 6.03486L7.08628 6.03358L6.98936 6.0091C6.99184 5.99926 6.9952 5.98967 6.99938 5.98046C7.00303 5.97242 7.0073 5.96466 7.01216 5.95727M7.15162 6.05009L7.15163 6.05029M7.01216 5.95727C7.01665 5.95042 7.02165 5.94388 7.02713 5.9377L7.01008 5.95693L6.99715 5.97877M7.01216 5.95727C7.00665 5.96404 7.00164 5.97123 6.99715 5.97877M6.99715 5.97877C6.99713 5.97888 6.9971 5.97899 6.99707 5.97909C6.9944 5.98924 6.99178 5.99942 6.98923 6.00961L7.08599 6.03385L7.09226 6.03542L7.13493 6.04611L7.13791 6.04685L7.14203 6.04789L7.14544 6.04874L7.15163 6.05029M7.15163 6.05029L7.15285 6.0506M7.15163 6.05029L7.15206 6.0708L7.15206 6.07104L7.15241 6.08761L7.1539 6.15849L7.1532 6.08658L7.15307 6.07276L7.15305 6.07139L7.15285 6.0506",
|
|
709
747
|
fill: "white",
|
|
710
748
|
stroke: "#528693",
|
|
711
749
|
strokeWidth: "0.535654"
|
|
712
750
|
}),
|
|
713
|
-
/* @__PURE__ */
|
|
751
|
+
/* @__PURE__ */ jsx21("path", {
|
|
714
752
|
d: "M10.1012 8.68008C10.3253 8.57817 10.4812 8.3523 10.4812 8.09002V7.75806C10.4812 7.2688 10.0846 6.87217 9.59532 6.87217H9.05806C8.5688 6.87217 8.17218 7.2688 8.17218 7.75806V8.09002C8.17218 8.3523 8.32803 8.57817 8.55218 8.68008V9.29339C8.55218 9.72113 8.89894 10.0679 9.32669 10.0679C9.75444 10.0679 10.1012 9.72113 10.1012 9.29339V8.68008Z",
|
|
715
753
|
fill: "#DAF0ED",
|
|
716
754
|
stroke: "#528693",
|
|
@@ -722,47 +760,92 @@ var CloudWithKeyHole = forwardRef13((delegated, ref) => {
|
|
|
722
760
|
CloudWithKeyHole.displayName = "CloudWithKeyHoleIcon";
|
|
723
761
|
|
|
724
762
|
// src/iconography/copy.tsx
|
|
725
|
-
import { forwardRef as
|
|
726
|
-
import { jsx as
|
|
727
|
-
var Copy =
|
|
728
|
-
return /* @__PURE__ */
|
|
763
|
+
import { forwardRef as forwardRef15 } from "react";
|
|
764
|
+
import { jsx as jsx22, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
765
|
+
var Copy = forwardRef15((delegated, ref) => {
|
|
766
|
+
return /* @__PURE__ */ jsxs14("svg", {
|
|
729
767
|
ref,
|
|
730
|
-
width: "
|
|
731
|
-
height: "
|
|
732
|
-
viewBox: "0 0
|
|
768
|
+
width: "22",
|
|
769
|
+
height: "22",
|
|
770
|
+
viewBox: "0 0 22 22",
|
|
733
771
|
fill: "none",
|
|
734
772
|
xmlns: "http://www.w3.org/2000/svg",
|
|
735
773
|
...delegated,
|
|
736
774
|
children: [
|
|
737
|
-
/* @__PURE__ */
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
}),
|
|
747
|
-
/* @__PURE__ */
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
rx: "2.5",
|
|
753
|
-
fill: "#EAEBEE",
|
|
754
|
-
stroke: "#80878D"
|
|
775
|
+
/* @__PURE__ */ jsx22("path", {
|
|
776
|
+
"fill-rule": "evenodd",
|
|
777
|
+
"clip-rule": "evenodd",
|
|
778
|
+
d: "M5.60925 19.5266L5.88208 18.9923C6.25379 19.182 6.67497 19.2893 7.12296 19.2893H8.45636V19.8893H7.12296C6.57795 19.8893 6.06349 19.7586 5.60925 19.5266ZM10.2342 19.8893V19.2893H11.5676C12.0156 19.2893 12.4368 19.182 12.8085 18.9923L13.0813 19.5266C12.6271 19.7586 12.1126 19.8893 11.5676 19.8893H10.2342ZM14.9011 11.1111H14.3011V8.77766C14.3011 8.32967 14.1938 7.9085 14.0041 7.53678L14.5384 7.26395C14.7703 7.71819 14.9011 8.23265 14.9011 8.77766V11.1111ZM8.45636 5.44415H7.12296C6.57795 5.44415 6.06349 5.57495 5.60925 5.80686L5.88208 6.34124C6.25379 6.15146 6.67497 6.04415 7.12296 6.04415H8.45636V5.44415ZM3.78945 14.2224H4.38945V16.5558C4.38945 17.0038 4.49676 17.425 4.68654 17.7967L4.15215 18.0696C3.92024 17.6153 3.78945 17.1009 3.78945 16.5558V14.2224ZM3.78945 11.1111H4.38945V8.77766C4.38945 8.32968 4.49676 7.9085 4.68654 7.53678L4.15215 7.26395C3.92024 7.71819 3.78945 8.23265 3.78945 8.77766V11.1111ZM10.2342 5.44415V6.04415H11.5676C12.0156 6.04415 12.4368 6.15146 12.8085 6.34124L13.0813 5.80686C12.6271 5.57495 12.1126 5.44415 11.5676 5.44415H10.2342ZM14.9011 14.2224H14.3011V16.5558C14.3011 17.0038 14.1938 17.425 14.0041 17.7967L14.5384 18.0696C14.7703 17.6153 14.9011 17.1009 14.9011 16.5558V14.2224Z",
|
|
779
|
+
fill: "#528693"
|
|
780
|
+
}),
|
|
781
|
+
/* @__PURE__ */ jsx22("path", {
|
|
782
|
+
d: "M8.23413 5.44417C8.23413 3.60312 9.72659 2.11066 11.5676 2.11066H16.0123C17.8534 2.11066 19.3458 3.60312 19.3458 5.44416V13.2223C19.3458 15.0634 17.8534 16.5559 16.0123 16.5559H11.5676C9.72659 16.5559 8.23413 15.0634 8.23413 13.2223V5.44417Z",
|
|
783
|
+
fill: "#BFF6F8"
|
|
784
|
+
}),
|
|
785
|
+
/* @__PURE__ */ jsx22("path", {
|
|
786
|
+
"fill-rule": "evenodd",
|
|
787
|
+
"clip-rule": "evenodd",
|
|
788
|
+
d: "M16.0123 2.71066H11.5676C10.058 2.71066 8.83413 3.93449 8.83413 5.44417V13.2223C8.83413 14.732 10.058 15.9559 11.5676 15.9559H16.0123C17.522 15.9559 18.7458 14.732 18.7458 13.2223V5.44416C18.7458 3.93449 17.522 2.71066 16.0123 2.71066ZM11.5676 2.11066C9.72659 2.11066 8.23413 3.60312 8.23413 5.44417V13.2223C8.23413 15.0634 9.72659 16.5559 11.5676 16.5559H16.0123C17.8534 16.5559 19.3458 15.0634 19.3458 13.2223V5.44416C19.3458 3.60312 17.8534 2.11066 16.0123 2.11066H11.5676Z",
|
|
789
|
+
fill: "#528693"
|
|
755
790
|
})
|
|
756
791
|
]
|
|
757
792
|
});
|
|
758
793
|
});
|
|
759
794
|
Copy.displayName = "CopyIcon";
|
|
760
795
|
|
|
796
|
+
// src/iconography/copy-with-cloud.tsx
|
|
797
|
+
import { forwardRef as forwardRef16 } from "react";
|
|
798
|
+
import { jsx as jsx23, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
799
|
+
var CopyWithCloud = forwardRef16((delegated, ref) => {
|
|
800
|
+
return /* @__PURE__ */ jsxs15("svg", {
|
|
801
|
+
ref,
|
|
802
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
803
|
+
width: "22",
|
|
804
|
+
height: "22",
|
|
805
|
+
fill: "none",
|
|
806
|
+
viewBox: "0 0 22 22",
|
|
807
|
+
...delegated,
|
|
808
|
+
children: [
|
|
809
|
+
/* @__PURE__ */ jsx23("path", {
|
|
810
|
+
fill: "#fff",
|
|
811
|
+
d: "M19.055 13.054c-.595 1.263-1.441 1.553-3.22 1.553-3.734 0-5.845-.123-9.562-.123-1.725 0-3.546-.242-4.082-1.92-.34-1.064-.153-2.123.496-2.817.473-.493 1.014-.699 1.76-.763.563-.048 1.429.226 1.429.226s-.324-2.173.61-2.764c.37-.234.64-.306 1.078-.308.343-.003.86.18.86.18l.911.642s1.164-2.957 3.686-2.957c.217 0 .434.022.647.067 1.136.242 2.228.971 2.757 2.259.405.986.05 2.729.05 2.729s1.887.405 2.454 1.338c.54.888.57 1.718.126 2.658Z"
|
|
812
|
+
}),
|
|
813
|
+
/* @__PURE__ */ jsx23("path", {
|
|
814
|
+
fill: "#528693",
|
|
815
|
+
fillRule: "evenodd",
|
|
816
|
+
d: "M2.254 9.331c.6-.625 1.294-.872 2.142-.944.27-.023.57.008.826.052a6.314 6.314 0 0 1 .01-.424c.02-.339.072-.727.199-1.087.125-.357.344-.742.734-.989.219-.138.432-.244.671-.311a2.67 2.67 0 0 1 .724-.09c.255-.002.534.061.715.109a5.191 5.191 0 0 1 .317.094l.022.008.006.002h.002l.001.001-.2.566s-.516-.183-.86-.18c-.437.002-.707.074-1.077.308-.607.384-.683 1.436-.662 2.125.012.372.052.639.052.639s-.279-.088-.622-.156c-.263-.05-.563-.09-.806-.07-.747.064-1.288.27-1.76.763-.65.694-.837 1.753-.497 2.817.536 1.678 2.357 1.92 4.082 1.92 1.856 0 3.312.03 4.77.062 1.46.03 2.923.061 4.793.061 1.778 0 2.624-.29 3.22-1.553.442-.94.412-1.77-.127-2.658-.567-.933-2.455-1.338-2.455-1.338s.357-1.743-.049-2.73c-.529-1.287-1.621-2.016-2.757-2.258a3.144 3.144 0 0 0-.647-.067c-1.83 0-2.945 1.557-3.419 2.411-.18.324-.267.546-.267.546l-.911-.642.2-.566a.602.602 0 0 1 .146.075l.34.24c.158-.28.376-.622.658-.966.66-.805 1.735-1.698 3.252-1.698.259 0 .517.026.77.08h.003C15.09 3.759 16.364 4.6 16.98 6.1c.26.63.26 1.432.22 2.003-.013.19-.031.365-.05.517.166.051.36.118.562.2.552.22 1.336.615 1.73 1.263.311.513.493 1.04.518 1.594.025.554-.109 1.094-.362 1.632-.342.725-.792 1.237-1.461 1.54-.632.287-1.399.357-2.301.357-1.875 0-3.342-.03-4.801-.061h-.004a209.73 209.73 0 0 0-4.758-.062c-.876 0-1.851-.059-2.693-.367-.87-.319-1.624-.916-1.96-1.97-.393-1.228-.197-2.527.629-3.41l.005-.006Z",
|
|
817
|
+
clipRule: "evenodd"
|
|
818
|
+
}),
|
|
819
|
+
/* @__PURE__ */ jsx23("path", {
|
|
820
|
+
fill: "#fff",
|
|
821
|
+
d: "M7.264 10.434a1 1 0 0 1 1-1h4.595a1 1 0 0 1 1 1v5.848a1 1 0 0 1-1 1H8.264a1 1 0 0 1-1-1v-5.848Z"
|
|
822
|
+
}),
|
|
823
|
+
/* @__PURE__ */ jsx23("path", {
|
|
824
|
+
fill: "#528693",
|
|
825
|
+
fillRule: "evenodd",
|
|
826
|
+
d: "M6.964 10.434a1.3 1.3 0 0 1 1.3-1.3h4.595a1.3 1.3 0 0 1 1.3 1.3v5.848a1.3 1.3 0 0 1-1.3 1.3H8.264a1.3 1.3 0 0 1-1.3-1.3v-5.848Zm1.3-.7a.7.7 0 0 0-.7.7v5.848a.7.7 0 0 0 .7.7h4.595a.7.7 0 0 0 .7-.7v-5.848a.7.7 0 0 0-.7-.7H8.264Z",
|
|
827
|
+
clipRule: "evenodd"
|
|
828
|
+
}),
|
|
829
|
+
/* @__PURE__ */ jsx23("path", {
|
|
830
|
+
fill: "#BFF6F8",
|
|
831
|
+
d: "M8.627 8.785a1 1 0 0 1 1-1h5.06a1 1 0 0 1 1 1v6.4a1 1 0 0 1-1 1h-5.06a1 1 0 0 1-1-1v-6.4Z"
|
|
832
|
+
}),
|
|
833
|
+
/* @__PURE__ */ jsx23("path", {
|
|
834
|
+
fill: "#528693",
|
|
835
|
+
fillRule: "evenodd",
|
|
836
|
+
d: "M9.627 8.085a.697.697 0 0 0-.268.053.3.3 0 0 1-.23-.554c.154-.064.322-.099.498-.099h.632a.3.3 0 1 1 0 .6h-.632Zm1.597-.3a.3.3 0 0 1 .3-.3h1.265a.3.3 0 1 1 0 .6h-1.265a.3.3 0 0 1-.3-.3Zm2.53 0a.3.3 0 0 1 .3-.3h.632c.176 0 .344.035.498.099a.3.3 0 0 1-.23.554.698.698 0 0 0-.268-.053h-.632a.3.3 0 0 1-.3-.3Zm1.741.34a.3.3 0 0 1 .392.163c.064.153.1.322.1.497v.8a.3.3 0 1 1-.6 0v-.8a.698.698 0 0 0-.054-.268.3.3 0 0 1 .162-.392Zm-6.677 0a.3.3 0 0 1 .162.392.697.697 0 0 0-.053.268v.8a.3.3 0 0 1-.6 0v-.8c0-.175.035-.344.099-.497a.3.3 0 0 1 .392-.163Zm-.19 2.76a.3.3 0 0 1 .3.3v1.6a.3.3 0 1 1-.6 0v-1.6a.3.3 0 0 1 .3-.3Zm7.058 0a.3.3 0 0 1 .3.3v1.6a.3.3 0 1 1-.6 0v-1.6a.3.3 0 0 1 .3-.3Zm-7.059 3.2a.3.3 0 0 1 .3.3v.8c0 .096.02.186.053.268a.3.3 0 1 1-.554.23 1.297 1.297 0 0 1-.099-.498v-.8a.3.3 0 0 1 .3-.3Zm7.06 0a.3.3 0 0 1 .3.3v.8c0 .176-.036.344-.1.498a.3.3 0 1 1-.554-.23.698.698 0 0 0 .053-.268v-.8a.3.3 0 0 1 .3-.3Zm-6.72 1.91a.3.3 0 0 1 .392-.163.696.696 0 0 0 .268.053h.632a.3.3 0 1 1 0 .6h-.632c-.176 0-.344-.035-.498-.098a.3.3 0 0 1-.162-.393Zm6.379 0a.3.3 0 0 1-.162.392 1.298 1.298 0 0 1-.498.098h-.632a.3.3 0 1 1 0-.6h.632a.697.697 0 0 0 .268-.053.3.3 0 0 1 .392.162Zm-4.122.19a.3.3 0 0 1 .3-.3h1.265a.3.3 0 1 1 0 .6h-1.265a.3.3 0 0 1-.3-.3Z",
|
|
837
|
+
clipRule: "evenodd"
|
|
838
|
+
})
|
|
839
|
+
]
|
|
840
|
+
});
|
|
841
|
+
});
|
|
842
|
+
CopyWithCloud.displayName = "CopyWithCloudIcon";
|
|
843
|
+
|
|
761
844
|
// src/iconography/crystal.tsx
|
|
762
|
-
import { forwardRef as
|
|
763
|
-
import { jsx as
|
|
764
|
-
var Crystal =
|
|
765
|
-
return /* @__PURE__ */
|
|
845
|
+
import { forwardRef as forwardRef17 } from "react";
|
|
846
|
+
import { jsx as jsx24, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
847
|
+
var Crystal = forwardRef17((delegated, ref) => {
|
|
848
|
+
return /* @__PURE__ */ jsxs16("svg", {
|
|
766
849
|
ref,
|
|
767
850
|
width: "27",
|
|
768
851
|
height: "27",
|
|
@@ -771,98 +854,98 @@ var Crystal = forwardRef15((delegated, ref) => {
|
|
|
771
854
|
xmlns: "http://www.w3.org/2000/svg",
|
|
772
855
|
...delegated,
|
|
773
856
|
children: [
|
|
774
|
-
/* @__PURE__ */
|
|
857
|
+
/* @__PURE__ */ jsx24("path", {
|
|
775
858
|
fill: "#528693",
|
|
776
859
|
d: "M13.945 26.805c3.479 0 6.299-.386 6.299-.861 0-.476-2.82-.861-6.299-.861-3.478 0-6.298.385-6.298.86 0 .476 2.82.862 6.298.862ZM25.356 5.894l-2.998-2.938-1.98 4.77 4.978-1.832ZM26.995 14.579l-.341-3.357-3.644 1.896 3.985 1.46ZM.896 14.579l.341-3.357 3.643 1.896-3.984 1.46ZM2.563 5.894l2.999-2.938 1.98 4.77-4.979-1.832Z",
|
|
777
860
|
opacity: ".15"
|
|
778
861
|
}),
|
|
779
|
-
/* @__PURE__ */
|
|
862
|
+
/* @__PURE__ */ jsx24("path", {
|
|
780
863
|
fill: "#AEF9F6",
|
|
781
864
|
d: "m23.267 13.32-1.348-.562-1.444-6.409 2.792 6.971Z"
|
|
782
865
|
}),
|
|
783
|
-
/* @__PURE__ */
|
|
866
|
+
/* @__PURE__ */ jsx24("path", {
|
|
784
867
|
fill: "#fff",
|
|
785
868
|
d: "M20.475 6.35 15.51 10.6l-1.412-.367 6.378-3.884Z"
|
|
786
869
|
}),
|
|
787
|
-
/* @__PURE__ */
|
|
870
|
+
/* @__PURE__ */ jsx24("path", {
|
|
788
871
|
fill: "#fff",
|
|
789
872
|
d: "m14.732 23.732-.635-13.5 1.412.368.217.181-.994 12.951Z"
|
|
790
873
|
}),
|
|
791
|
-
/* @__PURE__ */
|
|
874
|
+
/* @__PURE__ */ jsx24("path", {
|
|
792
875
|
fill: "#AEF9F6",
|
|
793
876
|
d: "m23.267 13.32-8.535 10.412 6.63-10.123.557-.85 1.348.56ZM21.92 12.758 15.51 10.6l4.965-4.25 1.444 6.408Z"
|
|
794
877
|
}),
|
|
795
|
-
/* @__PURE__ */
|
|
878
|
+
/* @__PURE__ */ jsx24("path", {
|
|
796
879
|
fill: "#AEF9F6",
|
|
797
880
|
d: "m15.51 10.6 6.41 2.158-.558.85-6.63 10.124.777-13.132Z"
|
|
798
881
|
}),
|
|
799
|
-
/* @__PURE__ */
|
|
882
|
+
/* @__PURE__ */ jsx24("path", {
|
|
800
883
|
fill: "#528693",
|
|
801
884
|
d: "m20.358 6.113-5.596 3.406-.782.476a.263.263 0 0 0-.145.223l.216 4.584.34 7.25.079 1.666a.27.27 0 0 0 .18.259.262.262 0 0 0 .3-.098l2.898-3.535 4.584-5.592 1.054-1.285a.267.267 0 0 0 .017-.266l-2.45-6.114-.343-.855c-.127-.316-.596-.078-.47.237l2.45 6.115.343.854.017-.266-2.898 3.535-4.584 5.592-1.054 1.285.48.162-.216-4.584-.341-7.25-.078-1.666-.145.223 5.596-3.406.782-.477c.288-.174.056-.65-.234-.473Z"
|
|
802
885
|
}),
|
|
803
|
-
/* @__PURE__ */
|
|
886
|
+
/* @__PURE__ */ jsx24("path", {
|
|
804
887
|
fill: "#528693",
|
|
805
888
|
d: "M23.309 13.194c-.47-.196-.935-.417-1.416-.584-.556-.193-1.117-.376-1.675-.564l-4.498-1.514c-.517-.174-1.055-.288-1.582-.426-.162-.042-.246.209-.083.251.492.129.997.234 1.48.392.56.183 1.116.375 1.675.564l4.499 1.514c.516.174 1.014.409 1.517.618.156.065.239-.186.083-.251Z"
|
|
806
889
|
}),
|
|
807
|
-
/* @__PURE__ */
|
|
890
|
+
/* @__PURE__ */ jsx24("path", {
|
|
808
891
|
fill: "#528693",
|
|
809
892
|
d: "m14.863 23.739.16-2.712.327-5.509.258-4.366.027-.449c0-.013.014-.078.005-.089.043.052-.1.109-.006.054.164-.119.319-.25.462-.395l.857-.735 3.537-3.027.073-.062-.216-.072.905 4.012.48 2.13c.01.076.026.15.05.222.042.093-.023-.039.025-.05-.04.01-.128.196-.15.228l-2.166 3.307-3.055 4.663-1.18 1.8c-.2.308-.42.61-.606.928l-.027.041a.134.134 0 0 0 .038.18.13.13 0 0 0 .18-.032l1.504-2.297 3.03-4.626 2.375-3.626c.1-.151.316-.37.29-.562-.08-.56-.254-1.124-.378-1.676l-1.037-4.603-.021-.093a.135.135 0 0 0-.088-.098.131.131 0 0 0-.128.025l-3.14 2.689-1.64 1.403c-.084.072-.203.141-.23.254a1.507 1.507 0 0 0-.014.245l-.232 3.907-.333 5.624-.13 2.194c-.022.368-.062.74-.065 1.11l-.003.049a.13.13 0 0 0 .262.014Z"
|
|
810
893
|
}),
|
|
811
|
-
/* @__PURE__ */
|
|
894
|
+
/* @__PURE__ */ jsx24("path", {
|
|
812
895
|
fill: "#fff",
|
|
813
896
|
d: "M20.692 13.37c-.28.417-.553.837-.83 1.257-.456.693-.91 1.387-1.36 2.083-.497.767-.99 1.537-1.485 2.306-.409.635-.815 1.27-1.22 1.908-.194.303-.4.602-.583.912l-.008.013a.145.145 0 0 0 .041.195.14.14 0 0 0 .195-.035l.474-.746 1.162-1.83a928.57 928.57 0 0 0 2.815-4.46c.296-.47.59-.942.894-1.407l.06-.091a.095.095 0 0 0-.027-.128.093.093 0 0 0-.128.023ZM20.92 13.108l.005.006c.08.104.22-.012.178-.12l-.002-.006c-.041-.105-.196-.068-.215.03a.117.117 0 0 0 .057.12.114.114 0 0 0 .13-.011l.005-.003c.102-.081-.012-.222-.12-.18l-.005.003a.105.105 0 0 0-.054.073.108.108 0 0 0 .022.088ZM21.084 11.8l-.002-.028c.003.036-.003-.016-.005-.032l-.008-.05a56.027 56.027 0 0 0-.237-1.25c-.147-.724-.297-1.448-.449-2.17l-.107-.496a.123.123 0 0 0-.223-.041.126.126 0 0 0-.018.092c.093.45.182.903.275 1.354.148.724.296 1.448.461 2.168.028.12.055.239.085.358l.025.098c.014.052-.006-.01.01.027l.002.01a.097.097 0 0 0 .175.032.1.1 0 0 0 .016-.073Z"
|
|
814
897
|
}),
|
|
815
|
-
/* @__PURE__ */
|
|
898
|
+
/* @__PURE__ */ jsx24("path", {
|
|
816
899
|
fill: "#fff",
|
|
817
900
|
d: "m22.606 13.365-1.138 1.425a4396.042 4396.042 0 0 0-2.227 2.793c-.031.04.034.083.065.044l1.133-1.429 1.803-2.277.413-.522c.025-.03-.026-.064-.05-.034h.001ZM22.54 12.58c-.21-.569-.417-1.138-.638-1.703-.018-.047-.088-.011-.07.035.219.565.436 1.13.653 1.695.014.037.068.009.054-.028Z",
|
|
818
901
|
opacity: ".25"
|
|
819
902
|
}),
|
|
820
|
-
/* @__PURE__ */
|
|
903
|
+
/* @__PURE__ */ jsx24("path", {
|
|
821
904
|
fill: "#fff",
|
|
822
905
|
d: "M16.367 11.99a.23.23 0 0 0 .286-.152.237.237 0 0 0-.139-.294.23.23 0 0 0-.173.017.235.235 0 0 0-.102.31.233.233 0 0 0 .128.118ZM16.051 12.237l-.007.01a.16.16 0 0 0-.01.16l.022.033a.154.154 0 0 0 .069.046.156.156 0 0 0 .181-.063.162.162 0 0 0 .026-.08v-.012l-.003-.04a.114.114 0 0 0-.024-.054.077.077 0 0 0-.026-.03.117.117 0 0 0-.052-.031l-.04-.008-.04.003a.172.172 0 0 0-.095.066h-.001ZM16.749 10.5a.084.084 0 0 0 .107-.053.085.085 0 0 0-.118-.104.085.085 0 0 0-.038.115c.01.02.027.035.049.043ZM16.417 10.402a.085.085 0 0 0 .104-.055.087.087 0 0 0-.05-.108.084.084 0 0 0-.105.056.086.086 0 0 0 .05.107ZM16.69 10.169a.075.075 0 0 0 .092-.05.076.076 0 0 0-.045-.096.075.075 0 0 0-.092.05.077.077 0 0 0 .044.096ZM16.043 13.249l.011.004a.087.087 0 0 0 .108-.055l.004-.022a.088.088 0 0 0-.008-.043l-.013-.019a.085.085 0 0 0-.037-.025l-.012-.004a.061.061 0 0 0-.033-.003.061.061 0 0 0-.031.008.096.096 0 0 0-.043.05l-.004.022c0 .015.002.03.009.043l.012.018c.01.011.023.02.037.025v.001Z"
|
|
823
906
|
}),
|
|
824
|
-
/* @__PURE__ */
|
|
907
|
+
/* @__PURE__ */ jsx24("path", {
|
|
825
908
|
fill: "#AEF9F6",
|
|
826
909
|
d: "m18.609 12.145-1.93.258L9.838 1.35l8.771 10.795Z"
|
|
827
910
|
}),
|
|
828
|
-
/* @__PURE__ */
|
|
911
|
+
/* @__PURE__ */ jsx24("path", {
|
|
829
912
|
fill: "#fff",
|
|
830
913
|
d: "M9.837 1.35 7.842 14.228l-1.875.527L9.837 1.35Z"
|
|
831
914
|
}),
|
|
832
|
-
/* @__PURE__ */
|
|
915
|
+
/* @__PURE__ */ jsx24("path", {
|
|
833
916
|
fill: "#fff",
|
|
834
917
|
d: "m14.69 25.314-8.723-10.56 1.875-.527.37.063 6.479 11.024Z"
|
|
835
918
|
}),
|
|
836
|
-
/* @__PURE__ */
|
|
919
|
+
/* @__PURE__ */ jsx24("path", {
|
|
837
920
|
fill: "#AEF9F6",
|
|
838
921
|
d: "m18.609 12.144-3.918 13.17 1.906-11.552.082-1.359 1.93-.259ZM16.679 12.403l-8.837 1.824L9.837 1.35l6.842 11.053Z"
|
|
839
922
|
}),
|
|
840
|
-
/* @__PURE__ */
|
|
923
|
+
/* @__PURE__ */ jsx24("path", {
|
|
841
924
|
fill: "#AEF9F6",
|
|
842
925
|
d: "m7.842 14.227 8.837-1.824-.082 1.36-1.906 11.551-6.849-11.087Z"
|
|
843
926
|
}),
|
|
844
|
-
/* @__PURE__ */
|
|
927
|
+
/* @__PURE__ */ jsx24("path", {
|
|
845
928
|
fill: "#528693",
|
|
846
929
|
d: "M9.506 1.238 8.196 5.77l-2.085 7.22c-.156.54-.33 1.078-.469 1.623-.097.385.45.842.669 1.107l4.482 5.424c1.191 1.443 2.35 2.922 3.578 4.333l.06.072a.352.352 0 0 0 .592-.122l1.357-4.561 2.123-7.138c.144-.483.333-.973.437-1.467.05-.24-.08-.367-.213-.531l-.551-.678-4.5-5.536c-1.172-1.442-2.31-2.92-3.52-4.33-.02-.023-.038-.047-.057-.071-.286-.352-.808.12-.522.472l2.967 3.65 4.725 5.814 1.08 1.327-.072-.35-1.324 4.454-2.11 7.094-.483 1.624.592-.122-2.95-3.571-4.7-5.69-1.075-1.301.071.35 1.31-4.535 2.085-7.22.476-1.647c.126-.437-.537-.665-.663-.227Z"
|
|
847
930
|
}),
|
|
848
|
-
/* @__PURE__ */
|
|
931
|
+
/* @__PURE__ */ jsx24("path", {
|
|
849
932
|
fill: "#528693",
|
|
850
933
|
d: "M18.574 11.97c-.673.091-1.357.148-2.023.28-.77.152-1.539.317-2.31.476l-6.2 1.28c-.713.147-1.41.377-2.11.573-.215.06-.147.407.07.347.654-.184 1.306-.402 1.97-.545.767-.165 1.539-.318 2.309-.477l6.202-1.28c.712-.146 1.442-.21 2.163-.308.223-.03.152-.376-.07-.346h-.001Z"
|
|
851
934
|
}),
|
|
852
|
-
/* @__PURE__ */
|
|
935
|
+
/* @__PURE__ */ jsx24("path", {
|
|
853
936
|
fill: "#528693",
|
|
854
937
|
d: "m14.847 25.234-2.316-3.75-3.669-5.938-.571-.925c-.063-.102-.172-.388-.278-.45-.048-.028-.015.075.007.047.023-.03.022-.141.028-.178l.125-.81 1.025-6.616.516-3.326.183-1.18a5.54 5.54 0 0 0 .102-.658.661.661 0 0 1 .013-.087l-.33.068 2.325 3.757 3.67 5.928.566.915c.053.085.174.39.269.434.037.017.024-.093-.012-.045-.026.035-.022.146-.029.188l-.126.823-1.021 6.632c-.265 1.714-.59 3.431-.794 5.154l-.014.087c-.034.225.316.247.35.024l.672-4.367 1.075-6.974.162-1.056c.037-.163.063-.328.076-.494a.473.473 0 0 0-.11-.264l-.415-.671-3.527-5.699c-.92-1.485-1.83-2.978-2.76-4.457l-.045-.074a.178.178 0 0 0-.19-.089.177.177 0 0 0-.141.157l-.678 4.375-1.08 6.966-.161 1.043a3.035 3.035 0 0 0-.074.477c.012.1.053.195.118.271l.423.685 3.529 5.713c.916 1.483 1.822 2.974 2.749 4.45l.046.075c.118.192.431.033.312-.16v-.001Z"
|
|
855
938
|
}),
|
|
856
|
-
/* @__PURE__ */
|
|
939
|
+
/* @__PURE__ */ jsx24("path", {
|
|
857
940
|
fill: "#fff",
|
|
858
941
|
d: "M15.423 13.982c-.141 1.096-.303 2.19-.45 3.284-.181 1.338-.356 2.677-.524 4.016l-.203 1.605c-.03.245.348.27.378.026.137-1.095.271-2.19.402-3.287.16-1.34.32-2.679.465-4.02.058-.536.117-1.071.18-1.606.02-.161-.228-.176-.248-.017ZM15.594 13.639l.008.004c.128.06.26-.14.154-.235l-.004-.004a.153.153 0 0 0-.264.134.155.155 0 0 0 .14.124.152.152 0 0 0 .155-.105l.002-.005c.061-.13-.139-.262-.232-.155l-.007.007a.142.142 0 0 0 .048.234ZM15.557 11.79c-.302-.557-.644-1.096-.975-1.636L13.55 8.473a133.094 133.094 0 0 1-2.044-3.407A79.116 79.116 0 0 1 10.46 3.19a.165.165 0 0 0-.219-.067.168.168 0 0 0-.075.218c1.215 2.33 2.615 4.56 4.013 6.78.383.609.756 1.227 1.165 1.817.085.123.282-.018.213-.147Z"
|
|
859
942
|
}),
|
|
860
|
-
/* @__PURE__ */
|
|
943
|
+
/* @__PURE__ */ jsx24("path", {
|
|
861
944
|
fill: "#fff",
|
|
862
945
|
d: "M17.647 12.679c-.275.877-.552 1.753-.82 2.633-.02.064.078.098.098.034.272-.879.534-1.76.8-2.641.014-.051-.062-.076-.077-.026ZM17.583 11.942c-.563-.726-1.121-1.452-1.688-2.173-.042-.053-.119.017-.078.07.565.722 1.136 1.439 1.705 2.158.033.041.093-.014.06-.055Z",
|
|
863
946
|
opacity: ".25"
|
|
864
947
|
}),
|
|
865
|
-
/* @__PURE__ */
|
|
948
|
+
/* @__PURE__ */ jsx24("path", {
|
|
866
949
|
fill: "#fff",
|
|
867
950
|
d: "M9.753 15.255a.311.311 0 0 0 .23-.368.314.314 0 0 0-.354-.246.312.312 0 0 0-.23.367.314.314 0 0 0 .354.247ZM9.55 15.754l-.001.016a.214.214 0 0 0 .094.191l.048.024a.206.206 0 0 0 .11.007.232.232 0 0 0 .134-.09.212.212 0 0 0 .011-.215l-.008-.014-.03-.044a.152.152 0 0 0-.063-.046.104.104 0 0 0-.05-.017.155.155 0 0 0-.08-.002l-.053.019-.043.03a.232.232 0 0 0-.067.14H9.55ZM9.129 13.173a.113.113 0 0 0 .088-.135.112.112 0 0 0-.205-.04.115.115 0 0 0 .032.158.112.112 0 0 0 .085.017ZM8.68 13.283a.116.116 0 0 0 .037-.206.114.114 0 0 0-.083-.018.114.114 0 0 0-.084.134.115.115 0 0 0 .047.071.113.113 0 0 0 .082.02ZM8.84 12.83a.103.103 0 0 0 .033-.183.1.1 0 0 0-.073-.018.102.102 0 0 0-.074.12.102.102 0 0 0 .114.08ZM10.21 16.93l.016-.004a.116.116 0 0 0 .071-.05.119.119 0 0 0 .018-.085l-.01-.03a.115.115 0 0 0-.04-.043l-.026-.013a.111.111 0 0 0-.06-.004l-.015.003a.082.082 0 0 0-.041.019.084.084 0 0 0-.031.03.13.13 0 0 0-.017.086l.01.029a.115.115 0 0 0 .039.043l.026.013c.02.006.04.008.06.004v.002ZM10.731 17.922a.108.108 0 0 0 .084-.128.11.11 0 0 0-.046-.07.107.107 0 0 0-.15.031.11.11 0 0 0 .03.152.107.107 0 0 0 .082.015Z"
|
|
868
951
|
})
|
|
@@ -872,10 +955,10 @@ var Crystal = forwardRef15((delegated, ref) => {
|
|
|
872
955
|
Crystal.displayName = "CrystalIcon";
|
|
873
956
|
|
|
874
957
|
// src/iconography/customers.tsx
|
|
875
|
-
import { forwardRef as
|
|
876
|
-
import { jsx as
|
|
877
|
-
var Customers =
|
|
878
|
-
return /* @__PURE__ */
|
|
958
|
+
import { forwardRef as forwardRef18 } from "react";
|
|
959
|
+
import { jsx as jsx25, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
960
|
+
var Customers = forwardRef18((delegated, ref) => {
|
|
961
|
+
return /* @__PURE__ */ jsxs17("svg", {
|
|
879
962
|
ref,
|
|
880
963
|
width: "16",
|
|
881
964
|
height: "16",
|
|
@@ -883,27 +966,27 @@ var Customers = forwardRef16((delegated, ref) => {
|
|
|
883
966
|
fill: "none",
|
|
884
967
|
...delegated,
|
|
885
968
|
children: [
|
|
886
|
-
/* @__PURE__ */
|
|
969
|
+
/* @__PURE__ */ jsx25("path", {
|
|
887
970
|
d: "M8.404 9.6176a.505.505 0 0 1-.3293.174.5165.5165 0 0 1-.395-.1129.5736.5736 0 0 1-.1411-.174.6699.6699 0 0 1-.0377-.1036 1.2879 1.2879 0 0 1-.0188-.141.0354.0354 0 0 0-.0047-.0236.299.299 0 0 1 .0094-.0423c.0141.0094-.0141 0 .0282.0188.1414.0742.297.1175.4562.127.1982.0035.394-.0434.5692-.1364a.6085.6085 0 0 1-.1364.414Z",
|
|
888
971
|
fill: "#fff"
|
|
889
972
|
}),
|
|
890
|
-
/* @__PURE__ */
|
|
973
|
+
/* @__PURE__ */ jsx25("path", {
|
|
891
974
|
d: "M8.8367 10.8219a10.8362 10.8362 0 0 1-.682.0189 8.6454 8.6454 0 0 1-1.4065-.0753 11.1623 11.1623 0 0 1-1.3781-.3104.3187.3187 0 0 0-.0894-.0141c0-.0141.0094-.0188.0094-.0329.042-.2007.1235-.391.24-.5598a.9674.9674 0 0 1 .4515-.3057.9234.9234 0 0 1 .2774-.0424l.334-.0047h.2634l.207.0047h.0188v.0095c.0123.0511.028.1014.047.1505.0048.0094.0142.0188.0189.0282.0047.0094.0047.0235.0093.033a.7647.7647 0 0 0 .0518.0799c.0046.0104.011.02.0188.0282a.914.914 0 0 0 .1035.1317l.0094.0094a.77.77 0 0 0 .1364.1082c0 .0047.0047.0047.0094.0094.0508.0328.1043.0611.16.0847a.9932.9932 0 0 0 .3857.0799.8826.8826 0 0 0 .3621-.0799.9532.9532 0 0 0 .2352-.1506l.0659-.0517a.9361.9361 0 0 0 .2116-.3057c.0236-.047.0518-.1411.0565-.1506h.522c.2128-.0233.428.0008.6304.0706a.9474.9474 0 0 1 .254.1552.6675.6675 0 0 1 .174.2164c.0527.0907.0953.1869.127.2869l.0423.1552.0047.0329v.0048l-.1599.0611a.4584.4584 0 0 1-.0752.0235 11.626 11.626 0 0 1-1.1995.254c-.1364.0141-.268.033-.3998.0424a.1434.1434 0 0 1-.047.0046Zm-.6725-1.9475c-.0094.0047-.0141.0094-.0188.0047a.5169.5169 0 0 1-.1693.0141 1.9402 1.9402 0 0 1-.9596-.6162 1.3368 1.3368 0 0 1-.2822-.4704 2.0513 2.0513 0 0 1-.0988-.5738c-.0141-.2117-.047-.4515-.047-.6444a1.3454 1.3454 0 0 1 .0893-.4422.4875.4875 0 0 1 .0659-.141 1.223 1.223 0 0 1 .08-.1318.9871.9871 0 0 1 .0893-.1081.3608.3608 0 0 1 .0847-.0847.8524.8524 0 0 1 .094-.0894h.0048a1.4632 1.4632 0 0 1 .9266-.3057c.3404.0053.669.1264.9313.3434.0997.0819.1897.175.2681.2774.0351.0543.0665.1109.094.1694.0308.0603.056.1233.0753.1881.0191.0584.0333.1181.0424.1788a3.325 3.325 0 0 1-.0188.6397 3.2264 3.2264 0 0 1-.0753.635 1.417 1.417 0 0 1-.2963.5315 3.523 3.523 0 0 1-.5221.4562 1.2068 1.2068 0 0 1-.3434.1647c-.0047.0094-.0094.0094-.0141.0047Z",
|
|
892
975
|
fill: "#fff"
|
|
893
976
|
}),
|
|
894
|
-
/* @__PURE__ */
|
|
977
|
+
/* @__PURE__ */ jsx25("path", {
|
|
895
978
|
d: "M8.0842 2.4303a5.5547 5.5547 0 0 1 5.4656 4.8964c.0038.0666.0133.1327.0282.1977.0048.0893.0048.1787.0048.268l-.9125-.014a.1684.1684 0 0 0-.1694.1693v.1034a.1665.1665 0 0 0 .1646.1646c.1553 0 .3105 0 .4845.0048.1457.0094.2918.0094.4375 0a5.578 5.578 0 0 1-1.4356 3.5148 5.5779 5.5779 0 0 1-3.3528 1.7815c-.24.0338-.482.051-.7243.0517l.0141-.9078a.1682.1682 0 0 0-.0495-.1198.168.168 0 0 0-.1199-.0495l-.0093-1.2088c.1975.0047.3997 0 .6067-.0095a7.9564 7.9564 0 0 0 1.0442-.0893 8.7682 8.7682 0 0 0 .7432-.16l.381-.1128c.1129-.0471.3058-.1223.4233-.1694a.134.134 0 0 0 .0847-.1505c-.0376-.1599-.0988-.4327-.1082-.4704a1.4315 1.4315 0 0 0-.428-.7243 1.321 1.321 0 0 0-.3293-.2023.0807.0807 0 0 0-.0235-.0094c-.0094-.0047-.0141-.0047-.0235-.0094a1.1368 1.1368 0 0 0-.1646-.0564.2995.2995 0 0 1-.033-.0095 1.4732 1.4732 0 0 0-.3998-.047c-.2304 0-.4703 0-.7102-.0047l-.047-.1223a3.8915 3.8915 0 0 0 .3856-.3386 1.8455 1.8455 0 0 0 .4186-.6727 2.7539 2.7539 0 0 0 .1224-.7479 4.7543 4.7543 0 0 0 .0235-.7431 1.7253 1.7253 0 0 0-.2681-.7526A1.855 1.855 0 0 0 7.99 4.881L7.9148 3.512a.1667.1667 0 0 0 .1647-.1646c0-.1553 0-.3105.0047-.4845a3.3168 3.3168 0 0 0 0-.4328Z",
|
|
896
979
|
fill: "#BFF6F8"
|
|
897
980
|
}),
|
|
898
|
-
/* @__PURE__ */
|
|
981
|
+
/* @__PURE__ */ jsx25("path", {
|
|
899
982
|
d: "M7.0495 8.8602v.2023H6.739c-.6537.0047-1.411.0847-1.7074.7808a2.038 2.038 0 0 0-.127.334 1.7783 1.7783 0 0 0-.047.1975c-.0141.0753-.0235.1458-.0377.2211a.1333.1333 0 0 0 .08.1505l.3622.1412c.1028.0422.208.0784.3152.1081.2022.0565.4091.1082.6208.1552a7.578 7.578 0 0 0 1.3217.1364c.127 0 .2588 0 .3905-.0047l.0093 1.2089h-.1034a.1673.1673 0 0 0-.1694.1646c0 .1552.0047.3057 0 .4845a3.0925 3.0925 0 0 0-.0046.4186 5.564 5.564 0 0 1-2.8081-.9642 5.6563 5.6563 0 0 1-2.4083-4.0734l-.0142-.3104.9455.014a.1675.1675 0 0 0 .1646-.1693v-.1034A.164.164 0 0 0 3.4202 7.8a.1639.1639 0 0 0-.0631-.0123l-.9407-.0047c-.0094-.0188-.0141-.0188-.0235-.0376a1.7458 1.7458 0 0 0 .0705-.4186 5.65 5.65 0 0 1 .207-.9784c.0188-.047.033-.094.047-.1411a6.2069 6.2069 0 0 1 .1176-.3152c.033-.0752.0659-.1505.1035-.2257.0376-.0753.0705-.1505.1082-.2258.047-.094.0987-.1834.1505-.2728.033-.0565.0658-.113.1034-.1646a4.4284 4.4284 0 0 1 .2117-.3057 1.4975 1.4975 0 0 1 .0753-.1083 4.6344 4.6344 0 0 1 .3151-.3668v-.0048c.1176-.1223.2352-.2445.3622-.3575.0094-.0046.0141-.014.0236-.0188a5.6011 5.6011 0 0 1 3.3678-1.4017l-.0141.9032a.1684.1684 0 0 0 .1044.1565.1693.1693 0 0 0 .0649.0128h.1035l.0752 1.3687a1.8924 1.8924 0 0 0-1.6604.936 1.8814 1.8814 0 0 0-.1787 1.0255c.0195.3332.0699.6638.1505.9877.0718.2497.197.4808.367.6774.1128.1319.2407.2503.3809.3527Z",
|
|
900
983
|
fill: "#BFF6F8"
|
|
901
984
|
}),
|
|
902
|
-
/* @__PURE__ */
|
|
985
|
+
/* @__PURE__ */ jsx25("path", {
|
|
903
986
|
d: "M8.5169 11.2734a8.7996 8.7996 0 0 1-.6068.0095c-.1317.0046-.2634.0046-.3904.0046a7.5785 7.5785 0 0 1-1.3218-.1364 11.9326 11.9326 0 0 1-.6208-.1552 2.802 2.802 0 0 1-.3152-.1082l-.3621-.1411a.1329.1329 0 0 1-.08-.1505c.014-.0753.0235-.1458.0376-.2211a1.776 1.776 0 0 1 .047-.1975 2.0357 2.0357 0 0 1 .127-.334c.2964-.6961 1.0537-.776 1.7075-.7808h.3104v-.2022a2.2478 2.2478 0 0 1-.381-.3529 1.7947 1.7947 0 0 1-.3669-.6773 5.3925 5.3925 0 0 1-.1505-.9877 1.882 1.882 0 0 1 .1788-1.0255 1.8925 1.8925 0 0 1 1.6604-.936 1.8552 1.8552 0 0 1 1.618.7996c.147.2265.2389.4843.2681.7527.0116.248.0038.4964-.0235.7431a2.7542 2.7542 0 0 1-.1223.7479 1.8455 1.8455 0 0 1-.4186.6726 3.8915 3.8915 0 0 1-.3857.3387l.047.1223c.24.0047.4798.0047.7103.0047a1.4738 1.4738 0 0 1 .3998.047.3066.3066 0 0 0 .0329.0094c.0562.0146.1113.0335.1646.0565.0095.0047.0142.0047.0236.0094a.0807.0807 0 0 1 .0235.0094c.1191.051.23.119.3292.2023.2121.193.3612.4454.4281.7243.0094.0376.0706.3105.1082.4704a.1343.1343 0 0 1-.0847.1505c-.1176.0471-.3104.1223-.4233.1693l-.381.1129a8.7293 8.7293 0 0 1-.7432.1599 7.9394 7.9394 0 0 1-1.0442.0894Zm-.3622-.4327c.2305 0 .4563-.0047.682-.0188a.1434.1434 0 0 0 .047-.0048c.1318-.0093.2635-.0281.3999-.0422a11.673 11.673 0 0 0 1.1994-.254.463.463 0 0 0 .0753-.0236l.1599-.0611v-.0047l-.0047-.033-.0424-.1552a1.433 1.433 0 0 0-.1269-.287.6666.6666 0 0 0-.1741-.2163.9459.9459 0 0 0-.254-.1552 1.4498 1.4498 0 0 0-.6303-.0706h-.522c-.0048.0094-.033.1035-.0565.1505a.9362.9362 0 0 1-.2117.3058l-.0658.0517a.9494.9494 0 0 1-.2352.1505.8794.8794 0 0 1-.3622.08.9915.9915 0 0 1-.3857-.08 1.0392 1.0392 0 0 1-.16-.0846c-.0046-.0047-.0093-.0047-.0093-.0094a.7693.7693 0 0 1-.1364-.1082l-.0095-.0094a.9109.9109 0 0 1-.1034-.1317.0982.0982 0 0 1-.0188-.0282.7612.7612 0 0 1-.0518-.08c-.0047-.0094-.0047-.0235-.0094-.033-.0047-.0093-.0141-.0187-.0188-.0282a1.1857 1.1857 0 0 1-.047-.1505v-.008h-.0189l-.207-.0046h-.2633l-.334.0046a.9235.9235 0 0 0-.2775.0424.9675.9675 0 0 0-.4515.3057 1.5423 1.5423 0 0 0-.24.5598c0 .0141-.0093.0188-.0093.0329a.3188.3188 0 0 1 .0893.0141c.4524.1325.9127.2362 1.3782.3104.466.0629.9364.0876 1.4064.0739Zm.0094-1.9661c.0047.0047.0094.0047.0141-.0048a1.2082 1.2082 0 0 0 .3434-.1646 3.5214 3.5214 0 0 0 .522-.4562 1.4162 1.4162 0 0 0 .2964-.5316 3.2173 3.2173 0 0 0 .0753-.635 3.325 3.325 0 0 0 .0188-.6397 1.1087 1.1087 0 0 0-.0423-.1787 1.1236 1.1236 0 0 0-.0753-.1881 1.4405 1.4405 0 0 0-.0941-.1694 1.6808 1.6808 0 0 0-.268-.2775 1.4978 1.4978 0 0 0-.9314-.3434 1.4634 1.4634 0 0 0-.9266.3058h-.0047a.8462.8462 0 0 0-.0941.0893.3613.3613 0 0 0-.0847.0847.9924.9924 0 0 0-.0893.1082 1.2285 1.2285 0 0 0-.08.1317.4859.4859 0 0 0-.0659.141 1.3482 1.3482 0 0 0-.0893.4423c0 .1928.033.4327.047.6444.0055.195.0388.3882.0988.5738a1.337 1.337 0 0 0 .2822.4704c.251.2969.5852.5115.9596.6162a.518.518 0 0 0 .1693-.0141c.0047.0046.0094 0 .0188-.0047Zm.3763.3292a1.171 1.171 0 0 1-.5691.1364 1.1262 1.1262 0 0 1-.4563-.127c-.0423-.0188-.0141-.0094-.0282-.0188a.3052.3052 0 0 0-.0094.0423.0348.0348 0 0 1 .0047.0235c.0036.0474.0099.0945.0188.1412a.6723.6723 0 0 0 .0376.1034.5742.5742 0 0 0 .1411.174.5181.5181 0 0 0 .3952.113.5052.5052 0 0 0 .3292-.174.6086.6086 0 0 0 .1364-.414Z",
|
|
904
987
|
fill: "#528693"
|
|
905
988
|
}),
|
|
906
|
-
/* @__PURE__ */
|
|
989
|
+
/* @__PURE__ */ jsx25("path", {
|
|
907
990
|
d: "M8.0841 2.4302c.0094.144.0094.2886 0 .4327-.0047.174-.0047.3293-.0047.4845a.1664.1664 0 0 1-.1647.1646h-.1034a.169.169 0 0 1-.1694-.1693l.0141-.9031a5.6012 5.6012 0 0 0-3.3678 1.4017c-.0093.0047-.0141.014-.0235.0188-.127.1129-.2445.2351-.3622.3574v.0048a4.6344 4.6344 0 0 0-.3151.3668 1.5008 1.5008 0 0 0-.0753.1082 4.4277 4.4277 0 0 0-.2117.3057c-.0375.0518-.0705.1082-.1034.1647-.0518.0894-.1035.1787-.1505.2728-.0377.0753-.0753.1505-.1082.2258-.033.0752-.0706.1505-.1035.2258-.0423.1034-.08.207-.1176.3151a1.653 1.653 0 0 1-.047.1411 5.6503 5.6503 0 0 0-.207.9784 1.7462 1.7462 0 0 1-.0705.4186c.0093.0188.014.0188.0235.0377l.9407.0046a.164.164 0 0 1 .1646.1647v.1035a.1674.1674 0 0 1-.1646.1693l-.9454-.0141.014.3104a5.6565 5.6565 0 0 0 2.4084 4.0734 5.5628 5.5628 0 0 0 2.808.9642 3.0992 3.0992 0 0 1 .0048-.4185c.0047-.1788 0-.3293 0-.4846a.1676.1676 0 0 1 .1693-.1646h.1035a.168.168 0 0 1 .1199.0495.1683.1683 0 0 1 .0494.1198l-.0141.9079a5.3045 5.3045 0 0 0 .7244-.0518 5.5775 5.5775 0 0 0 4.7883-5.2963 3.4081 3.4081 0 0 1-.4375 0c-.174-.0047-.3292-.0047-.4844-.0047a.1668.1668 0 0 1-.1647-.1646V7.949a.1698.1698 0 0 1 .1045-.1565.1695.1695 0 0 1 .0649-.0129l.9125.0142c0-.0894 0-.1788-.0047-.2682a1.165 1.165 0 0 1-.0282-.1975 5.5545 5.5545 0 0 0-5.4657-4.8966v-.0013Zm-3.9182.922a5.9953 5.9953 0 0 1 6.7465-.621c.0423.0235.0847.0423.127.0706a4.117 4.117 0 0 1 .2822.1787c.0706.0423.1411.0894.207.1364.0753.0565.1505.1129.2258.174.0517.0423.1082.08.1599.1223a.7765.7765 0 0 0 .0659.0612c.047.047.094.0894.141.1364a4.829 4.829 0 0 1 .3105.3105c.0047 0 .0047.0046.0094.0046s.0047.0095.0094.0141c.1254.1345.2431.2758.3528.4234a.0049.0049 0 0 1 .0033.0013.0046.0046 0 0 1 .0014.0034 5.923 5.923 0 0 1 1.1759 2.9069c.0047.0658.0047.1128.0047.1693.0197.2142.0275.4293.0235.6444 0 .141-.0141.2822-.0235.4233v.0376c0 .0142-.0047.0283-.0047.0376a5.5345 5.5345 0 0 1-.0847.5598 5.9788 5.9788 0 0 1-6.737 4.8227 6.0162 6.0162 0 0 1-5.174-5.8796 6.404 6.404 0 0 1 .0376-.7385c.0047-.0282 0-.047.0047-.0753a5.9916 5.9916 0 0 1 2.1354-3.9242Z",
|
|
908
991
|
fill: "#528693"
|
|
909
992
|
})
|
|
@@ -913,10 +996,10 @@ var Customers = forwardRef16((delegated, ref) => {
|
|
|
913
996
|
Customers.displayName = "CustomersIcon";
|
|
914
997
|
|
|
915
998
|
// src/iconography/document.tsx
|
|
916
|
-
import { forwardRef as
|
|
917
|
-
import { jsx as
|
|
918
|
-
var Document =
|
|
919
|
-
return /* @__PURE__ */
|
|
999
|
+
import { forwardRef as forwardRef19 } from "react";
|
|
1000
|
+
import { jsx as jsx26, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
1001
|
+
var Document = forwardRef19((delegated, ref) => {
|
|
1002
|
+
return /* @__PURE__ */ jsxs18("svg", {
|
|
920
1003
|
ref,
|
|
921
1004
|
width: "34",
|
|
922
1005
|
height: "34",
|
|
@@ -924,11 +1007,11 @@ var Document = forwardRef17((delegated, ref) => {
|
|
|
924
1007
|
fill: "none",
|
|
925
1008
|
...delegated,
|
|
926
1009
|
children: [
|
|
927
|
-
/* @__PURE__ */
|
|
1010
|
+
/* @__PURE__ */ jsx26("path", {
|
|
928
1011
|
d: "m27.127 10.355.175.184V31.34l-20.745-.064V2.652h13.282l3.166 3.346 4.357 4.357h-.235Z",
|
|
929
1012
|
fill: "#bff6f8"
|
|
930
1013
|
}),
|
|
931
|
-
/* @__PURE__ */
|
|
1014
|
+
/* @__PURE__ */ jsx26("path", {
|
|
932
1015
|
d: "M27.823 15.88a132.896 132.896 0 0 0-.073-3.047c-.02-.5-.041-1-.065-1.5 0-.25-.019-.5-.054-.747l-.006-.019a.354.354 0 0 0-.087-.27 1.343 1.343 0 0 0-.13-.232 11.003 11.003 0 0 0-.829-.925c-.323-.354-.656-.7-.993-1.039-.662-.67-1.338-1.327-1.983-2.015-.476-.506-.954-1.008-1.433-1.507-.457-.439-.89-.9-1.3-1.383a3.636 3.636 0 0 0-.625-.678 1.162 1.162 0 0 0-.358-.186 2.48 2.48 0 0 0-.76-.06c-.314 0-.63-.007-.946-.007H6.56a.393.393 0 0 0-.387.387c0 9.543-.003 19.085-.009 28.627a.4.4 0 0 0 .4.395c6.913.029 13.827.05 20.742.063a.4.4 0 0 0 .4-.4c0-2.572.046-5.146.086-7.72.04-2.572.065-5.158.032-7.738ZM20.516 3.998c.84.886 1.677 1.776 2.526 2.652 1.045 1.077 2.04 2.264 3.12 3.328-1.907-.173-3.912-.038-5.806-.02 0-2.04.014-4.082 0-6.122.055.052.111.106.16.162Zm6.093 26.943a34.23 34.23 0 0 1-5.133-.017l-7.283-.026c-1.966-.008-3.932-.012-5.897-.012-.439.048-.88.066-1.322.051a2.234 2.234 0 0 0-.023-.5 33.236 33.236 0 0 1-.005-4.21c-.004-4.77-.004-9.541 0-14.313V4.757c0-.316-.14-1.806-.274-1.718.265-.04.534-.04.8 0H19.57c-.032 2.44-.007 4.88-.006 7.32a.4.4 0 0 0 .4.399c2.308.121 4.622.088 6.925-.1l.068.061c-.235 4.204-.044 8.472-.046 12.683 0 2.069-.2 4.258 0 6.318.123 1.338.708 1.066-.303 1.218v.003Z",
|
|
933
1016
|
fill: "#528693"
|
|
934
1017
|
})
|
|
@@ -938,25 +1021,27 @@ var Document = forwardRef17((delegated, ref) => {
|
|
|
938
1021
|
Document.displayName = "DocumentIcon";
|
|
939
1022
|
|
|
940
1023
|
// src/iconography/edit.tsx
|
|
941
|
-
import { forwardRef as
|
|
942
|
-
import { jsx as
|
|
943
|
-
var Edit =
|
|
944
|
-
return /* @__PURE__ */
|
|
1024
|
+
import { forwardRef as forwardRef20 } from "react";
|
|
1025
|
+
import { jsx as jsx27, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
1026
|
+
var Edit = forwardRef20((delegated, ref) => {
|
|
1027
|
+
return /* @__PURE__ */ jsxs19("svg", {
|
|
945
1028
|
ref,
|
|
946
|
-
width: "
|
|
947
|
-
height: "
|
|
948
|
-
viewBox: "0 0
|
|
1029
|
+
width: "22",
|
|
1030
|
+
height: "22",
|
|
1031
|
+
viewBox: "0 0 22 22",
|
|
949
1032
|
fill: "none",
|
|
950
1033
|
xmlns: "http://www.w3.org/2000/svg",
|
|
951
1034
|
...delegated,
|
|
952
1035
|
children: [
|
|
953
|
-
/* @__PURE__ */
|
|
954
|
-
d: "
|
|
955
|
-
fill: "#
|
|
1036
|
+
/* @__PURE__ */ jsx27("path", {
|
|
1037
|
+
d: "M18.4051 7.1124C18.41 7.09758 18.4248 7.10252 18.4347 7.09264C17.1224 5.77326 16.3152 5.0028 15.0079 3.67566L4.87616 13.916L3.71256 18.5L8.3771 16.9118L12.4481 13.0002C15.2506 10.2669 15.6069 9.86404 18.4051 7.1124Z",
|
|
1038
|
+
fill: "#BFF6F8"
|
|
956
1039
|
}),
|
|
957
|
-
/* @__PURE__ */
|
|
958
|
-
|
|
959
|
-
|
|
1040
|
+
/* @__PURE__ */ jsx27("path", {
|
|
1041
|
+
"fill-rule": "evenodd",
|
|
1042
|
+
"clip-rule": "evenodd",
|
|
1043
|
+
d: "M18.8601 6.66954C19.0934 6.90404 19.0929 7.28307 18.859 7.51694C18.8345 7.54136 18.8098 7.56205 18.7858 7.57957C17.5816 8.76397 16.8308 9.51236 16.1327 10.2081C15.2384 11.0996 14.4307 11.9047 12.8671 13.4298L12.8638 13.4329L8.79281 17.3445C8.7295 17.4053 8.6536 17.4515 8.57049 17.4798L3.90595 19.068C3.69763 19.1389 3.46719 19.0901 3.30551 18.9408C3.14383 18.7915 3.07686 18.5657 3.13101 18.3524L4.2946 13.7684C4.32091 13.6648 4.37444 13.5701 4.44964 13.494L14.5813 3.25369C14.6942 3.13962 14.848 3.07551 15.0085 3.07568C15.169 3.07586 15.3227 3.1403 15.4353 3.25461C16.1648 3.99512 16.7297 4.55358 17.3157 5.13286C17.7852 5.59695 18.2682 6.07441 18.8601 6.66954ZM18.0109 6.66797C18.0089 6.66601 18.007 6.66405 18.005 6.66209C17.6061 6.26368 17.2496 5.91124 16.8996 5.56518C16.4274 5.09833 15.9669 4.64309 15.4298 4.10229C15.2945 3.96604 15.1543 3.82435 15.0079 3.67568L4.87616 13.916L3.71256 18.5L8.3771 16.9118L12.4481 13.0002C14.0128 11.4741 14.815 10.6745 15.7054 9.78696C16.3298 9.16449 16.9976 8.49875 18.0024 7.50881C18.1309 7.38218 18.2649 7.25025 18.4051 7.11242C18.408 7.10379 18.4142 7.10186 18.4208 7.0998C18.4256 7.09834 18.4305 7.09681 18.4346 7.09274C18.4346 7.09277 18.4347 7.09272 18.4346 7.09274C18.2875 6.94479 18.1468 6.80367 18.0109 6.66797Z",
|
|
1044
|
+
fill: "#528693"
|
|
960
1045
|
})
|
|
961
1046
|
]
|
|
962
1047
|
});
|
|
@@ -964,10 +1049,10 @@ var Edit = forwardRef18((delegated, ref) => {
|
|
|
964
1049
|
Edit.displayName = "EditIcon";
|
|
965
1050
|
|
|
966
1051
|
// src/iconography/error.tsx
|
|
967
|
-
import { forwardRef as
|
|
968
|
-
import { jsx as
|
|
969
|
-
var Error2 =
|
|
970
|
-
return /* @__PURE__ */
|
|
1052
|
+
import { forwardRef as forwardRef21 } from "react";
|
|
1053
|
+
import { jsx as jsx28, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
1054
|
+
var Error2 = forwardRef21((delegated, ref) => {
|
|
1055
|
+
return /* @__PURE__ */ jsxs20("svg", {
|
|
971
1056
|
ref,
|
|
972
1057
|
xmlns: "http://www.w3.org/2000/svg",
|
|
973
1058
|
width: "22",
|
|
@@ -976,16 +1061,16 @@ var Error2 = forwardRef19((delegated, ref) => {
|
|
|
976
1061
|
viewBox: "0 0 22 22",
|
|
977
1062
|
...delegated,
|
|
978
1063
|
children: [
|
|
979
|
-
/* @__PURE__ */
|
|
1064
|
+
/* @__PURE__ */ jsxs20("g", {
|
|
980
1065
|
clipPath: "url(#clip0_1679_677)",
|
|
981
1066
|
children: [
|
|
982
|
-
/* @__PURE__ */
|
|
1067
|
+
/* @__PURE__ */ jsx28("path", {
|
|
983
1068
|
fillRule: "evenodd",
|
|
984
1069
|
clipRule: "evenodd",
|
|
985
1070
|
d: "M9.63864 18.2702C10.2437 19.3181 11.7562 19.3181 12.3613 18.2702L19.8485 5.3019C20.4536 4.25396 19.6973 2.94403 18.4872 2.94403L3.51271 2.94403C2.30265 2.94403 1.54636 4.25396 2.15139 5.3019L9.63864 18.2702ZM10.4355 12.9854C10.6864 13.4199 11.3135 13.4199 11.5643 12.9854L14.6686 7.60866C14.9195 7.17417 14.6059 6.63107 14.1042 6.63107L7.89566 6.63107C7.39396 6.63107 7.08039 7.17417 7.33124 7.60866L10.4355 12.9854Z",
|
|
986
1071
|
fill: "#EB1782"
|
|
987
1072
|
}),
|
|
988
|
-
/* @__PURE__ */
|
|
1073
|
+
/* @__PURE__ */ jsx28("path", {
|
|
989
1074
|
fillRule: "evenodd",
|
|
990
1075
|
clipRule: "evenodd",
|
|
991
1076
|
d: "M10.1583 17.9702C10.5323 18.6181 11.4676 18.6181 11.8417 17.9702L19.3289 5.0019C19.703 4.35396 19.2354 3.54403 18.4872 3.54403L3.51271 3.54403C2.76453 3.54403 2.29692 4.35396 2.67101 5.0019L10.1583 17.9702ZM12.084 13.2854C11.6022 14.1199 10.3977 14.1199 9.9159 13.2854L6.81163 7.90866C6.32984 7.07417 6.93207 6.03107 7.89566 6.03107L14.1042 6.03107C15.0678 6.03107 15.67 7.07418 15.1882 7.90866L12.084 13.2854ZM12.3613 18.2702C11.7562 19.3181 10.2437 19.3181 9.63864 18.2702L2.15139 5.3019C1.54636 4.25396 2.30265 2.94403 3.51271 2.94403L18.4872 2.94403C19.6973 2.94403 20.4536 4.25396 19.8485 5.3019L12.3613 18.2702ZM11.5643 12.9854C11.3135 13.4199 10.6864 13.4199 10.4355 12.9854L7.33124 7.60866C7.08039 7.17417 7.39396 6.63107 7.89566 6.63107L14.1042 6.63107C14.6059 6.63107 14.9195 7.17417 14.6686 7.60866L11.5643 12.9854Z",
|
|
@@ -993,10 +1078,10 @@ var Error2 = forwardRef19((delegated, ref) => {
|
|
|
993
1078
|
})
|
|
994
1079
|
]
|
|
995
1080
|
}),
|
|
996
|
-
/* @__PURE__ */
|
|
997
|
-
children: /* @__PURE__ */
|
|
1081
|
+
/* @__PURE__ */ jsx28("defs", {
|
|
1082
|
+
children: /* @__PURE__ */ jsx28("clipPath", {
|
|
998
1083
|
id: "clip0_1679_677",
|
|
999
|
-
children: /* @__PURE__ */
|
|
1084
|
+
children: /* @__PURE__ */ jsx28("rect", {
|
|
1000
1085
|
width: "22",
|
|
1001
1086
|
height: "22",
|
|
1002
1087
|
fill: "white"
|
|
@@ -1009,10 +1094,10 @@ var Error2 = forwardRef19((delegated, ref) => {
|
|
|
1009
1094
|
Error2.displayName = "ErrorIcon";
|
|
1010
1095
|
|
|
1011
1096
|
// src/iconography/folder.tsx
|
|
1012
|
-
import { forwardRef as
|
|
1013
|
-
import { jsx as
|
|
1014
|
-
var Folder =
|
|
1015
|
-
return /* @__PURE__ */
|
|
1097
|
+
import { forwardRef as forwardRef22 } from "react";
|
|
1098
|
+
import { jsx as jsx29, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
1099
|
+
var Folder = forwardRef22((delegated, ref) => {
|
|
1100
|
+
return /* @__PURE__ */ jsxs21("svg", {
|
|
1016
1101
|
ref,
|
|
1017
1102
|
width: "34",
|
|
1018
1103
|
height: "34",
|
|
@@ -1020,19 +1105,19 @@ var Folder = forwardRef20((delegated, ref) => {
|
|
|
1020
1105
|
fill: "none",
|
|
1021
1106
|
...delegated,
|
|
1022
1107
|
children: [
|
|
1023
|
-
/* @__PURE__ */
|
|
1108
|
+
/* @__PURE__ */ jsx29("path", {
|
|
1024
1109
|
d: "M29.451 12.006c0-4.26-1.3-3.498-3.767-3.498H14.26l-3.148-3.026H3.978c-2.285 0-2.199 1.236-2.199 3.829v16.218c0 2.037.2 3.037 2.174 3.037",
|
|
1025
1110
|
fill: "#bff6f8"
|
|
1026
1111
|
}),
|
|
1027
|
-
/* @__PURE__ */
|
|
1112
|
+
/* @__PURE__ */ jsx29("path", {
|
|
1028
1113
|
d: "M30.31 24.858a53.13 53.13 0 0 0 1.844-8.704c.178-1.544.589-4.137-2.56-4.26-3.15-.124-17.992-.063-20.52-.063-2.528 0-3.149 1.73-3.399 3.768s-2.16 12.968-2.16 12.968 20.658 0 22.695-.062c2.037-.062 3.36-1.34 4.1-3.647Z",
|
|
1029
1114
|
fill: "#bff6f8"
|
|
1030
1115
|
}),
|
|
1031
|
-
/* @__PURE__ */
|
|
1116
|
+
/* @__PURE__ */ jsx29("path", {
|
|
1032
1117
|
d: "M3.516 29.141a.581.581 0 0 1-.3-.1A1.978 1.978 0 0 1 1.5 27.855a5.648 5.648 0 0 1-.3-2.362V12.451c0-.5-.01-1.004-.02-1.511-.048-1.2-.027-2.401.06-3.598.211-2.26 1.805-2.444 3.559-2.444h3.724a17.764 17.764 0 0 1 2.477 0c.342.055.652.233.871.5l2.046 1.97c.062.058.133.137.208.223.106.13.224.248.353.354a.488.488 0 0 1 .162-.022h9.972a15.821 15.821 0 0 1 3.12.121 2.89 2.89 0 0 1 2.188 3.282c.65.05 1.276.273 1.811.647 1.413 1.065 1.159 2.959.955 4.48l-.03.216a46.22 46.22 0 0 1-1.835 8.253 5.346 5.346 0 0 1-2.951 3.819 6.528 6.528 0 0 1-2.133.357s-.212 0-.318-.008c-4.376.052-8.636.06-12.224.06l-9.678-.009Zm4.207-1.15c4.092 0 8.183-.005 12.274-.016h.38c1.588 0 3.176-.008 4.762-.024a9.645 9.645 0 0 0 1.676-.08c1.647-.311 2.44-1.778 2.999-3.172a48.96 48.96 0 0 0 1.8-8.72l.021-.185c.163-.77.12-1.57-.125-2.317-.413-.9-1.4-1-2.464-1.026-2.966-.072-6.159-.107-9.76-.107-3.368 0-6.735.03-10.094.066a2.44 2.44 0 0 0-2.556 1.547 9.554 9.554 0 0 0-.45 2.212 184.339 184.339 0 0 1-.617 3.822l-.125.742c-.407 2.42-.823 4.84-1.246 7.259h3.525Zm-3.66-21.93c-.786 0-1.315.114-1.531.682a5.51 5.51 0 0 0-.176 2.069c.008.22.016.435.016.639v15.547c0 .434-.006.868.016 1.3.044.825.239 1.273.679 1.51a820.157 820.157 0 0 0 1.656-9.732c.067-.413.117-.845.17-1.284.079-1.175.329-2.332.741-3.434.812-1.843 2.481-2.1 4.163-2.105h2.7c2.354-.006 4.709-.01 7.064-.011h1.784c1.975 0 3.951.007 5.927.032l1.386-.01h.286l-.006-.033c-.131-.769-.268-1.565-.9-1.9a3.324 3.324 0 0 0-1.498-.268c-.2 0-.4.007-.594.013-.178.005-.35.01-.514.012H16.504c-.182 0-.4.017-.628.034-.274.02-.57.043-.853.043-.4.027-.8-.055-1.155-.24A9.295 9.295 0 0 1 12.55 7.67a28.33 28.33 0 0 0-.533-.492 13.702 13.702 0 0 1-1.09-1.067l-.04-.044-6.825-.006Z",
|
|
1033
1118
|
fill: "#528693"
|
|
1034
1119
|
}),
|
|
1035
|
-
/* @__PURE__ */
|
|
1120
|
+
/* @__PURE__ */ jsx29("path", {
|
|
1036
1121
|
d: "M31.61 12.13a3.713 3.713 0 0 0-1.91-.63 2.729 2.729 0 0 0-2-3.259 15.839 15.839 0 0 0-3.092-.12h-8.99c-.321 0-.644.005-.966 0-.262 0-.03.116-.193.042-.237-.107-.5-.478-.68-.654l-1.93-1.854c-.3-.289-.458-.5-.864-.56a17.461 17.461 0 0 0-2.463 0H4.798c-1.8 0-3.17.22-3.362 2.264-.157 1.674-.04 3.413-.04 5.097v12.64c-.089.903.008 1.814.285 2.678a1.899 1.899 0 0 0 1.64 1.1c.058.038.124.06.192.063 7.304 0 14.61.034 21.912-.053a6.325 6.325 0 0 0 2.367-.334 5.186 5.186 0 0 0 2.83-3.61.357.357 0 0 0 .007-.085 45.972 45.972 0 0 0 1.827-8.217c.198-1.484.54-3.463-.846-4.508ZM10.936 5.84c-.045-.023-.054-.045 0 0ZM2.187 26.31c-.031-.581-.016-1.167-.016-1.748V9.451c-.1-.93-.042-1.87.174-2.78.35-.922 1.416-.805 2.237-.805H10.962c.04.035.077.073.112.113.49.558 1.088 1.047 1.624 1.56.383.446.808.853 1.27 1.216.607.375 1.825.133 2.531.133 2.976 0 5.952.007 8.928 0a5.983 5.983 0 0 1 2.699.268c.8.423.9 1.446 1.055 2.314-.661-.023-1.328.01-1.914 0-1.975-.025-3.95-.03-5.925-.032-3.85 0-7.696.008-11.548.015-1.689 0-3.23.283-3.98 1.986a19.563 19.563 0 0 0-.9 4.67 793.307 793.307 0 0 1-1.695 9.978c-.715-.24-.982-.809-1.032-1.778ZM31.808 16a50.136 50.136 0 0 1-1.78 8.727.347.347 0 0 0-.03.045c-.599 1.493-1.444 2.973-3.155 3.299a9.703 9.703 0 0 1-1.699.082c-1.714.017-3.43.02-5.144.025-4.432.013-8.864.019-13.294.017H3.959c.436-2.497.865-4.996 1.289-7.497.253-1.514.517-3.025.731-4.544a9.83 9.83 0 0 1 .464-2.268 2.66 2.66 0 0 1 2.74-1.674c6.616-.07 13.25-.12 19.864.041 1.013.025 2.164.1 2.641 1.143.269.842.31 1.74.12 2.604Z",
|
|
1037
1122
|
fill: "#528693"
|
|
1038
1123
|
})
|
|
@@ -1042,10 +1127,10 @@ var Folder = forwardRef20((delegated, ref) => {
|
|
|
1042
1127
|
Folder.displayName = "FolderIcon";
|
|
1043
1128
|
|
|
1044
1129
|
// src/iconography/frontends.tsx
|
|
1045
|
-
import { forwardRef as
|
|
1046
|
-
import { jsx as
|
|
1047
|
-
var Frontends =
|
|
1048
|
-
return /* @__PURE__ */
|
|
1130
|
+
import { forwardRef as forwardRef23 } from "react";
|
|
1131
|
+
import { jsx as jsx30, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
1132
|
+
var Frontends = forwardRef23((delegated, ref) => {
|
|
1133
|
+
return /* @__PURE__ */ jsxs22("svg", {
|
|
1049
1134
|
ref,
|
|
1050
1135
|
width: "23",
|
|
1051
1136
|
height: "22",
|
|
@@ -1053,45 +1138,45 @@ var Frontends = forwardRef21((delegated, ref) => {
|
|
|
1053
1138
|
fill: "none",
|
|
1054
1139
|
...delegated,
|
|
1055
1140
|
children: [
|
|
1056
|
-
/* @__PURE__ */
|
|
1141
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1057
1142
|
d: "M2.76 3.61a.5.5 0 0 1 .5-.5h15.707a.5.5 0 0 1 .5.5V14.2a.5.5 0 0 1-.5.5H3.26a.5.5 0 0 1-.5-.5V3.61Z",
|
|
1058
1143
|
fill: "#fff"
|
|
1059
1144
|
}),
|
|
1060
|
-
/* @__PURE__ */
|
|
1145
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1061
1146
|
fillRule: "evenodd",
|
|
1062
1147
|
clipRule: "evenodd",
|
|
1063
1148
|
d: "M3.26 2.31h15.707a1.3 1.3 0 0 1 1.3 1.3V14.2a1.3 1.3 0 0 1-1.3 1.3H3.26a1.3 1.3 0 0 1-1.3-1.3V3.61a1.3 1.3 0 0 1 1.3-1.3Zm0 .8a.5.5 0 0 0-.5.5V14.2a.5.5 0 0 0 .5.5h15.707a.5.5 0 0 0 .5-.5V3.61a.5.5 0 0 0-.5-.5H3.26Z",
|
|
1064
1149
|
fill: "#528693"
|
|
1065
1150
|
}),
|
|
1066
|
-
/* @__PURE__ */
|
|
1151
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1067
1152
|
d: "M8.997 15.497h4.233v1.507H8.997v-1.507Z",
|
|
1068
1153
|
fill: "#BFF6F8"
|
|
1069
1154
|
}),
|
|
1070
|
-
/* @__PURE__ */
|
|
1155
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1071
1156
|
fillRule: "evenodd",
|
|
1072
1157
|
clipRule: "evenodd",
|
|
1073
1158
|
d: "M8.197 14.697h5.833v3.107H8.197v-3.107Zm.8.8v1.507h4.233v-1.507H8.997Z",
|
|
1074
1159
|
fill: "#528693"
|
|
1075
1160
|
}),
|
|
1076
|
-
/* @__PURE__ */
|
|
1161
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1077
1162
|
d: "M6.588 17.404c0-.22.179-.4.4-.4h8.314a.4.4 0 0 1 0 .8H6.988a.4.4 0 0 1-.4-.4Z",
|
|
1078
1163
|
fill: "#528693"
|
|
1079
1164
|
}),
|
|
1080
|
-
/* @__PURE__ */
|
|
1165
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1081
1166
|
d: "M20.548 7.125a.5.5 0 0 1 .5.5V18.7a.5.5 0 0 1-.5.5H14.53a.5.5 0 0 1-.5-.5V7.625a.5.5 0 0 1 .5-.5h6.018Z",
|
|
1082
1167
|
fill: "#fff"
|
|
1083
1168
|
}),
|
|
1084
|
-
/* @__PURE__ */
|
|
1169
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1085
1170
|
fillRule: "evenodd",
|
|
1086
1171
|
clipRule: "evenodd",
|
|
1087
1172
|
d: "M21.848 7.625V18.7a1.3 1.3 0 0 1-1.3 1.3H14.53a1.3 1.3 0 0 1-1.3-1.3V7.625a1.3 1.3 0 0 1 1.3-1.3h6.018a1.3 1.3 0 0 1 1.3 1.3Zm-.8 0a.5.5 0 0 0-.5-.5H14.53a.5.5 0 0 0-.5.5V18.7a.5.5 0 0 0 .5.5h6.018a.5.5 0 0 0 .5-.5V7.625Z",
|
|
1088
1173
|
fill: "#528693"
|
|
1089
1174
|
}),
|
|
1090
|
-
/* @__PURE__ */
|
|
1175
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1091
1176
|
d: "M18.207 17.014a.668.668 0 1 1-1.336 0 .668.668 0 0 1 1.336 0Z",
|
|
1092
1177
|
fill: "#BFF6F8"
|
|
1093
1178
|
}),
|
|
1094
|
-
/* @__PURE__ */
|
|
1179
|
+
/* @__PURE__ */ jsx30("path", {
|
|
1095
1180
|
fillRule: "evenodd",
|
|
1096
1181
|
clipRule: "evenodd",
|
|
1097
1182
|
d: "M18.707 17.014a1.168 1.168 0 1 1-2.336 0 1.168 1.168 0 0 1 2.336 0Zm-1.168.668a.668.668 0 1 0 0-1.336.668.668 0 0 0 0 1.336Z",
|
|
@@ -1103,10 +1188,10 @@ var Frontends = forwardRef21((delegated, ref) => {
|
|
|
1103
1188
|
Frontends.displayName = "FrontendsIcon";
|
|
1104
1189
|
|
|
1105
1190
|
// src/iconography/fulfilment.tsx
|
|
1106
|
-
import { forwardRef as
|
|
1107
|
-
import { jsx as
|
|
1108
|
-
var Fulfilment =
|
|
1109
|
-
return /* @__PURE__ */
|
|
1191
|
+
import { forwardRef as forwardRef24 } from "react";
|
|
1192
|
+
import { jsx as jsx31, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
1193
|
+
var Fulfilment = forwardRef24((delegated, ref) => {
|
|
1194
|
+
return /* @__PURE__ */ jsxs23("svg", {
|
|
1110
1195
|
ref,
|
|
1111
1196
|
width: "22",
|
|
1112
1197
|
height: "23",
|
|
@@ -1114,45 +1199,45 @@ var Fulfilment = forwardRef22((delegated, ref) => {
|
|
|
1114
1199
|
fill: "none",
|
|
1115
1200
|
...delegated,
|
|
1116
1201
|
children: [
|
|
1117
|
-
/* @__PURE__ */
|
|
1202
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1118
1203
|
d: "M1.232 5.397c0-.591.426-1.097 1.009-1.198l8.621-1.487c.12-.021.244-.024.365-.008l8.484 1.115c.605.08 1.057.595 1.057 1.205v11.699c0 .563-.387 1.052-.934 1.183l-8.51 2.022a1.214 1.214 0 0 1-.56 0L2.17 17.904a1.216 1.216 0 0 1-.937-1.183V5.397Z",
|
|
1119
1204
|
fill: "#BFF6F8"
|
|
1120
1205
|
}),
|
|
1121
|
-
/* @__PURE__ */
|
|
1206
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1122
1207
|
d: "M1.232 5.397c0-.591.426-1.097 1.009-1.198l8.621-1.487c.12-.021.244-.024.365-.008l8.484 1.115c.605.08 1.057.595 1.057 1.205v11.699c0 .563-.387 1.052-.934 1.183l-8.51 2.022a1.214 1.214 0 0 1-.56 0L2.17 17.904a1.216 1.216 0 0 1-.937-1.183V5.397Z",
|
|
1123
1208
|
fill: "#BFF6F8"
|
|
1124
1209
|
}),
|
|
1125
|
-
/* @__PURE__ */
|
|
1210
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1126
1211
|
fillRule: "evenodd",
|
|
1127
1212
|
clipRule: "evenodd",
|
|
1128
1213
|
d: "M20.147 16.723V5.024a.595.595 0 0 0-.517-.59L11.146 3.32a.595.595 0 0 0-.178.003L2.346 4.811a.595.595 0 0 0-.493.586v11.324c0 .276.19.516.458.579l8.596 2.024c.09.021.183.021.273 0l8.51-2.022a.595.595 0 0 0 .457-.58ZM2.241 4.199c-.583.1-1.01.607-1.01 1.198v11.324c0 .564.389 1.054.938 1.183l8.595 2.024c.184.044.376.044.56 0l8.51-2.023c.547-.13.934-.62.934-1.182V5.024c0-.61-.452-1.126-1.057-1.205l-8.484-1.115a1.216 1.216 0 0 0-.365.008L2.241 4.199Z",
|
|
1129
1214
|
fill: "#528693"
|
|
1130
1215
|
}),
|
|
1131
|
-
/* @__PURE__ */
|
|
1216
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1132
1217
|
d: "M14.643 8.787a.608.608 0 0 1-.748-.591v-2.85l3.941-.872v3.074a.608.608 0 0 1-.467.591l-2.726.648Z",
|
|
1133
1218
|
fill: "#BFF6F8"
|
|
1134
1219
|
}),
|
|
1135
|
-
/* @__PURE__ */
|
|
1220
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1136
1221
|
d: "M14.643 8.787a.608.608 0 0 1-.748-.591v-2.85l3.941-.872v3.074a.608.608 0 0 1-.467.591l-2.726.648Z",
|
|
1137
1222
|
fill: "#fff"
|
|
1138
1223
|
}),
|
|
1139
|
-
/* @__PURE__ */
|
|
1224
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1140
1225
|
fillRule: "evenodd",
|
|
1141
1226
|
clipRule: "evenodd",
|
|
1142
1227
|
d: "m17.836 4.474-3.941.871v2.85c0 .393.366.683.748.592l2.726-.648a.608.608 0 0 0 .467-.591V4.474Zm-.62.773-2.7.597v2.335l2.7-.642v-2.29Z",
|
|
1143
1228
|
fill: "#528693"
|
|
1144
1229
|
}),
|
|
1145
|
-
/* @__PURE__ */
|
|
1230
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1146
1231
|
fillRule: "evenodd",
|
|
1147
1232
|
clipRule: "evenodd",
|
|
1148
1233
|
d: "m11.268 6.38 9.045-1.785-.12-.61-9.243 1.826L1.793 4.43l-.093.614 8.947 1.349v13.232h.62V6.381Z",
|
|
1149
1234
|
fill: "#528693"
|
|
1150
1235
|
}),
|
|
1151
|
-
/* @__PURE__ */
|
|
1236
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1152
1237
|
d: "M4.531 10.81c0-.074.066-.13.14-.12l1.276.193V9.384c0-.118.15-.167.22-.071l2.046 2.822a.122.122 0 0 1-.018.163l-2.047 1.795A.122.122 0 0 1 5.947 14v-1.317l-1.313-.198a.122.122 0 0 1-.103-.12V10.81Z",
|
|
1153
1238
|
fill: "#fff"
|
|
1154
1239
|
}),
|
|
1155
|
-
/* @__PURE__ */
|
|
1240
|
+
/* @__PURE__ */ jsx31("path", {
|
|
1156
1241
|
fillRule: "evenodd",
|
|
1157
1242
|
clipRule: "evenodd",
|
|
1158
1243
|
d: "m5.947 12.684-1.312-.198a.122.122 0 0 1-.104-.12V10.81c0-.074.066-.13.14-.12l1.276.193V9.384c0-.118.15-.167.22-.071l2.046 2.822a.122.122 0 0 1-.018.163l-2.047 1.795A.122.122 0 0 1 5.947 14v-1.317Zm-.621-2.522v-.778c0-.72.92-1.018 1.343-.436l2.047 2.823a.742.742 0 0 1-.112.994l-2.046 1.794a.742.742 0 0 1-1.232-.558v-.783l-.784-.118a.742.742 0 0 1-.632-.734V10.81c0-.454.405-.801.854-.733l.562.085Z",
|
|
@@ -1164,10 +1249,10 @@ var Fulfilment = forwardRef22((delegated, ref) => {
|
|
|
1164
1249
|
Fulfilment.displayName = "FulfilmentIcon";
|
|
1165
1250
|
|
|
1166
1251
|
// src/iconography/glasses.tsx
|
|
1167
|
-
import { forwardRef as
|
|
1168
|
-
import { jsx as
|
|
1169
|
-
var Glasses =
|
|
1170
|
-
return /* @__PURE__ */
|
|
1252
|
+
import { forwardRef as forwardRef25 } from "react";
|
|
1253
|
+
import { jsx as jsx32, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
1254
|
+
var Glasses = forwardRef25((delegated, ref) => {
|
|
1255
|
+
return /* @__PURE__ */ jsxs24("svg", {
|
|
1171
1256
|
ref,
|
|
1172
1257
|
width: "20",
|
|
1173
1258
|
height: "15",
|
|
@@ -1176,45 +1261,45 @@ var Glasses = forwardRef23((delegated, ref) => {
|
|
|
1176
1261
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1177
1262
|
...delegated,
|
|
1178
1263
|
children: [
|
|
1179
|
-
/* @__PURE__ */
|
|
1264
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1180
1265
|
fillRule: "evenodd",
|
|
1181
1266
|
clipRule: "evenodd",
|
|
1182
1267
|
d: "M7.4856 2.0673c-.3158-.7572-1.2453-1.0361-1.9258-.578l-3.42 2.3025c-.8613.5798-.7287 1.8856.2315 2.2806l.1216.05.2282-.5549-.1216-.05c-.517-.2127-.5884-.9158-.1246-1.228l3.42-2.3025c.3664-.2467.8669-.0965 1.037.3112l.0748.1795a.3.3 0 0 0 .5537-.231l-.0748-.1795Z",
|
|
1183
1268
|
fill: "#528693"
|
|
1184
1269
|
}),
|
|
1185
|
-
/* @__PURE__ */
|
|
1270
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1186
1271
|
d: "m9.7363 8.289-.2116.453-.906-.4233.2116-.453.906.4234Z",
|
|
1187
1272
|
fill: "#528793"
|
|
1188
1273
|
}),
|
|
1189
|
-
/* @__PURE__ */
|
|
1274
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1190
1275
|
d: "M4.391 9.9236c1.5958.7593 3.5051.0811 4.2644-1.5148.7593-1.596.081-3.5052-1.5148-4.2644-1.5959-.7593-3.5051-.0811-4.2644 1.5148-.7593 1.5958-.0811 3.505 1.5148 4.2644Z",
|
|
1191
1276
|
fill: "#BFF6F8"
|
|
1192
1277
|
}),
|
|
1193
|
-
/* @__PURE__ */
|
|
1278
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1194
1279
|
d: "M3.1883 8.7645a3.2004 3.2004 0 0 1-.3446-.514l5.955-2.1168c.0388.203.0579.4094.0568.6162L3.1883 8.7644Zm4.8102-4.212L2.468 6.517a3.2001 3.2001 0 0 0 .1588 1.2118l6.0129-2.136a3.2002 3.2002 0 0 0-.6412-1.0403Z",
|
|
1195
1280
|
fill: "#fff"
|
|
1196
1281
|
}),
|
|
1197
|
-
/* @__PURE__ */
|
|
1282
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1198
1283
|
fillRule: "evenodd",
|
|
1199
1284
|
clipRule: "evenodd",
|
|
1200
1285
|
d: "M4.4255 9.3845c1.4463.6881 3.1766.0735 3.8647-1.3728.688-1.4463.0735-3.1765-1.3728-3.8646-1.4463-.6881-3.1765-.0735-3.8646 1.3728-.6882 1.4462-.0735 3.1765 1.3727 3.8646Zm-.2577.5418c1.7455.8305 3.8337.0887 4.6642-1.6568.8304-1.7455.0887-3.8338-1.6568-4.6642-1.7455-.8305-3.8338-.0887-4.6643 1.6568-.8304 1.7455-.0886 3.8337 1.6569 4.6642Z",
|
|
1201
1286
|
fill: "#528793"
|
|
1202
1287
|
}),
|
|
1203
|
-
/* @__PURE__ */
|
|
1288
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1204
1289
|
d: "M11.3275 12.7751c1.5959.7593 3.5051.0811 4.2644-1.5148.7593-1.5959.0811-3.5051-1.5148-4.2644-1.5959-.7593-3.5051-.081-4.2644 1.5148-.7593 1.5959-.0811 3.5052 1.5148 4.2644Z",
|
|
1205
1290
|
fill: "#BFF6F8"
|
|
1206
1291
|
}),
|
|
1207
|
-
/* @__PURE__ */
|
|
1292
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1208
1293
|
d: "M10.1248 11.616a3.2048 3.2048 0 0 1-.3446-.5139l5.9551-2.1168c.0388.203.0578.4094.0568.6161l-5.6673 2.0146Zm4.8102-4.212L9.4045 9.3687a3.1998 3.1998 0 0 0 .1588 1.2117l6.0129-2.1358a3.1995 3.1995 0 0 0-.6412-1.0404Z",
|
|
1209
1294
|
fill: "#fff"
|
|
1210
1295
|
}),
|
|
1211
|
-
/* @__PURE__ */
|
|
1296
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1212
1297
|
fillRule: "evenodd",
|
|
1213
1298
|
clipRule: "evenodd",
|
|
1214
1299
|
d: "M11.3621 12.2361c1.4462.6881 3.1765.0734 3.8646-1.3728.6881-1.4463.0735-3.1766-1.3728-3.8647-1.4463-.688-3.1765-.0735-3.8646 1.3728-.6881 1.4463-.0735 3.1766 1.3728 3.8647Zm-.2578.5418c1.7455.8304 3.8337.0887 4.6642-1.6568.8305-1.7455.0887-3.8338-1.6568-4.6643-1.7455-.8304-3.8338-.0887-4.6642 1.6568-.8305 1.7455-.0887 3.8338 1.6568 4.6643Z",
|
|
1215
1300
|
fill: "#528793"
|
|
1216
1301
|
}),
|
|
1217
|
-
/* @__PURE__ */
|
|
1302
|
+
/* @__PURE__ */ jsx32("path", {
|
|
1218
1303
|
fillRule: "evenodd",
|
|
1219
1304
|
clipRule: "evenodd",
|
|
1220
1305
|
d: "M14.7461 5.0551c.7572-.3158 1.614.14 1.7751.9444l.81 4.0424c.204 1.0181-.809 1.8527-1.7692 1.4577l-.1216-.05.2283-.5549.1216.05c.517.2127 1.0625-.2367.9526-.7849l-.81-4.0424c-.0868-.4331-.5481-.6786-.9558-.5085l-.1794.0748a.3.3 0 0 1-.231-.5538l.1794-.0748Z",
|
|
@@ -1226,10 +1311,10 @@ var Glasses = forwardRef23((delegated, ref) => {
|
|
|
1226
1311
|
Glasses.displayName = "GlassesIcon";
|
|
1227
1312
|
|
|
1228
1313
|
// src/iconography/graphQL.tsx
|
|
1229
|
-
import { forwardRef as
|
|
1230
|
-
import { jsx as
|
|
1231
|
-
var GraphQL =
|
|
1232
|
-
return /* @__PURE__ */
|
|
1314
|
+
import { forwardRef as forwardRef26 } from "react";
|
|
1315
|
+
import { jsx as jsx33, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
1316
|
+
var GraphQL = forwardRef26((delegated, ref) => {
|
|
1317
|
+
return /* @__PURE__ */ jsxs25("svg", {
|
|
1233
1318
|
ref,
|
|
1234
1319
|
width: "23",
|
|
1235
1320
|
height: "22",
|
|
@@ -1238,97 +1323,97 @@ var GraphQL = forwardRef24((delegated, ref) => {
|
|
|
1238
1323
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1239
1324
|
...delegated,
|
|
1240
1325
|
children: [
|
|
1241
|
-
/* @__PURE__ */
|
|
1326
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1242
1327
|
d: "M10.479 3.4a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1243
1328
|
fill: "#BFF6F8"
|
|
1244
1329
|
}),
|
|
1245
|
-
/* @__PURE__ */
|
|
1330
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1246
1331
|
fillRule: "evenodd",
|
|
1247
1332
|
clipRule: "evenodd",
|
|
1248
1333
|
d: "M11.879 5.4a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
1249
1334
|
fill: "#528693"
|
|
1250
1335
|
}),
|
|
1251
|
-
/* @__PURE__ */
|
|
1336
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1252
1337
|
d: "M10.479 3.4a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1253
1338
|
fill: "#BFF6F8"
|
|
1254
1339
|
}),
|
|
1255
|
-
/* @__PURE__ */
|
|
1340
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1256
1341
|
fillRule: "evenodd",
|
|
1257
1342
|
clipRule: "evenodd",
|
|
1258
1343
|
d: "M11.879 5.4a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
1259
1344
|
fill: "#528693"
|
|
1260
1345
|
}),
|
|
1261
|
-
/* @__PURE__ */
|
|
1346
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1262
1347
|
d: "M3.679 7.2a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1263
1348
|
fill: "#BFF6F8"
|
|
1264
1349
|
}),
|
|
1265
|
-
/* @__PURE__ */
|
|
1350
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1266
1351
|
fillRule: "evenodd",
|
|
1267
1352
|
clipRule: "evenodd",
|
|
1268
1353
|
d: "M5.079 9.2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
1269
1354
|
fill: "#528693"
|
|
1270
1355
|
}),
|
|
1271
|
-
/* @__PURE__ */
|
|
1356
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1272
1357
|
d: "M17.279 7.2a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1273
1358
|
fill: "#BFF6F8"
|
|
1274
1359
|
}),
|
|
1275
|
-
/* @__PURE__ */
|
|
1360
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1276
1361
|
fillRule: "evenodd",
|
|
1277
1362
|
clipRule: "evenodd",
|
|
1278
1363
|
d: "M18.679 9.2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
1279
1364
|
fill: "#528693"
|
|
1280
1365
|
}),
|
|
1281
|
-
/* @__PURE__ */
|
|
1366
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1282
1367
|
d: "M3.679 7.2a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1283
1368
|
fill: "#BFF6F8"
|
|
1284
1369
|
}),
|
|
1285
|
-
/* @__PURE__ */
|
|
1370
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1286
1371
|
fillRule: "evenodd",
|
|
1287
1372
|
clipRule: "evenodd",
|
|
1288
1373
|
d: "M5.079 9.2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
1289
1374
|
fill: "#528693"
|
|
1290
1375
|
}),
|
|
1291
|
-
/* @__PURE__ */
|
|
1376
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1292
1377
|
d: "M17.279 7.2a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1293
1378
|
fill: "#BFF6F8"
|
|
1294
1379
|
}),
|
|
1295
|
-
/* @__PURE__ */
|
|
1380
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1296
1381
|
fillRule: "evenodd",
|
|
1297
1382
|
clipRule: "evenodd",
|
|
1298
1383
|
d: "M18.679 9.2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
1299
1384
|
fill: "#528693"
|
|
1300
1385
|
}),
|
|
1301
|
-
/* @__PURE__ */
|
|
1386
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1302
1387
|
d: "M3.679 14.8a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1303
1388
|
fill: "#BFF6F8"
|
|
1304
1389
|
}),
|
|
1305
|
-
/* @__PURE__ */
|
|
1390
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1306
1391
|
fillRule: "evenodd",
|
|
1307
1392
|
clipRule: "evenodd",
|
|
1308
1393
|
d: "M5.079 16.8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
1309
1394
|
fill: "#528693"
|
|
1310
1395
|
}),
|
|
1311
|
-
/* @__PURE__ */
|
|
1396
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1312
1397
|
d: "M17.279 14.8a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1313
1398
|
fill: "#fff"
|
|
1314
1399
|
}),
|
|
1315
|
-
/* @__PURE__ */
|
|
1400
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1316
1401
|
fillRule: "evenodd",
|
|
1317
1402
|
clipRule: "evenodd",
|
|
1318
1403
|
d: "M18.679 16.8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
1319
1404
|
fill: "#528693"
|
|
1320
1405
|
}),
|
|
1321
|
-
/* @__PURE__ */
|
|
1406
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1322
1407
|
d: "M10.479 18.75a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
1323
1408
|
fill: "#BFF6F8"
|
|
1324
1409
|
}),
|
|
1325
|
-
/* @__PURE__ */
|
|
1410
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1326
1411
|
fillRule: "evenodd",
|
|
1327
1412
|
clipRule: "evenodd",
|
|
1328
1413
|
d: "M11.879 20.75a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8ZM10.44 3.851a.3.3 0 0 1-.112.41l-3.5 2a.3.3 0 0 1-.298-.521l3.5-2a.3.3 0 0 1 .41.111ZM13.419 3.851a.3.3 0 0 0 .111.41l3.5 2a.3.3 0 0 0 .298-.521l-3.5-2a.3.3 0 0 0-.41.111Z",
|
|
1329
1414
|
fill: "#528693"
|
|
1330
1415
|
}),
|
|
1331
|
-
/* @__PURE__ */
|
|
1416
|
+
/* @__PURE__ */ jsx33("path", {
|
|
1332
1417
|
fillRule: "evenodd",
|
|
1333
1418
|
clipRule: "evenodd",
|
|
1334
1419
|
d: "M10.44 18.149a.3.3 0 0 0-.112-.41l-3.5-2a.3.3 0 0 0-.298.521l3.5 2a.3.3 0 0 0 .41-.111ZM13.419 18.149a.3.3 0 0 1 .111-.41l3.5-2a.3.3 0 0 1 .298.521l-3.5 2a.3.3 0 0 1-.41-.111ZM5.079 8.7a.3.3 0 0 1 .3.3v4a.3.3 0 1 1-.6 0V9a.3.3 0 0 1 .3-.3ZM18.679 8.7a.3.3 0 0 1 .3.3v4a.3.3 0 1 1-.6 0V9a.3.3 0 0 1 .3-.3ZM11.033 4.743a.3.3 0 0 1 .103.411l-4.8 8a.3.3 0 1 1-.514-.308l4.8-8a.3.3 0 0 1 .411-.103ZM12.725 4.743a.3.3 0 0 0-.103.411l4.8 8a.3.3 0 1 0 .514-.308l-4.8-8a.3.3 0 0 0-.411-.103ZM6.579 14.9a.3.3 0 0 1 .3-.3h10a.3.3 0 0 1 0 .6h-10a.3.3 0 0 1-.3-.3Z",
|
|
@@ -1340,10 +1425,10 @@ var GraphQL = forwardRef24((delegated, ref) => {
|
|
|
1340
1425
|
GraphQL.displayName = "GraphQLIcon";
|
|
1341
1426
|
|
|
1342
1427
|
// src/iconography/grid.tsx
|
|
1343
|
-
import { forwardRef as
|
|
1344
|
-
import { jsx as
|
|
1345
|
-
var Grid =
|
|
1346
|
-
return /* @__PURE__ */
|
|
1428
|
+
import { forwardRef as forwardRef27 } from "react";
|
|
1429
|
+
import { jsx as jsx34, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
1430
|
+
var Grid = forwardRef27((delegated, ref) => {
|
|
1431
|
+
return /* @__PURE__ */ jsxs26("svg", {
|
|
1347
1432
|
ref,
|
|
1348
1433
|
width: "22",
|
|
1349
1434
|
height: "23",
|
|
@@ -1351,71 +1436,71 @@ var Grid = forwardRef25((delegated, ref) => {
|
|
|
1351
1436
|
fill: "none",
|
|
1352
1437
|
...delegated,
|
|
1353
1438
|
children: [
|
|
1354
|
-
/* @__PURE__ */
|
|
1439
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1355
1440
|
d: "M2.86 4.197c0-.353.286-.639.64-.639h2.453c.352 0 .639.286.639.64V6.65a.639.639 0 0 1-.64.64H3.5a.639.639 0 0 1-.639-.64V4.197Z",
|
|
1356
1441
|
fill: "#BFF6F8"
|
|
1357
1442
|
}),
|
|
1358
|
-
/* @__PURE__ */
|
|
1443
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1359
1444
|
fillRule: "evenodd",
|
|
1360
1445
|
clipRule: "evenodd",
|
|
1361
1446
|
d: "M3.5 2.92h2.452c.706 0 1.279.571 1.279 1.277V6.65c0 .706-.573 1.279-1.279 1.279H3.5A1.278 1.278 0 0 1 2.221 6.65V4.197c0-.706.572-1.278 1.278-1.278Zm0 .638a.639.639 0 0 0-.64.64V6.65c0 .353.286.64.64.64h2.452a.639.639 0 0 0 .64-.64V4.197a.639.639 0 0 0-.64-.639H3.5Z",
|
|
1362
1447
|
fill: "#528693"
|
|
1363
1448
|
}),
|
|
1364
|
-
/* @__PURE__ */
|
|
1449
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1365
1450
|
d: "M9.134 4.197c0-.353.286-.639.64-.639h2.453c.352 0 .639.286.639.64V6.65a.639.639 0 0 1-.64.64H9.774a.639.639 0 0 1-.639-.64V4.197Z",
|
|
1366
1451
|
fill: "#BFF6F8"
|
|
1367
1452
|
}),
|
|
1368
|
-
/* @__PURE__ */
|
|
1453
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1369
1454
|
fillRule: "evenodd",
|
|
1370
1455
|
clipRule: "evenodd",
|
|
1371
1456
|
d: "M9.773 2.92h2.454c.705 0 1.278.571 1.278 1.277V6.65c0 .706-.573 1.279-1.278 1.279H9.773A1.278 1.278 0 0 1 8.495 6.65V4.197c0-.706.573-1.278 1.278-1.278Zm0 .638a.639.639 0 0 0-.639.64V6.65c0 .353.287.64.64.64h2.453a.639.639 0 0 0 .639-.64V4.197a.639.639 0 0 0-.64-.639H9.774Z",
|
|
1372
1457
|
fill: "#528693"
|
|
1373
1458
|
}),
|
|
1374
|
-
/* @__PURE__ */
|
|
1459
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1375
1460
|
d: "M15.408 4.197a.64.64 0 0 1 .64-.639H18.5c.353 0 .639.286.639.64V6.65a.639.639 0 0 1-.64.64h-2.453a.64.64 0 0 1-.639-.64V4.197Z",
|
|
1376
1461
|
fill: "#BFF6F8"
|
|
1377
1462
|
}),
|
|
1378
|
-
/* @__PURE__ */
|
|
1463
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1379
1464
|
fillRule: "evenodd",
|
|
1380
1465
|
clipRule: "evenodd",
|
|
1381
1466
|
d: "M16.048 2.92H18.5c.706 0 1.278.571 1.278 1.277V6.65c0 .706-.572 1.279-1.278 1.279h-2.453A1.278 1.278 0 0 1 14.77 6.65V4.197c0-.706.572-1.278 1.278-1.278Zm0 .638a.639.639 0 0 0-.64.64V6.65c0 .353.287.64.64.64H18.5a.639.639 0 0 0 .639-.64V4.197a.639.639 0 0 0-.64-.639h-2.452Z",
|
|
1382
1467
|
fill: "#528693"
|
|
1383
1468
|
}),
|
|
1384
|
-
/* @__PURE__ */
|
|
1469
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1385
1470
|
d: "M2.86 10.492a.64.64 0 0 1 .64-.639h8.727a.64.64 0 0 1 .639.64v2.453a.64.64 0 0 1-.64.639H3.5a.639.639 0 0 1-.639-.64v-2.453Z",
|
|
1386
1471
|
fill: "#BFF6F8"
|
|
1387
1472
|
}),
|
|
1388
|
-
/* @__PURE__ */
|
|
1473
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1389
1474
|
fillRule: "evenodd",
|
|
1390
1475
|
clipRule: "evenodd",
|
|
1391
1476
|
d: "M3.5 9.214h8.726c.706 0 1.279.573 1.279 1.278v2.454c0 .706-.573 1.278-1.279 1.278H3.5a1.278 1.278 0 0 1-1.278-1.278v-2.454c0-.705.572-1.278 1.278-1.278Zm0 .64a.64.64 0 0 0-.64.639v2.453c0 .353.286.639.64.639h8.726a.64.64 0 0 0 .64-.64v-2.453a.64.64 0 0 0-.64-.639H3.5Z",
|
|
1392
1477
|
fill: "#528693"
|
|
1393
1478
|
}),
|
|
1394
|
-
/* @__PURE__ */
|
|
1479
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1395
1480
|
d: "M2.86 16.788c0-.353.286-.64.64-.64h2.453c.352 0 .639.287.639.64v2.453a.639.639 0 0 1-.64.639H3.5a.639.639 0 0 1-.639-.64v-2.452Z",
|
|
1396
1481
|
fill: "#BFF6F8"
|
|
1397
1482
|
}),
|
|
1398
|
-
/* @__PURE__ */
|
|
1483
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1399
1484
|
fillRule: "evenodd",
|
|
1400
1485
|
clipRule: "evenodd",
|
|
1401
1486
|
d: "M3.5 15.51h2.452c.706 0 1.279.572 1.279 1.278v2.453c0 .706-.573 1.278-1.279 1.278H3.5a1.278 1.278 0 0 1-1.278-1.278v-2.453c0-.706.572-1.279 1.278-1.279Zm0 .639a.639.639 0 0 0-.64.639v2.453c0 .353.286.639.64.639h2.452a.639.639 0 0 0 .64-.64v-2.452a.639.639 0 0 0-.64-.64H3.5Z",
|
|
1402
1487
|
fill: "#528693"
|
|
1403
1488
|
}),
|
|
1404
|
-
/* @__PURE__ */
|
|
1489
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1405
1490
|
d: "M9.134 16.788c0-.353.286-.64.64-.64h2.453c.352 0 .639.287.639.64v2.453a.639.639 0 0 1-.64.639H9.774a.639.639 0 0 1-.639-.64v-2.452Z",
|
|
1406
1491
|
fill: "#BFF6F8"
|
|
1407
1492
|
}),
|
|
1408
|
-
/* @__PURE__ */
|
|
1493
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1409
1494
|
fillRule: "evenodd",
|
|
1410
1495
|
clipRule: "evenodd",
|
|
1411
1496
|
d: "M9.773 15.51h2.454c.705 0 1.278.572 1.278 1.278v2.453c0 .706-.573 1.278-1.278 1.278H9.773a1.278 1.278 0 0 1-1.278-1.278v-2.453c0-.706.573-1.279 1.278-1.279Zm0 .639a.639.639 0 0 0-.639.639v2.453c0 .353.287.639.64.639h2.453a.639.639 0 0 0 .639-.64v-2.452a.639.639 0 0 0-.64-.64H9.774Z",
|
|
1412
1497
|
fill: "#528693"
|
|
1413
1498
|
}),
|
|
1414
|
-
/* @__PURE__ */
|
|
1499
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1415
1500
|
d: "M15.408 10.492a.64.64 0 0 1 .64-.639H18.5a.64.64 0 0 1 .639.64v8.748a.639.639 0 0 1-.64.639h-2.453a.64.64 0 0 1-.639-.64v-8.747Z",
|
|
1416
1501
|
fill: "#fff"
|
|
1417
1502
|
}),
|
|
1418
|
-
/* @__PURE__ */
|
|
1503
|
+
/* @__PURE__ */ jsx34("path", {
|
|
1419
1504
|
fillRule: "evenodd",
|
|
1420
1505
|
clipRule: "evenodd",
|
|
1421
1506
|
d: "M16.048 9.214H18.5c.706 0 1.278.573 1.278 1.278v8.749c0 .706-.572 1.278-1.278 1.278h-2.453a1.278 1.278 0 0 1-1.278-1.278v-8.748c0-.706.572-1.279 1.278-1.279Zm0 .64a.639.639 0 0 0-.64.639v8.748c0 .353.287.639.64.639H18.5a.639.639 0 0 0 .639-.64v-8.747a.639.639 0 0 0-.64-.64h-2.452Z",
|
|
@@ -1427,25 +1512,25 @@ var Grid = forwardRef25((delegated, ref) => {
|
|
|
1427
1512
|
Grid.displayName = "GridIcon";
|
|
1428
1513
|
|
|
1429
1514
|
// src/iconography/hooks.tsx
|
|
1430
|
-
import { forwardRef as
|
|
1431
|
-
import { jsx as
|
|
1432
|
-
var Hooks =
|
|
1433
|
-
return /* @__PURE__ */
|
|
1515
|
+
import { forwardRef as forwardRef28 } from "react";
|
|
1516
|
+
import { jsx as jsx35, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
1517
|
+
var Hooks = forwardRef28((delegated, ref) => {
|
|
1518
|
+
return /* @__PURE__ */ jsxs27("svg", {
|
|
1434
1519
|
ref,
|
|
1435
1520
|
width: "34",
|
|
1436
1521
|
height: "34",
|
|
1437
1522
|
viewBox: "0 0 34 34",
|
|
1438
1523
|
...delegated,
|
|
1439
1524
|
children: [
|
|
1440
|
-
/* @__PURE__ */
|
|
1525
|
+
/* @__PURE__ */ jsx35("path", {
|
|
1441
1526
|
d: "M13.3225 23.6578C13.0084 22.0351 13.5197 20.5568 12.6857 18.9973C12.4168 18.4953 11.6734 17.7783 11.2432 17.1868C11.2253 17.1594 10.0781 17.3302 9.94314 17.3387C9.47021 17.3644 8.99589 17.3404 8.52798 17.267C7.59689 17.1111 6.69399 16.8183 5.84862 16.3981C4.74695 15.8041 3.7796 14.9893 3.00698 14.0046C2.37959 13.2696 2.28997 12.947 2.36167 12.4951C2.43991 12.0661 2.60457 11.6575 2.84565 11.2941C3.0628 10.9126 3.3155 10.5525 3.6004 10.2186C4.20467 9.40329 4.90114 8.66059 5.67597 8.00526C7.1812 6.66607 8.94036 5.64323 10.8488 4.99758C10.945 4.9677 11.0462 4.9578 11.1463 4.96851C11.2464 4.97922 11.3433 5.0103 11.4309 5.05985C13.7169 6.42218 15.8764 10.6346 14.9264 14.2376C15.5967 14.9032 16.2002 15.6328 16.7283 16.416C17.3604 17.5667 17.7305 18.8427 17.8124 20.153C17.8172 21.2619 18.114 22.35 18.6728 23.3078C18.8458 23.5565 19.0677 23.7672 19.3249 23.9272C19.5821 24.0872 19.8692 24.1931 20.1687 24.2384C20.4682 24.2837 20.7738 24.2675 21.0668 24.1907C21.3598 24.1139 21.6341 23.9782 21.8729 23.7918C22.5136 23.3928 22.9879 22.775 23.2079 22.0531C23.5986 20.4193 23.5429 18.7105 23.0466 17.1057C22.8008 16.081 22.4987 15.0706 22.1418 14.0791C22.1141 13.9989 22.1138 13.9117 22.141 13.8313C22.1681 13.7508 22.2211 13.6817 22.2917 13.6346C22.3623 13.5874 22.4466 13.5651 22.5312 13.5709C22.6159 13.5767 22.6963 13.6105 22.7598 13.6668C27.5817 16.8038 29.5893 22.3785 25.1712 26.7259C22.3748 29.4685 17.5614 29.71 14.8641 26.69C14.0858 25.8371 13.5531 24.7893 13.3225 23.6578ZM3.66927 11.8092C3.6155 11.9035 3.25699 12.4092 3.27492 12.6158C3.28435 12.7857 3.49946 13.0187 3.65229 13.1979C5.40898 15.3584 7.9723 17.0075 10.7602 16.4339C10.0158 15.3584 9.59501 13.664 10.4639 12.6781C11.4677 11.5403 12.9291 11.9705 14.2018 13.4583C14.4443 12.3703 14.3885 11.237 14.0405 10.178C13.6783 8.96125 13.0611 7.8356 12.23 6.87597C12.0055 6.62502 11.3875 6.08726 11.1272 5.86272C11.0935 5.82993 11.0507 5.80813 11.0043 5.80021C10.958 5.79229 10.9104 5.79863 10.8677 5.81838C10.6073 5.93442 10.0431 6.18537 9.73558 6.32878C9.00471 6.69136 8.2959 7.0968 7.61285 7.54298C6.77126 8.12514 6.0017 8.80508 5.32029 9.56854C4.9037 10.0182 4.52028 10.4974 4.17307 11.0026C3.99193 11.2714 3.8306 11.5403 3.66927 11.8092ZM12.1659 13.1178C11.2073 13.0281 10.947 13.9329 11.2696 14.9461C11.6254 15.8488 12.1118 16.6943 12.7131 17.4557C13.1759 18.0368 13.5615 18.6755 13.8603 19.3558C14.0978 20.4137 14.1792 21.5008 14.1018 22.5823C14.152 23.5687 14.4576 24.5251 14.9886 25.3579C15.5197 26.1906 16.258 26.871 17.1312 27.3325C20.2238 28.9817 24.0419 27.4127 25.7627 24.5447C27.9939 20.8077 26.0759 17.2849 23.1211 14.8386C24.3853 17.9755 25.774 24.0428 21.0455 25.1004C20.4748 25.2583 19.8697 25.2411 19.3089 25.051C18.748 24.8609 18.2572 24.5067 17.9001 24.0343C17.2459 22.9093 16.917 21.6247 16.9501 20.3237C16.9237 18.7904 16.4227 17.3029 15.516 16.066C14.8905 15.3131 13.3131 13.23 12.1659 13.1178Z",
|
|
1442
1527
|
fill: "#528693"
|
|
1443
1528
|
}),
|
|
1444
|
-
/* @__PURE__ */
|
|
1529
|
+
/* @__PURE__ */ jsx35("path", {
|
|
1445
1530
|
d: "M11.2701 14.9461C10.9475 13.9328 11.2079 13.0281 12.1664 13.1177C13.3136 13.2337 14.891 15.3131 15.5099 16.0659C16.4166 17.3028 16.9176 18.7903 16.944 20.3237C16.9109 21.6246 17.2398 22.9092 17.894 24.0342C18.2511 24.5066 18.7419 24.8609 19.3028 25.051C19.8636 25.2411 20.4687 25.2583 21.0394 25.1003C25.7717 24.0427 24.383 17.9754 23.115 14.8385C26.0727 17.2848 27.9907 20.8076 25.7566 24.5446C24.0358 27.4127 20.2177 28.9788 17.1251 27.3325C16.2519 26.871 15.5136 26.1905 14.9825 25.3578C14.4515 24.5251 14.1459 23.5686 14.0957 22.5823C14.1731 21.5007 14.0917 20.4137 13.8542 19.3557C13.5555 18.6755 13.1698 18.0368 12.707 17.4556C12.108 16.6938 11.6239 15.8483 11.2701 14.9461Z",
|
|
1446
1531
|
fill: "white"
|
|
1447
1532
|
}),
|
|
1448
|
-
/* @__PURE__ */
|
|
1533
|
+
/* @__PURE__ */ jsx35("path", {
|
|
1449
1534
|
d: "M14.0388 10.178C14.3868 11.237 14.4426 12.3703 14.2001 13.4583C12.9274 11.9705 11.4642 11.5403 10.4622 12.6781C9.59333 13.664 10.0141 15.3584 10.7585 16.4339C7.97061 17.0075 5.40729 15.3584 3.65061 13.1979C3.49871 13.0187 3.28361 12.7856 3.27323 12.6158C3.25531 12.4092 3.61381 11.9073 3.66759 11.8092C3.82892 11.5403 3.99025 11.2714 4.1695 11.0025C4.51762 10.4973 4.90198 10.018 5.31955 9.56851C6.00096 8.80504 6.77052 8.12511 7.61211 7.54294C8.29586 7.09798 9.00531 6.6938 9.73673 6.33251C10.0415 6.18911 10.6056 5.93815 10.8689 5.82211C10.9115 5.80236 10.9591 5.79603 11.0055 5.80395C11.0518 5.81186 11.0946 5.83366 11.1283 5.86645C11.3887 6.09099 12.0066 6.62875 12.2312 6.87971C13.0608 7.83849 13.677 8.96279 14.0388 10.178Z",
|
|
1450
1535
|
fill: "#bff6f8"
|
|
1451
1536
|
})
|
|
@@ -1455,10 +1540,10 @@ var Hooks = forwardRef26((delegated, ref) => {
|
|
|
1455
1540
|
Hooks.displayName = "HooksIcon";
|
|
1456
1541
|
|
|
1457
1542
|
// src/iconography/image.tsx
|
|
1458
|
-
import { forwardRef as
|
|
1459
|
-
import { jsx as
|
|
1460
|
-
var Image =
|
|
1461
|
-
return /* @__PURE__ */
|
|
1543
|
+
import { forwardRef as forwardRef29 } from "react";
|
|
1544
|
+
import { jsx as jsx36, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
1545
|
+
var Image = forwardRef29((delegated, ref) => {
|
|
1546
|
+
return /* @__PURE__ */ jsxs28("svg", {
|
|
1462
1547
|
ref,
|
|
1463
1548
|
width: "35",
|
|
1464
1549
|
height: "34",
|
|
@@ -1466,36 +1551,36 @@ var Image = forwardRef27((delegated, ref) => {
|
|
|
1466
1551
|
fill: "none",
|
|
1467
1552
|
...delegated,
|
|
1468
1553
|
children: [
|
|
1469
|
-
/* @__PURE__ */
|
|
1554
|
+
/* @__PURE__ */ jsx36("path", {
|
|
1470
1555
|
d: "M4.5449 27.7359c.3388 0 .6846.022 1.0195.042.3068.02.5997.039.8766.039 3.5723 0 7.6094.022 11.6635.044 4.248.021 8.514.043 12.2852.044-.049-2.3769-.071-4.7558-.082-7.1367-3.1415 2.7317-7.9652 3.1445-10.595 3.1445-.5347 0-1.0585-.0159-1.5632-.0469-2.234-.132-4.9477-.8067-5.1796-3.2615-.1269-1.3484.6527-2.4448 2.2639-3.1985-4.268.6437-8.1471 2.8707-11.4096 4.9977a.3454.3454 0 0 1-.091.0439v.4088c0 .4858.009.9756.019 1.4674a33.4635 33.4635 0 0 1-.055 3.4813 5.0885 5.0885 0 0 1 .8477-.069ZM17.029 17.5917a5.6858 5.6858 0 0 0-2.6058 1.2694 2.0877 2.0877 0 0 0-.6307 1.6592 2.3925 2.3925 0 0 0 1.0425 1.7092 7.1495 7.1495 0 0 0 4.0531.9216c.4998 0 .9826-.018 1.4343-.035l.181-.008a5.5863 5.5863 0 0 1-3.4744-5.5164Zm-.6167-.9995a1.7152 1.7152 0 0 1 .9995.2239.8253.8253 0 0 1 .3139.7846v.2289c.0265.4098.0854.8169.1759 1.2174a4.9303 4.9303 0 0 0 1.0475 2.134c.0899.1.1839.1999.2829.2999a5.7271 5.7271 0 0 0 2.5078 1.2994c.2678.0716.5444.1052.8216.0999a9.0042 9.0042 0 0 0 1.999-.3118 15.8686 15.8686 0 0 0 5.7833-2.6688c-.05-2.5598-.044-5.1975-.037-7.8433.004-1.9677.0064-3.9335.007-5.8972H27.593c-7.2895.007-16.5002.007-23.8547.007v15.4028a31.1853 31.1853 0 0 1 8.9497-4.36 16.6115 16.6115 0 0 1 2.8337-.5547 8.6182 8.6182 0 0 1 .8866-.062h.004Z",
|
|
1471
1556
|
fill: "#528693"
|
|
1472
1557
|
}),
|
|
1473
|
-
/* @__PURE__ */
|
|
1558
|
+
/* @__PURE__ */ jsx36("path", {
|
|
1474
1559
|
d: "M17.1459 17.4508a6.0604 6.0604 0 0 0-2.7987 1.3364 2.252 2.252 0 0 0-.3003 2.8154c.1855.287.4337.5281.7261.7049 1.5103 1.0665 3.8202.9705 5.5974.8996.1929-.007.3808-.019.5737-.033a5.4836 5.4836 0 0 1-3.7982-5.7233Zm13.2607 3.0985c-3.0985 2.8327-8.2551 3.4614-12.2462 3.2215-1.9991-.1189-4.8527-.7077-5.0866-3.1725-.1699-1.8111 1.3554-2.8287 2.8986-3.3874-4.4489.4698-8.484 2.6877-12.1942 5.1046a.2277.2277 0 0 1-.137.041v.4997c0 1.6773.111 3.3984-.048 5.0717a14.6766 14.6766 0 0 1 2.8507 0c7.3516 0 16.6652.0889 24.0507.0889-.055-2.4958-.077-4.9836-.088-7.4715v.004Zm-13.0568-3.6572c.3518.2588.2519.5657.2779.9395.0276.4151.087.8275.1779 1.2334a5.0658 5.0658 0 0 0 1.0695 2.176c.0929.1.1889.2079.2888.2999a5.805 5.805 0 0 0 2.5508 1.3253 6.195 6.195 0 0 0 2.9576-.2259 15.777 15.777 0 0 0 5.7293-2.6577c-.0149-4.6418.015-9.2876.011-13.9265H27.593c-7.3226.008-16.5842.008-23.9548.008v15.6927a31.2829 31.2829 0 0 1 9.0768-4.4529 16.616 16.616 0 0 1 2.8176-.5518 3.1826 3.1826 0 0 1 1.8172.14Z",
|
|
1475
1560
|
fill: "#528693"
|
|
1476
1561
|
}),
|
|
1477
|
-
/* @__PURE__ */
|
|
1562
|
+
/* @__PURE__ */ jsx36("path", {
|
|
1478
1563
|
d: "M31.1013 28.4156a.276.276 0 0 1-.1699.2599.23.23 0 0 1-.1399.04c-.5198 0-1.0695-.01-1.6293-.03-.5597-.02-1.0995-.02-1.6192-.02-4.6278.01-9.1657.03-13.7036.03h-.2598c-1.6893 0-3.3485-.02-5.0277-.04-1.5492-.01-3.1185-.03-4.7777-.04-.14 0-.9296-.02-.9296-.02v-.0899s0-2.089.01-2.6488c.01-.4198.03-.8396.05-1.2594.03-.6397.06-1.2694.06-1.8991 0-.9495-.03-1.8991-.06-2.8486-.03-.9496-.05-1.9091-.05-2.8587V5.6763a.3898.3898 0 0 1 .3898-.3898H6.453c7.4165 0 16.932 0 24.3485.01a.3797.3797 0 0 1 .3799.3798c0 1.9691 0 3.9682.01 5.9672.01 5.5484.026 11.2747-.09 16.7721Z",
|
|
1479
1564
|
fill: "#528693"
|
|
1480
1565
|
}),
|
|
1481
|
-
/* @__PURE__ */
|
|
1566
|
+
/* @__PURE__ */ jsx36("path", {
|
|
1482
1567
|
d: "M17.1459 17.4508a5.4837 5.4837 0 0 0 3.7982 5.7273 15.752 15.752 0 0 1-.5737.033c-1.7772.0669-4.0871.1629-5.5974-.8996a2.2512 2.2512 0 0 1-1.0702-1.6565 2.2528 2.2528 0 0 1 .6444-1.8638 6.0613 6.0613 0 0 1 2.7987-1.3404Z",
|
|
1483
1568
|
fill: "#fff"
|
|
1484
1569
|
}),
|
|
1485
|
-
/* @__PURE__ */
|
|
1570
|
+
/* @__PURE__ */ jsx36("path", {
|
|
1486
1571
|
d: "M30.4067 20.5453c.011 2.4879.033 4.9757.085 7.4595-7.3856 0-16.6992-.0849-24.0507-.0889H3.5903s.048-3.3984.048-5.0717v-.4997a.2277.2277 0 0 0 .137-.041c3.7132-2.4169 7.7483-4.6348 12.1942-5.1046-1.5433.5587-3.0685 1.5763-2.8986 3.3874.2339 2.4649 3.0915 3.0536 5.0866 3.1725 3.9941.2479 9.1507-.3808 12.2492-3.2135Z",
|
|
1487
1572
|
fill: "#fff"
|
|
1488
1573
|
}),
|
|
1489
|
-
/* @__PURE__ */
|
|
1574
|
+
/* @__PURE__ */ jsx36("path", {
|
|
1490
1575
|
d: "M30.4137 6.0561c0 4.6389-.026 9.2847-.011 13.9265a15.779 15.779 0 0 1-5.7303 2.6657 6.195 6.195 0 0 1-2.9576.2259 5.805 5.805 0 0 1-2.5508-1.3253c-.1-.1-.1999-.1999-.2889-.2999a5.0681 5.0681 0 0 1-1.0695-2.176 8.117 8.117 0 0 1-.1779-1.2334c-.026-.3738.074-.6807-.2778-.9396a3.1833 3.1833 0 0 0-1.8172-.1449 16.617 16.617 0 0 0-2.8177.5518 31.2832 31.2832 0 0 0-9.0767 4.4529V6.0642c7.3705 0 16.6322 0 23.9547-.008h2.8207Zm-2.8107 7.2486c1.4074-2.2839-.2768-4.9236-3.1725-4.7267a2.961 2.961 0 0 0-2.7933 1.7789 2.9598 2.9598 0 0 0-.2452 1.1377 3.074 3.074 0 0 0 1.6439 3.0414 3.0742 3.0742 0 0 0 1.1687.335 3.6157 3.6157 0 0 0 3.3984-1.5663Z",
|
|
1491
1576
|
fill: "#BFF6F8",
|
|
1492
1577
|
className: "structural-color"
|
|
1493
1578
|
}),
|
|
1494
|
-
/* @__PURE__ */
|
|
1579
|
+
/* @__PURE__ */ jsx36("path", {
|
|
1495
1580
|
d: "M26.8674 13.2568a2.31 2.31 0 0 0 .5707-1.8402 2.6545 2.6545 0 0 0-2.7177-2.232c-.093 0-.1889 0-.2809.011a2.3434 2.3434 0 0 0-1.6842.647 2.3448 2.3448 0 0 0-.5282.7534 2.3447 2.3447 0 0 0-.1974.8986 2.4539 2.4539 0 0 0 2.1839 2.7247c.1.007.1999.011.2999.011a3.1778 3.1778 0 0 0 2.3539-.9735ZM24.4275 8.578c2.8987-.2 4.5799 2.4428 3.1725 4.7267a3.6157 3.6157 0 0 1-3.3984 1.5663 3.0746 3.0746 0 0 1-2.8096-3.3764 2.9598 2.9598 0 0 1 .909-2.0919 2.962 2.962 0 0 1 2.1265-.8247Z",
|
|
1496
1581
|
fill: "#528693"
|
|
1497
1582
|
}),
|
|
1498
|
-
/* @__PURE__ */
|
|
1583
|
+
/* @__PURE__ */ jsx36("path", {
|
|
1499
1584
|
d: "M27.492 11.4106a2.3541 2.3541 0 0 1-.5817 1.8771 3.243 3.243 0 0 1-2.3989.9996c-.1059 0-.2079 0-.3098-.012a2.4985 2.4985 0 0 1-2.228-2.7787 2.394 2.394 0 0 1 .2004-.918 2.3912 2.3912 0 0 1 2.2585-1.4309c.0939-.008.1919-.012.2868-.012a2.7075 2.7075 0 0 1 2.7727 2.2749Z",
|
|
1500
1585
|
fill: "#fff"
|
|
1501
1586
|
})
|
|
@@ -1505,10 +1590,10 @@ var Image = forwardRef27((delegated, ref) => {
|
|
|
1505
1590
|
Image.displayName = "ImageIcon";
|
|
1506
1591
|
|
|
1507
1592
|
// src/iconography/info.tsx
|
|
1508
|
-
import { forwardRef as
|
|
1509
|
-
import { jsx as
|
|
1510
|
-
var Info =
|
|
1511
|
-
return /* @__PURE__ */
|
|
1593
|
+
import { forwardRef as forwardRef30 } from "react";
|
|
1594
|
+
import { jsx as jsx37, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
1595
|
+
var Info = forwardRef30((delegated, ref) => {
|
|
1596
|
+
return /* @__PURE__ */ jsxs29("svg", {
|
|
1512
1597
|
ref,
|
|
1513
1598
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1514
1599
|
width: "22",
|
|
@@ -1517,21 +1602,21 @@ var Info = forwardRef28((delegated, ref) => {
|
|
|
1517
1602
|
viewBox: "0 0 22 22",
|
|
1518
1603
|
...delegated,
|
|
1519
1604
|
children: [
|
|
1520
|
-
/* @__PURE__ */
|
|
1605
|
+
/* @__PURE__ */ jsx37("path", {
|
|
1521
1606
|
d: "M17.593 3.85212C17.593 4.67937 16.9224 5.34999 16.0952 5.34999C15.2679 5.34999 14.5973 4.67937 14.5973 3.85212C14.5973 3.02487 15.2679 2.35425 16.0952 2.35425C16.9224 2.35425 17.593 3.02487 17.593 3.85212Z",
|
|
1522
1607
|
fill: "#BFF6F8"
|
|
1523
1608
|
}),
|
|
1524
|
-
/* @__PURE__ */
|
|
1609
|
+
/* @__PURE__ */ jsx37("path", {
|
|
1525
1610
|
fillRule: "evenodd",
|
|
1526
1611
|
clipRule: "evenodd",
|
|
1527
1612
|
d: "M18.253 3.85212C18.253 5.04383 17.2869 6.00991 16.0952 6.00991C14.9035 6.00991 13.9374 5.04383 13.9374 3.85212C13.9374 2.66041 14.9035 1.69434 16.0952 1.69434C17.2869 1.69434 18.253 2.66041 18.253 3.85212ZM16.0952 5.34999C16.9224 5.34999 17.5931 4.67937 17.5931 3.85212C17.5931 3.02487 16.9224 2.35425 16.0952 2.35425C15.2679 2.35425 14.5973 3.02487 14.5973 3.85212C14.5973 4.67937 15.2679 5.34999 16.0952 5.34999Z",
|
|
1528
1613
|
fill: "#528693"
|
|
1529
1614
|
}),
|
|
1530
|
-
/* @__PURE__ */
|
|
1615
|
+
/* @__PURE__ */ jsx37("path", {
|
|
1531
1616
|
d: "M11.2267 19.6338C10.1339 19.5731 9.0685 19.2687 8.1091 18.743C6.45171 17.8422 5.90412 16.3181 6.67909 14.7659C7.26511 13.7065 7.9836 12.7256 8.81732 11.8468L8.91693 11.7313C9.29243 11.2963 9.68044 10.8467 10.0199 10.3976C10.4486 9.83253 10.8215 9.28929 10.6797 8.86312C10.5968 8.6196 10.3605 8.44373 9.9584 8.32457C9.83715 8.29874 9.71404 8.28256 9.59022 8.27617L9.50938 8.26941C9.26232 8.2834 9.01575 8.23452 8.79281 8.12735C8.54248 7.93066 8.64731 7.36817 8.77404 7.12204C8.87835 6.92966 9.02762 6.76522 9.2092 6.64266C9.39077 6.5201 9.59929 6.44304 9.81707 6.41802C10.0235 6.38077 10.2331 6.36335 10.4429 6.36598C11.4176 6.41652 12.3773 6.6275 13.2831 6.9904C14.9259 7.62106 15.7097 8.86885 15.3801 10.3284C15.1357 11.2718 14.6733 12.1451 14.0299 12.8781C13.8385 13.118 13.6419 13.3464 13.4458 13.5795L13.3415 13.7024C12.9232 14.1775 12.5323 14.6759 12.1707 15.1952L11.9564 15.5012C11.7156 15.8119 11.5223 16.1565 11.3827 16.5237C11.303 16.7335 11.308 16.966 11.3968 17.1721C11.4855 17.3783 11.651 17.5421 11.8583 17.6289C12.0086 17.6973 12.1701 17.7377 12.335 17.748C12.5957 17.7793 12.8648 17.8126 12.9712 18.0603C13.0139 18.1752 13.0313 18.298 13.0223 18.4203C13.0133 18.5425 12.9781 18.6615 12.9191 18.769C12.7552 19.0647 12.5066 19.305 12.2052 19.459C11.9037 19.6131 11.563 19.6739 11.2267 19.6338Z",
|
|
1532
1617
|
fill: "#BFF6F8"
|
|
1533
1618
|
}),
|
|
1534
|
-
/* @__PURE__ */
|
|
1619
|
+
/* @__PURE__ */ jsx37("path", {
|
|
1535
1620
|
fillRule: "evenodd",
|
|
1536
1621
|
clipRule: "evenodd",
|
|
1537
1622
|
d: "M11.2842 18.976L11.3049 18.9785C11.5112 19.0031 11.7201 18.9658 11.9049 18.8714C12.0891 18.7772 12.2409 18.6306 12.3411 18.4504C12.3471 18.4394 12.352 18.4277 12.3558 18.4158C12.3317 18.4124 12.3048 18.4091 12.2731 18.4053C12.0384 18.3881 11.8084 18.33 11.5936 18.2335C11.2334 18.0797 10.9456 17.7933 10.7906 17.433C10.6341 17.0694 10.6252 16.6594 10.7658 16.2894C10.9266 15.8663 11.1487 15.4689 11.4246 15.1101L11.6291 14.8181C11.6293 14.8178 11.629 14.8184 11.6291 14.8181C12.0038 14.2802 12.4092 13.763 12.8423 13.2707L12.9418 13.1535C12.9894 13.097 13.0361 13.0418 13.0821 12.9874C13.2314 12.8108 13.3734 12.6428 13.5141 12.4665L13.5237 12.4544L13.5339 12.4428C14.107 11.7899 14.5194 11.0128 14.7386 10.1733C14.8642 9.60674 14.7724 9.1134 14.5125 8.69961C14.2452 8.27422 13.7678 7.88337 13.0466 7.60647L13.0376 7.60304C12.2034 7.26882 11.3198 7.07373 10.4221 7.02572C10.2586 7.02444 10.0952 7.03841 9.93422 7.06745L9.91342 7.0712L9.89242 7.07362C9.77981 7.08656 9.67209 7.12639 9.57839 7.18964C9.48729 7.25113 9.41209 7.33296 9.35867 7.42842C9.35249 7.44171 9.33941 7.47402 9.32659 7.52286C9.31959 7.54951 9.31383 7.57671 9.30949 7.60325C9.36308 7.61115 9.41754 7.61364 9.47206 7.61055L9.51828 7.60793L9.63538 7.61773C9.79024 7.6263 9.94419 7.64682 10.0959 7.67913L10.1211 7.68451L10.1459 7.69185C10.6213 7.83272 11.1176 8.10198 11.3044 8.65041L11.3058 8.6547C11.4603 9.11879 11.309 9.5616 11.1547 9.87197C10.9947 10.194 10.7584 10.5161 10.546 10.7961C10.1932 11.2626 9.79323 11.726 9.4222 12.1559L9.4167 12.1622L9.30686 12.2896L9.29607 12.301C8.50411 13.1358 7.82119 14.0671 7.26353 15.0728C6.95101 15.7053 6.92585 16.2828 7.10297 16.7755C7.28379 17.2785 7.70442 17.772 8.42421 18.1631L8.42623 18.1642C9.29923 18.6426 10.2687 18.9197 11.2633 18.9749L11.2842 18.976ZM6.67909 14.7659C7.26511 13.7065 7.9836 12.7256 8.81732 11.8468L8.91693 11.7313C9.29243 11.2963 9.68044 10.8467 10.0199 10.3976C10.4486 9.83253 10.8215 9.28929 10.6797 8.86312C10.5968 8.6196 10.3605 8.44373 9.9584 8.32457C9.83715 8.29874 9.71404 8.28256 9.59022 8.27617L9.50938 8.26941C9.26232 8.2834 9.01575 8.23452 8.79281 8.12735C8.54248 7.93066 8.64731 7.36817 8.77404 7.12204C8.87835 6.92966 9.02762 6.76522 9.2092 6.64266C9.39077 6.5201 9.59929 6.44304 9.81707 6.41802C10.0235 6.38077 10.2331 6.36335 10.4429 6.36598C11.4176 6.41652 12.3773 6.6275 13.2831 6.9904C14.9259 7.62106 15.7097 8.86885 15.3801 10.3284C15.1357 11.2718 14.6733 12.1451 14.0299 12.8781C13.8828 13.0625 13.7326 13.2401 13.582 13.4182C13.5366 13.4719 13.4912 13.5256 13.4458 13.5795L13.3415 13.7024C12.9232 14.1775 12.5323 14.6759 12.1707 15.1952L11.9564 15.5012C11.7156 15.8119 11.5223 16.1565 11.3827 16.5237C11.303 16.7335 11.308 16.966 11.3968 17.1721C11.4855 17.3783 11.651 17.5421 11.8583 17.6289C12.0086 17.6973 12.1701 17.7377 12.335 17.748C12.5957 17.7793 12.8648 17.8126 12.9712 18.0603C13.0139 18.1752 13.0313 18.298 13.0223 18.4203C13.0133 18.5425 12.9781 18.6615 12.9191 18.769C12.7552 19.0647 12.5066 19.305 12.2052 19.459C11.9037 19.6131 11.563 19.6739 11.2267 19.6338C10.1339 19.5731 9.0685 19.2687 8.1091 18.743C6.45171 17.8422 5.90412 16.3181 6.67909 14.7659Z",
|
|
@@ -1543,17 +1628,17 @@ var Info = forwardRef28((delegated, ref) => {
|
|
|
1543
1628
|
Info.displayName = "InfoIcon";
|
|
1544
1629
|
|
|
1545
1630
|
// src/iconography/key.tsx
|
|
1546
|
-
import { forwardRef as
|
|
1547
|
-
import { jsx as
|
|
1548
|
-
var Key =
|
|
1549
|
-
return /* @__PURE__ */
|
|
1631
|
+
import { forwardRef as forwardRef31 } from "react";
|
|
1632
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
1633
|
+
var Key = forwardRef31((delegated, ref) => {
|
|
1634
|
+
return /* @__PURE__ */ jsx38("svg", {
|
|
1550
1635
|
ref,
|
|
1551
1636
|
viewBox: "0 0 24 25",
|
|
1552
1637
|
width: "24",
|
|
1553
1638
|
height: "25",
|
|
1554
1639
|
fill: "none",
|
|
1555
1640
|
...delegated,
|
|
1556
|
-
children: /* @__PURE__ */
|
|
1641
|
+
children: /* @__PURE__ */ jsx38("path", {
|
|
1557
1642
|
fill: "#BFF6F8",
|
|
1558
1643
|
stroke: "#528693",
|
|
1559
1644
|
d: "M23.486 5.617a6.308 6.308 0 0 0-2.738-4.03 6.314 6.314 0 0 0-2.335-.942 6.251 6.251 0 0 0-2.51.051c-.928.212-1.799.637-2.545 1.243a6.435 6.435 0 0 0-1.762 2.257 6.617 6.617 0 0 0-.11 5.42 3308.703 3308.703 0 0 1-3.087 3.164l-.042-.043c-.335-.34-1.163-1.187-1.495-1.537-.315-.333-.644-.403-.868-.403-.323 0-.616.138-.868.41-.273.291-.633.671-1.007 1.039-.326.32-.395.657-.396.884 0 .33.135.633.402.9.353.35 1.191 1.208 1.535 1.56l-.545.556-.048-.05c-.331-.337-1.155-1.18-1.484-1.526-.256-.269-.549-.405-.868-.405h-.007c-.222 0-.552.073-.864.409-.312.336-.65.686-1.025 1.058-.319.317-.385.653-.385.878 0 .328.13.625.39.883.355.355 1.195 1.216 1.543 1.573l-.048.05c-.218.221-.443.45-.663.685-.419.449-.65 1.048-.643 1.67a2.41 2.41 0 0 0 1.436 2.181c.284.123.588.187.896.189a2.286 2.286 0 0 0 1.592-.661c.067-.065.127-.127.186-.187l.057-.06 9.604-9.845c.899.388 1.72.562 2.504.528h.017c1.04 0 2.003-.232 2.864-.692a6.458 6.458 0 0 0 2.862-3.016c.595-1.293.75-2.743.455-4.19ZM14.437 7.04c-.016-.738.295-1.487.851-2.056.567-.578 1.312-.9 2.043-.88.755.014 1.475.331 2.003.884.529.553.823 1.298.82 2.072 0 1.631-1.26 2.904-2.866 2.904h-.002c-1.563-.001-2.815-1.283-2.849-2.924Z"
|
|
@@ -1563,37 +1648,37 @@ var Key = forwardRef29((delegated, ref) => {
|
|
|
1563
1648
|
Key.displayName = "KeyIcon";
|
|
1564
1649
|
|
|
1565
1650
|
// src/iconography/language.tsx
|
|
1566
|
-
import { forwardRef as
|
|
1567
|
-
import { jsx as
|
|
1568
|
-
var Language =
|
|
1569
|
-
return /* @__PURE__ */
|
|
1651
|
+
import { forwardRef as forwardRef32 } from "react";
|
|
1652
|
+
import { jsx as jsx39, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
1653
|
+
var Language = forwardRef32((delegated, ref) => {
|
|
1654
|
+
return /* @__PURE__ */ jsxs30("svg", {
|
|
1570
1655
|
ref,
|
|
1571
1656
|
width: "34",
|
|
1572
1657
|
height: "34",
|
|
1573
1658
|
viewBox: "0 0 34 34",
|
|
1574
1659
|
...delegated,
|
|
1575
1660
|
children: [
|
|
1576
|
-
/* @__PURE__ */
|
|
1661
|
+
/* @__PURE__ */ jsx39("path", {
|
|
1577
1662
|
d: "M30.5976 16.5063C30.5976 22.7593 24.5125 27.8369 16.992 27.8369C15.3044 27.8426 13.6268 27.577 12.0234 27.0503C11.952 27.0265 11.8752 27.0241 11.8025 27.0433L5.1736 28.8175C5.10596 28.8354 5.03481 28.8352 4.96726 28.817C4.8997 28.7988 4.83811 28.7631 4.78864 28.7137C4.73916 28.6642 4.70354 28.6026 4.68532 28.535C4.66711 28.4675 4.66694 28.3963 4.68483 28.3287L5.99721 23.423C6.01325 23.3614 6.01408 23.2968 5.99962 23.2348C5.98517 23.1729 5.95587 23.1153 5.91425 23.0672C4.31448 21.2536 3.42138 18.9245 3.39844 16.5063C3.39844 10.2452 9.48757 5.16759 16.992 5.16759C24.4965 5.16759 30.5976 10.2452 30.5976 16.5063Z",
|
|
1578
1663
|
fill: "#bff6f8"
|
|
1579
1664
|
}),
|
|
1580
|
-
/* @__PURE__ */
|
|
1665
|
+
/* @__PURE__ */ jsx39("path", {
|
|
1581
1666
|
d: "M30.0788 17.6827C29.8355 19.1578 29.2847 20.5653 28.4623 21.8139C27.64 23.0625 26.5643 24.1242 25.3051 24.9303C22.823 26.5558 19.918 27.4163 16.951 27.4051C15.4873 27.4097 14.0304 27.2061 12.6241 26.8004L12.3622 26.7214C12.2516 26.6814 12.1388 26.6481 12.0243 26.6215C11.7823 26.6191 11.5418 26.6608 11.3147 26.7444L10.2312 27.0373L8.06421 27.623L5.89723 28.2097L5.35448 28.3556L5.18756 28.4006C5.17204 28.4061 5.1551 28.4061 5.13958 28.4006C5.12437 28.394 5.11195 28.3823 5.10446 28.3676C5.09698 28.3528 5.0949 28.3358 5.0986 28.3197L5.21055 27.8999C5.6017 26.4452 5.99218 24.9889 6.382 23.5309C6.42538 23.3713 6.41769 23.2021 6.36001 23.0471C6.30518 22.92 6.22875 22.8034 6.13411 22.7023C6.02317 22.5674 5.91222 22.4314 5.80927 22.2895C5.59537 22.0116 5.40346 21.7158 5.21755 21.4169C4.85289 20.8119 4.55336 20.1699 4.32397 19.5018C3.81661 17.9497 3.71914 16.2928 4.04104 14.6919C4.36294 13.091 5.09325 11.6005 6.1611 10.3651C8.35449 7.87289 11.3774 6.2609 14.6691 5.82825C17.9548 5.31937 21.3168 5.89444 24.2466 7.46648C25.7034 8.20649 26.9747 9.26526 27.9661 10.5641C28.9574 11.863 29.6434 13.3686 29.9729 14.9689C30.1418 15.9755 30.3287 16.5032 30.5856 16.5062C30.7925 16.5162 31.0754 15.9415 30.8855 14.807C30.5415 13.0999 29.8235 11.4902 28.7831 10.0937C27.7427 8.69729 26.4057 7.54878 24.8683 6.73083C21.8707 5.07959 18.4283 4.41705 15.0319 4.83772C11.5245 5.19209 8.26109 6.79471 5.83626 9.35359C4.58424 10.7071 3.68694 12.3495 3.22448 14.1343C2.77278 16.0065 2.86396 17.9685 3.48736 19.7907C3.73717 20.5071 4.05971 21.196 4.44991 21.8467C4.64981 22.1686 4.85772 22.4874 5.09061 22.7923C5.20355 22.9472 5.3245 23.0981 5.44844 23.2471L5.5244 23.339V23.347L4.43991 27.3871L4.30498 27.8869C4.20395 28.1439 4.17897 28.4246 4.23301 28.6955C4.28122 28.8484 4.37045 28.9852 4.49099 29.0909C4.61154 29.1967 4.75878 29.2673 4.91669 29.2952C5.08104 29.3221 5.24952 29.3069 5.40646 29.2512L5.67133 29.1813L7.6614 28.6505L11.6595 27.582L11.9034 27.516L12.4032 27.673C12.7503 27.7743 13.1015 27.8635 13.4567 27.9408C17.2734 28.7656 21.2591 28.2062 24.7014 26.3626C26.2418 25.5246 27.598 24.3856 28.6895 23.0132C29.8845 21.5018 30.6559 19.6996 30.9244 17.7916C31.0374 16.0524 30.1918 16.1404 30.0788 17.6827Z",
|
|
1582
1667
|
fill: "#528693"
|
|
1583
1668
|
}),
|
|
1584
|
-
/* @__PURE__ */
|
|
1669
|
+
/* @__PURE__ */ jsx39("path", {
|
|
1585
1670
|
d: "M5.13861 21.225C4.15137 19.5211 3.71269 17.5546 3.8822 15.5926C4.06884 13.6633 4.84617 11.8384 6.10815 10.3671C7.40438 8.89436 9.00803 7.72403 10.8059 6.93871C12.6149 6.1618 14.5535 5.73122 16.5212 5.66931C16.5838 5.66976 16.6459 5.65759 16.7036 5.63353C16.7614 5.60947 16.8137 5.57402 16.8575 5.52928C16.9013 5.48455 16.9356 5.43145 16.9584 5.37317C16.9812 5.31488 16.992 5.2526 16.9902 5.19004C16.9883 5.12748 16.9739 5.06593 16.9478 5.00906C16.9217 4.9522 16.8844 4.90118 16.8381 4.85906C16.7918 4.81693 16.7375 4.78457 16.6784 4.7639C16.6193 4.74323 16.5567 4.73468 16.4943 4.73875C14.4542 4.78872 12.4422 5.22559 10.5651 6.02614C8.57963 6.8682 6.81807 8.1619 5.42047 9.80437C4.14315 11.3274 3.31281 13.1746 3.0216 15.1409C2.7108 17.4061 3.19737 19.7089 4.39795 21.6548C4.67682 22.0896 5.3725 21.6258 5.13861 21.225Z",
|
|
1586
1671
|
fill: "#528693"
|
|
1587
1672
|
}),
|
|
1588
|
-
/* @__PURE__ */
|
|
1673
|
+
/* @__PURE__ */ jsx39("path", {
|
|
1589
1674
|
d: "M29.6101 21.6668C30.7315 19.8193 31.2043 17.6504 30.9535 15.5037C30.6896 13.4243 29.8493 11.4602 28.5276 9.83341C27.1919 8.20648 25.4945 6.91407 23.5709 6.05918C21.6514 5.21908 19.5865 4.76109 17.4918 4.71082C17.4294 4.70673 17.3668 4.71526 17.3077 4.7359C17.2487 4.75653 17.1944 4.78885 17.1481 4.83092C17.1018 4.87299 17.0645 4.92395 17.0383 4.98077C17.0122 5.03758 16.9977 5.09908 16.9958 5.1616C16.9939 5.22412 17.0047 5.28638 17.0274 5.34467C17.0501 5.40295 17.0843 5.45606 17.128 5.50084C17.1716 5.54561 17.2239 5.58113 17.2816 5.60528C17.3393 5.62943 17.4013 5.6417 17.4638 5.64138C19.3885 5.69804 21.2859 6.11223 23.0592 6.8628C24.9123 7.6435 26.5528 8.85436 27.8449 10.3951C28.9933 11.7947 29.7429 13.478 30.0149 15.2678C30.3079 17.3291 29.9063 19.4293 28.8734 21.237C28.6405 21.6389 29.3362 22.1066 29.6101 21.6668Z",
|
|
1590
1675
|
fill: "#528693"
|
|
1591
1676
|
}),
|
|
1592
|
-
/* @__PURE__ */
|
|
1677
|
+
/* @__PURE__ */ jsx39("path", {
|
|
1593
1678
|
d: "M15.0649 20.3634C15.2051 20.3177 15.3218 20.2188 15.3899 20.0879C15.4579 19.9571 15.4719 19.8048 15.4287 19.6637C15.1968 18.9411 14.913 18.2374 14.6781 17.5127C14.5241 17.037 14.3782 16.5592 14.2273 16.0814C14.0034 15.3587 13.7825 14.736 13.5536 14.0184C13.4357 13.6505 13.315 13.2841 13.1918 12.9189C13.0618 12.5361 13.0328 12.1822 12.609 12.0033C12.4383 11.9148 12.2407 11.8931 12.0549 11.9427C11.8691 11.9922 11.7085 12.1094 11.6045 12.2712C11.3876 12.771 11.2477 13.3217 11.0718 13.8385C10.4001 15.8155 9.79137 17.4368 9.04372 19.5927C9.01923 19.6636 9.00901 19.7386 9.01367 19.8135C9.01832 19.8883 9.03775 19.9615 9.07083 20.0287C9.10392 20.096 9.15 20.1561 9.20642 20.2055C9.26284 20.2548 9.32848 20.2925 9.39956 20.3164L9.49951 20.3494C9.57019 20.373 9.64484 20.3825 9.71918 20.3773C9.79353 20.372 9.86611 20.3522 9.93277 20.3188C9.99943 20.2855 10.0589 20.2394 10.1077 20.183C10.1565 20.1267 10.1937 20.0613 10.2172 19.9906C10.3581 19.5748 10.494 19.165 10.631 18.7521L13.8115 18.7282C13.9554 19.133 14.1113 19.5608 14.3052 20.0445C14.3585 20.1798 14.4614 20.2896 14.593 20.3513C14.7247 20.413 14.8749 20.422 15.0129 20.3764L15.0649 20.3634ZM11.0468 17.5117C11.1657 17.1619 11.2887 16.8021 11.4216 16.4272C11.7275 15.5586 11.9843 14.837 12.2512 13.9664C12.5171 14.76 12.787 15.5656 13.0708 16.4652C13.1918 16.851 13.3037 17.2089 13.4177 17.5647L11.0468 17.5117Z",
|
|
1594
1679
|
fill: "#528693"
|
|
1595
1680
|
}),
|
|
1596
|
-
/* @__PURE__ */
|
|
1681
|
+
/* @__PURE__ */ jsx39("path", {
|
|
1597
1682
|
d: "M24.7824 12.9239C23.8978 12.9239 23.0382 12.9239 22.0886 12.9139L22.1086 12.1842C22.1112 12.1028 22.0973 12.0216 22.0677 11.9457C22.0382 11.8697 21.9936 11.8005 21.9367 11.7422C21.8798 11.6838 21.8116 11.6376 21.7364 11.6062C21.6612 11.5748 21.5804 11.559 21.4989 11.5595H21.4789C21.3213 11.56 21.17 11.6218 21.0571 11.7319C20.9442 11.842 20.8786 11.9917 20.8742 12.1493L20.8542 12.8939C19.9247 12.8739 19.3249 12.8489 18.3004 12.8639C18.1405 12.8666 17.9879 12.9319 17.8757 13.046C17.7635 13.1601 17.7007 13.3137 17.7007 13.4736V13.5136C17.7 13.5932 17.7152 13.6722 17.7454 13.7458C17.7755 13.8195 17.8201 13.8864 17.8763 13.9427C17.9326 13.999 17.9996 14.0435 18.0732 14.0737C18.1469 14.1038 18.2258 14.119 18.3054 14.1183L23.0032 14.1483C22.6715 15.3649 22.0008 16.4621 21.0691 17.3118H21.0591C20.7793 17.002 20.5094 16.6871 20.2645 16.3573C20.1745 16.2423 20.0846 16.1224 20.0046 15.9975C19.9846 15.9675 19.9646 15.9425 19.9446 15.9125C19.8602 15.7881 19.7318 15.7004 19.5853 15.667C19.4387 15.6336 19.285 15.6571 19.155 15.7326L19.105 15.7626C19.0343 15.8035 18.9727 15.8585 18.924 15.9241C18.8752 15.9898 18.8405 16.0647 18.8217 16.1442C18.803 16.2238 18.8008 16.3063 18.8151 16.3868C18.8294 16.4673 18.8601 16.544 18.9051 16.6122C18.9651 16.6971 19.0201 16.7871 19.0851 16.872C19.1139 16.9174 19.1456 16.9608 19.18 17.002C19.27 17.1269 19.3649 17.2519 19.4649 17.3718C19.6648 17.6167 19.8747 17.8516 20.1046 18.0865C19.5192 18.5204 18.8912 18.8938 18.2305 19.201C18.0989 19.2641 17.9948 19.373 17.9378 19.5073C17.8807 19.6416 17.8746 19.7921 17.9206 19.9306L17.9506 20.0206C18.0129 20.1654 18.1291 20.2803 18.2746 20.3409C18.4201 20.4016 18.5835 20.4032 18.7302 20.3454C19.3476 20.0762 19.934 19.7411 20.4794 19.3459C20.5744 19.2809 20.6643 19.2159 20.7493 19.146C20.8342 19.076 20.9292 19.011 21.0191 18.9361C21.2041 19.086 21.379 19.2309 21.5589 19.3609C21.6488 19.4308 21.7388 19.4958 21.8338 19.5608C21.8937 19.6008 21.9537 19.6457 22.0187 19.6807C22.1136 19.7457 22.2186 19.8057 22.3185 19.8606C22.3885 19.9006 22.4635 19.9406 22.5384 19.9806C22.6484 20.0356 22.7633 20.0905 22.8783 20.1455C23.0628 20.2308 23.2628 20.3108 23.478 20.3854C23.6245 20.4331 23.7838 20.4216 23.922 20.3534C24.0602 20.2853 24.1663 20.1658 24.2176 20.0206C24.2692 19.8795 24.266 19.7242 24.2087 19.5854C24.1513 19.4466 24.0439 19.3344 23.9078 19.2709C23.1936 18.9883 22.5211 18.6101 21.9087 18.1464C21.9687 18.0865 22.0337 18.0365 22.0886 17.9765C22.6101 17.4487 23.068 16.8617 23.453 16.2273C23.833 15.5983 24.0907 14.9031 24.2126 14.1783C24.2126 14.1783 24.2126 14.1783 24.2226 14.1783C24.4075 14.1783 24.5925 14.1783 24.7774 14.1783C24.9389 14.1778 25.0937 14.1134 25.2079 13.9991C25.3222 13.8849 25.3866 13.7301 25.3871 13.5686V13.5336C25.3884 13.4536 25.3737 13.3741 25.3439 13.2999C25.314 13.2256 25.2696 13.1581 25.2133 13.1013C25.1569 13.0445 25.0897 12.9995 25.0157 12.969C24.9417 12.9386 24.8624 12.9232 24.7824 12.9239Z",
|
|
1598
1683
|
fill: "#528693"
|
|
1599
1684
|
})
|
|
@@ -1603,10 +1688,10 @@ var Language = forwardRef30((delegated, ref) => {
|
|
|
1603
1688
|
Language.displayName = "LanguageProps";
|
|
1604
1689
|
|
|
1605
1690
|
// src/iconography/lock-closed.tsx
|
|
1606
|
-
import { forwardRef as
|
|
1607
|
-
import { jsx as
|
|
1608
|
-
var LockClosed =
|
|
1609
|
-
return /* @__PURE__ */
|
|
1691
|
+
import { forwardRef as forwardRef33 } from "react";
|
|
1692
|
+
import { jsx as jsx40, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
1693
|
+
var LockClosed = forwardRef33((delegated, ref) => {
|
|
1694
|
+
return /* @__PURE__ */ jsxs31("svg", {
|
|
1610
1695
|
ref,
|
|
1611
1696
|
width: "17",
|
|
1612
1697
|
height: "16",
|
|
@@ -1614,33 +1699,33 @@ var LockClosed = forwardRef31((delegated, ref) => {
|
|
|
1614
1699
|
fill: "none",
|
|
1615
1700
|
...delegated,
|
|
1616
1701
|
children: [
|
|
1617
|
-
/* @__PURE__ */
|
|
1702
|
+
/* @__PURE__ */ jsx40("path", {
|
|
1618
1703
|
d: "M3.984 7.5c0-.5523.4477-1 1-1h8c.5523 0 1 .4477 1 1v6c0 .5523-.4477 1-1 1h-8c-.5523 0-1-.4477-1-1v-6Z",
|
|
1619
1704
|
fill: "#BFF6F8"
|
|
1620
1705
|
}),
|
|
1621
|
-
/* @__PURE__ */
|
|
1706
|
+
/* @__PURE__ */ jsx40("path", {
|
|
1622
1707
|
fillRule: "evenodd",
|
|
1623
1708
|
clipRule: "evenodd",
|
|
1624
1709
|
d: "M12.984 6.9h-8a.6.6 0 0 0-.6.6v6a.6.6 0 0 0 .6.6h8a.6.6 0 0 0 .6-.6v-6a.6.6 0 0 0-.6-.6Zm-8-.4c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h8c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-8Z",
|
|
1625
1710
|
fill: "#528693"
|
|
1626
1711
|
}),
|
|
1627
|
-
/* @__PURE__ */
|
|
1712
|
+
/* @__PURE__ */ jsx40("path", {
|
|
1628
1713
|
fillRule: "evenodd",
|
|
1629
1714
|
clipRule: "evenodd",
|
|
1630
1715
|
d: "M9.5395 10.7958a1.1106 1.1106 0 0 0 .5556-.9625c0-.6136-.4974-1.111-1.111-1.111-.6137 0-1.1112.4974-1.1112 1.111 0 .4113.2234.7704.5555.9625V11.5a.5556.5556 0 0 0 1.1111 0v-.7042Z",
|
|
1631
1716
|
fill: "#fff"
|
|
1632
1717
|
}),
|
|
1633
|
-
/* @__PURE__ */
|
|
1718
|
+
/* @__PURE__ */ jsx40("path", {
|
|
1634
1719
|
fillRule: "evenodd",
|
|
1635
1720
|
clipRule: "evenodd",
|
|
1636
1721
|
d: "M8.984 8.9222a.9111.9111 0 0 0-.4554 1.7005l.0998.0577V11.5a.3556.3556 0 1 0 .7111 0v-.8195l.0999-.0578a.9111.9111 0 0 0-.4554-1.7005Zm-1.3111.9111c0-.724.587-1.311 1.311-1.311.7242 0 1.3112.587 1.3112 1.311 0 .4431-.2198.8345-.5556 1.0717v.595a.7556.7556 0 1 1-1.511 0v-.5951a1.3096 1.3096 0 0 1-.5556-1.0716Z",
|
|
1637
1722
|
fill: "#528693"
|
|
1638
1723
|
}),
|
|
1639
|
-
/* @__PURE__ */
|
|
1724
|
+
/* @__PURE__ */ jsx40("path", {
|
|
1640
1725
|
d: "M5.984 6.5c0-.0217.0003-2.2656.0008-2.2873.018-.7131.3318-1.3935.8779-1.8991C7.4253 1.7926 8.1883 1.5 8.984 1.5c.7956 0 1.5587.2927 2.1213.8136.5502.5094.8646 1.1963.8782 1.9154.0003.0162.0005 2.2547.0005 2.271h-.5761c0-.0163-.0002-2.2548-.0006-2.271-.0136-.5776-.2672-1.1288-.7094-1.5382-.4545-.4209-1.071-.6574-1.714-.6574-.6428 0-1.2593.2365-1.7139.6574-.438.4055-.692.9503-.7099 1.5219-.0007.0217 0 2.2656 0 2.2873H5.984Z",
|
|
1641
1726
|
fill: "#fff"
|
|
1642
1727
|
}),
|
|
1643
|
-
/* @__PURE__ */
|
|
1728
|
+
/* @__PURE__ */ jsx40("path", {
|
|
1644
1729
|
fillRule: "evenodd",
|
|
1645
1730
|
clipRule: "evenodd",
|
|
1646
1731
|
d: "M5.584 6.9v-.4c0-.0152.0002-2.269.001-2.2974.0208-.8257.3842-1.6069 1.006-2.1825C7.2304 1.4279 8.0917 1.1 8.984 1.1c.8922 0 1.7535.3279 2.3931.92.6264.5801.9906 1.3688 1.0064 2.2014.0004.0213.0005 2.2672.0005 2.2786v.4h-1.3761l-.0003-2.3115-.0002-.2514v-.0988c-.0109-.4646-.2149-.9148-.5812-1.254-.3776-.3497-.896-.5509-1.4422-.5509-.5463 0-1.0646.2013-1.4422.5509-.3632.3363-.5675.7814-.5819 1.2409v.351L6.96 6.9H5.584Zm5.8239-.4c0-.0164-.0002-2.2548-.0006-2.271-.0135-.5776-.2672-1.1288-.7094-1.5382-.4545-.421-1.071-.6574-1.7139-.6574-.6428 0-1.2594.2365-1.714.6574-.438.4055-.692.9503-.7099 1.5219-.0005.016-.0002 1.2357 0 1.8873v.4H5.984a7505.9164 7505.9164 0 0 1 .0008-2.2873c.018-.7131.3319-1.3935.8779-1.8991C7.4253 1.7926 8.1883 1.5 8.984 1.5c.7957 0 1.5587.2927 2.1213.8136.5502.5094.8646 1.1963.8782 1.9154.0003.0119.0004 1.2224.0005 1.871v.4h-.5761Z",
|
|
@@ -1652,37 +1737,37 @@ var LockClosed = forwardRef31((delegated, ref) => {
|
|
|
1652
1737
|
LockClosed.displayName = "LockClosedIcon";
|
|
1653
1738
|
|
|
1654
1739
|
// src/iconography/multilingual.tsx
|
|
1655
|
-
import { forwardRef as
|
|
1656
|
-
import { jsx as
|
|
1657
|
-
var Multilingual =
|
|
1658
|
-
return /* @__PURE__ */
|
|
1740
|
+
import { forwardRef as forwardRef34 } from "react";
|
|
1741
|
+
import { jsx as jsx41, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
1742
|
+
var Multilingual = forwardRef34((delegated, ref) => {
|
|
1743
|
+
return /* @__PURE__ */ jsxs32("svg", {
|
|
1659
1744
|
ref,
|
|
1660
1745
|
width: "34",
|
|
1661
1746
|
height: "34",
|
|
1662
1747
|
viewBox: "0 0 34 34",
|
|
1663
1748
|
...delegated,
|
|
1664
1749
|
children: [
|
|
1665
|
-
/* @__PURE__ */
|
|
1750
|
+
/* @__PURE__ */ jsx41("path", {
|
|
1666
1751
|
d: "M30.5976 16.5063C30.5976 22.7593 24.5125 27.8369 16.992 27.8369C15.3044 27.8426 13.6268 27.577 12.0234 27.0503C11.952 27.0265 11.8752 27.0241 11.8025 27.0433L5.1736 28.8175C5.10596 28.8354 5.03481 28.8352 4.96726 28.817C4.8997 28.7988 4.83811 28.7631 4.78864 28.7137C4.73916 28.6642 4.70354 28.6026 4.68532 28.535C4.66711 28.4675 4.66694 28.3963 4.68483 28.3287L5.99721 23.423C6.01325 23.3614 6.01408 23.2968 5.99962 23.2348C5.98517 23.1729 5.95587 23.1153 5.91425 23.0672C4.31448 21.2536 3.42138 18.9245 3.39844 16.5063C3.39844 10.2452 9.48757 5.16759 16.992 5.16759C24.4965 5.16759 30.5976 10.2452 30.5976 16.5063Z",
|
|
1667
1752
|
fill: "#bff6f8"
|
|
1668
1753
|
}),
|
|
1669
|
-
/* @__PURE__ */
|
|
1754
|
+
/* @__PURE__ */ jsx41("path", {
|
|
1670
1755
|
d: "M30.0788 17.6827C29.8355 19.1578 29.2847 20.5653 28.4623 21.8139C27.64 23.0625 26.5643 24.1242 25.3051 24.9303C22.823 26.5558 19.918 27.4163 16.951 27.4051C15.4873 27.4097 14.0304 27.2061 12.6241 26.8004L12.3622 26.7214C12.2516 26.6814 12.1388 26.6481 12.0243 26.6215C11.7823 26.6191 11.5418 26.6608 11.3147 26.7444L10.2312 27.0373L8.06421 27.623L5.89723 28.2097L5.35448 28.3556L5.18756 28.4006C5.17204 28.4061 5.1551 28.4061 5.13958 28.4006C5.12437 28.394 5.11195 28.3823 5.10446 28.3676C5.09698 28.3528 5.0949 28.3358 5.0986 28.3197L5.21055 27.8999C5.6017 26.4452 5.99218 24.9889 6.382 23.5309C6.42538 23.3713 6.41769 23.2021 6.36001 23.0471C6.30518 22.92 6.22875 22.8034 6.13411 22.7023C6.02317 22.5674 5.91222 22.4314 5.80927 22.2895C5.59537 22.0116 5.40346 21.7158 5.21755 21.4169C4.85289 20.8119 4.55336 20.1699 4.32397 19.5018C3.81661 17.9497 3.71914 16.2928 4.04104 14.6919C4.36294 13.091 5.09325 11.6005 6.1611 10.3651C8.35449 7.87289 11.3774 6.2609 14.6691 5.82825C17.9548 5.31937 21.3168 5.89444 24.2466 7.46648C25.7034 8.20649 26.9747 9.26526 27.9661 10.5641C28.9574 11.863 29.6434 13.3686 29.9729 14.9689C30.1418 15.9755 30.3287 16.5032 30.5856 16.5062C30.7925 16.5162 31.0754 15.9415 30.8855 14.807C30.5415 13.0999 29.8235 11.4902 28.7831 10.0937C27.7427 8.69729 26.4057 7.54878 24.8683 6.73083C21.8707 5.07959 18.4283 4.41705 15.0319 4.83772C11.5245 5.19209 8.26109 6.79471 5.83626 9.35359C4.58424 10.7071 3.68694 12.3495 3.22448 14.1343C2.77278 16.0065 2.86396 17.9685 3.48736 19.7907C3.73717 20.5071 4.05971 21.196 4.44991 21.8467C4.64981 22.1686 4.85772 22.4874 5.09061 22.7923C5.20355 22.9472 5.3245 23.0981 5.44844 23.2471L5.5244 23.339V23.347L4.43991 27.3871L4.30498 27.8869C4.20395 28.1439 4.17897 28.4246 4.23301 28.6955C4.28122 28.8484 4.37045 28.9852 4.49099 29.0909C4.61154 29.1967 4.75878 29.2673 4.91669 29.2952C5.08104 29.3221 5.24952 29.3069 5.40646 29.2512L5.67133 29.1813L7.6614 28.6505L11.6595 27.582L11.9034 27.516L12.4032 27.673C12.7503 27.7743 13.1015 27.8635 13.4567 27.9408C17.2734 28.7656 21.2591 28.2062 24.7014 26.3626C26.2418 25.5246 27.598 24.3856 28.6895 23.0132C29.8845 21.5018 30.6559 19.6996 30.9244 17.7916C31.0374 16.0524 30.1918 16.1404 30.0788 17.6827Z",
|
|
1671
1756
|
fill: "#528693"
|
|
1672
1757
|
}),
|
|
1673
|
-
/* @__PURE__ */
|
|
1758
|
+
/* @__PURE__ */ jsx41("path", {
|
|
1674
1759
|
d: "M5.13861 21.225C4.15137 19.5211 3.71269 17.5546 3.8822 15.5926C4.06884 13.6633 4.84617 11.8384 6.10815 10.3671C7.40438 8.89436 9.00803 7.72403 10.8059 6.93871C12.6149 6.1618 14.5535 5.73122 16.5212 5.66931C16.5838 5.66976 16.6459 5.65759 16.7036 5.63353C16.7614 5.60947 16.8137 5.57402 16.8575 5.52928C16.9013 5.48455 16.9356 5.43145 16.9584 5.37317C16.9812 5.31488 16.992 5.2526 16.9902 5.19004C16.9883 5.12748 16.9739 5.06593 16.9478 5.00906C16.9217 4.9522 16.8844 4.90118 16.8381 4.85906C16.7918 4.81693 16.7375 4.78457 16.6784 4.7639C16.6193 4.74323 16.5567 4.73468 16.4943 4.73875C14.4542 4.78872 12.4422 5.22559 10.5651 6.02614C8.57963 6.8682 6.81807 8.1619 5.42047 9.80437C4.14315 11.3274 3.31281 13.1746 3.0216 15.1409C2.7108 17.4061 3.19737 19.7089 4.39795 21.6548C4.67682 22.0896 5.3725 21.6258 5.13861 21.225Z",
|
|
1675
1760
|
fill: "#528693"
|
|
1676
1761
|
}),
|
|
1677
|
-
/* @__PURE__ */
|
|
1762
|
+
/* @__PURE__ */ jsx41("path", {
|
|
1678
1763
|
d: "M29.6101 21.6668C30.7315 19.8193 31.2043 17.6504 30.9535 15.5037C30.6896 13.4243 29.8493 11.4602 28.5276 9.83341C27.1919 8.20648 25.4945 6.91407 23.5709 6.05918C21.6514 5.21908 19.5865 4.76109 17.4918 4.71082C17.4294 4.70673 17.3668 4.71526 17.3077 4.7359C17.2487 4.75653 17.1944 4.78885 17.1481 4.83092C17.1018 4.87299 17.0645 4.92395 17.0383 4.98077C17.0122 5.03758 16.9977 5.09908 16.9958 5.1616C16.9939 5.22412 17.0047 5.28638 17.0274 5.34467C17.0501 5.40295 17.0843 5.45606 17.128 5.50084C17.1716 5.54561 17.2239 5.58113 17.2816 5.60528C17.3393 5.62943 17.4013 5.6417 17.4638 5.64138C19.3885 5.69804 21.2859 6.11223 23.0592 6.8628C24.9123 7.6435 26.5528 8.85436 27.8449 10.3951C28.9933 11.7947 29.7429 13.478 30.0149 15.2678C30.3079 17.3291 29.9063 19.4293 28.8734 21.237C28.6405 21.6389 29.3362 22.1066 29.6101 21.6668Z",
|
|
1679
1764
|
fill: "#528693"
|
|
1680
1765
|
}),
|
|
1681
|
-
/* @__PURE__ */
|
|
1766
|
+
/* @__PURE__ */ jsx41("path", {
|
|
1682
1767
|
d: "M15.0649 20.3634C15.2051 20.3177 15.3218 20.2188 15.3899 20.0879C15.4579 19.9571 15.4719 19.8048 15.4287 19.6637C15.1968 18.9411 14.913 18.2374 14.6781 17.5127C14.5241 17.037 14.3782 16.5592 14.2273 16.0814C14.0034 15.3587 13.7825 14.736 13.5536 14.0184C13.4357 13.6505 13.315 13.2841 13.1918 12.9189C13.0618 12.5361 13.0328 12.1822 12.609 12.0033C12.4383 11.9148 12.2407 11.8931 12.0549 11.9427C11.8691 11.9922 11.7085 12.1094 11.6045 12.2712C11.3876 12.771 11.2477 13.3217 11.0718 13.8385C10.4001 15.8155 9.79137 17.4368 9.04372 19.5927C9.01923 19.6636 9.00901 19.7386 9.01367 19.8135C9.01832 19.8883 9.03775 19.9615 9.07083 20.0287C9.10392 20.096 9.15 20.1561 9.20642 20.2055C9.26284 20.2548 9.32848 20.2925 9.39956 20.3164L9.49951 20.3494C9.57019 20.373 9.64484 20.3825 9.71918 20.3773C9.79353 20.372 9.86611 20.3522 9.93277 20.3188C9.99943 20.2855 10.0589 20.2394 10.1077 20.183C10.1565 20.1267 10.1937 20.0613 10.2172 19.9906C10.3581 19.5748 10.494 19.165 10.631 18.7521L13.8115 18.7282C13.9554 19.133 14.1113 19.5608 14.3052 20.0445C14.3585 20.1798 14.4614 20.2896 14.593 20.3513C14.7247 20.413 14.8749 20.422 15.0129 20.3764L15.0649 20.3634ZM11.0468 17.5117C11.1657 17.1619 11.2887 16.8021 11.4216 16.4272C11.7275 15.5586 11.9843 14.837 12.2512 13.9664C12.5171 14.76 12.787 15.5656 13.0708 16.4652C13.1918 16.851 13.3037 17.2089 13.4177 17.5647L11.0468 17.5117Z",
|
|
1683
1768
|
fill: "#528693"
|
|
1684
1769
|
}),
|
|
1685
|
-
/* @__PURE__ */
|
|
1770
|
+
/* @__PURE__ */ jsx41("path", {
|
|
1686
1771
|
d: "M24.7824 12.9239C23.8978 12.9239 23.0382 12.9239 22.0886 12.9139L22.1086 12.1842C22.1112 12.1028 22.0973 12.0216 22.0677 11.9457C22.0382 11.8697 21.9936 11.8005 21.9367 11.7422C21.8798 11.6838 21.8116 11.6376 21.7364 11.6062C21.6612 11.5748 21.5804 11.559 21.4989 11.5595H21.4789C21.3213 11.56 21.17 11.6218 21.0571 11.7319C20.9442 11.842 20.8786 11.9917 20.8742 12.1493L20.8542 12.8939C19.9247 12.8739 19.3249 12.8489 18.3004 12.8639C18.1405 12.8666 17.9879 12.9319 17.8757 13.046C17.7635 13.1601 17.7007 13.3137 17.7007 13.4736V13.5136C17.7 13.5932 17.7152 13.6722 17.7454 13.7458C17.7755 13.8195 17.8201 13.8864 17.8763 13.9427C17.9326 13.999 17.9996 14.0435 18.0732 14.0737C18.1469 14.1038 18.2258 14.119 18.3054 14.1183L23.0032 14.1483C22.6715 15.3649 22.0008 16.4621 21.0691 17.3118H21.0591C20.7793 17.002 20.5094 16.6871 20.2645 16.3573C20.1745 16.2423 20.0846 16.1224 20.0046 15.9975C19.9846 15.9675 19.9646 15.9425 19.9446 15.9125C19.8602 15.7881 19.7318 15.7004 19.5853 15.667C19.4387 15.6336 19.285 15.6571 19.155 15.7326L19.105 15.7626C19.0343 15.8035 18.9727 15.8585 18.924 15.9241C18.8752 15.9898 18.8405 16.0647 18.8217 16.1442C18.803 16.2238 18.8008 16.3063 18.8151 16.3868C18.8294 16.4673 18.8601 16.544 18.9051 16.6122C18.9651 16.6971 19.0201 16.7871 19.0851 16.872C19.1139 16.9174 19.1456 16.9608 19.18 17.002C19.27 17.1269 19.3649 17.2519 19.4649 17.3718C19.6648 17.6167 19.8747 17.8516 20.1046 18.0865C19.5192 18.5204 18.8912 18.8938 18.2305 19.201C18.0989 19.2641 17.9948 19.373 17.9378 19.5073C17.8807 19.6416 17.8746 19.7921 17.9206 19.9306L17.9506 20.0206C18.0129 20.1654 18.1291 20.2803 18.2746 20.3409C18.4201 20.4016 18.5835 20.4032 18.7302 20.3454C19.3476 20.0762 19.934 19.7411 20.4794 19.3459C20.5744 19.2809 20.6643 19.2159 20.7493 19.146C20.8342 19.076 20.9292 19.011 21.0191 18.9361C21.2041 19.086 21.379 19.2309 21.5589 19.3609C21.6488 19.4308 21.7388 19.4958 21.8338 19.5608C21.8937 19.6008 21.9537 19.6457 22.0187 19.6807C22.1136 19.7457 22.2186 19.8057 22.3185 19.8606C22.3885 19.9006 22.4635 19.9406 22.5384 19.9806C22.6484 20.0356 22.7633 20.0905 22.8783 20.1455C23.0628 20.2308 23.2628 20.3108 23.478 20.3854C23.6245 20.4331 23.7838 20.4216 23.922 20.3534C24.0602 20.2853 24.1663 20.1658 24.2176 20.0206C24.2692 19.8795 24.266 19.7242 24.2087 19.5854C24.1513 19.4466 24.0439 19.3344 23.9078 19.2709C23.1936 18.9883 22.5211 18.6101 21.9087 18.1464C21.9687 18.0865 22.0337 18.0365 22.0886 17.9765C22.6101 17.4487 23.068 16.8617 23.453 16.2273C23.833 15.5983 24.0907 14.9031 24.2126 14.1783C24.2126 14.1783 24.2126 14.1783 24.2226 14.1783C24.4075 14.1783 24.5925 14.1783 24.7774 14.1783C24.9389 14.1778 25.0937 14.1134 25.2079 13.9991C25.3222 13.8849 25.3866 13.7301 25.3871 13.5686V13.5336C25.3884 13.4536 25.3737 13.3741 25.3439 13.2999C25.314 13.2256 25.2696 13.1581 25.2133 13.1013C25.1569 13.0445 25.0897 12.9995 25.0157 12.969C24.9417 12.9386 24.8624 12.9232 24.7824 12.9239Z",
|
|
1687
1772
|
fill: "#528693"
|
|
1688
1773
|
})
|
|
@@ -1692,10 +1777,10 @@ var Multilingual = forwardRef32((delegated, ref) => {
|
|
|
1692
1777
|
Multilingual.displayName = "MultilingualIcon";
|
|
1693
1778
|
|
|
1694
1779
|
// src/iconography/nail-polish.tsx
|
|
1695
|
-
import { forwardRef as
|
|
1696
|
-
import { jsx as
|
|
1697
|
-
var NailPolish =
|
|
1698
|
-
return /* @__PURE__ */
|
|
1780
|
+
import { forwardRef as forwardRef35 } from "react";
|
|
1781
|
+
import { jsx as jsx42, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
1782
|
+
var NailPolish = forwardRef35((delegated, ref) => {
|
|
1783
|
+
return /* @__PURE__ */ jsxs33("svg", {
|
|
1699
1784
|
ref,
|
|
1700
1785
|
width: "12",
|
|
1701
1786
|
height: "16",
|
|
@@ -1704,67 +1789,67 @@ var NailPolish = forwardRef33((delegated, ref) => {
|
|
|
1704
1789
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1705
1790
|
...delegated,
|
|
1706
1791
|
children: [
|
|
1707
|
-
/* @__PURE__ */
|
|
1792
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1708
1793
|
d: "M.8573 9.7059H.4287v-.8824c0-.4873.3838-.8823.8571-.8823h4.2858c.4734 0 .8571.395.8571.8823v.8824h-.4286V15H.8573V9.7059Z",
|
|
1709
1794
|
fill: "#BFF6F8"
|
|
1710
1795
|
}),
|
|
1711
|
-
/* @__PURE__ */
|
|
1796
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1712
1797
|
fillRule: "evenodd",
|
|
1713
1798
|
clipRule: "evenodd",
|
|
1714
1799
|
d: "M1.3716 9.1765v5.2941h4.1143V9.1765h.4285v-.353c0-.195-.1535-.353-.3428-.353H1.2858c-.1893 0-.3428.158-.3428.353v.353h.4286ZM6 9.7059h.4286v-.8824c0-.4873-.3837-.8823-.8571-.8823H1.2858c-.4733 0-.857.395-.857.8823v.8824h.4285V15H6V9.7059Z",
|
|
1715
1800
|
fill: "#528693"
|
|
1716
1801
|
}),
|
|
1717
|
-
/* @__PURE__ */
|
|
1802
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1718
1803
|
d: "M1.2856 6.6176c0-.4873.3838-.8823.8572-.8823h2.5714c.4734 0 .8572.395.8572.8823v1.7648H1.2856V6.6176Z",
|
|
1719
1804
|
fill: "#BFF6F8"
|
|
1720
1805
|
}),
|
|
1721
|
-
/* @__PURE__ */
|
|
1806
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1722
1807
|
fillRule: "evenodd",
|
|
1723
1808
|
clipRule: "evenodd",
|
|
1724
1809
|
d: "M4.7142 6.2647H2.1428c-.1894 0-.3429.158-.3429.353v1.2352h3.2572V6.6176c0-.1949-.1535-.3529-.3429-.3529Zm-2.5714-.5294c-.4734 0-.8572.395-.8572.8823v1.7648h4.2858V6.6176c0-.4873-.3838-.8823-.8572-.8823H2.1428Z",
|
|
1725
1810
|
fill: "#528693"
|
|
1726
1811
|
}),
|
|
1727
|
-
/* @__PURE__ */
|
|
1812
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1728
1813
|
d: "M1.7144.6228c0-.344.2708-.6228.605-.6228 1.5594 0 2.8235 1.3013 2.8235 2.9066v3.2699H1.7144V.6228Z",
|
|
1729
1814
|
fill: "#FFCCEC"
|
|
1730
1815
|
}),
|
|
1731
|
-
/* @__PURE__ */
|
|
1816
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1732
1817
|
fillRule: "evenodd",
|
|
1733
1818
|
clipRule: "evenodd",
|
|
1734
1819
|
d: "M2.2286 5.647h2.4V2.9067c0-1.3129-1.0338-2.3772-2.3092-2.3772a.0921.0921 0 0 0-.0908.0934v5.0243ZM2.3194 0c-.3342 0-.605.2789-.605.6228v5.5537h3.4285v-3.27C5.143 1.3014 3.8788 0 2.3194 0Z",
|
|
1735
1820
|
fill: "#528693"
|
|
1736
1821
|
}),
|
|
1737
|
-
/* @__PURE__ */
|
|
1822
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1738
1823
|
fillRule: "evenodd",
|
|
1739
1824
|
clipRule: "evenodd",
|
|
1740
1825
|
d: "M2.4626 1.9929c-.432-.5148-.5769-1.1307-.5769-1.5517H2.4c0 .3142.1124.8013.4518 1.2056.3313.3947.8997.7355 1.8625.7355v.5295c-1.0943 0-1.8116-.3945-2.2517-.9189Z",
|
|
1741
1826
|
fill: "#528693"
|
|
1742
1827
|
}),
|
|
1743
|
-
/* @__PURE__ */
|
|
1828
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1744
1829
|
d: "M4.8708 8.6772c.245-.9414 1.185-1.5 2.0995-1.2478l2.4838.6851c.9145.2523 1.4573 1.22 1.2122 2.1613l-1.2201 4.6876c-.1225.4707-.5925.75-1.0498.6239l-4.1397-1.1418c-.4573-.1262-.7286-.61-.606-1.0807l1.22-4.6876Z",
|
|
1745
1830
|
fill: "#FFCCEC"
|
|
1746
1831
|
}),
|
|
1747
|
-
/* @__PURE__ */
|
|
1832
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1748
1833
|
fillRule: "evenodd",
|
|
1749
1834
|
clipRule: "evenodd",
|
|
1750
1835
|
d: "m9.321 8.6259-2.4838-.6851c-.6401-.1766-1.2981.2145-1.4697.8734l-1.2201 4.6876c-.049.1883.0595.3818.2424.4323l4.1397 1.1418c.1829.0505.3709-.0612.42-.2495l1.2201-4.6876c.1715-.659-.2084-1.3363-.8486-1.513ZM6.9703 7.4294c-.9145-.2523-1.8545.3064-2.0995 1.2478l-1.2202 4.6876c-.1225.4707.1489.9545.6061 1.0807l4.1397 1.1418c.4573.1261.9273-.1532 1.0498-.6239l1.2201-4.6876c.2451-.9414-.2977-1.909-1.2122-2.1613l-2.4838-.6851Z",
|
|
1751
1836
|
fill: "#528693"
|
|
1752
1837
|
}),
|
|
1753
|
-
/* @__PURE__ */
|
|
1838
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1754
1839
|
d: "M7.9236 3.5069c.1508-.4319.598-.6727 1.0285-.554l.9602.2649c.4306.1188.7009.5575.6217 1.009l-.6114 3.4854c-.0892.508-.581.829-1.0654.6954l-1.5121-.417c-.4844-.1337-.7544-.6649-.5848-1.1507l1.1633-3.333Z",
|
|
1755
1840
|
fill: "#BFF6F8"
|
|
1756
1841
|
}),
|
|
1757
|
-
/* @__PURE__ */
|
|
1842
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1758
1843
|
fillRule: "evenodd",
|
|
1759
1844
|
clipRule: "evenodd",
|
|
1760
1845
|
d: "m9.7792 3.7292-.9602-.2649c-.1722-.0475-.351.0488-.4114.2216l-1.1634 3.333c-.0678.1943.0402.4068.234.4603l1.5121.417c.1938.0535.3905-.075.4262-.2781l.6114-3.4853c.0316-.1806-.0765-.3561-.2487-.4036Zm-.827-.7763c-.4307-.1187-.8778.1221-1.0286.554l-1.1633 3.333c-.1696.4858.1004 1.017.5848 1.1506l1.5121.4171c.4844.1336.9762-.1875 1.0654-.6954l.6114-3.4853c.0792-.4516-.1911-.8903-.6217-1.0091l-.9602-.2649Z",
|
|
1761
1846
|
fill: "#528693"
|
|
1762
1847
|
}),
|
|
1763
|
-
/* @__PURE__ */
|
|
1848
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1764
1849
|
d: "m5.8906 9.8713 3.3118.9135-.4437 1.7046-3.3118-.9135.4437-1.7046Z",
|
|
1765
1850
|
fill: "#fff"
|
|
1766
1851
|
}),
|
|
1767
|
-
/* @__PURE__ */
|
|
1852
|
+
/* @__PURE__ */ jsx42("path", {
|
|
1768
1853
|
fillRule: "evenodd",
|
|
1769
1854
|
clipRule: "evenodd",
|
|
1770
1855
|
d: "m8.5725 11.1592-2.3182-.6395-.1775.6819 2.3182.6394.1775-.6818ZM5.8906 9.8713 5.447 11.576l3.3118.9135.4437-1.7046-3.3118-.9135Z",
|
|
@@ -1776,10 +1861,10 @@ var NailPolish = forwardRef33((delegated, ref) => {
|
|
|
1776
1861
|
NailPolish.displayName = "NailPolishIcon";
|
|
1777
1862
|
|
|
1778
1863
|
// src/iconography/order.tsx
|
|
1779
|
-
import { forwardRef as
|
|
1780
|
-
import { jsx as
|
|
1781
|
-
var Order =
|
|
1782
|
-
return /* @__PURE__ */
|
|
1864
|
+
import { forwardRef as forwardRef36 } from "react";
|
|
1865
|
+
import { jsx as jsx43, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
1866
|
+
var Order = forwardRef36((delegated, ref) => {
|
|
1867
|
+
return /* @__PURE__ */ jsxs34("svg", {
|
|
1783
1868
|
ref,
|
|
1784
1869
|
width: "22",
|
|
1785
1870
|
height: "23",
|
|
@@ -1787,27 +1872,27 @@ var Order = forwardRef34((delegated, ref) => {
|
|
|
1787
1872
|
fill: "none",
|
|
1788
1873
|
...delegated,
|
|
1789
1874
|
children: [
|
|
1790
|
-
/* @__PURE__ */
|
|
1875
|
+
/* @__PURE__ */ jsx43("path", {
|
|
1791
1876
|
d: "M4.223 5.41c0-.583.472-1.056 1.055-1.056h11.443c.584 0 1.056.473 1.056 1.056v13.833c0 .583-.472 1.056-1.056 1.056H5.278a1.056 1.056 0 0 1-1.055-1.056V5.41Z",
|
|
1792
1877
|
fill: "#fff"
|
|
1793
1878
|
}),
|
|
1794
|
-
/* @__PURE__ */
|
|
1879
|
+
/* @__PURE__ */ jsx43("path", {
|
|
1795
1880
|
fillRule: "evenodd",
|
|
1796
1881
|
clipRule: "evenodd",
|
|
1797
1882
|
d: "M5.278 3.72h11.443c.933 0 1.69.757 1.69 1.69v13.833a1.69 1.69 0 0 1-1.69 1.69H5.278a1.69 1.69 0 0 1-1.689-1.69V5.41c0-.933.756-1.69 1.69-1.69Zm0 .634c-.583 0-1.055.473-1.055 1.056v13.833c0 .583.472 1.056 1.055 1.056h11.443c.584 0 1.056-.473 1.056-1.056V5.41c0-.583-.472-1.056-1.056-1.056H5.278Z",
|
|
1798
1883
|
fill: "#528693"
|
|
1799
1884
|
}),
|
|
1800
|
-
/* @__PURE__ */
|
|
1885
|
+
/* @__PURE__ */ jsx43("path", {
|
|
1801
1886
|
d: "M7.552 4.119c0-.54.439-.98.98-.98h4.701a.98.98 0 0 1 0 1.96H8.532a.98.98 0 0 1-.98-.98Z",
|
|
1802
1887
|
fill: "#BFF6F8"
|
|
1803
1888
|
}),
|
|
1804
|
-
/* @__PURE__ */
|
|
1889
|
+
/* @__PURE__ */ jsx43("path", {
|
|
1805
1890
|
fillRule: "evenodd",
|
|
1806
1891
|
clipRule: "evenodd",
|
|
1807
1892
|
d: "M8.532 2.506h4.7a1.613 1.613 0 0 1 0 3.226h-4.7a1.613 1.613 0 0 1 0-3.226Zm0 .634a.98.98 0 0 0 0 1.958h4.7a.98.98 0 0 0 0-1.958h-4.7Z",
|
|
1808
1893
|
fill: "#528693"
|
|
1809
1894
|
}),
|
|
1810
|
-
/* @__PURE__ */
|
|
1895
|
+
/* @__PURE__ */ jsx43("path", {
|
|
1811
1896
|
d: "M7.063 8.546c0-.175.142-.317.317-.317h7.005a.317.317 0 0 1 0 .634H7.38a.317.317 0 0 1-.317-.317ZM7.063 11.31c0-.174.142-.316.317-.316h7.005a.317.317 0 0 1 0 .633H7.38a.317.317 0 0 1-.317-.316ZM7.063 14.075c0-.175.142-.316.317-.316h7.005a.317.317 0 1 1 0 .633H7.38a.317.317 0 0 1-.317-.317ZM7.063 16.84c0-.175.142-.317.317-.317h7.005a.317.317 0 1 1 0 .634H7.38a.317.317 0 0 1-.317-.317Z",
|
|
1812
1897
|
fill: "#528693"
|
|
1813
1898
|
})
|
|
@@ -1817,10 +1902,10 @@ var Order = forwardRef34((delegated, ref) => {
|
|
|
1817
1902
|
Order.displayName = "OrderIcon";
|
|
1818
1903
|
|
|
1819
1904
|
// src/iconography/particle.tsx
|
|
1820
|
-
import { forwardRef as
|
|
1821
|
-
import { jsx as
|
|
1822
|
-
var Particle =
|
|
1823
|
-
return /* @__PURE__ */
|
|
1905
|
+
import { forwardRef as forwardRef37 } from "react";
|
|
1906
|
+
import { jsx as jsx44, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
1907
|
+
var Particle = forwardRef37((delegated, ref) => {
|
|
1908
|
+
return /* @__PURE__ */ jsxs35("svg", {
|
|
1824
1909
|
ref,
|
|
1825
1910
|
width: "22",
|
|
1826
1911
|
height: "20",
|
|
@@ -1829,68 +1914,68 @@ var Particle = forwardRef35((delegated, ref) => {
|
|
|
1829
1914
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1830
1915
|
...delegated,
|
|
1831
1916
|
children: [
|
|
1832
|
-
/* @__PURE__ */
|
|
1917
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1833
1918
|
fill: "#528693",
|
|
1834
1919
|
d: "M10.9 18.597c0-.332-2.426-.606-5.418-.61-2.992-.006-5.418.26-5.419.592 0 .333 2.425.606 5.417.611 2.993.005 5.419-.26 5.42-.593ZM21.39 16.21c0-.267-1.94-.485-4.334-.49-2.394-.003-4.335.209-4.335.475s1.94.485 4.334.489c2.393.004 4.334-.209 4.335-.475Z",
|
|
1835
1920
|
opacity: ".05"
|
|
1836
1921
|
}),
|
|
1837
|
-
/* @__PURE__ */
|
|
1922
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1838
1923
|
fill: "#528693",
|
|
1839
1924
|
d: "m17.404 11.998-4.03.47-6.417.748-1.462.17.21.373 1.94-3.537 3.09-5.638.71-1.295c.154-.28-.267-.53-.42-.25l-1.94 3.537-3.09 5.638-.71 1.295c-.082.149.017.396.21.373l4.03-.47 6.417-.748 1.462-.17c.308-.037.311-.533 0-.496Z"
|
|
1840
1925
|
}),
|
|
1841
|
-
/* @__PURE__ */
|
|
1926
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1842
1927
|
fill: "#FFBD54",
|
|
1843
1928
|
d: "M11.235 5.898c1.486 0 2.69-1.224 2.69-2.734S12.722.429 11.236.429s-2.69 1.224-2.69 2.735c0 1.51 1.204 2.734 2.69 2.734Z"
|
|
1844
1929
|
}),
|
|
1845
|
-
/* @__PURE__ */
|
|
1930
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1846
1931
|
fill: "#528693",
|
|
1847
1932
|
d: "M8.918 3.793a2.474 2.474 0 0 1 .068-1.47c.17-.47.48-.876.887-1.162a2.37 2.37 0 0 1 2.76.025c.4.293.703.704.866 1.179.162.474.177.987.041 1.47a2.44 2.44 0 0 1-.798 1.227 2.375 2.375 0 0 1-1.348.536 2.393 2.393 0 0 1-1.552-.457 2.461 2.461 0 0 1-.924-1.348.297.297 0 0 0-.137-.18.288.288 0 0 0-.4.113.302.302 0 0 0-.027.226c.16.604.5 1.143.972 1.543a2.945 2.945 0 0 0 3.425.283c.53-.318.95-.794 1.204-1.364.253-.57.327-1.205.211-1.82a3.047 3.047 0 0 0-.858-1.61A2.94 2.94 0 0 0 9.912.448c-.613.317-1.1.837-1.384 1.473a3.12 3.12 0 0 0-.174 2.03c.093.37.657.213.564-.158Z"
|
|
1848
1933
|
}),
|
|
1849
|
-
/* @__PURE__ */
|
|
1934
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1850
1935
|
fill: "#528693",
|
|
1851
1936
|
d: "M9.92 3.52a1.419 1.419 0 0 1 .143-1.046 1.38 1.38 0 0 1 .822-.647.195.195 0 0 0 .117-.093.2.2 0 0 0-.073-.27.192.192 0 0 0-.148-.019 1.778 1.778 0 0 0-1.055.835c-.23.407-.296.89-.182 1.346a.2.2 0 0 0 .092.12.193.193 0 0 0 .266-.075.2.2 0 0 0 .018-.15Z"
|
|
1852
1937
|
}),
|
|
1853
|
-
/* @__PURE__ */
|
|
1938
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1854
1939
|
fill: "#FFBD54",
|
|
1855
1940
|
d: "M5.494 18.192c2.477 0 4.485-2.04 4.485-4.558 0-2.517-2.008-4.557-4.485-4.557-2.476 0-4.484 2.04-4.484 4.557 0 2.518 2.008 4.558 4.484 4.558Z"
|
|
1856
1941
|
}),
|
|
1857
|
-
/* @__PURE__ */
|
|
1942
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1858
1943
|
fill: "#528693",
|
|
1859
1944
|
d: "M10.271 13.634c0-.998-.302-1.973-.867-2.79a4.785 4.785 0 0 0-2.289-1.778 4.702 4.702 0 0 0-2.878-.115 4.768 4.768 0 0 0-2.42 1.587c-.488.6-.828 1.31-.989 2.071a4.93 4.93 0 0 0 .062 2.303 4.876 4.876 0 0 0 1.098 2.014 4.77 4.77 0 0 0 1.889 1.272 4.704 4.704 0 0 0 4.363-.594 4.83 4.83 0 0 0 1.493-1.732c.353-.691.538-1.459.538-2.238a.3.3 0 0 0-.086-.21.29.29 0 0 0-.413 0 .3.3 0 0 0-.086.21c0 .88-.268 1.736-.766 2.454a4.2 4.2 0 0 1-2.016 1.557 4.127 4.127 0 0 1-2.531.093 4.186 4.186 0 0 1-2.122-1.406 4.316 4.316 0 0 1-.349-4.895 4.214 4.214 0 0 1 1.9-1.702 4.13 4.13 0 0 1 2.519-.279 4.22 4.22 0 0 1 2.408 1.485c.613.76.95 1.711.957 2.693a.3.3 0 0 0 .086.21.29.29 0 0 0 .413 0 .3.3 0 0 0 .086-.21Z"
|
|
1860
1945
|
}),
|
|
1861
|
-
/* @__PURE__ */
|
|
1946
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1862
1947
|
fill: "#FFBD54",
|
|
1863
1948
|
d: "M17.404 15.892c1.981 0 3.587-1.633 3.587-3.646 0-2.014-1.606-3.647-3.587-3.647s-3.587 1.633-3.587 3.646c0 2.014 1.606 3.647 3.587 3.647Z"
|
|
1864
1949
|
}),
|
|
1865
|
-
/* @__PURE__ */
|
|
1950
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1866
1951
|
fill: "#528693",
|
|
1867
1952
|
d: "M14.22 13.11a3.4 3.4 0 0 1 .092-2.02 3.342 3.342 0 0 1 1.219-1.598 3.258 3.258 0 0 1 3.793.032c.551.402.968.967 1.192 1.619.223.651.244 1.357.058 2.021a3.353 3.353 0 0 1-1.098 1.687 3.265 3.265 0 0 1-1.852.737 3.288 3.288 0 0 1-2.133-.627 3.382 3.382 0 0 1-1.27-1.851.296.296 0 0 0-.138-.18.288.288 0 0 0-.398.113.302.302 0 0 0-.028.226 3.951 3.951 0 0 0 1.263 2.006 3.83 3.83 0 0 0 4.454.37 3.923 3.923 0 0 0 1.566-1.773c.33-.74.426-1.567.276-2.366a3.964 3.964 0 0 0-1.114-2.095 3.857 3.857 0 0 0-2.099-1.061c-.79-.126-1.6 0-2.317.36a3.965 3.965 0 0 0-1.804 1.916 4.054 4.054 0 0 0-.225 2.643c.094.37.658.211.564-.159Z"
|
|
1868
1953
|
}),
|
|
1869
|
-
/* @__PURE__ */
|
|
1954
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1870
1955
|
fill: "#FFBD54",
|
|
1871
1956
|
d: "M5.494 18.192c2.477 0 4.485-2.04 4.485-4.558 0-2.517-2.008-4.557-4.485-4.557-2.476 0-4.484 2.04-4.484 4.557 0 2.518 2.008 4.558 4.484 4.558Z"
|
|
1872
1957
|
}),
|
|
1873
|
-
/* @__PURE__ */
|
|
1958
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1874
1959
|
fill: "#528693",
|
|
1875
1960
|
d: "M1.303 13.634c0-.878.268-1.735.766-2.453a4.2 4.2 0 0 1 2.016-1.558 4.128 4.128 0 0 1 2.531-.092 4.187 4.187 0 0 1 2.122 1.406 4.316 4.316 0 0 1 .349 4.895 4.214 4.214 0 0 1-1.9 1.702 4.13 4.13 0 0 1-2.518.279 4.22 4.22 0 0 1-2.409-1.485 4.344 4.344 0 0 1-.957-2.694.3.3 0 0 0-.086-.21.29.29 0 0 0-.413 0 .3.3 0 0 0-.086.21c0 1 .303 1.974.867 2.792a4.785 4.785 0 0 0 2.29 1.776c.924.34 1.929.38 2.877.116a4.768 4.768 0 0 0 2.42-1.587c.488-.6.828-1.31.99-2.072.16-.76.14-1.55-.062-2.302A4.876 4.876 0 0 0 9 10.343 4.77 4.77 0 0 0 7.113 9.07a4.703 4.703 0 0 0-4.363.595 4.83 4.83 0 0 0-1.493 1.733 4.917 4.917 0 0 0-.538 2.236.3.3 0 0 0 .086.21.29.29 0 0 0 .413 0 .3.3 0 0 0 .086-.21Z"
|
|
1876
1961
|
}),
|
|
1877
|
-
/* @__PURE__ */
|
|
1962
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1878
1963
|
fill: "#528693",
|
|
1879
1964
|
d: "M3.096 13.634c.007-.644.262-1.26.71-1.715a2.406 2.406 0 0 1 1.689-.722c.051 0 .101-.02.138-.057a.2.2 0 0 0 0-.28.193.193 0 0 0-.138-.059c-.74.001-1.448.3-1.97.83a2.86 2.86 0 0 0-.819 2.003.2.2 0 0 0 .057.14.193.193 0 0 0 .276 0 .2.2 0 0 0 .057-.14Z"
|
|
1880
1965
|
}),
|
|
1881
|
-
/* @__PURE__ */
|
|
1966
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1882
1967
|
fill: "#FFBD54",
|
|
1883
1968
|
d: "M17.407 15.694c1.981 0 3.587-1.633 3.587-3.646 0-2.014-1.606-3.647-3.587-3.647-1.982 0-3.588 1.633-3.588 3.647s1.606 3.646 3.588 3.646Z"
|
|
1884
1969
|
}),
|
|
1885
|
-
/* @__PURE__ */
|
|
1970
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1886
1971
|
fill: "#528693",
|
|
1887
1972
|
d: "M14.22 13.11a3.4 3.4 0 0 1 .092-2.02 3.342 3.342 0 0 1 1.219-1.598 3.258 3.258 0 0 1 3.793.032c.551.402.968.967 1.192 1.619.223.651.244 1.357.058 2.021a3.353 3.353 0 0 1-1.098 1.687 3.265 3.265 0 0 1-1.852.737 3.288 3.288 0 0 1-2.133-.627 3.382 3.382 0 0 1-1.27-1.851.296.296 0 0 0-.138-.18.288.288 0 0 0-.398.113.302.302 0 0 0-.028.226 3.951 3.951 0 0 0 1.263 2.006 3.83 3.83 0 0 0 4.454.37 3.923 3.923 0 0 0 1.566-1.773c.33-.74.426-1.567.276-2.366a3.964 3.964 0 0 0-1.114-2.095 3.857 3.857 0 0 0-2.099-1.061c-.79-.126-1.6 0-2.317.36a3.965 3.965 0 0 0-1.804 1.916 4.054 4.054 0 0 0-.225 2.643c.094.37.658.211.564-.159Z"
|
|
1888
1973
|
}),
|
|
1889
|
-
/* @__PURE__ */
|
|
1974
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1890
1975
|
fill: "#528693",
|
|
1891
1976
|
d: "M15.588 12.738a1.96 1.96 0 0 1 .197-1.445 1.906 1.906 0 0 1 1.134-.894.196.196 0 0 0 .118-.093.201.201 0 0 0-.073-.27.192.192 0 0 0-.148-.019 2.304 2.304 0 0 0-1.368 1.082 2.37 2.37 0 0 0-.236 1.744c.014.05.047.092.092.118a.192.192 0 0 0 .264-.074.2.2 0 0 0 .02-.149ZM8.652 12.516a3.843 3.843 0 0 1-.376 2.692 3.644 3.644 0 0 1-1.792 1.594c-.14.057-.077.292.064.233a3.851 3.851 0 0 0 1.635-1.293 3.943 3.943 0 0 0 .736-1.968 3.897 3.897 0 0 0-.116-1.3.079.079 0 0 0-.038-.043.077.077 0 0 0-.101.029.08.08 0 0 0-.011.056h-.001ZM5.574 17.212c.025 0 .049-.01.066-.027a.095.095 0 0 0 0-.134.092.092 0 0 0-.131 0 .096.096 0 0 0 0 .134.092.092 0 0 0 .065.027ZM19.744 10.834a3.173 3.173 0 0 1-.138 2.498 3.014 3.014 0 0 1-1.68 1.464c-.14.049-.079.276.06.226a3.216 3.216 0 0 0 1.54-1.177 3.3 3.3 0 0 0 .6-1.862 3.198 3.198 0 0 0-.226-1.193c-.04-.095-.192-.057-.156.044ZM17.372 15.06a.09.09 0 0 0 .062-.153.087.087 0 0 0-.125 0 .09.09 0 0 0 .063.152ZM12.698 2.3c.137.257.217.541.235.833.008.291-.061.579-.201.832-.141.238-.34.435-.576.574a1.592 1.592 0 0 1-.777.219.111.111 0 0 0-.075.034.115.115 0 0 0 0 .158c.02.02.047.033.075.034.315-.001.624-.088.896-.25.27-.164.495-.397.648-.676.293-.544.306-1.36-.107-1.85-.059-.07-.152.02-.117.092h-.001ZM10.765 4.552c.025 0 .049-.01.067-.028a.097.097 0 0 0 0-.135.094.094 0 0 0-.134 0 .097.097 0 0 0 0 .135.094.094 0 0 0 .067.028Z"
|
|
1892
1977
|
}),
|
|
1893
|
-
/* @__PURE__ */
|
|
1978
|
+
/* @__PURE__ */ jsx44("path", {
|
|
1894
1979
|
fill: "#528693",
|
|
1895
1980
|
d: "M18.347 4.75c1.175 0 1.177-1.857 0-1.857-1.178 0-1.178 1.858 0 1.858ZM16.12 5.824l-.003.056c.002.07.03.135.078.184a.265.265 0 0 0 .181.08l.07-.01a.258.258 0 0 0 .114-.068l.04-.053a.266.266 0 0 0 .035-.133l-.003-.056a.202.202 0 0 0-.022-.1.267.267 0 0 0-.234-.16l-.068.01a.256.256 0 0 0-.113.067l-.039.052a.26.26 0 0 0-.035.131ZM5.704 6.722c.573 0 .574-.905 0-.905-.575 0-.575.905 0 .905ZM3.623 2.902c1.3 0 1.301-2.052 0-2.052s-1.301 2.052 0 2.052Z",
|
|
1896
1981
|
opacity: ".05"
|
|
@@ -1901,10 +1986,10 @@ var Particle = forwardRef35((delegated, ref) => {
|
|
|
1901
1986
|
Particle.displayName = "ParticleIcon";
|
|
1902
1987
|
|
|
1903
1988
|
// src/iconography/people.tsx
|
|
1904
|
-
import { forwardRef as
|
|
1905
|
-
import { jsx as
|
|
1906
|
-
var People =
|
|
1907
|
-
return /* @__PURE__ */
|
|
1989
|
+
import { forwardRef as forwardRef38 } from "react";
|
|
1990
|
+
import { jsx as jsx45, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
1991
|
+
var People = forwardRef38((delegated, ref) => {
|
|
1992
|
+
return /* @__PURE__ */ jsxs36("svg", {
|
|
1908
1993
|
ref,
|
|
1909
1994
|
width: "17",
|
|
1910
1995
|
height: "16",
|
|
@@ -1912,51 +1997,51 @@ var People = forwardRef36((delegated, ref) => {
|
|
|
1912
1997
|
fill: "none",
|
|
1913
1998
|
...delegated,
|
|
1914
1999
|
children: [
|
|
1915
|
-
/* @__PURE__ */
|
|
2000
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1916
2001
|
d: "M7.308 9.755a1.493 1.493 0 0 0-1.058-.36c-.14 0-.282.01-.425.02l-.091.004a2.21 2.21 0 0 0 .03-.29c.74-.648.761-1.953.734-2.484a1.737 1.737 0 0 0-.426-1.079 1.51 1.51 0 0 0-1.08-.497c-.023-.003-.048-.003-.073-.003a1.459 1.459 0 0 0-.847.305c-.25.191-.446.459-.565.772a2.472 2.472 0 0 0-.107.95c.036.671.099 1.314.478 1.764.085.1.182.186.288.255.006.102.017.204.034.305l-.06-.002c-.144-.01-.283-.02-.42-.02a1.486 1.486 0 0 0-1.055.36 1.49 1.49 0 0 0-.432.905c-.04.22-.061.444-.063.67.002.256.302.323.523.373l.095.021a8.233 8.233 0 0 0 2.114.21c.102 0 .201 0 .306-.002a8.44 8.44 0 0 0 2.51-.362.09.09 0 0 0 .054-.039.11.11 0 0 0 .018-.069.104.104 0 0 0 .009-.053c-.017-.606-.067-1.285-.49-1.654Zm-3.435-1.29c-.235-.436-.254-1.013-.269-1.477a1.886 1.886 0 0 1 .22-1.017c.179-.28.432-.488.724-.593.14-.064.288-.1.438-.105.048 0 .097.004.144.011.16.031.314.087.46.167.278.147.498.404.618.722.058.166.091.342.097.521.041 1.328-.326 2.154-1.088 2.456a.65.65 0 0 1-.256.048 1.278 1.278 0 0 1-.623-.218 1.48 1.48 0 0 1-.465-.516Zm1.664.828c-.005.15-.042.298-.107.43a.92.92 0 0 1-.268.327.53.53 0 0 1-.248.072c-.36 0-.48-.56-.517-.846.184.113.388.177.597.189a.582.582 0 0 0 .129-.015 1.32 1.32 0 0 0 .414-.157Zm-.33 2.403-.332.002a6.922 6.922 0 0 1-2.503-.355c.027-.588.09-1.185.518-1.476a1.49 1.49 0 0 1 .916-.233l.216.002c.072 0 .146-.002.222-.005.121.472.352.722.667.722a.78.78 0 0 0 .19-.027.815.815 0 0 0 .38-.257.972.972 0 0 0 .207-.44c.09.005.18.007.266.007l.223-.002c.315-.024.63.057.906.233.46.312.495.993.517 1.495a8.316 8.316 0 0 1-2.394.334h.001Z",
|
|
1917
2002
|
fill: "#528693"
|
|
1918
2003
|
}),
|
|
1919
|
-
/* @__PURE__ */
|
|
2004
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1920
2005
|
fillRule: "evenodd",
|
|
1921
2006
|
clipRule: "evenodd",
|
|
1922
2007
|
d: "M7.44 9.604c.255.223.388.53.461.844.072.311.09.648.098.95a.306.306 0 0 1-.01.099.308.308 0 0 1-.05.146.29.29 0 0 1-.167.12 8.637 8.637 0 0 1-2.562.369c-.106.002-.205.002-.305.002a8.46 8.46 0 0 1-2.162-.215h-.001a4.614 4.614 0 0 0-.091-.02l-.003-.001a1.536 1.536 0 0 1-.393-.128c-.14-.075-.283-.211-.285-.44v-.003c.002-.234.024-.467.065-.696a1.69 1.69 0 0 1 .49-1.02l.01-.01c.34-.285.76-.43 1.19-.405.075 0 .15.002.224.006a1.543 1.543 0 0 1-.224-.215c-.427-.509-.49-1.22-.525-1.88a2.672 2.672 0 0 1 .117-1.025l.003-.01c.131-.346.35-.645.631-.86.282-.215.616-.336.962-.345h.009a1.711 1.711 0 0 1 1.297.564l.003.002c.288.324.456.753.475 1.202.015.275.016.751-.082 1.247-.092.46-.276.96-.64 1.323.088-.005.179-.01.269-.01.43-.025.853.12 1.193.407l.003.002Zm-1.19-.208c.38-.024.754.103 1.058.36.337.293.438.782.474 1.275a7.898 7.898 0 0 1 .017.378.104.104 0 0 1-.009.053.112.112 0 0 1-.018.07.09.09 0 0 1-.054.038 8.44 8.44 0 0 1-2.51.361c-.105.003-.204.003-.306.003a8.258 8.258 0 0 1-2.21-.231l-.003-.001c-.156-.035-.35-.08-.45-.192a.261.261 0 0 1-.07-.18c.003-.226.024-.45.064-.67a1.49 1.49 0 0 1 .432-.905 1.487 1.487 0 0 1 1.054-.36 4.644 4.644 0 0 1 .409.019h.012l.06.003a2.825 2.825 0 0 1-.034-.305 1.323 1.323 0 0 1-.288-.255c-.379-.45-.442-1.093-.478-1.764-.027-.322.01-.646.107-.95.12-.313.315-.58.565-.772.25-.19.544-.296.847-.305.025 0 .05 0 .074.003a1.51 1.51 0 0 1 1.26.745c.055.091.1.188.137.29l.002.004a1.811 1.811 0 0 1 .108.58c.01.253.008.65-.065 1.067-.088.5-.279 1.03-.672 1.373a2.224 2.224 0 0 1-.03.291l.092-.004h.002l.111-.008a5.06 5.06 0 0 1 .312-.011Zm-2.377-.932c.116.211.276.388.465.516.19.127.403.202.623.218a.65.65 0 0 0 .256-.048c.532-.21.871-.677 1.014-1.39a4.728 4.728 0 0 0 .072-1.107 1.461 1.461 0 0 0-.222-.736 1.297 1.297 0 0 0-.491-.466 1.58 1.58 0 0 0-.46-.167 1.003 1.003 0 0 0-.144-.011c-.15.005-.298.041-.438.105a1.445 1.445 0 0 0-.724.593c-.165.305-.242.66-.22 1.017.015.464.034 1.04.269 1.476Zm.124-2.391c-.145.27-.213.585-.193.902v.007c.015.476.036 1 .245 1.387.101.184.24.336.4.445.16.107.339.17.521.184.058 0 .117-.01.172-.033h.001c.64-.255 1.002-.962.962-2.265a1.533 1.533 0 0 0-.085-.459 1.143 1.143 0 0 0-.524-.613l-.003-.002a1.364 1.364 0 0 0-.397-.144.803.803 0 0 0-.107-.01.954.954 0 0 0-.357.088l-.008.004-.008.003a1.244 1.244 0 0 0-.62.506Zm1.105 4.253a.779.779 0 0 1-.19.027c-.316 0-.547-.25-.668-.722h-.006a6.957 6.957 0 0 1-.216.005l-.216-.002a1.49 1.49 0 0 0-.916.233c-.427.29-.49.888-.518 1.476a6.924 6.924 0 0 0 2.503.355l.168-.001.163-.001h.001a8.317 8.317 0 0 0 2.39-.333H7.6c-.004-.1-.01-.206-.018-.315-.034-.442-.13-.93-.5-1.181a1.476 1.476 0 0 0-.905-.233l-.223.002a4.85 4.85 0 0 1-.266-.007.972.972 0 0 1-.207.44.815.815 0 0 1-.38.257Zm.737-.491a1.152 1.152 0 0 1-.205.363c-.126.15-.29.262-.473.32l-.008.002a.976.976 0 0 1-.24.033h-.002a.736.736 0 0 1-.553-.248 1.293 1.293 0 0 1-.262-.47l-.074.001H4.02l-.23-.003a1.29 1.29 0 0 0-.79.201c-.16.11-.262.282-.327.514a3.179 3.179 0 0 0-.093.652 6.712 6.712 0 0 0 2.286.298h.01l.164-.001h.001l.165-.001.001.08.001-.08c.736.006 1.47-.09 2.185-.283a3.287 3.287 0 0 0-.08-.62c-.063-.248-.168-.441-.34-.559a1.276 1.276 0 0 0-.782-.2H6.18l-.225.002-.115-.001Zm-.333-.318a1.055 1.055 0 0 0 .03-.224 1.371 1.371 0 0 1-.413.157.582.582 0 0 1-.13.015 1.25 1.25 0 0 1-.596-.189c.01.072.024.16.045.252.067.278.202.594.472.594a.53.53 0 0 0 .248-.072.92.92 0 0 0 .268-.328 1.02 1.02 0 0 0 .076-.205Zm-.454.366a.723.723 0 0 0 .203-.258.968.968 0 0 1-.09.02.781.781 0 0 1-.172.02h-.01a1.443 1.443 0 0 1-.309-.051c.013.038.027.075.043.11.07.155.14.196.195.198a.329.329 0 0 0 .14-.04Z",
|
|
1923
2008
|
fill: "#528693"
|
|
1924
2009
|
}),
|
|
1925
|
-
/* @__PURE__ */
|
|
2010
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1926
2011
|
d: "M7.598 11.362a8.316 8.316 0 0 1-2.392.334l-.332.002a6.924 6.924 0 0 1-2.503-.355c.028-.588.091-1.186.519-1.476a1.49 1.49 0 0 1 .916-.233l.216.002c.072 0 .146-.002.222-.005.12.472.351.722.667.722a.78.78 0 0 0 .19-.027.815.815 0 0 0 .38-.257.972.972 0 0 0 .206-.44c.092.005.18.007.267.007l.222-.002c.316-.024.631.057.906.233.461.312.495.993.516 1.495Z",
|
|
1927
2012
|
fill: "#BFF6F8"
|
|
1928
2013
|
}),
|
|
1929
|
-
/* @__PURE__ */
|
|
2014
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1930
2015
|
d: "M5.537 9.293c-.005.15-.041.298-.106.43a.92.92 0 0 1-.269.327.53.53 0 0 1-.247.072c-.36 0-.48-.56-.518-.846.184.113.388.177.597.188a.582.582 0 0 0 .13-.014c.143-.028.283-.081.413-.157Zm.768-2.598c.04 1.327-.326 2.153-1.088 2.455a.65.65 0 0 1-.256.048 1.278 1.278 0 0 1-.623-.219 1.48 1.48 0 0 1-.465-.515c-.235-.436-.254-1.012-.269-1.476a1.886 1.886 0 0 1 .22-1.017c.179-.28.432-.488.724-.593.14-.064.288-.1.438-.106.048 0 .096.005.144.012.16.03.314.087.46.167.277.147.498.403.618.721.058.167.091.344.097.523Z",
|
|
1931
2016
|
fill: "#fff"
|
|
1932
2017
|
}),
|
|
1933
|
-
/* @__PURE__ */
|
|
2018
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1934
2019
|
d: "M15.308 9.755a1.493 1.493 0 0 0-1.058-.36c-.14 0-.282.01-.425.02l-.091.004c.016-.096.026-.193.03-.29.74-.648.761-1.953.734-2.484a1.737 1.737 0 0 0-.426-1.079 1.511 1.511 0 0 0-1.08-.497c-.023-.003-.048-.003-.073-.003a1.459 1.459 0 0 0-.847.305 1.74 1.74 0 0 0-.564.772 2.473 2.473 0 0 0-.108.95c.035.671.099 1.314.478 1.764.085.1.181.186.288.255.006.102.017.204.034.305l-.06-.002c-.144-.01-.283-.02-.42-.02a1.486 1.486 0 0 0-1.055.36 1.49 1.49 0 0 0-.432.905c-.04.22-.061.444-.063.67.002.256.303.323.523.373l.095.021a8.233 8.233 0 0 0 2.114.21c.102 0 .201 0 .306-.002a8.44 8.44 0 0 0 2.51-.362.09.09 0 0 0 .055-.039.11.11 0 0 0 .017-.069.104.104 0 0 0 .009-.053c-.017-.606-.067-1.285-.49-1.654Zm-3.435-1.29c-.235-.436-.254-1.013-.269-1.477a1.885 1.885 0 0 1 .22-1.017c.179-.28.433-.488.724-.593.14-.064.288-.1.438-.105.048 0 .097.004.144.011.16.031.314.087.46.167.277.147.498.404.618.722.058.166.091.342.097.521.041 1.328-.326 2.154-1.088 2.456a.65.65 0 0 1-.256.048 1.278 1.278 0 0 1-.623-.218 1.479 1.479 0 0 1-.465-.516Zm1.664.828c-.005.15-.042.298-.107.43a.92.92 0 0 1-.268.327.53.53 0 0 1-.248.072c-.36 0-.48-.56-.517-.846.184.113.388.177.597.189a.582.582 0 0 0 .129-.015 1.32 1.32 0 0 0 .414-.157Zm-.33 2.403-.332.002a6.921 6.921 0 0 1-2.503-.355c.027-.588.09-1.185.518-1.476a1.49 1.49 0 0 1 .916-.233l.216.002c.072 0 .146-.002.222-.005.121.472.352.722.667.722a.78.78 0 0 0 .19-.027.814.814 0 0 0 .38-.257.972.972 0 0 0 .207-.44c.09.005.18.007.266.007l.223-.002c.315-.024.63.057.905.233.462.312.496.993.518 1.495a8.316 8.316 0 0 1-2.393.334Z",
|
|
1935
2020
|
fill: "#528693"
|
|
1936
2021
|
}),
|
|
1937
|
-
/* @__PURE__ */
|
|
2022
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1938
2023
|
fillRule: "evenodd",
|
|
1939
2024
|
clipRule: "evenodd",
|
|
1940
2025
|
d: "M15.44 9.604c.255.223.388.53.461.844.072.311.09.648.098.95a.308.308 0 0 1-.01.099.309.309 0 0 1-.05.146.29.29 0 0 1-.168.12 8.637 8.637 0 0 1-2.561.369c-.106.002-.205.002-.305.002a8.46 8.46 0 0 1-2.162-.215h-.002a4.487 4.487 0 0 0-.09-.02l-.003-.001-.012-.003a1.535 1.535 0 0 1-.38-.125c-.141-.075-.284-.211-.286-.44v-.003c.002-.234.024-.467.065-.696a1.69 1.69 0 0 1 .49-1.02l.01-.01c.34-.285.76-.43 1.19-.405.075 0 .15.002.223.006a1.546 1.546 0 0 1-.223-.215c-.428-.509-.49-1.22-.525-1.88a2.67 2.67 0 0 1 .117-1.025l.003-.01c.131-.346.35-.645.631-.86.282-.215.616-.336.962-.345h.009a1.712 1.712 0 0 1 1.297.564l.003.002c.288.324.456.753.475 1.202.015.275.017.751-.082 1.247-.092.46-.276.96-.64 1.323.088-.005.179-.01.269-.01.43-.025.853.12 1.193.407l.003.002Zm-1.19-.208c.38-.024.754.103 1.058.36.337.293.438.782.474 1.275.007.108.012.216.015.323l.002.056a.104.104 0 0 1-.009.052.11.11 0 0 1-.017.07.09.09 0 0 1-.054.038 8.44 8.44 0 0 1-2.51.361c-.105.003-.205.003-.307.003a8.258 8.258 0 0 1-2.21-.231l-.004-.001c-.155-.035-.349-.08-.45-.192a.261.261 0 0 1-.068-.18c.002-.226.023-.45.063-.67a1.49 1.49 0 0 1 .432-.905 1.486 1.486 0 0 1 1.054-.36 4.645 4.645 0 0 1 .409.019h.012l.06.003a2.884 2.884 0 0 1-.034-.305 1.323 1.323 0 0 1-.288-.255c-.379-.45-.443-1.093-.478-1.764-.027-.322.01-.646.107-.95.12-.313.315-.58.566-.772.25-.19.543-.296.846-.305.025 0 .05 0 .074.003a1.511 1.511 0 0 1 1.26.745 1.716 1.716 0 0 1 .139.294 1.811 1.811 0 0 1 .108.58c.01.253.008.65-.065 1.067-.088.5-.279 1.03-.672 1.373a2.224 2.224 0 0 1-.03.291l.091-.004h.003l.111-.008c.105-.006.21-.011.312-.011Zm-2.377-.932c.116.211.276.388.465.516.19.127.403.202.623.218a.65.65 0 0 0 .256-.048c.532-.21.871-.677 1.014-1.39a4.73 4.73 0 0 0 .072-1.105v-.002a1.729 1.729 0 0 0-.095-.48 1.46 1.46 0 0 0-.126-.256 1.307 1.307 0 0 0-.492-.466 1.58 1.58 0 0 0-.46-.167 1.003 1.003 0 0 0-.144-.011 1.14 1.14 0 0 0-.438.105 1.445 1.445 0 0 0-.724.593c-.165.305-.242.66-.22 1.017.015.464.034 1.04.269 1.476Zm.124-2.391c-.145.27-.213.585-.193.902v.007c.015.476.036 1 .245 1.387.101.184.24.336.4.445.16.107.339.17.521.184a.45.45 0 0 0 .172-.033h.002c.64-.255 1.002-.962.961-2.265a1.534 1.534 0 0 0-.085-.459 1.144 1.144 0 0 0-.524-.613l-.003-.002a1.364 1.364 0 0 0-.397-.144.803.803 0 0 0-.107-.01.954.954 0 0 0-.357.088l-.008.004-.008.003a1.244 1.244 0 0 0-.62.506Zm1.105 4.253a.78.78 0 0 1-.19.027c-.316 0-.547-.25-.668-.722h-.006a6.955 6.955 0 0 1-.216.005l-.216-.002a1.49 1.49 0 0 0-.916.233c-.427.29-.49.888-.518 1.476a6.924 6.924 0 0 0 2.503.355l.168-.001.163-.001h.001a8.317 8.317 0 0 0 2.39-.333h.003a9.28 9.28 0 0 0-.018-.315c-.034-.442-.13-.93-.5-1.181a1.476 1.476 0 0 0-.905-.233l-.223.002a4.85 4.85 0 0 1-.266-.007.973.973 0 0 1-.207.44.814.814 0 0 1-.38.257Zm.737-.491a1.152 1.152 0 0 1-.205.363c-.126.15-.29.262-.473.32l-.008.002a.977.977 0 0 1-.24.033h-.002a.736.736 0 0 1-.553-.248 1.29 1.29 0 0 1-.262-.47l-.074.001h-.002l-.23-.003a1.29 1.29 0 0 0-.79.201c-.16.11-.262.282-.327.514a3.247 3.247 0 0 0-.094.652 6.713 6.713 0 0 0 2.287.298h.01l.164-.001h.001l.165-.001.001.08.001-.08c.736.006 1.47-.09 2.184-.283a3.287 3.287 0 0 0-.08-.62c-.063-.248-.167-.441-.34-.559a1.276 1.276 0 0 0-.78-.2h-.013l-.225.002-.115-.001Zm-.333-.318a1.016 1.016 0 0 0 .03-.224 1.372 1.372 0 0 1-.413.157.582.582 0 0 1-.13.015 1.251 1.251 0 0 1-.596-.189c.01.072.024.16.046.252.066.278.201.594.471.594a.53.53 0 0 0 .248-.072.92.92 0 0 0 .268-.328.916.916 0 0 0 .07-.185l.006-.02Zm-.454.366a.723.723 0 0 0 .2-.25l.003-.008a.968.968 0 0 1-.09.02.781.781 0 0 1-.171.02h-.01a1.443 1.443 0 0 1-.31-.051c.013.038.027.075.043.11.07.155.14.196.194.198a.328.328 0 0 0 .14-.04Z",
|
|
1941
2026
|
fill: "#528693"
|
|
1942
2027
|
}),
|
|
1943
|
-
/* @__PURE__ */
|
|
2028
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1944
2029
|
d: "M15.598 11.362a8.316 8.316 0 0 1-2.392.334l-.332.002a6.924 6.924 0 0 1-2.503-.355c.028-.588.091-1.186.519-1.476a1.49 1.49 0 0 1 .916-.233l.216.002c.072 0 .146-.002.222-.005.12.472.351.722.667.722a.764.764 0 0 0 .19-.027.814.814 0 0 0 .38-.257.972.972 0 0 0 .206-.44c.091.005.18.007.267.007l.222-.002c.316-.024.631.057.906.233.461.312.495.993.516 1.495Z",
|
|
1945
2030
|
fill: "#BFF6F8"
|
|
1946
2031
|
}),
|
|
1947
|
-
/* @__PURE__ */
|
|
2032
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1948
2033
|
d: "M13.537 9.293c-.005.15-.041.298-.107.43a.92.92 0 0 1-.268.327.53.53 0 0 1-.247.072c-.36 0-.48-.56-.518-.846.184.113.388.177.597.188a.582.582 0 0 0 .13-.014c.143-.028.283-.081.413-.157Zm.768-2.598c.04 1.327-.326 2.153-1.088 2.455a.65.65 0 0 1-.256.048 1.278 1.278 0 0 1-.623-.219 1.48 1.48 0 0 1-.465-.515c-.235-.436-.254-1.012-.269-1.476a1.886 1.886 0 0 1 .22-1.017c.178-.28.432-.488.724-.593.14-.064.288-.1.438-.106.048 0 .096.005.144.012.16.03.314.087.46.167.277.147.498.403.618.721.058.167.091.344.097.523Z",
|
|
1949
2034
|
fill: "#fff"
|
|
1950
2035
|
}),
|
|
1951
|
-
/* @__PURE__ */
|
|
2036
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1952
2037
|
d: "M13.052 9.452a2.827 2.827 0 0 0-1.853-.559c-.244 0-.493.015-.744.03l-.16.007c.03-.15.046-.3.053-.453 1.296-1.007 1.333-3.037 1.285-3.863a2.546 2.546 0 0 0-.745-1.677A2.796 2.796 0 0 0 9 2.163c-.041-.004-.085-.004-.13-.004A2.757 2.757 0 0 0 6.4 3.833c-.17.473-.234.978-.189 1.478.063 1.045.174 2.045.837 2.745.148.155.318.289.504.396.01.16.03.318.06.474l-.104-.003c-.252-.015-.497-.03-.737-.03a2.813 2.813 0 0 0-1.845.56 2.22 2.22 0 0 0-.756 1.407c-.07.343-.108.691-.11 1.04.003.4.529.505.914.582l.167.034c1.217.25 2.458.36 3.7.326.178 0 .352 0 .535-.004 1.483.01 2.96-.179 4.393-.563a.158.158 0 0 0 .126-.167.146.146 0 0 0 .015-.082c-.029-.944-.118-2-.858-2.574ZM7.04 7.445c-.412-.678-.445-1.575-.47-2.297a2.667 2.667 0 0 1 .384-1.582 2.49 2.49 0 0 1 1.267-.922c.244-.1.504-.155.767-.165.084.001.168.007.252.019.279.048.55.135.804.26.486.227.871.627 1.081 1.122.103.258.16.533.17.81.073 2.066-.57 3.351-1.903 3.821a1.265 1.265 0 0 1-.448.075A2.423 2.423 0 0 1 7.04 7.445Zm2.91 1.289a1.482 1.482 0 0 1-.655 1.178 1.016 1.016 0 0 1-.434.11c-.63 0-.84-.87-.905-1.314.321.175.678.275 1.044.292.076 0 .152-.007.226-.022.252-.044.496-.127.724-.244Zm-.576 3.737c-.193 0-.385.004-.582.004-1.48.057-2.96-.13-4.38-.552.047-.915.158-1.845.907-2.297a2.865 2.865 0 0 1 1.603-.363l.378.004c.126 0 .255-.004.389-.007.21.733.614 1.122 1.166 1.122.113-.001.224-.015.334-.041a1.446 1.446 0 0 0 1.025-1.085c.16.007.315.011.467.011l.389-.004a2.837 2.837 0 0 1 1.585.363c.808.486.867 1.545.906 2.327a16.257 16.257 0 0 1-4.189.518h.002Z",
|
|
1953
2038
|
fill: "#528693"
|
|
1954
2039
|
}),
|
|
1955
|
-
/* @__PURE__ */
|
|
2040
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1956
2041
|
d: "M13.558 11.953a16.257 16.257 0 0 1-4.185.518c-.193 0-.385.004-.582.004-1.48.057-2.96-.13-4.38-.552.049-.915.16-1.845.908-2.297a2.864 2.864 0 0 1 1.603-.363l.378.004c.126 0 .256-.004.389-.007.211.733.615 1.122 1.167 1.122a1.51 1.51 0 0 0 .333-.041 1.445 1.445 0 0 0 1.026-1.085c.16.007.315.011.466.011l.39-.004a2.837 2.837 0 0 1 1.585.363c.806.486.865 1.545.902 2.327Z",
|
|
1957
2042
|
fill: "#BFF6F8"
|
|
1958
2043
|
}),
|
|
1959
|
-
/* @__PURE__ */
|
|
2044
|
+
/* @__PURE__ */ jsx45("path", {
|
|
1960
2045
|
d: "M9.952 8.734a1.482 1.482 0 0 1-.656 1.178 1.015 1.015 0 0 1-.433.11c-.63 0-.841-.87-.906-1.314.322.175.679.275 1.045.292.075 0 .151-.007.226-.022.252-.045.496-.127.724-.244Zm1.343-4.042c.072 2.064-.57 3.349-1.903 3.82a1.265 1.265 0 0 1-.448.073 2.423 2.423 0 0 1-1.904-1.14c-.412-.678-.445-1.575-.47-2.297a2.667 2.667 0 0 1 .385-1.582 2.49 2.49 0 0 1 1.266-.922c.244-.1.504-.156.767-.165.084.001.168.007.252.019.279.047.55.135.804.259.486.228.871.628 1.081 1.122.103.26.16.535.17.813Z",
|
|
1961
2046
|
fill: "#fff"
|
|
1962
2047
|
})
|
|
@@ -1966,10 +2051,10 @@ var People = forwardRef36((delegated, ref) => {
|
|
|
1966
2051
|
People.displayName = "PeopleIcon";
|
|
1967
2052
|
|
|
1968
2053
|
// src/iconography/percentage.tsx
|
|
1969
|
-
import { forwardRef as
|
|
1970
|
-
import { jsx as
|
|
1971
|
-
var Percentage =
|
|
1972
|
-
return /* @__PURE__ */
|
|
2054
|
+
import { forwardRef as forwardRef39 } from "react";
|
|
2055
|
+
import { jsx as jsx46, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
2056
|
+
var Percentage = forwardRef39((delegated, ref) => {
|
|
2057
|
+
return /* @__PURE__ */ jsxs37("svg", {
|
|
1973
2058
|
ref,
|
|
1974
2059
|
width: "17",
|
|
1975
2060
|
height: "16",
|
|
@@ -1977,31 +2062,31 @@ var Percentage = forwardRef37((delegated, ref) => {
|
|
|
1977
2062
|
fill: "none",
|
|
1978
2063
|
...delegated,
|
|
1979
2064
|
children: [
|
|
1980
|
-
/* @__PURE__ */
|
|
2065
|
+
/* @__PURE__ */ jsx46("path", {
|
|
1981
2066
|
d: "M2.5603 14.0231c-.5858-.5858-.5858-1.5356 0-2.1213L12.886 1.5761c.5858-.5858 1.5355-.5858 2.1213 0 .5858.5857.5858 1.5355 0 2.1213L4.6816 14.023c-.5858.5858-1.5356.5858-2.1213 0Z",
|
|
1982
2067
|
fill: "#BFF6F8"
|
|
1983
2068
|
}),
|
|
1984
|
-
/* @__PURE__ */
|
|
2069
|
+
/* @__PURE__ */ jsx46("path", {
|
|
1985
2070
|
fillRule: "evenodd",
|
|
1986
2071
|
clipRule: "evenodd",
|
|
1987
2072
|
d: "M13.2395 1.9296 2.9138 12.2553c-.3905.3905-.3905 1.0237 0 1.4142.3905.3905 1.0237.3905 1.4142 0L14.6537 3.3438c.3906-.3905.3906-1.0237 0-1.4142-.3905-.3905-1.0236-.3905-1.4142 0ZM2.5603 11.9018c-.5858.5857-.5858 1.5355 0 2.1213.5857.5858 1.5355.5858 2.1213 0L15.0073 3.6974c.5858-.5858.5858-1.5356 0-2.1214-.5858-.5857-1.5355-.5857-2.1213 0L2.5603 11.9018Z",
|
|
1988
2073
|
fill: "#528693"
|
|
1989
2074
|
}),
|
|
1990
|
-
/* @__PURE__ */
|
|
2075
|
+
/* @__PURE__ */ jsx46("path", {
|
|
1991
2076
|
d: "M6.984 3.4998c0 1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5 2.5 1.1193 2.5 2.5Z",
|
|
1992
2077
|
fill: "#fff"
|
|
1993
2078
|
}),
|
|
1994
|
-
/* @__PURE__ */
|
|
2079
|
+
/* @__PURE__ */ jsx46("path", {
|
|
1995
2080
|
fillRule: "evenodd",
|
|
1996
2081
|
clipRule: "evenodd",
|
|
1997
2082
|
d: "M4.484 5.4998c1.1045 0 2-.8955 2-2 0-1.1046-.8955-2-2-2-1.1046 0-2 .8954-2 2 0 1.1045.8954 2 2 2Zm0 .5c1.3807 0 2.5-1.1193 2.5-2.5s-1.1193-2.5-2.5-2.5-2.5 1.1193-2.5 2.5 1.1193 2.5 2.5 2.5Z",
|
|
1998
2083
|
fill: "#528693"
|
|
1999
2084
|
}),
|
|
2000
|
-
/* @__PURE__ */
|
|
2085
|
+
/* @__PURE__ */ jsx46("path", {
|
|
2001
2086
|
d: "M15.984 12.4998c0 1.3807-1.1193 2.5-2.5 2.5s-2.5-1.1193-2.5-2.5 1.1193-2.5 2.5-2.5 2.5 1.1193 2.5 2.5Z",
|
|
2002
2087
|
fill: "#fff"
|
|
2003
2088
|
}),
|
|
2004
|
-
/* @__PURE__ */
|
|
2089
|
+
/* @__PURE__ */ jsx46("path", {
|
|
2005
2090
|
fillRule: "evenodd",
|
|
2006
2091
|
clipRule: "evenodd",
|
|
2007
2092
|
d: "M13.484 14.4998c1.1045 0 2-.8955 2-2 0-1.1046-.8955-2-2-2-1.1046 0-2 .8954-2 2 0 1.1045.8954 2 2 2Zm0 .5c1.3807 0 2.5-1.1193 2.5-2.5s-1.1193-2.5-2.5-2.5-2.5 1.1193-2.5 2.5 1.1193 2.5 2.5 2.5Z",
|
|
@@ -2013,10 +2098,10 @@ var Percentage = forwardRef37((delegated, ref) => {
|
|
|
2013
2098
|
Percentage.displayName = "PercentageIcon";
|
|
2014
2099
|
|
|
2015
2100
|
// src/iconography/plans-and-pricing.tsx
|
|
2016
|
-
import { forwardRef as
|
|
2017
|
-
import { jsx as
|
|
2018
|
-
var PlansAndPricing =
|
|
2019
|
-
return /* @__PURE__ */
|
|
2101
|
+
import { forwardRef as forwardRef40 } from "react";
|
|
2102
|
+
import { jsx as jsx47, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
2103
|
+
var PlansAndPricing = forwardRef40((delegated, ref) => {
|
|
2104
|
+
return /* @__PURE__ */ jsxs38("svg", {
|
|
2020
2105
|
ref,
|
|
2021
2106
|
width: "17",
|
|
2022
2107
|
height: "16",
|
|
@@ -2024,45 +2109,45 @@ var PlansAndPricing = forwardRef38((delegated, ref) => {
|
|
|
2024
2109
|
fill: "none",
|
|
2025
2110
|
...delegated,
|
|
2026
2111
|
children: [
|
|
2027
|
-
/* @__PURE__ */
|
|
2112
|
+
/* @__PURE__ */ jsx47("path", {
|
|
2028
2113
|
d: "M3.778 2.4414c0-.5523.4476-1 1-1h6.0587l3.2942 2.8235v9.353c0 .5523-.4478 1-1 1h-8.353c-.5523 0-1-.4477-1-1V2.4414Z",
|
|
2029
2114
|
fill: "#BFF6F8"
|
|
2030
2115
|
}),
|
|
2031
|
-
/* @__PURE__ */
|
|
2116
|
+
/* @__PURE__ */ jsx47("path", {
|
|
2032
2117
|
fillRule: "evenodd",
|
|
2033
2118
|
clipRule: "evenodd",
|
|
2034
2119
|
d: "M10.6518 1.9414H4.7779a.5.5 0 0 0-.5.5V13.618a.5.5 0 0 0 .5.5h8.353a.5.5 0 0 0 .5-.5v-9.123l-2.9791-2.5535Zm.1849-.5H4.7779c-.5523 0-1 .4477-1 1V13.618c0 .5523.4477 1 1 1h8.353c.5522 0 1-.4477 1-1v-9.353l-3.2942-2.8235Z",
|
|
2035
2120
|
fill: "#528693"
|
|
2036
2121
|
}),
|
|
2037
|
-
/* @__PURE__ */
|
|
2122
|
+
/* @__PURE__ */ jsx47("path", {
|
|
2038
2123
|
d: "M11.0814 4.4614a.5.5 0 0 1-.5288-.5562l.2838-2.464L14.131 4.265l-3.0496.1964Z",
|
|
2039
2124
|
fill: "#fff"
|
|
2040
2125
|
}),
|
|
2041
|
-
/* @__PURE__ */
|
|
2126
|
+
/* @__PURE__ */ jsx47("path", {
|
|
2042
2127
|
fillRule: "evenodd",
|
|
2043
2128
|
clipRule: "evenodd",
|
|
2044
2129
|
d: "m11.2255 2.4332-.1762 1.5292 1.8234-.1174-1.6472-1.4118Zm-.6729 1.472a.5.5 0 0 0 .5288.5562l3.0496-.1964-3.2946-2.8238-.2838 2.464Z",
|
|
2045
2130
|
fill: "#528693"
|
|
2046
2131
|
}),
|
|
2047
|
-
/* @__PURE__ */
|
|
2132
|
+
/* @__PURE__ */ jsx47("path", {
|
|
2048
2133
|
fillRule: "evenodd",
|
|
2049
2134
|
clipRule: "evenodd",
|
|
2050
2135
|
d: "M3.4757 10.6548c-.9843-.1406-.918-1.583.0751-1.6326l.333.0292.0274.5466-.333-.0292c-.331.0165-.3532.4973-.025.5442l6.4871.9268L8.959 9.598a.2737.2737 0 0 1 .4378-.3284l1.4777 1.9703a.2737.2737 0 0 1-.0547.3832l-1.9704 1.4777a.2737.2737 0 0 1-.3283-.4379l1.4418-1.0813-6.4872-.9268Z",
|
|
2051
2136
|
fill: "#fff"
|
|
2052
2137
|
}),
|
|
2053
|
-
/* @__PURE__ */
|
|
2138
|
+
/* @__PURE__ */ jsx47("path", {
|
|
2054
2139
|
fillRule: "evenodd",
|
|
2055
2140
|
clipRule: "evenodd",
|
|
2056
2141
|
d: "m3.5583 8.6213.7076.0621.0568 1.1355 4.8182.6883-.502-.6692a.6737.6737 0 0 1 1.0779-.8084L11.1945 11a.6736.6736 0 0 1-.1348.9431l-1.9703 1.4777a.6736.6736 0 0 1-.8083-1.0779l.6692-.5019-5.5312-.7902c-1.4638-.2092-1.3653-2.3543.1117-2.4282l.0275-.0013Zm-.0826 2.0335c-.9843-.1406-.918-1.583.0751-1.6326l.333.0292.0274.5466-.333-.0292a.308.308 0 0 0-.0685.011c-.264.0743-.2604.4898.0434.5332l6.4872.9268L8.9589 9.598a.2737.2737 0 0 1 .4379-.3284l1.4777 1.9703a.2738.2738 0 0 1-.0547.3832l-1.9704 1.4777a.2737.2737 0 0 1-.3283-.4379l1.4417-1.0813-6.487-.9268Z",
|
|
2057
2142
|
fill: "#528693"
|
|
2058
2143
|
}),
|
|
2059
|
-
/* @__PURE__ */
|
|
2144
|
+
/* @__PURE__ */ jsx47("path", {
|
|
2060
2145
|
fillRule: "evenodd",
|
|
2061
2146
|
clipRule: "evenodd",
|
|
2062
2147
|
d: "M14.5734 6.6087c.9087.1299.8475 1.4614-.0694 1.5073l-.4259.0551-.0253-.5046.426-.0552c.3056-.0153.326-.4591.0231-.5024L8.513 6.2533l.9983 1.331a.2526.2526 0 1 1-.4042.3032l-1.3642-1.819a.2526.2526 0 0 1 .0505-.3537l1.819-1.3642a.2526.2526 0 1 1 .3031.4042l-1.331.9983 5.9889.8556Z",
|
|
2063
2148
|
fill: "#fff"
|
|
2064
2149
|
}),
|
|
2065
|
-
/* @__PURE__ */
|
|
2150
|
+
/* @__PURE__ */ jsx47("path", {
|
|
2066
2151
|
fillRule: "evenodd",
|
|
2067
2152
|
clipRule: "evenodd",
|
|
2068
2153
|
d: "M14.5734 6.6087c.9087.1299.8475 1.4614-.0693 1.5073l-.426.0551-.0253-.5046.426-.0552c.3056-.0153.326-.4591.0231-.5024l-5.9888-.8556.9982 1.331a.2526.2526 0 0 1-.4042.3032l-1.3642-1.819a.2513.2513 0 0 1-.039-.2273.2514.2514 0 0 1 .0895-.1264l1.819-1.3642a.2526.2526 0 0 1 .3032.4042l-1.331.9983 5.9888.8556Zm-4.9763-1.115 5.0329.719c1.3826.1976 1.2955 2.2162-.0889 2.3018l-.8409.109-.0617-1.2339-4.226-.6037.4188.5584a.6526.6526 0 1 1-1.0442.7832l-1.3642-1.819a.6526.6526 0 0 1 .1305-.9137l1.819-1.3642a.6526.6526 0 0 1 .7832 1.0442l-.5585.4189Z",
|
|
@@ -2074,10 +2159,10 @@ var PlansAndPricing = forwardRef38((delegated, ref) => {
|
|
|
2074
2159
|
PlansAndPricing.displayName = "PlansAndPricingIcon";
|
|
2075
2160
|
|
|
2076
2161
|
// src/iconography/price-tag.tsx
|
|
2077
|
-
import { forwardRef as
|
|
2078
|
-
import { jsx as
|
|
2079
|
-
var PriceTag =
|
|
2080
|
-
return /* @__PURE__ */
|
|
2162
|
+
import { forwardRef as forwardRef41 } from "react";
|
|
2163
|
+
import { jsx as jsx48, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
2164
|
+
var PriceTag = forwardRef41((delegated, ref) => {
|
|
2165
|
+
return /* @__PURE__ */ jsxs39("svg", {
|
|
2081
2166
|
ref,
|
|
2082
2167
|
width: "17",
|
|
2083
2168
|
height: "16",
|
|
@@ -2085,35 +2170,35 @@ var PriceTag = forwardRef39((delegated, ref) => {
|
|
|
2085
2170
|
fill: "none",
|
|
2086
2171
|
...delegated,
|
|
2087
2172
|
children: [
|
|
2088
|
-
/* @__PURE__ */
|
|
2173
|
+
/* @__PURE__ */ jsx48("path", {
|
|
2089
2174
|
d: "m9.2016 14.5299-5.3736-3.853 5.793-8.0797 4.7251-.9167.6485 4.7692-5.793 8.0802Z",
|
|
2090
2175
|
fill: "#fff"
|
|
2091
2176
|
}),
|
|
2092
|
-
/* @__PURE__ */
|
|
2177
|
+
/* @__PURE__ */ jsx48("path", {
|
|
2093
2178
|
d: "m8.8128 13.9276-4.5965-3.3019a.0133.0133 0 0 1-.0055-.0032.014.014 0 0 1-.002-.0178l.1163-.1641.3672-.5163.7297-1.027 1.4482-2.0394C7.8328 5.5134 8.79 4.1755 9.7544 2.8277c.0069-.0108.014-.013.0314-.0153l.1965-.0375.3929-.0744.7955-.1488 2.1305-.402.5326-.0999.2613-.0492c.0064-.001.0133-.0022.0184.001.0051.0033.0016.0094.0034.0208l.0352.2687.0714.5403.2851 2.1503.1452 1.0746.0362.2686.0081.0493-.3143.4373-5.059 7.0545a1.7584 1.7584 0 0 0-.1567.2598 1.2226 1.2226 0 0 0-.0467.1131l-.0088.0263-.004.0128-.0015.0063c.027.0194-.06-.0408.0603.0433-.004.0006.007-.0129-.0102.03a.9797.9797 0 0 1-.0686.0787.0912.0912 0 0 0 .0044.1157.216.216 0 0 0 .2575.0442.3054.3054 0 0 0 .0912-.0611l.0448-.0358a1.1938 1.1938 0 0 0 .092-.0805 1.7974 1.7974 0 0 0 .1962-.2324l4.9402-6.8749.3088-.4313.18-.2535c.1009-.1407.0376-.3684.0327-.4162l-.1446-1.0616a3719.7822 3719.7822 0 0 1-.4494-3.319.424.424 0 0 0-.2845-.3766.4551.4551 0 0 0-.2507-.0093l-.1964.038-.5549.1087-2.2858.4401-.7855.1508-.3928.0754-.1998.0385a.4623.4623 0 0 0-.3335.1831L6.5894 6.3278 5.1243 8.373 4.339 9.472l-.4118.5743-.2538.3564a.4262.4262 0 0 0 .104.5907l4.737 3.3491c.5716.4042.8656-.0029.2983-.4149Z",
|
|
2094
2179
|
fill: "#528693"
|
|
2095
2180
|
}),
|
|
2096
|
-
/* @__PURE__ */
|
|
2181
|
+
/* @__PURE__ */ jsx48("path", {
|
|
2097
2182
|
d: "m4.2171 11.2794 3.6044 2.5937.888.6332.1194.0851a.8012.8012 0 0 0 .2158.1291.4078.4078 0 0 0 .4288-.1178l.3711-.514 1.2481-1.7573 2.483-3.4894 1.2492-1.7412.3257-.4518a.39.39 0 0 0 .0815-.2246.7585.7585 0 0 0-.0109-.1213l-.011-.0666-.0349-.2673-.139-1.07-.4028-3.1009a.4107.4107 0 0 0-.3439-.3566.8.8 0 0 0-.2811.028l-.1572.0296-.6002.1136-1.2003.2283-2.4284.4662c-.1993.0197-.3265.259-.356.2978l-.172.2385-.3432.4775-.6868.9555L6.693 6.1885l-2.7413 3.8248a1.7602 1.7602 0 0 0-.1567.2599 1.1378 1.1378 0 0 0-.0467.113l-.019.0538a.3149.3149 0 0 0-.0325.1102.2297.2297 0 0 0 .1267.243.0914.0914 0 0 0 .1147-.0295c.0202-.0282.0286-.066.0494-.0933a.0703.0703 0 0 1 .0376-.0274c-.0104-.0075.0924.0658.0492.0344l.006-.001.0108-.0079.022-.0168a1.131 1.131 0 0 0 .0916-.0804 1.7693 1.7693 0 0 0 .1967-.2325l5.3837-7.4935 2.2612-.4386 1.2325-.2387.6331-.1226.192-.0367c.006-.001.0099.0044.0092.0096.1114.829.2523 1.874.3971 2.9524l.1411 1.0556c.0201.1526.0576.423.0457.351l-.2695.3742-1.1748 1.6332c-.7724 1.0755-1.5297 2.1323-2.3164 3.2285L9.733 13.2977l-.5927.8321s-.0027.005-.0059.0045c-.003-.0005.0266.0199-.0813-.057l-.4595-.3294-4.0784-2.8844c-.5719-.4031-.8654.0039-.2981.4159Z",
|
|
2098
2183
|
fill: "#528693"
|
|
2099
2184
|
}),
|
|
2100
|
-
/* @__PURE__ */
|
|
2185
|
+
/* @__PURE__ */ jsx48("path", {
|
|
2101
2186
|
d: "M12.7352 4.6305a.559.559 0 0 0-.3575-.4881.5496.5496 0 0 0-.7468.6068.5279.5279 0 0 0 .1813.3014c.0103.01.0178.0214.0289.0307a.5425.5425 0 0 0 .0557.0308.507.507 0 0 0 .3297.0915.4996.4996 0 0 0 .2349-.0802c.0083-.005.0138-.012.022-.0173a.583.583 0 0 0 .1228-.1033.5614.5614 0 0 0 .0826-.1408c.0042-.0113.0135-.02.0172-.0312a.523.523 0 0 0 .0292-.2003Zm-.5592.0122c-.0034.0005-.0098.0016 0 0l.0109-.0018c.0029-.0005.0044-.0008.0093.0015-.0106.0027-.0196.0037-.0198.0022l-.0004-.002ZM9.6696 9.7357c.1039-.1448.1402-.3035.109-.476-.0297-.1714-.1362-.3836-.3195-.6365-.2619-.3427-.4113-.6512-.4482-.9255-.0342-.2748.0396-.5389.2213-.7923.185-.2581.4116-.4162.6796-.4743.2697-.057.5472-.007.8326.15l.3708-.517.3518.2522-.3725.5194c.2385.2258.3644.484.3776.7748.0148.2918-.0935.599-.3248.9218l-.4345-.3115c.1592-.222.2328-.436.221-.6423-.0118-.2063-.1074-.3738-.2868-.5024-.1874-.1343-.3656-.1882-.5347-.1617-.168.025-.3141.124-.4382.2971-.1151.1606-.1552.326-.1201.4966.0377.17.148.3802.3309.6304.1855.2498.3113.47.3774.6603.0688.19.0901.3696.0639.5391-.0246.1707-.0967.3394-.2164.5062-.1907.2661-.4245.4226-.7012.4696-.2753.0482-.5676-.0161-.8771-.1927l-.3234.451-.3494-.2505.3233-.451c-.2736-.2367-.429-.5053-.466-.806-.0344-.301.0602-.6075.2836-.9191l.4368.3131c-.1568.2188-.2201.4285-.1899.6289.0303.2004.151.3763.3618.5275.2063.1478.404.2145.593.2.1892-.0146.3453-.1076.4683-.2792Z",
|
|
2102
2187
|
fill: "#528693"
|
|
2103
2188
|
}),
|
|
2104
|
-
/* @__PURE__ */
|
|
2189
|
+
/* @__PURE__ */ jsx48("path", {
|
|
2105
2190
|
d: "M7.0697 13.5895 2.3944 8.9137 9.4246 1.884l4.8112-.136-.1359 4.8113-7.0302 7.0302Z",
|
|
2106
2191
|
fill: "#BFF6F8"
|
|
2107
2192
|
}),
|
|
2108
|
-
/* @__PURE__ */
|
|
2193
|
+
/* @__PURE__ */ jsx48("path", {
|
|
2109
2194
|
d: "M6.784 12.932 2.7859 8.9264a.014.014 0 0 1-.004-.022l.1414-.1429.4463-.4498.887-.8946 1.7608-1.7766c1.1684-1.17 2.3304-2.3344 3.5013-3.5074.0085-.0095.016-.0105.0335-.01l.1999-.005.3998-.0095.8091-.0175 2.1675-.05.5418-.012.2658-.006c.0065 0 .0135 0 .018.004.0045.004 0 .0096 0 .021l-.009.271-.0175.5447-.0684 2.168-.0315 1.084-.008.2708v.05l-.3813.3803-6.1391 6.1376a1.7614 1.7614 0 0 0-.197.2309 1.2262 1.2262 0 0 0-.0644.104l-.013.0245-.006.012-.0025.0059c.0235.0235-.0525-.0499.0525.0525-.004 0 .009-.0115-.015.028a.9673.9673 0 0 1-.0805.0665.0913.0913 0 0 0-.0145.1149.2155.2155 0 0 0 .2469.0855.305.305 0 0 0 .1-.0455l.05-.028a1.2113 1.2113 0 0 0 .1039-.0644c.0825-.0592.16-.1252.2314-.1975l5.9926-5.9796.3749-.3754.2189-.2209c.1224-.1224.0969-.3573.0999-.4053l.03-1.071a3270.5647 3270.5647 0 0 1 .0965-3.3479.4234.4234 0 0 0-.2194-.4178.4554.4554 0 0 0-.2459-.05l-.1999.0055-.5653.017-2.3269.0625-.7996.021-.3998.0105-.2034.0055a.4623.4623 0 0 0-.3588.1264L5.8264 5.0717 4.0483 6.8514l-.9536.9566-.4997.4997-.3084.3104a.4262.4262 0 0 0 .0065.5997l4.129 4.0751c.4983.4917.8547.1379.3619-.3609Z",
|
|
2110
2195
|
fill: "#528693"
|
|
2111
2196
|
}),
|
|
2112
|
-
/* @__PURE__ */
|
|
2197
|
+
/* @__PURE__ */ jsx48("path", {
|
|
2113
2198
|
d: "m2.6802 9.5715 3.1346 3.1455.7731.7692.104.1034a.7985.7985 0 0 0 .1919.1625.4073.4073 0 0 0 .4423-.0465l.4497-.4468 1.5173-1.5308 3.0176-3.039 1.5158-1.5149.3948-.3928a.3894.3894 0 0 0 .117-.2084.7594.7594 0 0 0 .0089-.1214V6.384l.009-.2694.037-1.0784.107-3.125a.4105.4105 0 0 0-.2814-.4079.7995.7995 0 0 0-.2819-.018l-.1599.0035-.6107.0145-1.2214.03-2.4719.065c-.1999-.013-.3643.2024-.3998.2359l-.2084.2074-.4163.4153-.833.831-1.6643 1.6633-3.327 3.328a1.7572 1.7572 0 0 0-.1968.2308 1.139 1.139 0 0 0-.0645.104l-.0275.05a.315.315 0 0 0-.05.1034.2299.2299 0 0 0 .0855.2604.0914.0914 0 0 0 .118-.0105c.0244-.0245.039-.0605.0639-.084a.0704.0704 0 0 1 .0415-.021c-.009-.009.0804.08.043.042h.006l.012-.006.0244-.013a1.1354 1.1354 0 0 0 .1035-.0644c.0828-.059.1604-.1251.2319-.1975l6.531-6.5179 2.3023-.065 1.2549-.035.6447-.018.1954-.005c.006 0 .009.006.0075.011-.025.8362-.0559 1.8902-.0884 2.9777L13.83 6.0857c-.005.1539-.012.4268-.012.3538l-.3269.3253-1.4248 1.4204c-.937.9355-1.8561 1.8551-2.8107 2.8087l-1.4613 1.4663-.7201.7246s-.0035.0045-.0065.0035c-.003-.001.023.024-.071-.0694l-.3998-.3999L3.042 9.2097c-.4988-.4908-.8546-.137-.3619.3618Z",
|
|
2114
2199
|
fill: "#528693"
|
|
2115
2200
|
}),
|
|
2116
|
-
/* @__PURE__ */
|
|
2201
|
+
/* @__PURE__ */ jsx48("path", {
|
|
2117
2202
|
d: "M12.1665 4.3968a.5599.5599 0 0 0-.2734-.5397.5498.5498 0 0 0-.8356.4772.5286.5286 0 0 0 .1299.3269c.0085.0115.014.024.0235.035a.5401.5401 0 0 0 .05.0395.5065.5065 0 0 0 .3103.1439.4995.4995 0 0 0 .2449-.041c.009-.0035.0155-.0095.0245-.0135a.5816.5816 0 0 0 .138-.082.5613.5613 0 0 0 .1044-.1254c.006-.0105.0165-.0175.022-.028a.5237.5237 0 0 0 .0615-.1929Zm-.5538-.079c-.0035 0-.01 0 0 0h.011c.003 0 .0045 0 .009.003-.011.001-.02.0006-.02-.001v-.002ZM8.3114 8.9353c.126-.126.1876-.2767.1849-.452-.0014-.174-.072-.4006-.2116-.68-.2027-.3807-.3-.7094-.2917-.986.011-.2767.1266-.5253.3471-.7458.2247-.2246.474-.3437.7478-.3574.2753-.0124.541.0821.7971.2835l.4499-.45.3061.3062-.452.452c.1986.2615.2808.5368.2466.8258-.0329.2903-.1897.5759-.4705.8566l-.378-.378c.1931-.193.3006-.3923.3225-.5978.022-.2054-.0451-.3862-.2013-.5423-.163-.163-.33-.2452-.5012-.2465-.1699-.0028-.33.0712-.4808.2218-.1396.1397-.206.2965-.1992.4705.0096.1739.0842.3992.224.6759.1423.2766.2307.5142.265.7128.0369.1986.0287.3794-.0247.5423-.052.1644-.1507.3192-.2959.4643-.2314.2315-.4875.3479-.7683.3493-.2794.0027-.5574-.1082-.834-.3328l-.3924.3923-.304-.304.3923-.3924c-.2314-.278-.341-.5684-.3287-.871.015-.3027.1582-.5896.4294-.8608l.38.38c-.1903.1904-.2869.387-.2896.5897-.0028.2027.0876.3958.2711.5793.1795.1794.3637.2773.5527.2938.189.0164.3581-.05.5074-.1993Z",
|
|
2118
2203
|
fill: "#528693"
|
|
2119
2204
|
})
|
|
@@ -2123,10 +2208,10 @@ var PriceTag = forwardRef39((delegated, ref) => {
|
|
|
2123
2208
|
PriceTag.displayName = "PriceTagIcon";
|
|
2124
2209
|
|
|
2125
2210
|
// src/iconography/product.tsx
|
|
2126
|
-
import { forwardRef as
|
|
2127
|
-
import { jsx as
|
|
2128
|
-
var Product =
|
|
2129
|
-
return /* @__PURE__ */
|
|
2211
|
+
import { forwardRef as forwardRef42 } from "react";
|
|
2212
|
+
import { jsx as jsx49, jsxs as jsxs40 } from "react/jsx-runtime";
|
|
2213
|
+
var Product = forwardRef42((delegated, ref) => {
|
|
2214
|
+
return /* @__PURE__ */ jsxs40("svg", {
|
|
2130
2215
|
ref,
|
|
2131
2216
|
width: "34",
|
|
2132
2217
|
height: "34",
|
|
@@ -2134,31 +2219,31 @@ var Product = forwardRef40((delegated, ref) => {
|
|
|
2134
2219
|
fill: "none",
|
|
2135
2220
|
...delegated,
|
|
2136
2221
|
children: [
|
|
2137
|
-
/* @__PURE__ */
|
|
2222
|
+
/* @__PURE__ */ jsx49("path", {
|
|
2138
2223
|
d: "M30.14 8.196a5.316 5.316 0 0 0-7.567-.609c-.02-.01-.02-.03-.03-.042a10.505 10.505 0 0 0-10.024-2.067 5.313 5.313 0 0 0-7.902-1.154c-2.887 2.382-2.561 6.759-.1 9.288a.346.346 0 0 0 .272.126 16.462 16.462 0 0 0 .368 11.271c2.392 5.448 8.68 6.728 14.063 5.698 6.559-1.25 9.373-6.717 8.496-12.951a13.94 13.94 0 0 0 2.109-1.628 6.065 6.065 0 0 0 .316-7.932ZM4.754 5.216a4.578 4.578 0 0 1 7.021.524 10.141 10.141 0 0 0-3.478 2.141 13.557 13.557 0 0 0-3.26 5.143c-2.014-2.078-2.445-5.627-.283-7.808Zm14.252 24.747c-5.397.976-11.565-.43-13.476-6.171-1.574-4.733-.631-11.041 2.767-14.766 3.399-3.725 9.817-4.45 13.694-.924.01.01.02.01.032.021a6.367 6.367 0 0 0 .7 8.91 5.19 5.19 0 0 0 4.533.872c.283 5.877-1.867 10.903-8.25 12.058Zm3.831-13.885a5.53 5.53 0 0 1 .357-7.996 4.552 4.552 0 0 1 6.969 1.542c2.183 4.27-3.339 10.473-7.326 6.454Z",
|
|
2139
2224
|
fill: "#528693"
|
|
2140
2225
|
}),
|
|
2141
|
-
/* @__PURE__ */
|
|
2226
|
+
/* @__PURE__ */ jsx49("path", {
|
|
2142
2227
|
d: "M15.605 18.271c-.073.441-.2.872-.241 1.323-.036.419-.05.839-.042 1.26-.011.377-.62.482-.683.083a4.85 4.85 0 0 1 .43-2.899c.169-.301.578-.07.536.233ZM10.252 16.939c-.073.44-.2.882-.24 1.332-.036.416-.05.833-.044 1.25-.01.378-.618.493-.681.094-.16-.988-.01-2 .43-2.899.168-.313.578-.082.535.223Z",
|
|
2143
2228
|
fill: "#528693"
|
|
2144
2229
|
}),
|
|
2145
|
-
/* @__PURE__ */
|
|
2230
|
+
/* @__PURE__ */ jsx49("path", {
|
|
2146
2231
|
d: "M30.215 8.138a5.198 5.198 0 0 0-4.088-1.95 5.63 5.63 0 0 0-3.538 1.26 10.142 10.142 0 0 0-6.856-2.53c-1.072.001-2.138.15-3.169.44a5.705 5.705 0 0 0-4.538-2.407A5.38 5.38 0 0 0 4.558 4.25a5.734 5.734 0 0 0-2.09 4.198 7.069 7.069 0 0 0 1.97 5.227c.056.07.133.119.22.14a16.514 16.514 0 0 0 .4 11.234c1.699 3.868 5.627 6.087 10.765 6.087 1.144 0 2.285-.11 3.408-.328 6.167-1.17 9.535-6.297 8.556-12.994.02-.021.12-.081.21-.141a10.2 10.2 0 0 0 1.889-1.47 6.152 6.152 0 0 0 .329-8.065ZM4.827 5.288A4.435 4.435 0 0 1 8.005 3.91a4.64 4.64 0 0 1 3.608 1.788 9.881 9.881 0 0 0-3.378 2.108 13.573 13.573 0 0 0-3.237 5.03c-1.79-1.948-2.36-5.339-.171-7.546Zm14.164 24.58c-1.026.186-2.066.28-3.108.279-5.168 0-8.906-2.33-10.256-6.387-1.649-4.947-.49-11.115 2.75-14.663a10.164 10.164 0 0 1 7.436-3.189 9.085 9.085 0 0 1 6.067 2.22 6.248 6.248 0 0 0-1.44 4.557 6.305 6.305 0 0 0 2.22 4.428 5.121 5.121 0 0 0 3.208 1.07 5.43 5.43 0 0 0 1.29-.15c.288 6.626-2.62 10.824-8.167 11.835Zm10.685-15.154a4.934 4.934 0 0 1-3.988 2.559 3.824 3.824 0 0 1-2.779-1.268 5.524 5.524 0 0 1-1.5-4.21 4.955 4.955 0 0 1 1.85-3.638 4.638 4.638 0 0 1 2.849-.99 4.416 4.416 0 0 1 3.968 2.5 5.199 5.199 0 0 1-.401 5.047h.001Z",
|
|
2147
2232
|
fill: "#528693"
|
|
2148
2233
|
}),
|
|
2149
|
-
/* @__PURE__ */
|
|
2234
|
+
/* @__PURE__ */ jsx49("path", {
|
|
2150
2235
|
d: "M11.614 5.697a9.882 9.882 0 0 0-3.379 2.108 13.573 13.573 0 0 0-3.237 5.03c-1.79-1.948-2.36-5.338-.17-7.546a4.435 4.435 0 0 1 3.178-1.38 4.64 4.64 0 0 1 3.608 1.788ZM29.675 14.714a4.932 4.932 0 0 1-3.988 2.559 3.824 3.824 0 0 1-2.779-1.268 5.524 5.524 0 0 1-1.5-4.21 4.954 4.954 0 0 1 1.85-3.638 4.638 4.638 0 0 1 2.849-.99 4.416 4.416 0 0 1 3.968 2.5 5.197 5.197 0 0 1-.4 5.047Z",
|
|
2151
2236
|
fill: "#bff6f8"
|
|
2152
2237
|
}),
|
|
2153
|
-
/* @__PURE__ */
|
|
2238
|
+
/* @__PURE__ */ jsx49("path", {
|
|
2154
2239
|
d: "M27.156 18.032a5.437 5.437 0 0 1-1.29.15 5.123 5.123 0 0 1-3.208-1.069 6.307 6.307 0 0 1-2.219-4.428 6.248 6.248 0 0 1 1.44-4.557 9.085 9.085 0 0 0-6.067-2.22 10.164 10.164 0 0 0-7.437 3.188c-3.238 3.548-4.398 9.716-2.749 14.663 1.35 4.058 5.088 6.387 10.256 6.387a17.358 17.358 0 0 0 3.11-.278c5.546-1.01 8.454-5.209 8.164-11.835ZM9.625 16.673a.37.37 0 0 1 .32-.21.415.415 0 0 1 .3.15.427.427 0 0 1 .11.34c-.03.17-.07.34-.1.51-.068.27-.114.543-.14.82a6.266 6.266 0 0 0-.04.859l-.01.38a.465.465 0 0 1-.48.44.391.391 0 0 1-.4-.33 4.953 4.953 0 0 1 .44-2.959Zm4.667 7.957a1.698 1.698 0 0 1-1.569.859c-.22.003-.44-.03-.65-.1-.39-.14-.72-.407-.94-.759a1.519 1.519 0 0 1-1.049.43 1.499 1.499 0 0 1-1.379-1.4.357.357 0 0 1 .1-.278.457.457 0 0 1 .34-.14.365.365 0 0 1 .39.32c.04.31.23.669.61.669.27 0 .45-.2.649-.4 0-.19-.02-.31-.02-.42a.4.4 0 0 1 .41-.4.388.388 0 0 1 .384.255.4.4 0 0 1 .026.155 1.207 1.207 0 0 0 .86 1.22c.085.019.172.029.26.03a1.97 1.97 0 0 0 1.099-.48.314.314 0 0 1 .18-.06.326.326 0 0 1 .26.15.4.4 0 0 1 .04.35Zm1.31-5.838a7.647 7.647 0 0 0-.14.81 6.477 6.477 0 0 0-.04.88v.37a.464.464 0 0 1-.48.439.384.384 0 0 1-.4-.34 4.898 4.898 0 0 1 .44-2.959.367.367 0 0 1 .31-.2.434.434 0 0 1 .41.49c-.03.18-.06.341-.1.51Z",
|
|
2155
2240
|
fill: "#bff6f8"
|
|
2156
2241
|
}),
|
|
2157
|
-
/* @__PURE__ */
|
|
2242
|
+
/* @__PURE__ */ jsx49("path", {
|
|
2158
2243
|
d: "M15.702 18.282c-.03.18-.06.341-.1.51a7.673 7.673 0 0 0-.14.81 6.493 6.493 0 0 0-.04.88v.37a.464.464 0 0 1-.48.439.384.384 0 0 1-.4-.34 4.898 4.898 0 0 1 .44-2.959.367.367 0 0 1 .31-.2.434.434 0 0 1 .41.49ZM10.354 16.953c-.03.17-.07.34-.1.51a5.63 5.63 0 0 0-.14.82 6.25 6.25 0 0 0-.04.859l-.01.38a.465.465 0 0 1-.48.44.391.391 0 0 1-.4-.33 4.953 4.953 0 0 1 .44-2.959.37.37 0 0 1 .32-.21.415.415 0 0 1 .3.15.425.425 0 0 1 .11.34ZM14.293 24.63a1.699 1.699 0 0 1-1.569.859c-.22.003-.44-.03-.65-.1-.39-.14-.72-.407-.94-.759a1.519 1.519 0 0 1-1.049.43 1.5 1.5 0 0 1-1.38-1.4.357.357 0 0 1 .1-.278.457.457 0 0 1 .34-.14.365.365 0 0 1 .39.32c.04.31.23.669.61.669.27 0 .45-.2.65-.4 0-.19-.02-.31-.02-.42a.4.4 0 0 1 .41-.4.388.388 0 0 1 .384.255c.018.05.027.102.025.155a1.207 1.207 0 0 0 .86 1.22c.085.019.172.029.26.03a1.97 1.97 0 0 0 1.1-.48.316.316 0 0 1 .18-.06.327.327 0 0 1 .26.15.398.398 0 0 1 .04.35Z",
|
|
2159
2244
|
fill: "#528693"
|
|
2160
2245
|
}),
|
|
2161
|
-
/* @__PURE__ */
|
|
2246
|
+
/* @__PURE__ */ jsx49("path", {
|
|
2162
2247
|
d: "M14.198 24.588a1.739 1.739 0 0 1-2.088.7c-.415-.15-.76-.45-.966-.84a1.351 1.351 0 0 1-1.144.5 1.372 1.372 0 0 1-1.2-1.3c-.02-.356.579-.44.63-.083a.784.784 0 0 0 .714.755c.346 0 .557-.262.777-.493a2.85 2.85 0 0 1-.052-.42.31.31 0 0 1 .619 0 1.31 1.31 0 0 0 .934 1.322 1.73 1.73 0 0 0 1.448-.461c.213-.14.412.133.328.32Z",
|
|
2163
2248
|
fill: "#528693"
|
|
2164
2249
|
})
|
|
@@ -2168,10 +2253,10 @@ var Product = forwardRef40((delegated, ref) => {
|
|
|
2168
2253
|
Product.displayName = "ProductIcon";
|
|
2169
2254
|
|
|
2170
2255
|
// src/iconography/rocket.tsx
|
|
2171
|
-
import { forwardRef as
|
|
2172
|
-
import { jsx as
|
|
2173
|
-
var Rocket =
|
|
2174
|
-
return /* @__PURE__ */
|
|
2256
|
+
import { forwardRef as forwardRef43 } from "react";
|
|
2257
|
+
import { jsx as jsx50, jsxs as jsxs41 } from "react/jsx-runtime";
|
|
2258
|
+
var Rocket = forwardRef43((delegated, ref) => {
|
|
2259
|
+
return /* @__PURE__ */ jsxs41("svg", {
|
|
2175
2260
|
ref,
|
|
2176
2261
|
width: "16",
|
|
2177
2262
|
height: "16",
|
|
@@ -2179,27 +2264,27 @@ var Rocket = forwardRef41((delegated, ref) => {
|
|
|
2179
2264
|
fill: "none",
|
|
2180
2265
|
...delegated,
|
|
2181
2266
|
children: [
|
|
2182
|
-
/* @__PURE__ */
|
|
2267
|
+
/* @__PURE__ */ jsx50("path", {
|
|
2183
2268
|
d: "M13.0339 2.1872a3.485 3.485 0 0 1 .381.0376c.0658.0094.127.0189.1928.033l.1035.0188c.0094.0047.0094.014.0094.0235l.0282.16c.0188.1316.0376.2586.0471.3903.0203.2598.0219.5208.0047.7808a6.9501 6.9501 0 0 1-.1223.8796 4.1843 4.1843 0 0 1-1.2794-.8937 6.3429 6.3429 0 0 1-.9314-1.3217 6.338 6.338 0 0 1 .795-.1082 4.6927 4.6927 0 0 1 .7714 0Zm-2.3754 4.6613a.1103.1103 0 0 0-.0376.0094.646.646 0 0 1-.1317.0236c-.0471.0094-.0894.014-.1317.0188h-.0565a1.3956 1.3956 0 0 1-.1975-.0141.0175.0175 0 0 1-.0141-.0047 1.1617 1.1617 0 0 1-.621-.2964 1.2474 1.2474 0 0 1-.1646-1.6933.0046.0046 0 0 0 .0034-.0014.0048.0048 0 0 0 .0014-.0033 1.2938 1.2938 0 0 1 .1081-.127 1.259 1.259 0 0 1 2.0932.6726 1.3067 1.3067 0 0 1-.2352 1.0207c-.0282.0282-.0518.0612-.08.0894-.0282.0282-.0705.0564-.1035.0847a.0536.0536 0 0 0-.0376.014 1.2248 1.2248 0 0 1-.3951.207Z",
|
|
2184
2269
|
fill: "#fff"
|
|
2185
2270
|
}),
|
|
2186
|
-
/* @__PURE__ */
|
|
2271
|
+
/* @__PURE__ */ jsx50("path", {
|
|
2187
2272
|
d: "M10.1129 7.427a1.7704 1.7704 0 0 1-1.1712-.602 1.5881 1.5881 0 0 1-.2493-.3998c-.0047-.0047-.0047-.0094-.0094-.0141a2.0301 2.0301 0 0 1-.1035-.2822c0-.0141-.0047-.0235-.0047-.033a1.3365 1.3365 0 0 1-.047-.268.8705.8705 0 0 1-.0047-.1082c0-.047-.0095-.0941-.0047-.1364 0-.0189.0046-.033.0046-.047.0069-.092.021-.1832.0424-.2729v-.0141c.0541-.2502.167-.484.3292-.682a.197.197 0 0 1 .0753-.0565 1.0763 1.0763 0 0 1 .0988-.1082.7403.7403 0 0 1 .0893-.0705c.0048-.0047.0048-.0141.0095-.0188a.9361.9361 0 0 1 .0893-.0565 1.7606 1.7606 0 0 1 1.3406-.3434c.4418.0721.8383.3134 1.1053.6727a1.7648 1.7648 0 0 1-.1505 2.3048 1.7054 1.7054 0 0 1-.1411.1176.2888.2888 0 0 1-.0329.047c-.0329.0235-.0706.0423-.1035.0658a1.7602 1.7602 0 0 1-1.1618.3058Zm-.809-2.5352a1.2474 1.2474 0 0 0 .1646 1.6933c.1723.1592.3887.2625.6209.2964a.0172.0172 0 0 0 .0141.0047c.0654.0093.1314.014.1975.014h.0565c.0423-.0046.0846-.0093.1317-.0187a.646.646 0 0 0 .1317-.0236.1103.1103 0 0 1 .0376-.0094 1.2248 1.2248 0 0 0 .3951-.207.0539.0539 0 0 1 .0377-.014c.0329-.0283.0705-.0565.1034-.0847.033-.0282.0518-.0611.08-.0894a1.3067 1.3067 0 0 0 .2352-1.0207 1.2592 1.2592 0 0 0-2.0931-.6726 1.2939 1.2939 0 0 0-.1082.127.0047.0047 0 0 1-.0047.0047Z",
|
|
2188
2273
|
fill: "#528693"
|
|
2189
2274
|
}),
|
|
2190
|
-
/* @__PURE__ */
|
|
2275
|
+
/* @__PURE__ */ jsx50("path", {
|
|
2191
2276
|
d: "M8.8005 12.1025a5.1403 5.1403 0 0 1-.682 1.2794l-.1082.1458c-.0329.033-.0987.1176-.0893.0988-.0094.0047-.0141.0094-.0236.0047-.0094-.0047 0-.0141 0-.0188.0047.0188-.0282-.1787-.0517-.2916a4.5174 4.5174 0 0 0-.4798-1.2982l.0565-.0188c.1317-.0471.2634-.1035.3904-.1553.254-.1128.5033-.2304.7385-.3621.1834-.1035.3621-.2164.5409-.3293a7.3196 7.3196 0 0 1-.2917.9454Zm.4563-7.8457a.9349.9349 0 0 0-.0894.0565c-.0047.0047-.0047.014-.0094.0188a.7411.7411 0 0 0-.0893.0705 1.0777 1.0777 0 0 0-.0988.1082.197.197 0 0 0-.0753.0565 1.6147 1.6147 0 0 0-.3292.682v.0141a1.7343 1.7343 0 0 0-.0424.2728c0 .0141-.0047.0282-.0047.047-.0047.0424.0047.0894.0047.1365a.8667.8667 0 0 0 .0047.1081c.0066.0908.0223.1806.047.2682 0 .0094.0048.0188.0048.0329.0274.0965.062.1908.1035.2822.0047.0047.0047.0094.0094.0141a1.588 1.588 0 0 0 .2493.3998 1.7592 1.7592 0 0 0 2.333.2963c.0329-.0235.0705-.0423.1035-.0658a.2888.2888 0 0 0 .0329-.047 1.7054 1.7054 0 0 0 .1411-.1176 1.765 1.765 0 0 0 .1505-2.3048 1.723 1.723 0 0 0-1.1053-.6726 1.7607 1.7607 0 0 0-1.3406.3433Zm-4.412 5.4516a7.1694 7.1694 0 0 1-.2681-.3904c-.0424-.0659-.08-.1317-.1176-.1929l-.0612-.1082.0282-.094.0612-.1882c.047-.1223.0988-.2446.1505-.3669.1082-.2446.2305-.4845.3575-.7196.265-.4654.562-.9117.889-1.3359a14.419 14.419 0 0 1 2.173-2.3 8.19 8.19 0 0 1 2.6906-1.5288c.0658-.0188.1317-.0329.1975-.0517a5.4617 5.4617 0 0 0 1.1054 1.5428c.4187.448.931.798 1.5005 1.0254-.0142.0564-.0236.1176-.0424.174a8.2196 8.2196 0 0 1-1.5381 2.747 14.7123 14.7123 0 0 1-2.3189 2.206 12.2821 12.2821 0 0 1-1.3311.8796 9.8702 9.8702 0 0 1-.7056.3528c-.1223.047-.2446.0987-.3621.1411l-.1835.0611-.08.0235-.08-.0423-.1692-.1035a12.9658 12.9658 0 0 1-.3246-.2163 1.0463 1.0463 0 0 0-.2916-.1553c.127-.127.254-.254.3857-.381.141-.1411.2822-.2869.428-.4374l1.2888-1.2841a.6352.6352 0 0 0 .0706-.094.522.522 0 0 0 .0329-.1365h-.0047a.3654.3654 0 0 0-.1035-.3434c-.0282-.0282-.0705-.0658-.1176-.1128a.0047.0047 0 0 0-.0047-.0047l-.2493-.2587-.1223-.127a1.1108 1.1108 0 0 0-.2352-.1976.3927.3927 0 0 0-.301-.0047.389.389 0 0 0-.1082.0705.0363.0363 0 0 0-.0141.0094l-.0141.0142a.0103.0103 0 0 0-.0094.0094l-.0423.0423c-.0047 0-.0047 0-.0047.0047-.5645.5645-1.1101 1.1054-1.6652 1.6604l-.3904.3904a.76.76 0 0 0-.0987-.1787Z",
|
|
2192
2277
|
fill: "#BFF6F8"
|
|
2193
2278
|
}),
|
|
2194
|
-
/* @__PURE__ */
|
|
2279
|
+
/* @__PURE__ */ jsx50("path", {
|
|
2195
2280
|
d: "m4.8448 11.5992-.1976.1929c-.0047.0094-.0094.0047-.014 0-.1365-.1411-.2776-.2822-.4234-.428l.5644-.5645c.3998-.3998.795-.7902 1.2042-1.1994.094-.094.1928-.1929.2869-.2916L7.3518 8.222l.0236.0235a.0047.0047 0 0 0 .0046.0047c.1365.1411.2682.2775.3952.4046a.0141.0141 0 0 1 0 .0188 730.2544 730.2544 0 0 0-1.9144 1.9097c-.334.3339-.6727.6679-1.016 1.0159Z",
|
|
2196
2281
|
fill: "#fff"
|
|
2197
2282
|
}),
|
|
2198
|
-
/* @__PURE__ */
|
|
2283
|
+
/* @__PURE__ */ jsx50("path", {
|
|
2199
2284
|
d: "M3.8335 7.2625a6.6494 6.6494 0 0 1 1.0254-.3622c-.0565.0894-.1176.1693-.174.2634a8.6195 8.6195 0 0 0-.447.856c-.0705.1506-.1316.3058-.1928.4704a6.6217 6.6217 0 0 0-.0564.1646 4.2294 4.2294 0 0 0-1.0348-.4186c-.1035-.0282-.2117-.0564-.3152-.0752-.0846-.0189-.1693-.033-.2492-.0518-.0236 0-.0283-.0094-.0142-.0188l.0047-.0047h.0048l.047-.0376c.0564-.047.1317-.094.2022-.1458a7.0379 7.0379 0 0 1 1.1995-.6397Z",
|
|
2200
2285
|
fill: "#BFF6F8"
|
|
2201
2286
|
}),
|
|
2202
|
-
/* @__PURE__ */
|
|
2287
|
+
/* @__PURE__ */ jsx50("path", {
|
|
2203
2288
|
d: "M11.4675 2.2954c.2528.4785.5658.9227.9314 1.3217a4.1843 4.1843 0 0 0 1.2794.8937 6.9501 6.9501 0 0 0 .1223-.8796c.0172-.26.0156-.521-.0047-.7808-.0095-.1317-.0283-.2587-.0471-.3904l-.0282-.16c0-.0093 0-.0187-.0094-.0234l-.1035-.0188a2.7475 2.7475 0 0 0-.1928-.033 3.4826 3.4826 0 0 0-.381-.0376 4.6927 4.6927 0 0 0-.7714 0 6.3397 6.3397 0 0 0-.795.1082Zm-4.1016 9.7272c.2257.4055.3875.8434.4798 1.2982.0235.1129.0565.3104.0518.2916 0 .0047-.0047.0141 0 .0188.0047.0047.014 0 .0235-.0047-.0094.0188.0564-.0658.0893-.0988l.1082-.1458a5.1404 5.1404 0 0 0 .682-1.2794 7.3195 7.3195 0 0 0 .2917-.9454c-.1788.1129-.3575.2258-.541.3293-.2351.1317-.4844.2492-.7384.3621-.127.0518-.2587.1082-.3904.1553l-.0565.0188ZM4.9953 7.6482c-.127.2351-.2493.475-.3575.7196-.0517.1223-.1035.2446-.1505.367l-.0612.188-.0282.0941.0612.1082c.0376.0612.0752.127.1176.1929.0846.1317.174.2634.268.3904a.7599.7599 0 0 1 .0989.1787l.3903-.3904c.555-.555 1.1007-1.096 1.6652-1.6604 0-.0047 0-.0047.0046-.0047l.0424-.0423a.0104.0104 0 0 1 .0094-.0094l.0141-.0141a.0362.0362 0 0 1 .0141-.0095.3888.3888 0 0 1 .1082-.0705.3928.3928 0 0 1 .301.0047 1.111 1.111 0 0 1 .2352.1975l.1223.127.2493.2587a.0046.0046 0 0 1 .0033.0014.0046.0046 0 0 1 .0014.0033c.047.047.0894.0847.1176.113a.3655.3655 0 0 1 .1035.3433h.0047a.5214.5214 0 0 1-.033.1364.636.636 0 0 1-.0705.094L6.938 10.2494c-.1458.1505-.287.2963-.428.4374-.1317.127-.2587.254-.3857.381.1048.036.2032.0884.2916.1552.1082.0753.2164.1459.3246.2164l.1693.1035.08.0423.08-.0235.1833-.0611c.1176-.0424.24-.0941.3622-.1411a9.8702 9.8702 0 0 0 .7056-.3528 12.297 12.297 0 0 0 1.3311-.8796 14.712 14.712 0 0 0 2.3189-2.206 8.2195 8.2195 0 0 0 1.5381-2.747c.0188-.0564.0283-.1176.0424-.174a4.171 4.171 0 0 1-1.5005-1.0254 5.4617 5.4617 0 0 1-1.1054-1.5428c-.0658.0188-.1317.033-.1975.0517a8.1898 8.1898 0 0 0-2.6905 1.5287 14.419 14.419 0 0 0-2.1731 2.3001c-.327.4242-.624.8705-.889 1.3359ZM4.633 11.792c.0047.0047.0094.0094.0141 0l.1976-.1929c.3433-.348.682-.682 1.016-1.016.635-.635 1.2605-1.2605 1.9144-1.9096a.0141.0141 0 0 0 0-.0189c-.127-.127-.2588-.2634-.3952-.4045a.0047.0047 0 0 1-.0047-.0047l-.0235-.0235-1.0865 1.0866c-.0941.0987-.1929.1975-.287.2916-.4092.4092-.8043.7996-1.204 1.1994l-.5645.5645c.1458.1458.2869.2869.4233.428ZM2.954 8.2361c.362.0932.7099.234 1.0348.4186.0188-.0564.0376-.1128.0564-.1646.0612-.1646.1223-.3198.1929-.4703a8.6185 8.6185 0 0 1 .4468-.8561c.0565-.094.1176-.174.174-.2634a6.65 6.65 0 0 0-1.0253.3622 7.0371 7.0371 0 0 0-1.1995.6397c-.0705.0517-.1458.0987-.2022.1458l-.047.0376H2.38l-.0048.0047c-.014.0094-.0094.0188.0141.0188.08.0188.1647.033.2493.0518.1035.0188.2117.047.3152.0752Zm-.6068.3998-.2493-.0423a.589.589 0 0 1-.254-.0894.333.333 0 0 1-.1364-.1693.3712.3712 0 0 1-.014-.2352 2.3128 2.3128 0 0 1 .1222-.2023 3.545 3.545 0 0 1 .5315-.4045 10.695 10.695 0 0 1 1.3688-.7384 4.7461 4.7461 0 0 1 1.5146-.4234c.1599-.2257.3198-.4374.4844-.6444A14.4656 14.4656 0 0 1 8.0103 3.396a8.5346 8.5346 0 0 1 2.7141-1.4252 7.2105 7.2105 0 0 1 1.5428-.2822 5.814 5.814 0 0 1 .809.0047c.1364.0047.2728.0235.4092.0376.0706.0094.1364.0189.207.033l.1129.0235a.6198.6198 0 0 1 .1834.047.4205.4205 0 0 1 .2211.3387l.0423.2446c.0188.1552.047.3057.0517.461.022.3022.0204.6057-.0047.9078a6.9537 6.9537 0 0 1-.3527 1.7215 8.9022 8.9022 0 0 1-1.6839 2.8833 15.0926 15.0926 0 0 1-2.3519 2.2061c-.0846.0611-.174.1176-.2587.1787a5.0622 5.0622 0 0 1-.4139 1.604 6.8242 6.8242 0 0 1-.7055 1.2888l-.1318.174-.0658.0847a4.2152 4.2152 0 0 1-.1129.1364c-.1787.1411-.3292.3245-.5362.2351a.3498.3498 0 0 1-.2023-.1693.2957.2957 0 0 1-.0517-.1458c-.0141-.0611-.0235-.1176-.033-.1693l-.0423-.2399-.0376-.1741a3.8788 3.8788 0 0 0-.508-1.2794.0798.0798 0 0 1-.0047-.0329l-.0658-.0329-.0988-.0611-.1835-.1082a5.7683 5.7683 0 0 1-.348-.2399.8514.8514 0 0 1-.2729-.2916l-.1693.1693a36.5512 36.5512 0 0 1-.428.4233c-.0753.0753-.1505.1458-.2258.2211a.4467.4467 0 0 1-.508.1834.3962.3962 0 0 1-.1693-.1176l-.1176-.1129c-.0518-.0564-.0988-.1081-.1505-.1552-.1176-.1176-.2258-.2257-.3199-.3245a.3934.3934 0 0 1-.0235-.5362l.287-.287c.1551-.1552.301-.3057.4515-.4515l.1975-.1976a.607.607 0 0 1-.207-.174c-.1222-.1646-.2398-.334-.3339-.4845-.047-.0705-.0894-.1411-.127-.1975a1.225 1.225 0 0 0-.0611-.113.0697.0697 0 0 1-.0612 0 3.5599 3.5599 0 0 0-1.0771-.4562l-.2964-.0752-.1505-.033Z",
|
|
2204
2289
|
fill: "#528693"
|
|
2205
2290
|
})
|
|
@@ -2209,10 +2294,10 @@ var Rocket = forwardRef41((delegated, ref) => {
|
|
|
2209
2294
|
Rocket.displayName = "RocketIcon";
|
|
2210
2295
|
|
|
2211
2296
|
// src/iconography/shapes.tsx
|
|
2212
|
-
import { forwardRef as
|
|
2213
|
-
import { jsx as
|
|
2214
|
-
var Shapes =
|
|
2215
|
-
return /* @__PURE__ */
|
|
2297
|
+
import { forwardRef as forwardRef44 } from "react";
|
|
2298
|
+
import { jsx as jsx51, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
2299
|
+
var Shapes = forwardRef44((delegated, ref) => {
|
|
2300
|
+
return /* @__PURE__ */ jsxs42("svg", {
|
|
2216
2301
|
ref,
|
|
2217
2302
|
width: "23",
|
|
2218
2303
|
height: "22",
|
|
@@ -2220,41 +2305,41 @@ var Shapes = forwardRef42((delegated, ref) => {
|
|
|
2220
2305
|
fill: "none",
|
|
2221
2306
|
...delegated,
|
|
2222
2307
|
children: [
|
|
2223
|
-
/* @__PURE__ */
|
|
2308
|
+
/* @__PURE__ */ jsx51("path", {
|
|
2224
2309
|
d: "M3.679 3.1a.3.3 0 0 1 .3-.3h6.4a.3.3 0 0 1 .3.3v6.4a.3.3 0 0 1-.3.3h-6.4a.3.3 0 0 1-.3-.3V3.1Z",
|
|
2225
2310
|
fill: "#BFF6F8"
|
|
2226
2311
|
}),
|
|
2227
|
-
/* @__PURE__ */
|
|
2312
|
+
/* @__PURE__ */ jsx51("path", {
|
|
2228
2313
|
fillRule: "evenodd",
|
|
2229
2314
|
clipRule: "evenodd",
|
|
2230
2315
|
d: "M3.979 2.2h6.4a.9.9 0 0 1 .9.9v6.4a.9.9 0 0 1-.9.9h-6.4a.9.9 0 0 1-.9-.9V3.1a.9.9 0 0 1 .9-.9Zm0 .6a.3.3 0 0 0-.3.3v6.4a.3.3 0 0 0 .3.3h6.4a.3.3 0 0 0 .3-.3V3.1a.3.3 0 0 0-.3-.3h-6.4Z",
|
|
2231
2316
|
fill: "#528693"
|
|
2232
2317
|
}),
|
|
2233
|
-
/* @__PURE__ */
|
|
2318
|
+
/* @__PURE__ */ jsx51("path", {
|
|
2234
2319
|
d: "M13.128 14.99a.3.3 0 0 1 .105-.311l3.46-2.732a.3.3 0 0 1 .372 0l3.46 2.732a.3.3 0 0 1 .105.31l-1.193 4.587a.3.3 0 0 1-.29.224h-4.536a.3.3 0 0 1-.29-.224l-1.193-4.586Z",
|
|
2235
2320
|
fill: "#fff"
|
|
2236
2321
|
}),
|
|
2237
|
-
/* @__PURE__ */
|
|
2322
|
+
/* @__PURE__ */ jsx51("path", {
|
|
2238
2323
|
fillRule: "evenodd",
|
|
2239
2324
|
clipRule: "evenodd",
|
|
2240
2325
|
d: "m21.21 15.14-1.192 4.587a.9.9 0 0 1-.871.673h-4.536a.9.9 0 0 1-.871-.673l-1.193-4.586a.9.9 0 0 1 .314-.933l3.46-2.732a.9.9 0 0 1 1.116 0l3.46 2.732a.9.9 0 0 1 .313.933Zm-7.977-.461a.3.3 0 0 0-.105.31l1.193 4.587a.3.3 0 0 0 .29.224h4.536a.3.3 0 0 0 .29-.224l1.193-4.586a.3.3 0 0 0-.105-.311l-3.46-2.732a.3.3 0 0 0-.372 0l-3.46 2.732Z",
|
|
2241
2326
|
fill: "#528693"
|
|
2242
2327
|
}),
|
|
2243
|
-
/* @__PURE__ */
|
|
2328
|
+
/* @__PURE__ */ jsx51("path", {
|
|
2244
2329
|
d: "m17.069 2.8 3.51 7h-7.097l3.587-7Z",
|
|
2245
2330
|
fill: "#BFF6F8"
|
|
2246
2331
|
}),
|
|
2247
|
-
/* @__PURE__ */
|
|
2332
|
+
/* @__PURE__ */ jsx51("path", {
|
|
2248
2333
|
fillRule: "evenodd",
|
|
2249
2334
|
clipRule: "evenodd",
|
|
2250
2335
|
d: "M17.072 2.2a.6.6 0 0 1 .533.331l3.51 7a.6.6 0 0 1-.536.869h-7.097a.6.6 0 0 1-.534-.874l3.587-7a.6.6 0 0 1 .537-.326Zm-.003.6-3.587 7h7.097l-3.51-7Z",
|
|
2251
2336
|
fill: "#528693"
|
|
2252
2337
|
}),
|
|
2253
|
-
/* @__PURE__ */
|
|
2338
|
+
/* @__PURE__ */ jsx51("path", {
|
|
2254
2339
|
d: "M10.679 16.3a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z",
|
|
2255
2340
|
fill: "#BFF6F8"
|
|
2256
2341
|
}),
|
|
2257
|
-
/* @__PURE__ */
|
|
2342
|
+
/* @__PURE__ */ jsx51("path", {
|
|
2258
2343
|
fillRule: "evenodd",
|
|
2259
2344
|
clipRule: "evenodd",
|
|
2260
2345
|
d: "M11.279 16.3a4.1 4.1 0 1 1-8.2 0 4.1 4.1 0 0 1 8.2 0Zm-4.1 3.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Z",
|
|
@@ -2266,10 +2351,10 @@ var Shapes = forwardRef42((delegated, ref) => {
|
|
|
2266
2351
|
Shapes.displayName = "ShapesIcon";
|
|
2267
2352
|
|
|
2268
2353
|
// src/iconography/stock-location.tsx
|
|
2269
|
-
import { forwardRef as
|
|
2270
|
-
import { jsx as
|
|
2271
|
-
var StockLocation =
|
|
2272
|
-
return /* @__PURE__ */
|
|
2354
|
+
import { forwardRef as forwardRef45 } from "react";
|
|
2355
|
+
import { jsx as jsx52, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
2356
|
+
var StockLocation = forwardRef45((delegated, ref) => {
|
|
2357
|
+
return /* @__PURE__ */ jsxs43("svg", {
|
|
2273
2358
|
ref,
|
|
2274
2359
|
width: "17",
|
|
2275
2360
|
height: "16",
|
|
@@ -2277,69 +2362,69 @@ var StockLocation = forwardRef43((delegated, ref) => {
|
|
|
2277
2362
|
fill: "none",
|
|
2278
2363
|
...delegated,
|
|
2279
2364
|
children: [
|
|
2280
|
-
/* @__PURE__ */
|
|
2365
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2281
2366
|
d: "m8.957 14.609-4.604-1.785a.174.174 0 0 1-.11-.162v-2.25l-1.441-.578a.174.174 0 0 1-.059-.284l1.5-1.506-1.311-1.436a.174.174 0 0 1 .066-.28L7.34 4.66l1.617 1.49 1.617-1.625c1.526.61 4.593 1.84 4.647 1.895.054.054-1.055 1.105-1.616 1.624l1.615 1.503a.174.174 0 0 1-.056.29l-1.492.576v2.183a.174.174 0 0 1-.109.162l-4.606 1.85Z",
|
|
2282
2367
|
fill: "#BFF6F8"
|
|
2283
2368
|
}),
|
|
2284
|
-
/* @__PURE__ */
|
|
2369
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2285
2370
|
d: "M13.605 8.044 8.957 9.871 4.242 8.044 8.957 6.15l4.648 1.895Z",
|
|
2286
2371
|
fill: "#B1DDDF"
|
|
2287
2372
|
}),
|
|
2288
|
-
/* @__PURE__ */
|
|
2373
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2289
2374
|
fillRule: "evenodd",
|
|
2290
2375
|
clipRule: "evenodd",
|
|
2291
2376
|
d: "m10.523 4.28.128.051c.764.305 1.912.765 2.877 1.156.482.196.92.374 1.24.507a26.653 26.653 0 0 1 .498.214.942.942 0 0 1 .04.02.391.391 0 0 1 .02.011.217.217 0 0 1 .103.22.255.255 0 0 1-.024.074.494.494 0 0 1-.048.076 2.17 2.17 0 0 1-.133.156 13.28 13.28 0 0 1-.434.442c-.281.275-.613.59-.879.837l1.45 1.35a.382.382 0 0 1-.122.637l-1.358.525v2.04a.383.383 0 0 1-.24.355l-4.683 1.882-4.68-1.814a.383.383 0 0 1-.245-.357v-2.108l-1.31-.526a.382.382 0 0 1-.127-.625l1.358-1.365-1.176-1.29a.382.382 0 0 1 .145-.614l4.464-1.715L8.95 5.86l1.572-1.58ZM8.748 6.458v3.109L4.81 8.041l3.938-1.583Zm-4.45 1.339 4.275-1.718-1.279-1.177L3.12 6.505 4.3 7.797ZM3.074 6.524Zm1.22 1.764 4.303 1.667-1.377 1.494-2.897-1.229-1.394-.56 1.366-1.372Zm2.91 3.18Zm1.545-1.062L7.51 11.75a.383.383 0 0 1-.431.093L4.45 10.728v1.91l4.297 1.666v-3.898Zm.418 3.894 4.297-1.727V10.73l-2.56 1.11a.382.382 0 0 1-.429-.085L9.166 10.39V14.3Zm.157-4.348 1.435 1.498 2.835-1.23 1.444-.558-1.478-1.375-4.236 1.665ZM13.56 7.8c.274-.254.636-.596.937-.892.16-.157.301-.299.402-.407a35.03 35.03 0 0 0-.292-.123c-.318-.132-.754-.31-1.236-.505a618.53 618.53 0 0 0-2.747-1.104L9.326 6.074l4.234 1.727Zm-.517.24L9.166 6.46v3.105l3.877-1.524Z",
|
|
2292
2377
|
fill: "#528693"
|
|
2293
2378
|
}),
|
|
2294
|
-
/* @__PURE__ */
|
|
2379
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2295
2380
|
d: "M8.97.698a2.845 2.845 0 0 0-2.848 2.844c0 1.21 1.678 4.014 2.455 5.255a.463.463 0 0 0 .781 0c.777-1.241 2.455-4.045 2.455-5.255a2.843 2.843 0 0 0-.832-2.011A2.842 2.842 0 0 0 8.97.698Zm0 4.117a1.147 1.147 0 1 1-.01-2.293 1.147 1.147 0 0 1 .01 2.293Z",
|
|
2296
2381
|
fill: "#fff"
|
|
2297
2382
|
}),
|
|
2298
|
-
/* @__PURE__ */
|
|
2383
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2299
2384
|
d: "M8.45 2.842c.003-.004.003 0 .003 0a.004.004 0 0 1-.004.004v-.004ZM8.46 2.834c0 .003-.004.003-.007.006a.01.01 0 0 1 .003-.006h.003Zm.027-.013-.003.004V2.82h.003Zm.069-.034a.012.012 0 0 0-.007.004.013.013 0 0 1-.01.003.075.075 0 0 0-.018.01h-.003a.072.072 0 0 1 .02-.014c.007-.003.01-.006.017-.003Zm.037-.022h.003c-.003.004-.007.004-.01.007-.003.004-.01.004-.014.007-.003.004-.003.004-.007.004H8.56a.08.08 0 0 1 .034-.017Zm.01-.002c0-.003.003 0 .003 0a.003.003 0 0 1-.003.003H8.6l.003-.003Zm1.206.418a1.02 1.02 0 0 0-.538-.435c-.003-.004-.003-.004-.007-.004a.217.217 0 0 0-.024-.006.02.02 0 0 0-.013-.004.091.091 0 0 0-.041-.01c-.004-.003-.004-.003-.007-.003-.004 0-.014-.004-.02-.004a.007.007 0 0 0-.006-.002.007.007 0 0 0-.005.002h-.003a.012.012 0 0 0-.007-.003h-.004c-.003-.004-.003-.004-.007 0h-.003c0-.004-.003-.004-.007-.004H9.11a.068.068 0 0 0-.027-.003.153.153 0 0 0-.038-.004h-.024a.037.037 0 0 1-.02-.003h-.004c-.007.003-.01 0-.013 0H8.96a.075.075 0 0 0-.028.003h-.03a.02.02 0 0 0-.015.004h-.03a.03.03 0 0 1-.017.003h-.007a.02.02 0 0 1-.014.004h-.01a.02.02 0 0 0-.014.003h-.01a.043.043 0 0 0-.02.004.013.013 0 0 0-.011.003.123.123 0 0 0-.038.007.361.361 0 0 0-.065.02.147.147 0 0 0-.017.004.013.013 0 0 1-.01.003c.003-.003.007-.007.01-.007a.585.585 0 0 1 .103-.03c.003-.004.003-.007.007-.004a.622.622 0 0 1 .106-.017c.007 0 .013-.003.02 0a.277.277 0 0 1 .052-.003.006.006 0 0 1 .01 0 .415.415 0 0 1 .065-.004.791.791 0 0 1 .318.065h.004c.003.004.003.004.007.004a.049.049 0 0 1 .02.007l.004.003.037.017a.107.107 0 0 1 .035.017c.006.004.017.007.024.01a.072.072 0 0 0 .02.014.314.314 0 0 1 .027.017.666.666 0 0 1 .086.062c.047.039.09.08.13.127a.363.363 0 0 1 .034.04.13.13 0 0 1 .031.045.12.12 0 0 1 .017.028.12.12 0 0 1 .017.027v.007Zm.007.007v.003c-.004-.003-.004-.007-.007-.01.007 0 .007.003.007.007Z",
|
|
2300
2385
|
fill: "#528693"
|
|
2301
2386
|
}),
|
|
2302
|
-
/* @__PURE__ */
|
|
2387
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2303
2388
|
d: "m9.939 3.585-.004-.004a.1.1 0 0 1-.006-.03.94.94 0 0 0-.093-.326.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062c.004.007.007.01.007.017a.046.046 0 0 1 .01.027l.004.004a.066.066 0 0 1 .01.034l.004.003a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113Zm.329-.075a.171.171 0 0 1-.007.061 1.305 1.305 0 0 0-.195-.613c.113.164.183.353.202.552ZM7.073 6.574c-.034-.054-.062-.11-.093-.167A16.294 16.294 0 0 1 6.402 5.2a6.22 6.22 0 0 1-.425-1.315.577.577 0 0 1 0-.133 1.627 1.627 0 0 0 .051.318 7.89 7.89 0 0 0 .439 1.247c.185.427.39.846.606 1.256Zm3.89-1.023a20.5 20.5 0 0 1-.332.674c-.387.74-.809 1.459-1.25 2.178l-.165.267a.288.288 0 0 1-.147.134.278.278 0 0 1-.335-.11 38.421 38.421 0 0 1-.672-1.113c-.037-.065-.075-.13-.11-.195.275.466.542.907.802 1.318a.274.274 0 0 0 .308.093.325.325 0 0 0 .13-.106l.155-.254c.208-.332.41-.671.61-1.01.345-.6.684-1.212 1.006-1.876ZM8.449 2.842c.004-.004.004 0 .004 0a.004.004 0 0 1-.004.004v-.004ZM8.46 2.834c0 .003-.004.003-.007.006a.01.01 0 0 1 .003-.006h.003Zm.027-.013-.003.004V2.82h.003Zm.069-.034a.012.012 0 0 0-.007.004.013.013 0 0 1-.01.003.075.075 0 0 0-.018.01h-.003a.072.072 0 0 1 .02-.014c.007-.003.01-.006.017-.003Zm.037-.022h.003c-.003.004-.007.004-.01.007-.003.004-.01.004-.014.007-.003.004-.003.004-.007.004H8.56a.08.08 0 0 1 .034-.017Zm.01-.002c0-.003.003 0 .003 0a.003.003 0 0 1-.003.003H8.6l.003-.003Zm1.206.418a1.02 1.02 0 0 0-.538-.435c-.003-.004-.003-.004-.007-.004a.217.217 0 0 0-.024-.006.02.02 0 0 0-.013-.004.091.091 0 0 0-.041-.01c-.004-.003-.004-.003-.007-.003-.004 0-.014-.004-.02-.004a.007.007 0 0 0-.006-.002.007.007 0 0 0-.005.002h-.003a.012.012 0 0 0-.007-.003h-.004c-.003-.004-.003-.004-.007 0h-.003c0-.004-.003-.004-.007-.004H9.11a.068.068 0 0 0-.027-.003.153.153 0 0 0-.038-.004h-.024a.037.037 0 0 1-.02-.003h-.004c-.007.003-.01 0-.013 0H8.96a.075.075 0 0 0-.028.003h-.03a.02.02 0 0 0-.015.004h-.03a.03.03 0 0 1-.017.003h-.007a.02.02 0 0 1-.014.004h-.01a.02.02 0 0 0-.014.003h-.01a.043.043 0 0 0-.02.004.013.013 0 0 0-.011.003.123.123 0 0 0-.038.007.361.361 0 0 0-.065.02.147.147 0 0 0-.017.004.013.013 0 0 1-.01.003c.003-.003.007-.007.01-.007a.585.585 0 0 1 .103-.03c.003-.004.003-.007.007-.004a.622.622 0 0 1 .106-.017c.007 0 .013-.003.02 0a.277.277 0 0 1 .052-.003.006.006 0 0 1 .01 0 .415.415 0 0 1 .065-.004.791.791 0 0 1 .318.065h.004c.003.004.003.004.007.004a.049.049 0 0 1 .02.007l.004.003.037.017a.107.107 0 0 1 .035.017c.006.004.017.007.024.01a.072.072 0 0 0 .02.014.314.314 0 0 1 .027.017.666.666 0 0 1 .086.062c.047.039.09.08.13.127a.363.363 0 0 1 .034.04.13.13 0 0 1 .031.045.12.12 0 0 1 .017.028.12.12 0 0 1 .017.027v.007Zm.007.007v.003c-.004-.003-.004-.007-.007-.01.007 0 .007.003.007.007Z",
|
|
2304
2389
|
fill: "#528693"
|
|
2305
2390
|
}),
|
|
2306
|
-
/* @__PURE__ */
|
|
2391
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2307
2392
|
d: "m9.939 3.585-.004-.004a.1.1 0 0 1-.006-.03.94.94 0 0 0-.093-.326.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062c.004.007.007.01.007.017a.046.046 0 0 1 .01.027l.004.004a.066.066 0 0 1 .01.034l.004.003a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113Zm.329-.075a.171.171 0 0 1-.007.061 1.305 1.305 0 0 0-.195-.613c.113.164.183.353.202.552Zm-1.819-.668c.004-.004.004 0 .004 0a.004.004 0 0 1-.004.004v-.004ZM8.46 2.834c0 .003-.004.003-.007.006a.01.01 0 0 1 .003-.006h.003Zm.027-.013-.003.004V2.82h.003Zm.069-.034a.012.012 0 0 0-.007.004.013.013 0 0 1-.01.003.075.075 0 0 0-.018.01h-.003a.072.072 0 0 1 .02-.014c.007-.003.01-.006.017-.003Zm.037-.022h.003c-.003.004-.007.004-.01.007-.003.004-.01.004-.014.007-.003.004-.003.004-.007.004H8.56a.08.08 0 0 1 .034-.017Zm.01-.002c0-.003.003 0 .003 0a.003.003 0 0 1-.003.003H8.6l.003-.003Zm1.206.418a1.02 1.02 0 0 0-.538-.435c-.003-.004-.003-.004-.007-.004a.217.217 0 0 0-.024-.006.02.02 0 0 0-.013-.004.091.091 0 0 0-.041-.01c-.004-.003-.004-.003-.007-.003-.004 0-.014-.004-.02-.004a.007.007 0 0 0-.006-.002.007.007 0 0 0-.005.002h-.003a.012.012 0 0 0-.007-.003h-.004c-.003-.004-.003-.004-.007 0h-.003c0-.004-.003-.004-.007-.004H9.11a.068.068 0 0 0-.027-.003.153.153 0 0 0-.038-.004h-.024a.037.037 0 0 1-.02-.003h-.004c-.007.003-.01 0-.013 0H8.96a.075.075 0 0 0-.028.003h-.03a.02.02 0 0 0-.015.004h-.03a.03.03 0 0 1-.017.003h-.007a.02.02 0 0 1-.014.004h-.01a.02.02 0 0 0-.014.003h-.01a.043.043 0 0 0-.02.004.013.013 0 0 0-.011.003.123.123 0 0 0-.038.007.361.361 0 0 0-.065.02.147.147 0 0 0-.017.004.013.013 0 0 1-.01.003c.003-.003.007-.007.01-.007a.585.585 0 0 1 .103-.03c.003-.004.003-.007.007-.004a.622.622 0 0 1 .106-.017c.007 0 .013-.003.02 0a.277.277 0 0 1 .052-.003.006.006 0 0 1 .01 0 .415.415 0 0 1 .065-.004.791.791 0 0 1 .318.065h.004c.003.004.003.004.007.004a.049.049 0 0 1 .02.007l.004.003.037.017a.107.107 0 0 1 .035.017c.006.004.017.007.024.01a.072.072 0 0 0 .02.014.314.314 0 0 1 .027.017.666.666 0 0 1 .086.062c.047.039.09.08.13.127a.363.363 0 0 1 .034.04.13.13 0 0 1 .031.045.12.12 0 0 1 .017.028.12.12 0 0 1 .017.027v.007Zm.007.007v.003c-.004-.003-.004-.007-.007-.01.007 0 .007.003.007.007Z",
|
|
2308
2393
|
fill: "#528693"
|
|
2309
2394
|
}),
|
|
2310
|
-
/* @__PURE__ */
|
|
2395
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2311
2396
|
d: "m9.939 3.585-.004-.004a.1.1 0 0 1-.006-.03.94.94 0 0 0-.093-.326.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062c.004.007.007.01.007.017a.046.046 0 0 1 .01.027l.004.004a.066.066 0 0 1 .01.034l.004.003a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113Zm.329-.075a.171.171 0 0 1-.007.061 1.305 1.305 0 0 0-.195-.613c.113.164.183.353.202.552Zm-1.819-.668c.004-.004.004 0 .004 0a.004.004 0 0 1-.004.004v-.004ZM8.46 2.834c0 .003-.004.003-.007.006a.01.01 0 0 1 .003-.006h.003Zm.027-.013-.003.004V2.82h.003Zm.069-.034a.012.012 0 0 0-.007.004.013.013 0 0 1-.01.003.075.075 0 0 0-.018.01h-.003a.072.072 0 0 1 .02-.014c.007-.003.01-.006.017-.003Zm.037-.022h.003c-.003.004-.007.004-.01.007-.003.004-.01.004-.014.007-.003.004-.003.004-.007.004H8.56a.08.08 0 0 1 .034-.017Zm.01-.002c0-.003.003 0 .003 0a.003.003 0 0 1-.003.003H8.6l.003-.003Zm1.206.418a1.02 1.02 0 0 0-.538-.435c-.003-.004-.003-.004-.007-.004a.217.217 0 0 0-.024-.006.02.02 0 0 0-.013-.004.091.091 0 0 0-.041-.01c-.004-.003-.004-.003-.007-.003-.004 0-.014-.004-.02-.004a.007.007 0 0 0-.006-.002.007.007 0 0 0-.005.002h-.003a.012.012 0 0 0-.007-.003h-.004c-.003-.004-.003-.004-.007 0h-.003c0-.004-.003-.004-.007-.004H9.11a.068.068 0 0 0-.027-.003.153.153 0 0 0-.038-.004h-.024a.037.037 0 0 1-.02-.003h-.004c-.007.003-.01 0-.013 0H8.96a.075.075 0 0 0-.028.003h-.03a.02.02 0 0 0-.015.004h-.03a.03.03 0 0 1-.017.003h-.007a.02.02 0 0 1-.014.004h-.01a.02.02 0 0 0-.014.003h-.01a.043.043 0 0 0-.02.004.013.013 0 0 0-.011.003.123.123 0 0 0-.038.007.361.361 0 0 0-.065.02.147.147 0 0 0-.017.004.013.013 0 0 1-.01.003c.003-.003.007-.007.01-.007a.585.585 0 0 1 .103-.03c.003-.004.003-.007.007-.004a.622.622 0 0 1 .106-.017c.007 0 .013-.003.02 0a.277.277 0 0 1 .052-.003.006.006 0 0 1 .01 0 .415.415 0 0 1 .065-.004.791.791 0 0 1 .318.065h.004c.003.004.003.004.007.004a.049.049 0 0 1 .02.007l.004.003.037.017a.107.107 0 0 1 .035.017c.006.004.017.007.024.01a.072.072 0 0 0 .02.014.314.314 0 0 1 .027.017.666.666 0 0 1 .086.062c.047.039.09.08.13.127a.363.363 0 0 1 .034.04.13.13 0 0 1 .031.045.12.12 0 0 1 .017.028.12.12 0 0 1 .017.027v.007Zm.007.007v.003c-.004-.003-.004-.007-.007-.01.007 0 .007.003.007.007Z",
|
|
2312
2397
|
fill: "#528693"
|
|
2313
2398
|
}),
|
|
2314
|
-
/* @__PURE__ */
|
|
2399
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2315
2400
|
d: "m9.939 3.585-.004-.004a.1.1 0 0 1-.006-.03.94.94 0 0 0-.093-.326.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062c.004.007.007.01.007.017a.046.046 0 0 1 .01.027l.004.004a.066.066 0 0 1 .01.034l.004.003a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113Zm.329-.075a.171.171 0 0 1-.007.061 1.305 1.305 0 0 0-.195-.613c.113.164.183.353.202.552ZM9.11 2.363a1.073 1.073 0 0 0-.181-.007 1.31 1.31 0 0 0-1.26 1.12.142.142 0 0 0-.007.054v.017c-.004 0-.004-.003-.004-.007v-.03a.691.691 0 0 1 .02-.117v-.007a.01.01 0 0 0 .004-.007 1.1 1.1 0 0 1 .01-.048.003.003 0 0 1 .004-.003.103.103 0 0 1 .007-.034.049.049 0 0 1 .007-.02.1.1 0 0 1 .007-.032l.03-.082c.004 0 .004 0 .004-.003a.013.013 0 0 1 .003-.01l.052-.11c.003 0 .003 0 .003-.003V3.03a.142.142 0 0 0 .024-.038l.024-.04a.003.003 0 0 1 .003-.004.072.072 0 0 1 .014-.02 1.284 1.284 0 0 1 .25-.278c.26-.217.594-.323.932-.298a.377.377 0 0 1 .054.01Z",
|
|
2316
2401
|
fill: "#528693"
|
|
2317
2402
|
}),
|
|
2318
|
-
/* @__PURE__ */
|
|
2403
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2319
2404
|
d: "M9.306 2.397a1.204 1.204 0 0 0-.197-.034c.066.006.132.018.197.034Zm-1.202.814c0 .003-.004.007-.004.01h-.003c0-.002.003-.006.007-.01Zm.034-.061v.006h-.004a.01.01 0 0 0 .003-.006Zm.4-.36v.004a.075.075 0 0 0-.017.01h-.003a.071.071 0 0 1 .02-.013Zm1.315.463a.075.075 0 0 0-.017-.028.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062Zm.086.332-.004-.004a.564.564 0 0 0-.013-.11.453.453 0 0 1 .017.114Z",
|
|
2320
2405
|
fill: "#528693"
|
|
2321
2406
|
}),
|
|
2322
|
-
/* @__PURE__ */
|
|
2407
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2323
2408
|
d: "M9.11 2.362a1.073 1.073 0 0 0-.181-.006 1.31 1.31 0 0 0-1.26 1.12.142.142 0 0 0-.007.054v.017c-.004 0-.004-.003-.004-.007v-.03a.691.691 0 0 1 .02-.117v-.007a.01.01 0 0 0 .004-.007 1.1 1.1 0 0 1 .01-.048.003.003 0 0 1 .004-.003.103.103 0 0 1 .007-.034.049.049 0 0 1 .007-.02.1.1 0 0 1 .007-.032l.03-.082c.004 0 .004 0 .004-.003a.013.013 0 0 1 .003-.01l.052-.11c.003 0 .003 0 .003-.003V3.03a.142.142 0 0 0 .024-.038l.024-.04a.003.003 0 0 1 .003-.004.072.072 0 0 1 .014-.02 1.284 1.284 0 0 1 .25-.278c.26-.217.594-.323.932-.298a.377.377 0 0 1 .054.01Z",
|
|
2324
2409
|
fill: "#528693"
|
|
2325
2410
|
}),
|
|
2326
|
-
/* @__PURE__ */
|
|
2411
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2327
2412
|
d: "M9.306 2.397a1.204 1.204 0 0 0-.197-.034c.066.006.132.018.197.034Zm-1.202.814c0 .003-.004.007-.004.01h-.003c0-.002.003-.006.007-.01Zm.034-.061v.006h-.004a.01.01 0 0 0 .003-.006Zm.4-.36v.004a.075.075 0 0 0-.017.01h-.003a.071.071 0 0 1 .02-.013Zm1.315.463a.075.075 0 0 0-.017-.028.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062Zm.086.332-.004-.004a.564.564 0 0 0-.013-.11.453.453 0 0 1 .017.114Z",
|
|
2328
2413
|
fill: "#528693"
|
|
2329
2414
|
}),
|
|
2330
|
-
/* @__PURE__ */
|
|
2415
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2331
2416
|
d: "M10.301 3.553a1.351 1.351 0 0 0-2.359-.747 1.324 1.324 0 0 0-.305.7v.02a1.301 1.301 0 0 0 .233.905.15.15 0 0 0 .02.024c.007.01.014.017.02.027a.019.019 0 0 1 .011.014l.058.061.02.024c.198.206.455.345.735.4a1.332 1.332 0 0 0 1.3-.514 1.356 1.356 0 0 0 .267-.914Zm-.393.21a.964.964 0 0 1-.263.57l-.017.016a.91.91 0 0 1-.476.25.885.885 0 0 1-.496-.032 1.055 1.055 0 0 1-.632-.757.94.94 0 0 1 .203-.699.972.972 0 0 1 .77-.4c.08.001.16.013.237.035a.112.112 0 0 0-.017-.007c.084.03.165.066.243.109a.968.968 0 0 1 .205.177c.12.136.2.303.234.481a.917.917 0 0 1 .009.257Z",
|
|
2332
2417
|
fill: "#528693"
|
|
2333
2418
|
}),
|
|
2334
|
-
/* @__PURE__ */
|
|
2419
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2335
2420
|
d: "m9.673 4.299-.01.011.002-.002c.003-.001.005-.007.008-.01Zm2.225-.132a7.495 7.495 0 0 1-.47 1.243c-.37.794-.784 1.551-1.215 2.294a52.54 52.54 0 0 1-.664 1.106.728.728 0 0 1-.274.291.637.637 0 0 1-.798-.15 1.495 1.495 0 0 1-.103-.15l-.086-.138a42.1 42.1 0 0 1-.993-1.67 41.699 41.699 0 0 0 1.038 1.78l.092.144a.656.656 0 0 0 1.007.099c.08-.095.151-.197.212-.305.46-.74.901-1.49 1.308-2.267.203-.387.398-.777.572-1.185a6.893 6.893 0 0 0 .432-1.267.673.673 0 0 0 .017-.157 3.369 3.369 0 0 1-.075.332Z",
|
|
2336
2421
|
fill: "#528693"
|
|
2337
2422
|
}),
|
|
2338
|
-
/* @__PURE__ */
|
|
2423
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2339
2424
|
d: "M11.905 2.79a3.032 3.032 0 0 0-5.942.309c-.117.753.212 1.54.504 2.218.185.428.39.846.606 1.257.072.137.144.274.222.418.319.572.654 1.123.993 1.67l.086.138a1.497 1.497 0 0 0 .103.15.637.637 0 0 0 .798.151.728.728 0 0 0 .274-.29c.226-.367.448-.737.664-1.107.431-.743.846-1.5 1.216-2.294a7.504 7.504 0 0 0 .469-1.243 3.234 3.234 0 0 0 .075-.336 3.104 3.104 0 0 0 .024-.353 2.926 2.926 0 0 0-.092-.688Zm-.326 1.127c-.007.024-.01.048-.017.072a5.374 5.374 0 0 1-.058.22 7.246 7.246 0 0 1-.267.732 8.758 8.758 0 0 1-.274.61 20.5 20.5 0 0 1-.332.674c-.387.74-.808 1.459-1.25 2.178l-.165.267a.288.288 0 0 1-.147.134.278.278 0 0 1-.335-.11 38.421 38.421 0 0 1-.672-1.113 5.601 5.601 0 0 1-.11-.195c-.088-.147-.17-.295-.256-.445l-.23-.418-.058-.11a16.814 16.814 0 0 1-.315-.61A17.88 17.88 0 0 1 6.8 5.17a7.382 7.382 0 0 1-.411-1.15c-.017-.093-.041-.188-.055-.281a2.322 2.322 0 0 1-.01-.27 2.459 2.459 0 0 1 .075-.552A2.642 2.642 0 0 1 9.172.904c.065.003.13.01.195.02a.548.548 0 0 1 .13.024c.045.007.086.017.13.028a.568.568 0 0 1 .13.037c.09.028.175.059.26.093.049.02.097.04.145.065a2.302 2.302 0 0 1 .414.26 2.173 2.173 0 0 1 .318.284c.035.036.069.074.1.113a.611.611 0 0 1 .096.12c.183.244.325.517.417.808a2.47 2.47 0 0 1 .072 1.161Z",
|
|
2340
2425
|
fill: "#528693"
|
|
2341
2426
|
}),
|
|
2342
|
-
/* @__PURE__ */
|
|
2427
|
+
/* @__PURE__ */ jsx52("path", {
|
|
2343
2428
|
d: "M9.836 3.225a.075.075 0 0 1 .017.028c.004.007.007.01.004.014l.003.003a.045.045 0 0 1 .01.027.121.121 0 0 1-.013-.03l-.02-.042-.004-.003c0-.004-.004-.004-.004-.007.007.004.007.007.007.01Zm.1.356a.1.1 0 0 1-.007-.03 1.061 1.061 0 0 0-.045-.213l-.01-.03A.012.012 0 0 1 9.87 3.3h.004c0 .003.003.003 0 .007a.055.055 0 0 1 .01.027v.003h.004a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113l-.004-.003Z",
|
|
2344
2429
|
fill: "#528693"
|
|
2345
2430
|
})
|
|
@@ -2349,10 +2434,10 @@ var StockLocation = forwardRef43((delegated, ref) => {
|
|
|
2349
2434
|
StockLocation.displayName = "StockLocationIcon";
|
|
2350
2435
|
|
|
2351
2436
|
// src/iconography/subscription.tsx
|
|
2352
|
-
import { forwardRef as
|
|
2353
|
-
import { jsx as
|
|
2354
|
-
var Subscription =
|
|
2355
|
-
return /* @__PURE__ */
|
|
2437
|
+
import { forwardRef as forwardRef46 } from "react";
|
|
2438
|
+
import { jsx as jsx53, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
2439
|
+
var Subscription = forwardRef46((delegated, ref) => {
|
|
2440
|
+
return /* @__PURE__ */ jsxs44("svg", {
|
|
2356
2441
|
ref,
|
|
2357
2442
|
width: "34",
|
|
2358
2443
|
height: "34",
|
|
@@ -2360,21 +2445,21 @@ var Subscription = forwardRef44((delegated, ref) => {
|
|
|
2360
2445
|
fill: "none",
|
|
2361
2446
|
...delegated,
|
|
2362
2447
|
children: [
|
|
2363
|
-
/* @__PURE__ */
|
|
2448
|
+
/* @__PURE__ */ jsx53("path", {
|
|
2364
2449
|
d: "M6.61561 5.18342H25.0671H27.0366L28.0213 8.13757L29.006 15.0306L6.35752 13.0612L5.3728 7.15285L6.61561 5.18342Z",
|
|
2365
2450
|
fill: "#bff6f8"
|
|
2366
2451
|
}),
|
|
2367
|
-
/* @__PURE__ */
|
|
2452
|
+
/* @__PURE__ */ jsx53("path", {
|
|
2368
2453
|
d: "M6.35752 13.0611H19.1588H28.0213L29.006 17L28.0213 26.8472L27.0366 28.8166H14.2353H7.34224H6.35752L5.3728 26.8472L6.35752 22.9083V17V13.0611Z",
|
|
2369
2454
|
fill: "#fff"
|
|
2370
2455
|
}),
|
|
2371
|
-
/* @__PURE__ */
|
|
2456
|
+
/* @__PURE__ */ jsx53("path", {
|
|
2372
2457
|
fillRule: "evenodd",
|
|
2373
2458
|
clipRule: "evenodd",
|
|
2374
2459
|
d: "M7.69756 4.39563H25.3681C26.716 4.39563 27.8662 5.37006 28.0878 6.69955L28.326 8.12863C29.305 14.0024 29.305 19.9976 28.326 25.8714L28.0878 27.3005C27.8662 28.6299 26.716 29.6044 25.3681 29.6044H7.69756C5.99377 29.6044 4.69776 28.0745 4.97786 26.3939L5.10812 25.6124C6.05849 19.9101 6.05849 14.0899 5.10812 8.38765L4.97786 7.60612C4.69776 5.92551 5.99377 4.39563 7.69756 4.39563ZM7.69756 5.27456C6.48057 5.27456 5.73939 6.14667 5.93946 7.3471L6.06972 8.12863C7.03438 13.9166 7.03438 19.8244 6.06972 25.6124L5.93946 26.3939C5.73939 27.5943 6.48056 28.641 7.69756 28.641H25.3681C26.3309 28.641 27.0227 28.1206 27.181 27.1709L27.4192 25.7419C28.3838 19.9539 28.3838 14.0461 27.4192 8.25814L27.181 6.82906C27.0227 5.87943 26.3309 5.27456 25.3681 5.27456H7.69756Z",
|
|
2375
2460
|
fill: "#528693"
|
|
2376
2461
|
}),
|
|
2377
|
-
/* @__PURE__ */
|
|
2462
|
+
/* @__PURE__ */ jsx53("path", {
|
|
2378
2463
|
fillRule: "evenodd",
|
|
2379
2464
|
clipRule: "evenodd",
|
|
2380
2465
|
d: "M28.4567 13.455L6.24786 13.455L6.24786 12.4094L28.4567 12.4094L28.4567 13.455Z",
|
|
@@ -2386,11 +2471,11 @@ var Subscription = forwardRef44((delegated, ref) => {
|
|
|
2386
2471
|
Subscription.displayName = "SubscriptionIcon";
|
|
2387
2472
|
|
|
2388
2473
|
// src/iconography/subscription-contracts.tsx
|
|
2389
|
-
import { forwardRef as
|
|
2390
|
-
import { jsx as
|
|
2391
|
-
var SubscriptionContracts =
|
|
2474
|
+
import { forwardRef as forwardRef47 } from "react";
|
|
2475
|
+
import { jsx as jsx54, jsxs as jsxs45 } from "react/jsx-runtime";
|
|
2476
|
+
var SubscriptionContracts = forwardRef47(
|
|
2392
2477
|
(delegated, ref) => {
|
|
2393
|
-
return /* @__PURE__ */
|
|
2478
|
+
return /* @__PURE__ */ jsxs45("svg", {
|
|
2394
2479
|
ref,
|
|
2395
2480
|
width: "23",
|
|
2396
2481
|
height: "22",
|
|
@@ -2398,37 +2483,37 @@ var SubscriptionContracts = forwardRef45(
|
|
|
2398
2483
|
fill: "none",
|
|
2399
2484
|
...delegated,
|
|
2400
2485
|
children: [
|
|
2401
|
-
/* @__PURE__ */
|
|
2486
|
+
/* @__PURE__ */ jsx54("path", {
|
|
2402
2487
|
fill: "#BFF6F8",
|
|
2403
2488
|
d: "M6.684 19.1h10.8a.6.6 0 0 0 .6-.6V6.748a.6.6 0 0 0-.176-.424L14.86 3.276a.6.6 0 0 0-.425-.176h-7.75a.6.6 0 0 0-.6.6v14.8a.6.6 0 0 0 .6.6Z"
|
|
2404
2489
|
}),
|
|
2405
|
-
/* @__PURE__ */
|
|
2490
|
+
/* @__PURE__ */ jsx54("path", {
|
|
2406
2491
|
fill: "#528693",
|
|
2407
2492
|
fillRule: "evenodd",
|
|
2408
2493
|
d: "m17.908 6.324.425-.424a1.2 1.2 0 0 1 .351.848V18.5a1.2 1.2 0 0 1-1.2 1.2h-10.8a1.2 1.2 0 0 1-1.2-1.2V3.7a1.2 1.2 0 0 1 1.2-1.2h7.751a1.2 1.2 0 0 1 .85.351L18.332 5.9l-.425.424ZM17.484 19.1h-10.8a.6.6 0 0 1-.6-.6V3.7a.6.6 0 0 1 .6-.6h7.751a.6.6 0 0 1 .425.176l3.048 3.048a.6.6 0 0 1 .176.424V18.5a.6.6 0 0 1-.6.6Z",
|
|
2409
2494
|
clipRule: "evenodd"
|
|
2410
2495
|
}),
|
|
2411
|
-
/* @__PURE__ */
|
|
2496
|
+
/* @__PURE__ */ jsx54("path", {
|
|
2412
2497
|
fill: "#528693",
|
|
2413
2498
|
fillRule: "evenodd",
|
|
2414
2499
|
d: "M14.784 2.9v2.6a.7.7 0 0 0 .7.7h3v.6h-3a1.3 1.3 0 0 1-1.3-1.3V2.9h.6Z",
|
|
2415
2500
|
clipRule: "evenodd"
|
|
2416
2501
|
}),
|
|
2417
|
-
/* @__PURE__ */
|
|
2502
|
+
/* @__PURE__ */ jsx54("path", {
|
|
2418
2503
|
fill: "#fff",
|
|
2419
2504
|
d: "M13.977 8.068c-.12.426-.279.815-.393 1.233l4.498 1.256c1.502.316 1.335-1.12.702-1.857V7.66c1.645 1.392 2.137 2.286 1.828 3.213-.79 2.372-5.264.59-7.586.074l-.387 1.163-2.135-2.94 3.473-1.102Z"
|
|
2420
2505
|
}),
|
|
2421
|
-
/* @__PURE__ */
|
|
2506
|
+
/* @__PURE__ */ jsx54("path", {
|
|
2422
2507
|
fill: "#528693",
|
|
2423
2508
|
fillRule: "evenodd",
|
|
2424
2509
|
d: "M18.784 8.7c.633.738.8 2.173-.702 1.857l-4.498-1.256.02-.068c.044-.157.095-.31.146-.463l.014-.042.022-.065c.066-.195.133-.39.191-.595l-.698.222h-.002l-2.17.689-.603.19a1328.391 1328.391 0 0 1 1.109 1.528l.592.816.434.597.387-1.163c.412.092.893.223 1.408.364 2.386.653 5.528 1.513 6.178-.438.267-.803-.066-1.58-1.228-2.678-.18-.17-.38-.348-.6-.534V8.7Zm-5.363 2.96-.213.64a.6.6 0 0 1-1.055.163 3823.073 3823.073 0 0 1-2.135-2.94.6.6 0 0 1 .304-.925l2.772-.88.702-.222a.6.6 0 0 1 .758.736c-.062.22-.133.429-.198.62l-.01.029-.003.009 3.88 1.084c.287.057.391.01.403.004a.153.153 0 0 0 .015-.05.84.84 0 0 0-.055-.385 1.44 1.44 0 0 0-.257-.453l-.145-.168V6.367l.988.836c.836.707 1.437 1.334 1.78 1.943.364.643.443 1.273.229 1.917-.272.817-.88 1.271-1.6 1.473-.687.192-1.49.162-2.272.05-.791-.111-1.622-.316-2.384-.52-.23-.061-.453-.122-.666-.18-.297-.082-.577-.159-.838-.226Z",
|
|
2425
2510
|
clipRule: "evenodd"
|
|
2426
2511
|
}),
|
|
2427
|
-
/* @__PURE__ */
|
|
2512
|
+
/* @__PURE__ */ jsx54("path", {
|
|
2428
2513
|
fill: "#fff",
|
|
2429
2514
|
d: "M10.492 13.433c-.126.424-.2.837-.327 1.252l-4.473-1.343c-1.053-.393-.848-1.1-.298-1.563v-1.03c-1.248.31-1.827.77-2.009 1.507-.6 2.427 4.133 3.312 6.37 4.118l-.293 1.19 3.376-1.343-2.346-2.788Z"
|
|
2430
2515
|
}),
|
|
2431
|
-
/* @__PURE__ */
|
|
2516
|
+
/* @__PURE__ */ jsx54("path", {
|
|
2432
2517
|
fill: "#528693",
|
|
2433
2518
|
fillRule: "evenodd",
|
|
2434
2519
|
d: "M5.394 11.779c-.55.463-.755 1.17.298 1.563l4.473 1.343.02-.068c.046-.157.085-.313.123-.47l.01-.043.017-.067c.048-.2.096-.4.156-.604l.472.56.003.003c.49.582.975 1.16 1.465 1.74l.407.485-.587.233-1.167.464-.937.373-.685.273.294-1.19c-.397-.143-.873-.288-1.384-.445-2.366-.724-5.48-1.677-4.987-3.673.15-.606.57-1.026 1.409-1.328.18-.064.38-.124.6-.178v1.029Zm3.647 4.987-.162.654a.6.6 0 0 0 .804.701 3603.743 3603.743 0 0 0 3.377-1.343.6.6 0 0 0 .237-.944l-1.872-2.224-.474-.564a.6.6 0 0 0-1.035.216c-.065.22-.116.434-.164.63l-.007.03-.002.01-3.859-1.159c-.195-.075-.285-.146-.322-.185a.133.133 0 0 1-.02-.028v-.003a.335.335 0 0 1 .037-.092.913.913 0 0 1 .201-.227l.214-.18V9.984l-.744.184c-.662.163-1.208.38-1.623.697-.434.33-.7.747-.824 1.247-.207.836.063 1.545.564 2.1.478.53 1.174.934 1.893 1.258.729.328 1.54.6 2.293.835l.66.203c.294.09.572.175.828.258Z",
|
|
@@ -2441,10 +2526,10 @@ var SubscriptionContracts = forwardRef45(
|
|
|
2441
2526
|
SubscriptionContracts.displayName = "SubscriptionContractsIcon";
|
|
2442
2527
|
|
|
2443
2528
|
// src/iconography/subscription-plans.tsx
|
|
2444
|
-
import { forwardRef as
|
|
2445
|
-
import { jsx as
|
|
2446
|
-
var SubscriptionPlans =
|
|
2447
|
-
return /* @__PURE__ */
|
|
2529
|
+
import { forwardRef as forwardRef48 } from "react";
|
|
2530
|
+
import { jsx as jsx55, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
2531
|
+
var SubscriptionPlans = forwardRef48((delegated, ref) => {
|
|
2532
|
+
return /* @__PURE__ */ jsxs46("svg", {
|
|
2448
2533
|
ref,
|
|
2449
2534
|
width: "23",
|
|
2450
2535
|
height: "22",
|
|
@@ -2452,47 +2537,47 @@ var SubscriptionPlans = forwardRef46((delegated, ref) => {
|
|
|
2452
2537
|
fill: "none",
|
|
2453
2538
|
...delegated,
|
|
2454
2539
|
children: [
|
|
2455
|
-
/* @__PURE__ */
|
|
2540
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2456
2541
|
fill: "#BFF6F8",
|
|
2457
2542
|
d: "M5.181 6.227a1 1 0 0 1 1-1h11.307a1 1 0 0 1 1 1v11.225a1 1 0 0 1-1 1H6.18a1 1 0 0 1-1-1V6.227Z"
|
|
2458
2543
|
}),
|
|
2459
|
-
/* @__PURE__ */
|
|
2544
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2460
2545
|
fill: "#528693",
|
|
2461
2546
|
fillRule: "evenodd",
|
|
2462
2547
|
d: "M6.397 4.627h11.09a1.6 1.6 0 0 1 1.6 1.6v11a1.6 1.6 0 0 1-1.6 1.6H6.398a1.6 1.6 0 0 1-1.6-1.6v-11a1.6 1.6 0 0 1 1.6-1.6Zm0 .6h11.09a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H6.398a1 1 0 0 1-1-1v-11a1 1 0 0 1 1-1Z",
|
|
2463
2548
|
clipRule: "evenodd"
|
|
2464
2549
|
}),
|
|
2465
|
-
/* @__PURE__ */
|
|
2550
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2466
2551
|
fill: "#fff",
|
|
2467
2552
|
d: "M5.397 6.227a1 1 0 0 1 1-1h11.09a1 1 0 0 1 1 1v1.455H5.398V6.227Z"
|
|
2468
2553
|
}),
|
|
2469
|
-
/* @__PURE__ */
|
|
2554
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2470
2555
|
fill: "#528693",
|
|
2471
2556
|
fillRule: "evenodd",
|
|
2472
2557
|
d: "M19.088 8.282H4.797V6.227a1.6 1.6 0 0 1 1.6-1.6h11.09a1.6 1.6 0 0 1 1.6 1.6v2.055ZM6.397 5.227a1 1 0 0 0-1 1v1.455h13.09V6.227a1 1 0 0 0-1-1H6.398Z",
|
|
2473
2558
|
clipRule: "evenodd"
|
|
2474
2559
|
}),
|
|
2475
|
-
/* @__PURE__ */
|
|
2560
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2476
2561
|
fill: "#528693",
|
|
2477
2562
|
fillRule: "evenodd",
|
|
2478
2563
|
d: "M8.352 4v1.227h-1V4a.5.5 0 0 1 1 0ZM16.533 4v1.227h-1V4a.5.5 0 1 1 1 0ZM12.443 4v1.227h-1V4a.5.5 0 1 1 1 0Z",
|
|
2479
2564
|
clipRule: "evenodd"
|
|
2480
2565
|
}),
|
|
2481
|
-
/* @__PURE__ */
|
|
2566
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2482
2567
|
fill: "#fff",
|
|
2483
2568
|
d: "M14.27 10.15c-.121.426-.28.815-.394 1.233l4.498 1.256c1.502.316 1.335-1.12.702-1.857v-1.04c1.645 1.392 2.137 2.286 1.828 3.213-.79 2.372-5.264.59-7.585.074l-.388 1.163-2.135-2.94 3.473-1.102Z"
|
|
2484
2569
|
}),
|
|
2485
|
-
/* @__PURE__ */
|
|
2570
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2486
2571
|
fill: "#528693",
|
|
2487
2572
|
fillRule: "evenodd",
|
|
2488
2573
|
d: "M19.076 10.782c.633.738.8 2.173-.702 1.857l-4.498-1.256.02-.068c.044-.157.095-.31.146-.463l.014-.042.023-.065c.066-.194.132-.39.19-.595l-.697.221-.003.001-2.17.689-.603.19a1504.34 1504.34 0 0 1 1.109 1.528l.593.816.433.597.388-1.163c.412.092.892.223 1.407.364 2.387.653 5.528 1.513 6.178-.438.267-.803-.066-1.58-1.228-2.678-.18-.17-.38-.348-.6-.534v1.039Zm-5.363 2.96-.213.64a.6.6 0 0 1-1.054.163l-1.027-1.414-1.109-1.527a.6.6 0 0 1 .305-.924l2.771-.88.702-.222a.6.6 0 0 1 .759.736c-.063.22-.134.429-.199.62l-.01.029-.003.009 3.88 1.084c.287.058.392.01.403.004a.156.156 0 0 0 .015-.05.84.84 0 0 0-.055-.385 1.44 1.44 0 0 0-.257-.453l-.145-.168V8.449l.988.836c.836.707 1.437 1.334 1.781 1.943.363.643.442 1.273.228 1.917-.272.816-.879 1.271-1.6 1.473-.686.192-1.49.162-2.272.05-.791-.111-1.622-.316-2.384-.52-.23-.061-.452-.122-.666-.18a59.482 59.482 0 0 0-.838-.226Z",
|
|
2489
2574
|
clipRule: "evenodd"
|
|
2490
2575
|
}),
|
|
2491
|
-
/* @__PURE__ */
|
|
2576
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2492
2577
|
fill: "#fff",
|
|
2493
2578
|
d: "M9.903 13.26c-.125.425-.2.838-.327 1.252l-4.472-1.343c-1.054-.392-.848-1.1-.298-1.563v-1.029c-1.248.309-1.827.77-2.01 1.507-.6 2.427 4.134 3.312 6.372 4.118l-.295 1.19 3.377-1.344-2.347-2.788Z"
|
|
2494
2579
|
}),
|
|
2495
|
-
/* @__PURE__ */
|
|
2580
|
+
/* @__PURE__ */ jsx55("path", {
|
|
2496
2581
|
fill: "#528693",
|
|
2497
2582
|
fillRule: "evenodd",
|
|
2498
2583
|
d: "M4.806 11.607c-.55.462-.756 1.17.298 1.562l4.472 1.343.02-.068a10.141 10.141 0 0 0 .15-.58c.049-.199.097-.4.157-.604l.472.56.002.003 1.465 1.741.408.484-.588.234-1.166.464-.937.373-.686.272.295-1.19c-.398-.143-.874-.288-1.384-.444-2.367-.724-5.48-1.677-4.987-3.673.15-.607.569-1.027 1.409-1.328.18-.065.38-.124.6-.179v1.03Zm3.647 4.986-.162.654a.6.6 0 0 0 .804.702l1.624-.646 1.753-.698a.6.6 0 0 0 .237-.944l-1.873-2.224-.474-.563a.6.6 0 0 0-1.034.216c-.065.219-.117.434-.164.63l-.007.03-.002.009-3.859-1.158c-.195-.075-.286-.147-.322-.186a.136.136 0 0 1-.021-.027v-.004l.004-.018a.333.333 0 0 1 .033-.073.913.913 0 0 1 .202-.227l.214-.18V9.81l-.744.184c-.662.164-1.208.381-1.624.697-.433.33-.7.748-.824 1.248-.206.835.063 1.544.565 2.1.478.529 1.173.934 1.893 1.258.728.328 1.54.599 2.293.834.227.071.448.139.66.203.294.09.571.175.828.258Z",
|
|
@@ -2504,10 +2589,10 @@ var SubscriptionPlans = forwardRef46((delegated, ref) => {
|
|
|
2504
2589
|
SubscriptionPlans.displayName = "SubscriptionPlansIcon";
|
|
2505
2590
|
|
|
2506
2591
|
// src/iconography/target.tsx
|
|
2507
|
-
import { forwardRef as
|
|
2508
|
-
import { jsx as
|
|
2509
|
-
var Target =
|
|
2510
|
-
return /* @__PURE__ */
|
|
2592
|
+
import { forwardRef as forwardRef49 } from "react";
|
|
2593
|
+
import { jsx as jsx56, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
2594
|
+
var Target = forwardRef49((delegated, ref) => {
|
|
2595
|
+
return /* @__PURE__ */ jsxs47("svg", {
|
|
2511
2596
|
ref,
|
|
2512
2597
|
width: "23",
|
|
2513
2598
|
height: "22",
|
|
@@ -2515,67 +2600,67 @@ var Target = forwardRef47((delegated, ref) => {
|
|
|
2515
2600
|
viewBox: "0 0 23 22",
|
|
2516
2601
|
...delegated,
|
|
2517
2602
|
children: [
|
|
2518
|
-
/* @__PURE__ */
|
|
2603
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2519
2604
|
fill: "#BFF6F8",
|
|
2520
2605
|
d: "M20.524 12.018a8.522 8.522 0 1 1-17.044 0 8.522 8.522 0 0 1 17.044 0Z"
|
|
2521
2606
|
}),
|
|
2522
|
-
/* @__PURE__ */
|
|
2607
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2523
2608
|
fill: "#528693",
|
|
2524
2609
|
fillRule: "evenodd",
|
|
2525
2610
|
d: "M12.002 19.964a7.946 7.946 0 1 0 0-15.892 7.946 7.946 0 0 0 0 15.892Zm0 .576a8.522 8.522 0 1 0 0-17.044 8.522 8.522 0 0 0 0 17.044Z",
|
|
2526
2611
|
clipRule: "evenodd"
|
|
2527
2612
|
}),
|
|
2528
|
-
/* @__PURE__ */
|
|
2613
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2529
2614
|
fill: "#fff",
|
|
2530
2615
|
d: "M18.3 12.018a6.299 6.299 0 1 1-12.597 0 6.299 6.299 0 0 1 12.598 0Z"
|
|
2531
2616
|
}),
|
|
2532
|
-
/* @__PURE__ */
|
|
2617
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2533
2618
|
fill: "#528693",
|
|
2534
2619
|
fillRule: "evenodd",
|
|
2535
2620
|
d: "M12.002 17.856a5.838 5.838 0 1 0 0-11.676 5.838 5.838 0 0 0 0 11.676Zm0 .461a6.299 6.299 0 1 0 0-12.598 6.299 6.299 0 0 0 0 12.598Z",
|
|
2536
2621
|
clipRule: "evenodd"
|
|
2537
2622
|
}),
|
|
2538
|
-
/* @__PURE__ */
|
|
2623
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2539
2624
|
fill: "#BFF6F8",
|
|
2540
2625
|
d: "M16.078 12.018a4.076 4.076 0 1 1-8.152 0 4.076 4.076 0 0 1 8.152 0Z"
|
|
2541
2626
|
}),
|
|
2542
|
-
/* @__PURE__ */
|
|
2627
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2543
2628
|
fill: "#528693",
|
|
2544
2629
|
fillRule: "evenodd",
|
|
2545
2630
|
d: "M12.002 15.633a3.615 3.615 0 1 0 0-7.23 3.615 3.615 0 0 0 0 7.23Zm0 .461a4.076 4.076 0 1 0 0-8.151 4.076 4.076 0 0 0 0 8.151Z",
|
|
2546
2631
|
clipRule: "evenodd"
|
|
2547
2632
|
}),
|
|
2548
|
-
/* @__PURE__ */
|
|
2633
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2549
2634
|
fill: "#fff",
|
|
2550
2635
|
d: "M13.854 12.018a1.853 1.853 0 1 1-3.705 0 1.853 1.853 0 0 1 3.705 0Z"
|
|
2551
2636
|
}),
|
|
2552
|
-
/* @__PURE__ */
|
|
2637
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2553
2638
|
fill: "#528693",
|
|
2554
2639
|
fillRule: "evenodd",
|
|
2555
2640
|
d: "M12.002 13.41a1.392 1.392 0 1 0 0-2.783 1.392 1.392 0 0 0 0 2.783Zm0 .46a1.853 1.853 0 1 0 0-3.704 1.853 1.853 0 0 0 0 3.705Z",
|
|
2556
2641
|
clipRule: "evenodd"
|
|
2557
2642
|
}),
|
|
2558
|
-
/* @__PURE__ */
|
|
2643
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2559
2644
|
fill: "#fff",
|
|
2560
2645
|
d: "m15.899.398.906 4.093L14.2 8.688l-1.09-3.916L15.9.398Z"
|
|
2561
2646
|
}),
|
|
2562
|
-
/* @__PURE__ */
|
|
2647
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2563
2648
|
fill: "#fff",
|
|
2564
2649
|
d: "m20.897 3.585-4.092.906L14.2 8.687l3.909-.728 2.788-4.374Z"
|
|
2565
2650
|
}),
|
|
2566
|
-
/* @__PURE__ */
|
|
2651
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2567
2652
|
fill: "#528693",
|
|
2568
2653
|
fillRule: "evenodd",
|
|
2569
2654
|
d: "M15.949.114c.115.02.206.108.231.221l.906 4.093-.562.125-.756-3.414-2.346 3.68 1.055 3.791a.288.288 0 0 1-.555.155l-1.09-3.916a.288.288 0 0 1 .035-.232L15.656.243a.288.288 0 0 1 .293-.129Z",
|
|
2570
2655
|
clipRule: "evenodd"
|
|
2571
2656
|
}),
|
|
2572
|
-
/* @__PURE__ */
|
|
2657
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2573
2658
|
fill: "#528693",
|
|
2574
2659
|
fillRule: "evenodd",
|
|
2575
2660
|
d: "M21.133 3.42a.288.288 0 0 0-.298-.117l-4.093.906.125.563 3.414-.756-2.348 3.682-3.786.706a.288.288 0 1 0 .105.567l3.91-.73a.288.288 0 0 0 .19-.128L21.14 3.74a.288.288 0 0 0-.007-.32Z",
|
|
2576
2661
|
clipRule: "evenodd"
|
|
2577
2662
|
}),
|
|
2578
|
-
/* @__PURE__ */
|
|
2663
|
+
/* @__PURE__ */ jsx56("path", {
|
|
2579
2664
|
fill: "#528693",
|
|
2580
2665
|
fillRule: "evenodd",
|
|
2581
2666
|
d: "M16.96 4.248c.134.086.184.248.11.362l-4.874 7.566c-.073.113-.241.136-.375.05-.134-.086-.183-.248-.11-.361l4.875-7.567c.073-.113.24-.136.375-.05Z",
|
|
@@ -2587,10 +2672,10 @@ var Target = forwardRef47((delegated, ref) => {
|
|
|
2587
2672
|
Target.displayName = "TargetIcon";
|
|
2588
2673
|
|
|
2589
2674
|
// src/iconography/topics.tsx
|
|
2590
|
-
import { forwardRef as
|
|
2591
|
-
import { jsx as
|
|
2592
|
-
var Topics =
|
|
2593
|
-
return /* @__PURE__ */
|
|
2675
|
+
import { forwardRef as forwardRef50 } from "react";
|
|
2676
|
+
import { jsx as jsx57, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
2677
|
+
var Topics = forwardRef50((delegated, ref) => {
|
|
2678
|
+
return /* @__PURE__ */ jsxs48("svg", {
|
|
2594
2679
|
ref,
|
|
2595
2680
|
width: "23",
|
|
2596
2681
|
height: "23",
|
|
@@ -2598,47 +2683,47 @@ var Topics = forwardRef48((delegated, ref) => {
|
|
|
2598
2683
|
fill: "none",
|
|
2599
2684
|
...delegated,
|
|
2600
2685
|
children: [
|
|
2601
|
-
/* @__PURE__ */
|
|
2686
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2602
2687
|
d: "M10.922 11.146H9.274c-.075 0-.075.697 0 .697h.027v-.697H7.395c-.075 0-.075.697 0 .697h1.908c.075 0 .075-.697 0-.697h-.027v.697h1.647c.074 0 .074-.697-.001-.697Z",
|
|
2603
2688
|
fill: "#528693"
|
|
2604
2689
|
}),
|
|
2605
|
-
/* @__PURE__ */
|
|
2690
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2606
2691
|
d: "M15.221 11.146H11.6c-.165 0-.166.697 0 .697h.058v-.697H7.461c-.165 0-.166.697 0 .697h4.196c.165 0 .165-.697 0-.697H11.6v.697h3.622c.165 0 .166-.697 0-.697Z",
|
|
2607
2692
|
fill: "#528693"
|
|
2608
2693
|
}),
|
|
2609
|
-
/* @__PURE__ */
|
|
2694
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2610
2695
|
d: "M6.713 13.669a2.108 2.108 0 0 1-2.243-2.144 2.114 2.114 0 0 1 2.165-2.204 2.209 2.209 0 0 1 2.116 2.094c0 1.38-.825 2.254-2.038 2.254Z",
|
|
2611
2696
|
fill: "#fff"
|
|
2612
2697
|
}),
|
|
2613
|
-
/* @__PURE__ */
|
|
2698
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2614
2699
|
d: "M6.713 13.318a1.813 1.813 0 0 1-1.648-2.751 1.837 1.837 0 0 1 1.191-.854c2.376-.484 2.983 3.478.457 3.607-.446.023-.45.716 0 .698a2.462 2.462 0 0 0 2.373-2.887 2.558 2.558 0 0 0-2.762-2.14 2.528 2.528 0 0 0 .39 5.029.351.351 0 0 0 0-.702ZM15.01 17.67h-3.684v-5.477a.351.351 0 0 0-.696 0v.152h.696V5.32h3.685a.35.35 0 0 0 0-.696h-3.746a.652.652 0 0 0-.329.056.554.554 0 0 0-.307.541v7.124a.351.351 0 0 0 .697 0v-.156h-.697v5.519a.596.596 0 0 0 .187.522.694.694 0 0 0 .53.136h3.664a.351.351 0 0 0 0-.697Z",
|
|
2615
2700
|
fill: "#528693"
|
|
2616
2701
|
}),
|
|
2617
|
-
/* @__PURE__ */
|
|
2702
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2618
2703
|
d: "M15.439 13.208a1.705 1.705 0 0 1-1.55-2.584 1.727 1.727 0 0 1 1.117-.803c2.236-.462 2.808 3.27.43 3.389-.335.017-.338.537 0 .523a2.183 2.183 0 0 0 2.101-2.562 2.27 2.27 0 0 0-2.457-1.895 2.24 2.24 0 0 0 .351 4.461.264.264 0 1 0 .008-.529Z",
|
|
2619
2704
|
fill: "#528693"
|
|
2620
2705
|
}),
|
|
2621
|
-
/* @__PURE__ */
|
|
2706
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2622
2707
|
d: "M15.448 13.669a2.106 2.106 0 0 1-2.243-2.144 2.115 2.115 0 0 1 2.166-2.204 2.209 2.209 0 0 1 2.115 2.094 2.023 2.023 0 0 1-2.038 2.254Z",
|
|
2623
2708
|
fill: "#BFF6F8"
|
|
2624
2709
|
}),
|
|
2625
|
-
/* @__PURE__ */
|
|
2710
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2626
2711
|
d: "M15.448 13.318a1.813 1.813 0 0 1-1.649-2.751 1.834 1.834 0 0 1 1.192-.854c2.376-.484 2.984 3.479.457 3.607-.447.023-.45.716 0 .698a2.463 2.463 0 0 0 2.372-2.887 2.558 2.558 0 0 0-2.761-2.14 2.527 2.527 0 0 0 .389 5.029c.452.01.451-.692 0-.702ZM15.439 19.73a1.703 1.703 0 0 1-1.78-1.92 1.724 1.724 0 0 1 1.346-1.466c2.237-.461 2.809 3.27.43 3.389-.334.016-.337.537 0 .523a2.185 2.185 0 0 0 2.105-2.561 2.27 2.27 0 0 0-2.457-1.896 2.24 2.24 0 0 0 .35 4.46c.344.008.344-.518.006-.528Z",
|
|
2627
2712
|
fill: "#528693"
|
|
2628
2713
|
}),
|
|
2629
|
-
/* @__PURE__ */
|
|
2714
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2630
2715
|
d: "M15.448 20.192a2.107 2.107 0 0 1-2.243-2.144 2.116 2.116 0 0 1 2.166-2.205 2.21 2.21 0 0 1 2.115 2.095 2.025 2.025 0 0 1-2.038 2.254Z",
|
|
2631
2716
|
fill: "#BFF6F8"
|
|
2632
2717
|
}),
|
|
2633
|
-
/* @__PURE__ */
|
|
2718
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2634
2719
|
d: "M15.448 19.841a1.814 1.814 0 0 1-1.649-2.751 1.836 1.836 0 0 1 1.192-.854c2.376-.484 2.984 3.479.457 3.607-.447.023-.45.716 0 .698a2.463 2.463 0 0 0 2.372-2.887 2.558 2.558 0 0 0-2.761-2.14 2.528 2.528 0 0 0 .389 5.03c.452.012.451-.69 0-.703ZM15.439 6.685a1.704 1.704 0 0 1-1.55-2.584 1.725 1.725 0 0 1 1.117-.803c2.236-.461 2.808 3.27.43 3.388-.335.017-.338.538 0 .524a2.185 2.185 0 0 0 2.101-2.562 2.27 2.27 0 0 0-2.457-1.895 2.24 2.24 0 0 0 .351 4.46c.346.007.346-.517.008-.528Z",
|
|
2635
2720
|
fill: "#528693"
|
|
2636
2721
|
}),
|
|
2637
|
-
/* @__PURE__ */
|
|
2722
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2638
2723
|
d: "M15.448 7.146a2.177 2.177 0 1 1-.077-4.348 2.209 2.209 0 0 1 2.115 2.094 2.026 2.026 0 0 1-2.038 2.254Z",
|
|
2639
2724
|
fill: "#BFF6F8"
|
|
2640
2725
|
}),
|
|
2641
|
-
/* @__PURE__ */
|
|
2726
|
+
/* @__PURE__ */ jsx57("path", {
|
|
2642
2727
|
d: "M15.448 6.795a1.814 1.814 0 0 1-1.649-2.751 1.834 1.834 0 0 1 1.192-.853c2.376-.485 2.984 3.478.457 3.606-.447.023-.45.716 0 .698a2.463 2.463 0 0 0 2.372-2.887 2.558 2.558 0 0 0-2.761-2.14 2.527 2.527 0 0 0 .389 5.03.351.351 0 0 0 0-.703Z",
|
|
2643
2728
|
fill: "#528693"
|
|
2644
2729
|
})
|
|
@@ -2648,10 +2733,10 @@ var Topics = forwardRef48((delegated, ref) => {
|
|
|
2648
2733
|
Topics.displayName = "TopicsIcon";
|
|
2649
2734
|
|
|
2650
2735
|
// src/iconography/usage.tsx
|
|
2651
|
-
import { forwardRef as
|
|
2652
|
-
import { jsx as
|
|
2653
|
-
var Usage =
|
|
2654
|
-
return /* @__PURE__ */
|
|
2736
|
+
import { forwardRef as forwardRef51 } from "react";
|
|
2737
|
+
import { jsx as jsx58, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
2738
|
+
var Usage = forwardRef51((delegated, ref) => {
|
|
2739
|
+
return /* @__PURE__ */ jsxs49("svg", {
|
|
2655
2740
|
ref,
|
|
2656
2741
|
width: "23",
|
|
2657
2742
|
height: "23",
|
|
@@ -2659,21 +2744,21 @@ var Usage = forwardRef49((delegated, ref) => {
|
|
|
2659
2744
|
fill: "none",
|
|
2660
2745
|
...delegated,
|
|
2661
2746
|
children: [
|
|
2662
|
-
/* @__PURE__ */
|
|
2747
|
+
/* @__PURE__ */ jsx58("path", {
|
|
2663
2748
|
d: "M20.44 11.968c.222 0 .402.18.392.4a8.952 8.952 0 1 1-9.343-9.343c.22-.01.4.17.4.39v5.02c0 .22-.18.397-.4.425a3.133 3.133 0 1 0 3.507 3.507c.029-.22.205-.399.426-.399h5.019Z",
|
|
2664
2749
|
fill: "#BFF6F8"
|
|
2665
2750
|
}),
|
|
2666
|
-
/* @__PURE__ */
|
|
2751
|
+
/* @__PURE__ */ jsx58("path", {
|
|
2667
2752
|
fillRule: "evenodd",
|
|
2668
2753
|
clipRule: "evenodd",
|
|
2669
2754
|
d: "M20.22 12.568a8.35 8.35 0 1 1-8.931-8.93v4.645a3.733 3.733 0 1 0 4.284 4.285h4.646Zm.612-.2c.01-.22-.17-.4-.391-.4h-5.019c-.221 0-.397.18-.426.399A3.134 3.134 0 1 1 11.49 8.86c.219-.028.399-.204.399-.425v-5.02c0-.22-.18-.4-.4-.39a8.952 8.952 0 1 0 9.343 9.343Z",
|
|
2670
2755
|
fill: "#528693"
|
|
2671
2756
|
}),
|
|
2672
|
-
/* @__PURE__ */
|
|
2757
|
+
/* @__PURE__ */ jsx58("path", {
|
|
2673
2758
|
d: "M12.877 2.471c0-.22.18-.4.4-.39a8.952 8.952 0 0 1 8.543 8.543c.01.22-.17.4-.391.4H16.41c-.22 0-.397-.18-.425-.4a3.133 3.133 0 0 0-2.71-2.708c-.218-.028-.398-.205-.398-.426V2.471Z",
|
|
2674
2759
|
fill: "#fff"
|
|
2675
2760
|
}),
|
|
2676
|
-
/* @__PURE__ */
|
|
2761
|
+
/* @__PURE__ */ jsx58("path", {
|
|
2677
2762
|
fillRule: "evenodd",
|
|
2678
2763
|
clipRule: "evenodd",
|
|
2679
2764
|
d: "M13.477 2.693a8.352 8.352 0 0 1 7.73 7.73h-4.645a3.733 3.733 0 0 0-3.085-3.084V2.693Zm-.2-.613c-.22-.01-.4.17-.4.391v5.02c0 .22.18.397.399.425a3.132 3.132 0 0 1 2.709 2.709c.028.219.204.399.425.399h5.019c.22 0 .4-.18.391-.4a8.948 8.948 0 0 0-5.517-7.871 8.952 8.952 0 0 0-3.026-.673Z",
|
|
@@ -2685,10 +2770,10 @@ var Usage = forwardRef49((delegated, ref) => {
|
|
|
2685
2770
|
Usage.displayName = "UsageIcon";
|
|
2686
2771
|
|
|
2687
2772
|
// src/iconography/usage-meter.tsx
|
|
2688
|
-
import { forwardRef as
|
|
2689
|
-
import { jsx as
|
|
2690
|
-
var UsageMeter =
|
|
2691
|
-
return /* @__PURE__ */
|
|
2773
|
+
import { forwardRef as forwardRef52 } from "react";
|
|
2774
|
+
import { jsx as jsx59, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
2775
|
+
var UsageMeter = forwardRef52((delegated, ref) => {
|
|
2776
|
+
return /* @__PURE__ */ jsxs50("svg", {
|
|
2692
2777
|
ref,
|
|
2693
2778
|
width: "17",
|
|
2694
2779
|
height: "16",
|
|
@@ -2696,24 +2781,24 @@ var UsageMeter = forwardRef50((delegated, ref) => {
|
|
|
2696
2781
|
fill: "none",
|
|
2697
2782
|
...delegated,
|
|
2698
2783
|
children: [
|
|
2699
|
-
/* @__PURE__ */
|
|
2784
|
+
/* @__PURE__ */ jsxs50("g", {
|
|
2700
2785
|
clipPath: "url(#a)",
|
|
2701
2786
|
children: [
|
|
2702
|
-
/* @__PURE__ */
|
|
2787
|
+
/* @__PURE__ */ jsx59("path", {
|
|
2703
2788
|
d: "M15.836 9.0665a1.7036 1.7036 0 0 0 .0053-.3334 6.6839 6.6839 0 0 0-1.1166-3.0268c-.0423-.0635-.0846-.1217-.1217-.18-.0582-.074-.1111-.1534-.1693-.2275a5.5278 5.5278 0 0 0-.3175-.381c-.0053-.0053-.0106-.0158-.0212-.0211a7.2427 7.2427 0 0 0-.6403-.635c-.0741-.0635-.1534-.1165-.2275-.1747a.0053.0053 0 0 0-.0016-.0037.0052.0052 0 0 0-.0037-.0015c-.1535-.1165-.3069-.2329-.471-.3387a.2946.2946 0 0 0-.0423-.0265c-.1376-.09-.2857-.1746-.4286-.2593-.0582-.0317-.1217-.0582-.1799-.09-.1059-.0528-.2117-.1058-.3175-.1534-.1059-.0476-.217-.09-.3228-.1323-.0741-.0264-.1429-.0582-.217-.0846a4.7983 4.7983 0 0 0-.3651-.1112 4.3458 4.3458 0 0 0-.2487-.0688 3.9942 3.9942 0 0 0-.2434-.0529 6.621 6.621 0 0 0-1.5134-.1534 6.9257 6.9257 0 0 0-6.768 6.1224c0 .0476.0053.0846.0053.1323a6.6487 6.6487 0 0 0 .09 2.0478 6.838 6.838 0 0 0 .3439 1.1695c.0794.1958.164.3863.2593.5768a7.523 7.523 0 0 0 .1534.2857l.037.0688.0795.1217.1534.2593c1.7568 0 3.5613-.0053 5.5615-.0106.0741 0 .1482.0053.2223.0053 1.434.0106 2.5664.0212 4.1327-.0106.5133 0 1.0372-.0053 1.5822-.0053.0688-.1111.1482-.2381.2329-.381.0423-.0846.0952-.1799.1481-.2804a6.1283 6.1283 0 0 0 .3122-.7091 6.9592 6.9592 0 0 0 .4181-1.8785c0-.0371-.0053-.0635-.0053-.1006a7.2363 7.2363 0 0 0 .0053-.9577Zm-.7885 1.6986a5.9413 5.9413 0 0 1-.3175 1.0477 5.3569 5.3569 0 0 1-.2275.508c-.0477.0847-.09.1693-.1376.254l-.0476.0741-5.3763.0159H7.1154c-1.1536-.0106-2.309-.0141-3.466-.0106a.0399.0399 0 0 0-.0212.0106c-.0053-.0053-.0053-.0106-.0159-.0265-.0423-.0741-.0952-.1534-.1376-.2434a5.1632 5.1632 0 0 1-.2963-.635 6.1699 6.1699 0 0 1-.4075-1.688v-.0265a6.5296 6.5296 0 0 1-.0053-.9102c.03-.1036.0494-.21.0583-.3174a6.203 6.203 0 0 1 2.323-4.1434c.0317-.0265.0635-.0476.0952-.074.0847-.0636.1747-.127.2646-.1906a6.2837 6.2837 0 0 1 3.5771-1.0583 6.1823 6.1823 0 0 1 3.8365 1.4234c.0688.0583.1376.1165.2063.18a6.244 6.244 0 0 1 1.7675 2.7569c.0052.0159.0052.0265.0105.0423.0477.1482.0847.3017.1165.4498.0154.0593.0277.1194.037.18.0212.127.0423.254.0582.3862a6.1523 6.1523 0 0 1-.0688 1.995Z",
|
|
2704
2789
|
fill: "#528693"
|
|
2705
2790
|
}),
|
|
2706
|
-
/* @__PURE__ */
|
|
2791
|
+
/* @__PURE__ */ jsx59("path", {
|
|
2707
2792
|
d: "m3.6286 12.8043.053-.0505a227.043 227.043 0 0 1 3.4347.0107h1.827l5.3763-.0159.0544-.0001.0294-.0458.0477-.0741.0001.0001.0029-.0051a6.0478 6.0478 0 0 0 .0697-.1286l.0003-.0005a5.6307 5.6307 0 0 1 .0676-.1249h.0001l.0017-.0035a5.4268 5.4268 0 0 0 .2315-.5166c.14-.3442.248-.7006.3225-1.0646l.0001-.0005a6.25 6.25 0 0 0 .07-2.0269c-.0161-.1343-.0376-.263-.0586-.3893l-.0001-.0005a1.8922 1.8922 0 0 0-.0385-.187c-.0319-.1491-.0697-.3054-.1185-.4574l-.0003-.001a.0624.0624 0 0 1-.0021-.0092c-.0013-.0065-.0036-.0182-.0082-.0322a6.3444 6.3444 0 0 0-1.7951-2.8001c-.0703-.0648-.1404-.1241-.2086-.1819l-.0007-.0005-.0007-.0007a6.2822 6.2822 0 0 0-3.8985-1.4464h-.0004a6.3839 6.3839 0 0 0-3.634 1.0751h-.0001l-.0021.0015-.0006.0004a11.5065 11.5065 0 0 0-.2663.1918V4.52l-.004.0033a1.08 1.08 0 0 1-.0436.0338l-.0008.0006a1.262 1.262 0 0 0-.0498.0387 6.3029 6.3029 0 0 0-2.3594 4.2093l-.0004.0036a1.5248 1.5248 0 0 1-.0546.298l-.003.0104-.0007.011a6.632 6.632 0 0 0 .005.9202v.0227h-.0004l.001.0096a6.269 6.269 0 0 0 .4138 1.7149c.0855.2212.1859.4364.3004.6441.0315.0664.07.1305.1031.1855.0134.0223.026.0431.0367.062l-.0002.0001.0039.0057a.0477.0477 0 0 1 .0035.0061l.0001.0004a.004.004 0 0 1 .0003.0006c.0019.0038.0096.0198.0244.0346l.0691.0691Zm11.3945-4.6006c-.0317-.1482-.0688-.3016-.1164-.4498a.1685.1685 0 0 1-.0053-.0212c-.0013-.0066-.0026-.0132-.0053-.0212a6.2446 6.2446 0 0 0-1.7674-2.7569l1.8944 3.249Zm-3.5976-.2364c-.2292.2923-.4509.5746-.6671.8498-.3278.4174-.6429.8187-.9522 1.2141l-.0004-.0003-.0053.0083a1.1904 1.1904 0 0 1-.5644.4679.9274.9274 0 0 1-.2989.0519.8843.8843 0 0 1-.1615-.0143l.0001-.0008-.0127-.0006a.091.091 0 0 1-.0247-.005l-.007-.0025-.0073-.0014a.9062.9062 0 0 1-.162-.0477c-.018-.0072-.0355-.0123-.048-.0161a.438.438 0 0 1-.0285-.0092.9676.9676 0 0 1-.5434-.8134.9805.9805 0 0 1 .389-.8353l.0001-.0001c.1959-.1482.3915-.2962.603-.4548l.0021-.0017c.2218-.176.4384-.345.6496-.507l.002-.0016a81.951 81.951 0 0 1 1.0093-.8032l.0002-.0001.2378-.185.1894-.1474c.0308-.0226.0614-.0472.0899-.07a3.3156 3.3156 0 0 1 .0284-.0227 1.0318 1.0318 0 0 1 .1041-.075.542.542 0 0 1 .253-.066h.001a.5094.5094 0 0 1 .3945.168h-.0001l.0019.002a.519.519 0 0 1 .036.6738c-.119.1497-.2408.305-.3652.4636l-.1427.1818Z",
|
|
2708
2793
|
fill: "#BFF6F8",
|
|
2709
2794
|
stroke: "#BFF6F8",
|
|
2710
2795
|
strokeWidth: ".2"
|
|
2711
2796
|
}),
|
|
2712
|
-
/* @__PURE__ */
|
|
2797
|
+
/* @__PURE__ */ jsx59("path", {
|
|
2713
2798
|
d: "M15.3469 12.7007c0-.0529 0-.0572-.0025-.0471v.7234c0 .0095 0-.0053.0025.0111s0 .0291 0-.0418v-.662c.0015-.0482.0005.0741 0 .0164ZM2.6208 12.7007v-.0471.7345c0 .0164 0 .0291.0025-.0418v-.662c-.001-.0482-.0015.0741-.0025.0164ZM11.968 6.5791a.6088.6088 0 0 0-.4709-.201.6414.6414 0 0 0-.3016.0793c-.0794.0476-.1535.1164-.2329.1746l-.1905.1482-.2381.1852a82.141 82.141 0 0 0-1.0107.8043c-.2117.164-.4286.3334-.6509.508-.2116.1588-.4074.307-.6032.455a1.0805 1.0805 0 0 0-.4286.9208 1.0673 1.0673 0 0 0 .6032.8996c.0265.0106.053.0159.0794.0265.0582.0232.1184.0409.1799.0529a.1912.1912 0 0 0 .053.0106.9957.9957 0 0 0 .1798.0158 1.0262 1.0262 0 0 0 .3334-.0582 1.29 1.29 0 0 0 .6138-.508c.5133-.6561 1.0425-1.3282 1.6193-2.0637.1746-.2222.3439-.4392.508-.6456a.619.619 0 0 0-.0424-.8043Zm-.6667.7144-.291.3492c-.5451.6615-1.0795 1.3282-1.614 1.995-.0582.074-.1482.1905-.18.2328a.4232.4232 0 0 1-.1428.0952.4035.4035 0 0 1-.471-.1221.4032.4032 0 0 1-.0105-.4864c.0159-.0106.0106-.0423.0053-.0794.0106-.0105.0211-.0264.0317-.037a.7572.7572 0 0 1 .0794-.0582.1058.1058 0 0 0 .0688-.0212c.3916-.291.7673-.582 1.1377-.8784.2064-.1534.418-.307.6244-.4604l.6297-.492.1482-.1112a.064.064 0 0 1-.0159.074Z",
|
|
2714
2799
|
fill: "#528693"
|
|
2715
2800
|
}),
|
|
2716
|
-
/* @__PURE__ */
|
|
2801
|
+
/* @__PURE__ */ jsx59("path", {
|
|
2717
2802
|
d: "m11.3564 7.065.0516.113a.1638.1638 0 0 1-.0339.1842l-.2869.3442-.0001.0002c-.5444.6606-1.0783 1.3267-1.6127 1.9933-.058.0739-.1472.1893-.1782.2307l-.0082.0108-.0006-.0006a.5222.5222 0 0 1-.1766.1177l-.0375-.0927m2.2831-2.9009L8.524 9.9057m2.8324-2.8408-.0994.0746-.1482.111-.0016.0013-.6287.4914a61.544 61.544 0 0 1-.3108.229l-.0001.0002c-.1044.0766-.2092.1535-.3126.2304l-.0028.0022c-.3696.2957-.7443.586-1.1349.8762l-.0005.0004a.0058.0058 0 0 1-.0037.0012l-.0318-.0016-.0269.0171a.8582.8582 0 0 0-.0898.066l-.0003-.0004-.0062.0062a.3105.3105 0 0 0-.0223.0257l-.001.0011-.0063.0078-.0021.0025-.0354.0353.007.0495.0008.0049.0022.0158a.5032.5032 0 0 0 .023.593m2.8324-2.8408L8.524 9.9057m.5493.0601.0384.0924a.5037.5037 0 0 1-.5877-.1525m.5493.0601a.4234.4234 0 0 0 .1429-.0952l-.6138-.027a.4033.4033 0 0 0 .471.1222Z",
|
|
2718
2803
|
fill: "#fff",
|
|
2719
2804
|
stroke: "#fff",
|
|
@@ -2721,10 +2806,10 @@ var UsageMeter = forwardRef50((delegated, ref) => {
|
|
|
2721
2806
|
})
|
|
2722
2807
|
]
|
|
2723
2808
|
}),
|
|
2724
|
-
/* @__PURE__ */
|
|
2725
|
-
children: /* @__PURE__ */
|
|
2809
|
+
/* @__PURE__ */ jsx59("defs", {
|
|
2810
|
+
children: /* @__PURE__ */ jsx59("clipPath", {
|
|
2726
2811
|
id: "a",
|
|
2727
|
-
children: /* @__PURE__ */
|
|
2812
|
+
children: /* @__PURE__ */ jsx59("path", {
|
|
2728
2813
|
fill: "#fff",
|
|
2729
2814
|
transform: "translate(.984)",
|
|
2730
2815
|
d: "M0 0h16v16H0z"
|
|
@@ -2737,10 +2822,10 @@ var UsageMeter = forwardRef50((delegated, ref) => {
|
|
|
2737
2822
|
UsageMeter.displayName = "UsageMeterIcon";
|
|
2738
2823
|
|
|
2739
2824
|
// src/iconography/user-card.tsx
|
|
2740
|
-
import { forwardRef as
|
|
2741
|
-
import { jsx as
|
|
2742
|
-
var UserCard =
|
|
2743
|
-
return /* @__PURE__ */
|
|
2825
|
+
import { forwardRef as forwardRef53 } from "react";
|
|
2826
|
+
import { jsx as jsx60, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
2827
|
+
var UserCard = forwardRef53((delegated, ref) => {
|
|
2828
|
+
return /* @__PURE__ */ jsxs51("svg", {
|
|
2744
2829
|
ref,
|
|
2745
2830
|
width: "17",
|
|
2746
2831
|
height: "16",
|
|
@@ -2748,7 +2833,7 @@ var UserCard = forwardRef51((delegated, ref) => {
|
|
|
2748
2833
|
fill: "none",
|
|
2749
2834
|
...delegated,
|
|
2750
2835
|
children: [
|
|
2751
|
-
/* @__PURE__ */
|
|
2836
|
+
/* @__PURE__ */ jsx60("rect", {
|
|
2752
2837
|
x: "2.184",
|
|
2753
2838
|
y: "4.2",
|
|
2754
2839
|
width: "13.6",
|
|
@@ -2758,7 +2843,7 @@ var UserCard = forwardRef51((delegated, ref) => {
|
|
|
2758
2843
|
stroke: "#528693",
|
|
2759
2844
|
strokeWidth: ".4"
|
|
2760
2845
|
}),
|
|
2761
|
-
/* @__PURE__ */
|
|
2846
|
+
/* @__PURE__ */ jsx60("circle", {
|
|
2762
2847
|
cx: "5.984",
|
|
2763
2848
|
cy: "8.5",
|
|
2764
2849
|
r: "2.2",
|
|
@@ -2766,7 +2851,7 @@ var UserCard = forwardRef51((delegated, ref) => {
|
|
|
2766
2851
|
stroke: "#528693",
|
|
2767
2852
|
strokeWidth: ".4"
|
|
2768
2853
|
}),
|
|
2769
|
-
/* @__PURE__ */
|
|
2854
|
+
/* @__PURE__ */ jsx60("path", {
|
|
2770
2855
|
d: "M13.484 8.2a.7.7 0 1 0 0-1.4h-3.5a.7.7 0 1 0 0 1.4h3.5ZM10.484 10.2a.7.7 0 1 0 0-1.4h-.5a.7.7 0 1 0 0 1.4h.5Z",
|
|
2771
2856
|
fill: "#fff",
|
|
2772
2857
|
stroke: "#528693",
|
|
@@ -2778,10 +2863,10 @@ var UserCard = forwardRef51((delegated, ref) => {
|
|
|
2778
2863
|
UserCard.displayName = "UserCardIcon";
|
|
2779
2864
|
|
|
2780
2865
|
// src/iconography/users.tsx
|
|
2781
|
-
import { forwardRef as
|
|
2782
|
-
import { jsx as
|
|
2783
|
-
var Users =
|
|
2784
|
-
return /* @__PURE__ */
|
|
2866
|
+
import { forwardRef as forwardRef54 } from "react";
|
|
2867
|
+
import { jsx as jsx61, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
2868
|
+
var Users = forwardRef54((delegated, ref) => {
|
|
2869
|
+
return /* @__PURE__ */ jsxs52("svg", {
|
|
2785
2870
|
ref,
|
|
2786
2871
|
width: "24",
|
|
2787
2872
|
height: "24",
|
|
@@ -2789,33 +2874,33 @@ var Users = forwardRef52((delegated, ref) => {
|
|
|
2789
2874
|
fill: "none",
|
|
2790
2875
|
...delegated,
|
|
2791
2876
|
children: [
|
|
2792
|
-
/* @__PURE__ */
|
|
2877
|
+
/* @__PURE__ */ jsx61("path", {
|
|
2793
2878
|
d: "M20.713 15.436a2.465 2.465 0 0 0-1.746-.594c-.23 0-.466.016-.703.032l-.15.008c.027-.159.043-.32.05-.48 1.222-1.07 1.257-3.224 1.211-4.1a2.867 2.867 0 0 0-.702-1.78c-.48-.516-1.117-.81-1.782-.821-.038-.004-.08-.004-.122-.004a2.408 2.408 0 0 0-1.396.503 2.877 2.877 0 0 0-.933 1.273 4.077 4.077 0 0 0-.178 1.569c.06 1.108.164 2.17.79 2.912.14.165.3.307.475.42.01.17.028.337.055.504l-.097-.004c-.238-.016-.469-.032-.696-.032a2.454 2.454 0 0 0-1.74.594 2.46 2.46 0 0 0-.712 1.494 6.447 6.447 0 0 0-.105 1.104c.003.424.5.534.863.617l.157.035c1.148.266 2.319.382 3.49.346.168 0 .332 0 .505-.004 1.399.012 2.793-.19 4.143-.597a.148.148 0 0 0 .09-.063.182.182 0 0 0 .03-.114.173.173 0 0 0 .013-.087c-.027-1.002-.11-2.122-.81-2.731Zm-5.67-2.13c-.388-.72-.419-1.67-.443-2.437a3.114 3.114 0 0 1 .363-1.679 2.386 2.386 0 0 1 1.195-.978c.23-.106.474-.165.723-.175.08 0 .159.007.238.02.263.05.518.143.758.275.458.242.822.666 1.02 1.19.097.275.151.566.16.862.068 2.191-.538 3.554-1.795 4.054a1.074 1.074 0 0 1-.423.078 2.11 2.11 0 0 1-1.028-.36 2.442 2.442 0 0 1-.768-.85Zm2.746 1.367a1.724 1.724 0 0 1-.175.709c-.108.217-.26.403-.443.541a.875.875 0 0 1-.409.118c-.594 0-.793-.924-.854-1.395.303.186.64.292.985.31a.963.963 0 0 0 .213-.023c.238-.047.469-.135.683-.26Zm-.543 3.966c-.182 0-.364.004-.549.004a11.426 11.426 0 0 1-4.132-.585c.045-.971.15-1.958.856-2.437a2.46 2.46 0 0 1 1.512-.386l.356.004c.12 0 .241-.004.367-.008.2.779.58 1.191 1.1 1.191a1.28 1.28 0 0 0 .315-.043c.24-.075.456-.222.626-.424.17-.203.289-.455.341-.727a8.5 8.5 0 0 0 .44.011l.367-.004a2.438 2.438 0 0 1 1.496.386c.761.514.817 1.639.854 2.468-1.29.376-2.618.56-3.95.55Z",
|
|
2794
2879
|
fill: "#528693"
|
|
2795
2880
|
}),
|
|
2796
|
-
/* @__PURE__ */
|
|
2881
|
+
/* @__PURE__ */ jsx61("path", {
|
|
2797
2882
|
fillRule: "evenodd",
|
|
2798
2883
|
clipRule: "evenodd",
|
|
2799
2884
|
d: "M20.93 15.187c.422.368.642.875.762 1.393.119.513.147 1.07.161 1.569a.502.502 0 0 1-.015.162.51.51 0 0 1-.084.24.479.479 0 0 1-.276.198c-1.378.416-2.8.62-4.229.61-.173.003-.338.003-.502.003a13.965 13.965 0 0 1-3.57-.354h-.001a6.66 6.66 0 0 0-.15-.034l-.004-.001a2.345 2.345 0 0 0-.021-.005c-.17-.038-.42-.095-.628-.206-.232-.124-.468-.349-.471-.725v-.006a6.77 6.77 0 0 1 .108-1.15c.075-.646.36-1.246.81-1.682l.016-.016a2.786 2.786 0 0 1 1.963-.67c.123 0 .247.004.369.01a2.537 2.537 0 0 1-.368-.355c-.707-.84-.809-2.014-.868-3.104a4.412 4.412 0 0 1 .194-1.691l.005-.017a3.208 3.208 0 0 1 1.041-1.418 2.738 2.738 0 0 1 1.588-.571h.015c.034 0 .084 0 .135.004.756.017 1.47.352 2.005.926l.005.006c.476.534.752 1.242.785 1.983.024.453.027 1.24-.136 2.058-.152.76-.454 1.586-1.057 2.183.147-.008.296-.014.444-.015a2.796 2.796 0 0 1 1.97.671l.005.004Zm-1.963-.345c.626-.039 1.245.171 1.747.594.555.485.722 1.293.78 2.107.014.178.021.356.027.532l.002.092a.173.173 0 0 1-.014.087.185.185 0 0 1-.03.114.148.148 0 0 1-.088.063 13.928 13.928 0 0 1-4.144.597c-.173.004-.337.004-.505.004a13.635 13.635 0 0 1-3.647-.381l-.007-.002c-.256-.058-.576-.13-.743-.317a.433.433 0 0 1-.113-.298 6.45 6.45 0 0 1 .105-1.104 2.46 2.46 0 0 1 .713-1.494 2.454 2.454 0 0 1 1.74-.594c.15 0 .301.007.455.016l.219.014.02.002.098.004a4.673 4.673 0 0 1-.055-.503 2.186 2.186 0 0 1-.476-.42c-.625-.744-.73-1.805-.79-2.913a4.079 4.079 0 0 1 .179-1.569c.196-.516.52-.958.933-1.273.413-.315.897-.49 1.396-.503.042 0 .084 0 .122.004.665.011 1.302.305 1.782.821.112.126.212.263.299.409a2.825 2.825 0 0 1 .229.484 2.989 2.989 0 0 1 .178.958 8.385 8.385 0 0 1-.107 1.762c-.145.826-.46 1.699-1.109 2.266a3.643 3.643 0 0 1-.049.48l.15-.007h.004l.184-.012c.173-.011.345-.02.515-.02Zm-3.924-1.536c.192.348.455.64.768.85.312.21.665.334 1.028.36.144.003.288-.024.423-.078.878-.349 1.438-1.118 1.673-2.296a7.797 7.797 0 0 0 .12-1.823v-.003a2.854 2.854 0 0 0-.158-.793 2.409 2.409 0 0 0-.208-.423 2.14 2.14 0 0 0-.812-.768 2.582 2.582 0 0 0-.758-.275 1.653 1.653 0 0 0-.238-.02c-.248.01-.493.069-.723.175-.482.173-.9.516-1.195.979-.274.503-.4 1.09-.363 1.678.024.766.055 1.717.443 2.437Zm.205-3.948c-.24.445-.352.966-.319 1.49v.01c.026.786.06 1.652.404 2.29.168.304.396.555.662.734.264.178.558.281.859.304a.746.746 0 0 0 .285-.054l.001-.001c1.056-.42 1.654-1.587 1.588-3.737a2.533 2.533 0 0 0-.141-.758 1.887 1.887 0 0 0-.864-1.012l-.005-.003a2.252 2.252 0 0 0-.656-.239 1.324 1.324 0 0 0-.176-.015 1.575 1.575 0 0 0-.59.145l-.013.006-.014.004a2.054 2.054 0 0 0-1.021.836Zm1.823 7.02a1.28 1.28 0 0 1-.314.044c-.52 0-.902-.412-1.1-1.19h-.011c-.122.004-.241.007-.357.007l-.356-.004a2.46 2.46 0 0 0-1.512.386c-.706.48-.81 1.466-.856 2.437 1.34.448 2.736.646 4.132.585.093 0 .186 0 .277-.002l.269-.002h.003c1.33.01 2.657-.174 3.945-.549l.004-.001a15.237 15.237 0 0 0-.03-.518c-.056-.731-.213-1.537-.824-1.95a2.436 2.436 0 0 0-1.495-.386l-.367.004c-.143 0-.29-.004-.44-.011-.053.272-.171.524-.342.727-.17.202-.387.35-.626.424Zm1.217-.81a1.9 1.9 0 0 1-.338.599 1.675 1.675 0 0 1-.78.527l-.013.004c-.13.035-.262.053-.396.055h-.004c-.36 0-.67-.147-.914-.41a2.133 2.133 0 0 1-.431-.775l-.123.002h-.003l-.378-.005a2.13 2.13 0 0 0-1.306.332c-.263.18-.431.465-.539.847-.09.32-.13.687-.155 1.077 1.229.382 2.502.548 3.775.492h.014c.09 0 .18 0 .272-.002h.002l.273-.002.002.133v-.133c1.215.01 2.426-.147 3.607-.467a5.42 5.42 0 0 0-.133-1.024c-.104-.408-.276-.728-.56-.922a2.107 2.107 0 0 0-1.29-.331l-.02.001-.371.004c-.063 0-.127-.001-.19-.003Zm-.55-.525a1.742 1.742 0 0 0 .051-.37 2.261 2.261 0 0 1-.683.26.952.952 0 0 1-.213.023 2.063 2.063 0 0 1-.985-.31c.015.117.039.263.075.415.11.459.333.98.78.98a.874.874 0 0 0 .408-.118c.184-.138.335-.324.443-.54a1.688 1.688 0 0 0 .124-.34Zm-.749.604a1.194 1.194 0 0 0 .336-.426c-.05.013-.1.025-.15.035-.093.02-.187.03-.282.03h-.017a2.382 2.382 0 0 1-.51-.084c.02.063.044.124.07.182.116.257.23.325.322.327a.543.543 0 0 0 .231-.064Z",
|
|
2800
2885
|
fill: "#528693"
|
|
2801
2886
|
}),
|
|
2802
|
-
/* @__PURE__ */
|
|
2887
|
+
/* @__PURE__ */ jsx61("path", {
|
|
2803
2888
|
d: "M21.192 18.089c-1.29.375-2.617.56-3.948.55-.182 0-.363.004-.549.004a11.426 11.426 0 0 1-4.13-.586c.045-.97.15-1.957.856-2.436a2.46 2.46 0 0 1 1.511-.386l.357.004c.119 0 .241-.004.367-.008.199.779.58 1.191 1.1 1.191a1.28 1.28 0 0 0 .315-.043c.239-.075.455-.222.626-.425.17-.202.288-.454.341-.727.15.008.297.012.44.012l.367-.004a2.438 2.438 0 0 1 1.495.386c.76.514.817 1.638.852 2.468Z",
|
|
2804
2889
|
fill: "#BFF6F8"
|
|
2805
2890
|
}),
|
|
2806
|
-
/* @__PURE__ */
|
|
2891
|
+
/* @__PURE__ */ jsx61("path", {
|
|
2807
2892
|
d: "M17.79 14.673a1.725 1.725 0 0 1-.176.709 1.52 1.52 0 0 1-.443.541.874.874 0 0 1-.409.118c-.593 0-.793-.924-.854-1.395.304.186.64.292.986.31a.952.952 0 0 0 .213-.023c.238-.048.468-.135.683-.26ZM19.057 10.385c.068 2.19-.538 3.553-1.795 4.052a1.074 1.074 0 0 1-.423.079 2.11 2.11 0 0 1-1.028-.36 2.44 2.44 0 0 1-.768-.85c-.388-.72-.42-1.671-.444-2.438a3.113 3.113 0 0 1 .364-1.678 2.386 2.386 0 0 1 1.195-.979c.23-.105.474-.165.723-.174.08 0 .159.007.237.02.264.05.519.143.759.275.458.242.822.666 1.02 1.19.097.276.15.567.16.863Z",
|
|
2808
2893
|
fill: "#fff"
|
|
2809
2894
|
}),
|
|
2810
|
-
/* @__PURE__ */
|
|
2895
|
+
/* @__PURE__ */ jsx61("path", {
|
|
2811
2896
|
d: "M16.988 14.936a4.666 4.666 0 0 0-3.056-.923c-.404 0-.816.024-1.23.049l-.262.012c.047-.246.075-.496.085-.747 2.14-1.663 2.201-5.014 2.122-6.377a4.201 4.201 0 0 0-1.23-2.768A4.615 4.615 0 0 0 10.3 2.904c-.068-.006-.14-.006-.214-.006A4.552 4.552 0 0 0 6.01 5.66a5.683 5.683 0 0 0-.312 2.44c.104 1.724.287 3.375 1.382 4.53.244.257.524.477.831.655.017.262.05.523.098.782l-.171-.006c-.416-.024-.82-.049-1.217-.049a4.644 4.644 0 0 0-3.045.923A3.673 3.673 0 0 0 2.33 17.26a8.948 8.948 0 0 0-.183 1.718c.006.66.874.831 1.51.96.098.018.19.036.275.055 2.009.413 4.058.593 6.108.538.293 0 .58 0 .883-.007a27.22 27.22 0 0 0 7.251-.929.26.26 0 0 0 .208-.275.242.242 0 0 0 .025-.136c-.048-1.558-.195-3.3-1.418-4.248Zm-9.923-3.313c-.679-1.12-.733-2.599-.776-3.791a4.401 4.401 0 0 1 .636-2.61 4.11 4.11 0 0 1 2.09-1.523 3.678 3.678 0 0 1 1.266-.272c.14.001.278.011.416.03.46.08.907.223 1.327.429a3.6 3.6 0 0 1 1.785 1.852c.17.427.265.88.281 1.339.12 3.409-.941 5.53-3.142 6.306a2.09 2.09 0 0 1-.74.123 4 4 0 0 1-3.143-1.883Zm4.806 2.127a2.447 2.447 0 0 1-1.082 1.944 1.677 1.677 0 0 1-.715.184c-1.04 0-1.388-1.437-1.495-2.17.53.288 1.12.454 1.724.482.125 0 .25-.012.373-.036.416-.074.82-.21 1.195-.404Zm-.951 6.17c-.318 0-.636.005-.96.005a22.32 22.32 0 0 1-7.231-.91c.08-1.51.263-3.046 1.498-3.791a4.729 4.729 0 0 1 2.646-.6l.623.006c.208 0 .422-.006.642-.012.349 1.21 1.015 1.853 1.926 1.853.185-.002.37-.025.55-.068a2.386 2.386 0 0 0 1.693-1.79c.263.011.52.018.77.018l.643-.007a4.682 4.682 0 0 1 2.616.6c1.333.8 1.431 2.55 1.495 3.84a26.835 26.835 0 0 1-6.914.855h.003Z",
|
|
2812
2897
|
fill: "#528693"
|
|
2813
2898
|
}),
|
|
2814
|
-
/* @__PURE__ */
|
|
2899
|
+
/* @__PURE__ */ jsx61("path", {
|
|
2815
2900
|
d: "M17.825 19.063a26.834 26.834 0 0 1-6.909.856c-.318 0-.635.006-.96.006a22.32 22.32 0 0 1-7.228-.91c.08-1.511.263-3.046 1.498-3.792a4.729 4.729 0 0 1 2.646-.599l.623.006c.208 0 .422-.006.642-.012.349 1.21 1.015 1.853 1.926 1.853.186-.003.37-.025.55-.068a2.385 2.385 0 0 0 1.693-1.79c.264.011.52.017.77.017l.643-.006a4.682 4.682 0 0 1 2.617.6c1.33.8 1.428 2.549 1.49 3.84Z",
|
|
2816
2901
|
fill: "#BFF6F8"
|
|
2817
2902
|
}),
|
|
2818
|
-
/* @__PURE__ */
|
|
2903
|
+
/* @__PURE__ */ jsx61("path", {
|
|
2819
2904
|
d: "M11.872 13.75a2.446 2.446 0 0 1-1.082 1.944 1.676 1.676 0 0 1-.716.184c-1.04 0-1.388-1.437-1.494-2.17.53.288 1.12.453 1.724.482.125 0 .25-.012.373-.037a4.2 4.2 0 0 0 1.195-.403ZM14.09 7.08c.119 3.405-.942 5.526-3.142 6.303a2.088 2.088 0 0 1-.74.122 3.998 3.998 0 0 1-3.143-1.883c-.679-1.119-.733-2.598-.776-3.79a4.401 4.401 0 0 1 .636-2.611 4.11 4.11 0 0 1 2.09-1.523 3.678 3.678 0 0 1 1.266-.271c.14 0 .278.011.416.03.46.079.907.223 1.327.428a3.6 3.6 0 0 1 1.785 1.853c.17.427.265.881.28 1.341Z",
|
|
2820
2905
|
fill: "#fff"
|
|
2821
2906
|
})
|
|
@@ -2825,10 +2910,10 @@ var Users = forwardRef52((delegated, ref) => {
|
|
|
2825
2910
|
Users.displayName = "UsersIcon";
|
|
2826
2911
|
|
|
2827
2912
|
// src/iconography/warning.tsx
|
|
2828
|
-
import { forwardRef as
|
|
2829
|
-
import { jsx as
|
|
2830
|
-
var Warning =
|
|
2831
|
-
return /* @__PURE__ */
|
|
2913
|
+
import { forwardRef as forwardRef55 } from "react";
|
|
2914
|
+
import { jsx as jsx62, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
2915
|
+
var Warning = forwardRef55((delegated, ref) => {
|
|
2916
|
+
return /* @__PURE__ */ jsxs53("svg", {
|
|
2832
2917
|
ref,
|
|
2833
2918
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2834
2919
|
width: "22",
|
|
@@ -2837,31 +2922,31 @@ var Warning = forwardRef53((delegated, ref) => {
|
|
|
2837
2922
|
viewBox: "0 0 22 22",
|
|
2838
2923
|
...delegated,
|
|
2839
2924
|
children: [
|
|
2840
|
-
/* @__PURE__ */
|
|
2925
|
+
/* @__PURE__ */ jsx62("path", {
|
|
2841
2926
|
d: "M9.67541 3.72993C10.2804 2.68198 11.793 2.68198 12.398 3.72993L19.8853 16.6982C20.4903 17.7462 19.734 19.0561 18.524 19.0561H3.54948C2.33942 19.0561 1.58313 17.7462 2.18816 16.6982L9.67541 3.72993Z",
|
|
2842
2927
|
fill: "#FFDE99"
|
|
2843
2928
|
}),
|
|
2844
|
-
/* @__PURE__ */
|
|
2929
|
+
/* @__PURE__ */ jsx62("path", {
|
|
2845
2930
|
fillRule: "evenodd",
|
|
2846
2931
|
clipRule: "evenodd",
|
|
2847
2932
|
d: "M19.3657 16.9982L11.8784 4.02993C11.5043 3.38198 10.5691 3.38198 10.195 4.02993L2.70778 16.9982C2.33369 17.6462 2.8013 18.4561 3.54948 18.4561H18.524C19.2722 18.4561 19.7398 17.6462 19.3657 16.9982ZM12.398 3.72993C11.793 2.68198 10.2804 2.68198 9.67541 3.72993L2.18816 16.6982C1.58313 17.7462 2.33942 19.0561 3.54948 19.0561H18.524C19.734 19.0561 20.4903 17.7462 19.8853 16.6982L12.398 3.72993Z",
|
|
2848
2933
|
fill: "#528693"
|
|
2849
2934
|
}),
|
|
2850
|
-
/* @__PURE__ */
|
|
2935
|
+
/* @__PURE__ */ jsx62("path", {
|
|
2851
2936
|
d: "M10.4293 8.73822C10.4293 8.33098 10.7595 8.00085 11.1667 8.00085V8.00085C11.5739 8.00085 11.9041 8.33098 11.9041 8.73822V12.3883C11.9041 12.7956 11.5739 13.1257 11.1667 13.1257V13.1257C10.7595 13.1257 10.4293 12.7956 10.4293 12.3883V8.73822Z",
|
|
2852
2937
|
fill: "white"
|
|
2853
2938
|
}),
|
|
2854
|
-
/* @__PURE__ */
|
|
2939
|
+
/* @__PURE__ */ jsx62("path", {
|
|
2855
2940
|
fillRule: "evenodd",
|
|
2856
2941
|
clipRule: "evenodd",
|
|
2857
2942
|
d: "M12.504 8.73824V12.3883C12.504 13.127 11.9053 13.7257 11.1667 13.7257C10.4281 13.7257 9.82932 13.127 9.82932 12.3883V8.73825C9.82932 7.99964 10.4281 7.40088 11.1667 7.40088C11.9053 7.40088 12.504 7.99964 12.504 8.73824ZM11.1667 8.00088C10.7594 8.00088 10.4293 8.33101 10.4293 8.73825V12.3883C10.4293 12.7956 10.7594 13.1257 11.1667 13.1257C11.5739 13.1257 11.904 12.7956 11.904 12.3883V8.73824C11.904 8.33101 11.5739 8.00088 11.1667 8.00088Z",
|
|
2858
2943
|
fill: "#528693"
|
|
2859
2944
|
}),
|
|
2860
|
-
/* @__PURE__ */
|
|
2945
|
+
/* @__PURE__ */ jsx62("path", {
|
|
2861
2946
|
d: "M11.9041 15.7807C11.9041 16.1879 11.5739 16.5181 11.1667 16.5181C10.7595 16.5181 10.4293 16.1879 10.4293 15.7807C10.4293 15.3735 10.7595 15.0433 11.1667 15.0433C11.5739 15.0433 11.9041 15.3735 11.9041 15.7807Z",
|
|
2862
2947
|
fill: "white"
|
|
2863
2948
|
}),
|
|
2864
|
-
/* @__PURE__ */
|
|
2949
|
+
/* @__PURE__ */ jsx62("path", {
|
|
2865
2950
|
fillRule: "evenodd",
|
|
2866
2951
|
clipRule: "evenodd",
|
|
2867
2952
|
d: "M12.504 15.7807C12.504 16.5193 11.9053 17.1181 11.1667 17.1181C10.4281 17.1181 9.82932 16.5193 9.82932 15.7807C9.82932 15.0421 10.4281 14.4434 11.1667 14.4434C11.9053 14.4434 12.504 15.0421 12.504 15.7807ZM11.1667 16.5181C11.5739 16.5181 11.904 16.188 11.904 15.7807C11.904 15.3735 11.5739 15.0434 11.1667 15.0434C10.7594 15.0434 10.4293 15.3735 10.4293 15.7807C10.4293 16.188 10.7594 16.5181 11.1667 16.5181Z",
|
|
@@ -2881,9 +2966,11 @@ var Icon = {
|
|
|
2881
2966
|
BillingPayments,
|
|
2882
2967
|
Cancel,
|
|
2883
2968
|
Catalogue,
|
|
2884
|
-
|
|
2969
|
+
CheckWithCircle,
|
|
2885
2970
|
Cloud,
|
|
2886
2971
|
CloudWithKeyHole,
|
|
2972
|
+
Copy,
|
|
2973
|
+
CopyWithCloud,
|
|
2887
2974
|
Crystal,
|
|
2888
2975
|
Customers,
|
|
2889
2976
|
Document,
|
|
@@ -2904,8 +2991,8 @@ var Icon = {
|
|
|
2904
2991
|
Multilingual,
|
|
2905
2992
|
NailPolish,
|
|
2906
2993
|
Order,
|
|
2907
|
-
People,
|
|
2908
2994
|
Particle,
|
|
2995
|
+
People,
|
|
2909
2996
|
Percentage,
|
|
2910
2997
|
PlansAndPricing,
|
|
2911
2998
|
PriceTag,
|
|
@@ -2926,7 +3013,7 @@ var Icon = {
|
|
|
2926
3013
|
};
|
|
2927
3014
|
|
|
2928
3015
|
// src/dialog/dialog.tsx
|
|
2929
|
-
import { jsx as
|
|
3016
|
+
import { jsx as jsx63, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
2930
3017
|
var IconMap = {
|
|
2931
3018
|
error: Icon.Error,
|
|
2932
3019
|
info: Icon.Info,
|
|
@@ -2942,29 +3029,29 @@ var dialogContentStyles = cva5("c-dialog", {
|
|
|
2942
3029
|
function DialogContent({ children, closable = true, type, className, container, ...delegated }) {
|
|
2943
3030
|
const withIcon = typeof type !== "undefined";
|
|
2944
3031
|
const IconComponent = type && IconMap[type];
|
|
2945
|
-
return /* @__PURE__ */
|
|
3032
|
+
return /* @__PURE__ */ jsxs54(DialogPrimitive.Portal, {
|
|
2946
3033
|
container,
|
|
2947
3034
|
children: [
|
|
2948
|
-
/* @__PURE__ */
|
|
3035
|
+
/* @__PURE__ */ jsx63(DialogPrimitive.Overlay, {
|
|
2949
3036
|
className: "c-dialog-overlay"
|
|
2950
3037
|
}),
|
|
2951
|
-
/* @__PURE__ */
|
|
3038
|
+
/* @__PURE__ */ jsxs54(DialogPrimitive.Content, {
|
|
2952
3039
|
className: dialogContentStyles({ withIcon, class: className }),
|
|
2953
3040
|
...delegated,
|
|
2954
3041
|
children: [
|
|
2955
|
-
IconComponent && /* @__PURE__ */
|
|
3042
|
+
IconComponent && /* @__PURE__ */ jsx63("div", {
|
|
2956
3043
|
className: "flex h-[44px] w-[44px] min-w-[44px] items-center justify-center rounded-lg bg-gray-50-900 p-[5px]",
|
|
2957
|
-
children: /* @__PURE__ */
|
|
3044
|
+
children: /* @__PURE__ */ jsx63(IconComponent, {
|
|
2958
3045
|
className: "c-dialog-icon",
|
|
2959
3046
|
width: 34,
|
|
2960
3047
|
height: 34
|
|
2961
3048
|
})
|
|
2962
3049
|
}),
|
|
2963
|
-
closable && /* @__PURE__ */
|
|
3050
|
+
closable && /* @__PURE__ */ jsx63(DialogClose, {
|
|
2964
3051
|
asChild: true,
|
|
2965
|
-
children: /* @__PURE__ */
|
|
3052
|
+
children: /* @__PURE__ */ jsx63(Button, {
|
|
2966
3053
|
className: "c-dialog-close-button",
|
|
2967
|
-
children: /* @__PURE__ */
|
|
3054
|
+
children: /* @__PURE__ */ jsx63(Icon.Cancel, {
|
|
2968
3055
|
color: "density",
|
|
2969
3056
|
"aria-label": "Close",
|
|
2970
3057
|
height: 16,
|
|
@@ -2972,7 +3059,7 @@ function DialogContent({ children, closable = true, type, className, container,
|
|
|
2972
3059
|
})
|
|
2973
3060
|
})
|
|
2974
3061
|
}),
|
|
2975
|
-
/* @__PURE__ */
|
|
3062
|
+
/* @__PURE__ */ jsx63("div", {
|
|
2976
3063
|
children
|
|
2977
3064
|
})
|
|
2978
3065
|
]
|
|
@@ -2981,13 +3068,13 @@ function DialogContent({ children, closable = true, type, className, container,
|
|
|
2981
3068
|
});
|
|
2982
3069
|
}
|
|
2983
3070
|
function DialogTitle({ className, ...delegated }) {
|
|
2984
|
-
return /* @__PURE__ */
|
|
3071
|
+
return /* @__PURE__ */ jsx63(DialogPrimitive.Title, {
|
|
2985
3072
|
className: cx5("c-dialog-title", className),
|
|
2986
3073
|
...delegated
|
|
2987
3074
|
});
|
|
2988
3075
|
}
|
|
2989
3076
|
function DialogDescription(delegated) {
|
|
2990
|
-
return /* @__PURE__ */
|
|
3077
|
+
return /* @__PURE__ */ jsx63(DialogPrimitive.Description, {
|
|
2991
3078
|
className: "c-dialog-description",
|
|
2992
3079
|
...delegated
|
|
2993
3080
|
});
|
|
@@ -2996,7 +3083,7 @@ var DialogTrigger = DialogPrimitive.Trigger;
|
|
|
2996
3083
|
var DialogClose = DialogPrimitive.Close;
|
|
2997
3084
|
var DialogRoot = DialogPrimitive.Root;
|
|
2998
3085
|
function DialogBase({ children, ...delegated }) {
|
|
2999
|
-
return /* @__PURE__ */
|
|
3086
|
+
return /* @__PURE__ */ jsx63(DialogRoot, {
|
|
3000
3087
|
...delegated,
|
|
3001
3088
|
children
|
|
3002
3089
|
});
|
|
@@ -3012,7 +3099,7 @@ DialogBase.Close = DialogPrimitive.Close;
|
|
|
3012
3099
|
import { unmountComponentAtNode, render as DOMRender } from "react-dom";
|
|
3013
3100
|
|
|
3014
3101
|
// src/dialog/confirm-dialog.tsx
|
|
3015
|
-
import { jsx as
|
|
3102
|
+
import { jsx as jsx64, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
3016
3103
|
function ConfirmDialog({
|
|
3017
3104
|
open,
|
|
3018
3105
|
close,
|
|
@@ -3033,14 +3120,14 @@ function ConfirmDialog({
|
|
|
3033
3120
|
type,
|
|
3034
3121
|
closable
|
|
3035
3122
|
}) {
|
|
3036
|
-
const cancelButton = (okCancel || displayCancel) && /* @__PURE__ */
|
|
3123
|
+
const cancelButton = (okCancel || displayCancel) && /* @__PURE__ */ jsx64(Button, {
|
|
3037
3124
|
onClick: () => {
|
|
3038
3125
|
onCancel?.();
|
|
3039
3126
|
close();
|
|
3040
3127
|
},
|
|
3041
3128
|
children: cancelText
|
|
3042
3129
|
});
|
|
3043
|
-
const okButton = displayOk && /* @__PURE__ */
|
|
3130
|
+
const okButton = displayOk && /* @__PURE__ */ jsx64(Button, {
|
|
3044
3131
|
intent: okButtonIntent,
|
|
3045
3132
|
onClick: () => {
|
|
3046
3133
|
onOk?.();
|
|
@@ -3048,24 +3135,24 @@ function ConfirmDialog({
|
|
|
3048
3135
|
},
|
|
3049
3136
|
children: okText
|
|
3050
3137
|
});
|
|
3051
|
-
return /* @__PURE__ */
|
|
3138
|
+
return /* @__PURE__ */ jsx64(DialogRoot, {
|
|
3052
3139
|
open,
|
|
3053
3140
|
onOpenChange: () => close(),
|
|
3054
|
-
children: /* @__PURE__ */
|
|
3141
|
+
children: /* @__PURE__ */ jsxs55(Dialog.Content, {
|
|
3055
3142
|
onEscapeKeyDown,
|
|
3056
3143
|
onInteractOutside,
|
|
3057
3144
|
onPointerDownOutside,
|
|
3058
3145
|
type,
|
|
3059
3146
|
closable,
|
|
3060
3147
|
children: [
|
|
3061
|
-
title && /* @__PURE__ */
|
|
3148
|
+
title && /* @__PURE__ */ jsx64(Dialog.Title, {
|
|
3062
3149
|
children: title
|
|
3063
3150
|
}),
|
|
3064
|
-
description && /* @__PURE__ */
|
|
3151
|
+
description && /* @__PURE__ */ jsx64(Dialog.Description, {
|
|
3065
3152
|
children: description
|
|
3066
3153
|
}),
|
|
3067
3154
|
content,
|
|
3068
|
-
(displayOk || okCancel || displayCancel) && /* @__PURE__ */
|
|
3155
|
+
(displayOk || okCancel || displayCancel) && /* @__PURE__ */ jsxs55("div", {
|
|
3069
3156
|
className: "mt-4 flex items-center justify-end gap-4",
|
|
3070
3157
|
children: [
|
|
3071
3158
|
cancelButton,
|
|
@@ -3078,7 +3165,7 @@ function ConfirmDialog({
|
|
|
3078
3165
|
}
|
|
3079
3166
|
|
|
3080
3167
|
// src/dialog/config.tsx
|
|
3081
|
-
import { jsx as
|
|
3168
|
+
import { jsx as jsx65 } from "react/jsx-runtime";
|
|
3082
3169
|
function confirm(config) {
|
|
3083
3170
|
const container = document.createDocumentFragment();
|
|
3084
3171
|
let currentConfig = { ...config, close, open: true };
|
|
@@ -3114,7 +3201,7 @@ function confirm(config) {
|
|
|
3114
3201
|
function render({ okText, cancelText, ...delegated }) {
|
|
3115
3202
|
clearTimeout(timeoutId);
|
|
3116
3203
|
timeoutId = setTimeout(() => {
|
|
3117
|
-
DOMRender(/* @__PURE__ */
|
|
3204
|
+
DOMRender(/* @__PURE__ */ jsx65(ConfirmDialog, {
|
|
3118
3205
|
...delegated,
|
|
3119
3206
|
okText,
|
|
3120
3207
|
cancelText
|
|
@@ -3222,9 +3309,9 @@ function destroyAll() {
|
|
|
3222
3309
|
}
|
|
3223
3310
|
|
|
3224
3311
|
// src/icon-button/icon-button.tsx
|
|
3225
|
-
import { forwardRef as
|
|
3312
|
+
import { forwardRef as forwardRef56 } from "react";
|
|
3226
3313
|
import { cva as cva6 } from "class-variance-authority";
|
|
3227
|
-
import { jsx as
|
|
3314
|
+
import { jsx as jsx66 } from "react/jsx-runtime";
|
|
3228
3315
|
var buttonStyles3 = cva6(["c-icon-button"], {
|
|
3229
3316
|
variants: {
|
|
3230
3317
|
variant: {
|
|
@@ -3244,9 +3331,9 @@ var buttonStyles3 = cva6(["c-icon-button"], {
|
|
|
3244
3331
|
variant: "default"
|
|
3245
3332
|
}
|
|
3246
3333
|
});
|
|
3247
|
-
var IconButton =
|
|
3334
|
+
var IconButton = forwardRef56(
|
|
3248
3335
|
({ children, className, type = "button", size, variant, ...delegated }, ref) => {
|
|
3249
|
-
return /* @__PURE__ */
|
|
3336
|
+
return /* @__PURE__ */ jsx66("button", {
|
|
3250
3337
|
ref,
|
|
3251
3338
|
type,
|
|
3252
3339
|
className: buttonStyles3({ size, variant, className }),
|
|
@@ -3260,7 +3347,7 @@ IconButton.displayName = "Button";
|
|
|
3260
3347
|
// src/inline-radio/inline-radio.tsx
|
|
3261
3348
|
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
3262
3349
|
import { cx as cx6, cva as cva7 } from "class-variance-authority";
|
|
3263
|
-
import { jsx as
|
|
3350
|
+
import { jsx as jsx67 } from "react/jsx-runtime";
|
|
3264
3351
|
var inlineRadioGroupStyles = cva7("c-inline-radio-group", {
|
|
3265
3352
|
variants: {
|
|
3266
3353
|
size: {
|
|
@@ -3275,16 +3362,16 @@ var inlineRadioGroupStyles = cva7("c-inline-radio-group", {
|
|
|
3275
3362
|
}
|
|
3276
3363
|
});
|
|
3277
3364
|
function InlineRadioGroup({ size, className, ...delegated }) {
|
|
3278
|
-
return /* @__PURE__ */
|
|
3365
|
+
return /* @__PURE__ */ jsx67(RadioGroupPrimitive.Root, {
|
|
3279
3366
|
...delegated,
|
|
3280
3367
|
className: inlineRadioGroupStyles({ size, className })
|
|
3281
3368
|
});
|
|
3282
3369
|
}
|
|
3283
3370
|
function InlineRadioItem({ children, className, ...delegated }) {
|
|
3284
|
-
return /* @__PURE__ */
|
|
3371
|
+
return /* @__PURE__ */ jsx67(RadioGroupPrimitive.Item, {
|
|
3285
3372
|
...delegated,
|
|
3286
3373
|
className: cx6("c-inline-radio", className),
|
|
3287
|
-
children: /* @__PURE__ */
|
|
3374
|
+
children: /* @__PURE__ */ jsx67(RadioGroupPrimitive.Indicator, {
|
|
3288
3375
|
forceMount: true,
|
|
3289
3376
|
children
|
|
3290
3377
|
})
|
|
@@ -3296,19 +3383,19 @@ var InlineRadio = {
|
|
|
3296
3383
|
};
|
|
3297
3384
|
|
|
3298
3385
|
// src/input-with-label/input-with-label.tsx
|
|
3299
|
-
import { forwardRef as
|
|
3386
|
+
import { forwardRef as forwardRef60 } from "react";
|
|
3300
3387
|
import { cva as cva9, cx as cx8 } from "class-variance-authority";
|
|
3301
3388
|
|
|
3302
3389
|
// src/input/input.tsx
|
|
3303
3390
|
import { cva as cva8 } from "class-variance-authority";
|
|
3304
|
-
import { forwardRef as
|
|
3305
|
-
import { jsx as
|
|
3391
|
+
import { forwardRef as forwardRef57 } from "react";
|
|
3392
|
+
import { jsx as jsx68 } from "react/jsx-runtime";
|
|
3306
3393
|
var inputStyles = cva8(["c-input"], {
|
|
3307
3394
|
variants: {},
|
|
3308
3395
|
defaultVariants: {}
|
|
3309
3396
|
});
|
|
3310
|
-
var Input =
|
|
3311
|
-
return /* @__PURE__ */
|
|
3397
|
+
var Input = forwardRef57(({ className, ...delegated }, ref) => {
|
|
3398
|
+
return /* @__PURE__ */ jsx68("input", {
|
|
3312
3399
|
ref,
|
|
3313
3400
|
className: inputStyles({ className }),
|
|
3314
3401
|
type: "text",
|
|
@@ -3318,11 +3405,11 @@ var Input = forwardRef55(({ className, ...delegated }, ref) => {
|
|
|
3318
3405
|
Input.displayName = "Input";
|
|
3319
3406
|
|
|
3320
3407
|
// src/label/label.tsx
|
|
3321
|
-
import { forwardRef as
|
|
3408
|
+
import { forwardRef as forwardRef58 } from "react";
|
|
3322
3409
|
import { cx as cx7 } from "class-variance-authority";
|
|
3323
|
-
import { jsx as
|
|
3324
|
-
var Label2 =
|
|
3325
|
-
return /* @__PURE__ */
|
|
3410
|
+
import { jsx as jsx69 } from "react/jsx-runtime";
|
|
3411
|
+
var Label2 = forwardRef58(({ className, ...delegated }, ref) => {
|
|
3412
|
+
return /* @__PURE__ */ jsx69("label", {
|
|
3326
3413
|
ref,
|
|
3327
3414
|
className: cx7("c-label", className),
|
|
3328
3415
|
...delegated
|
|
@@ -3331,11 +3418,11 @@ var Label2 = forwardRef56(({ className, ...delegated }, ref) => {
|
|
|
3331
3418
|
Label2.displayName = "Label";
|
|
3332
3419
|
|
|
3333
3420
|
// src/iconography/triangle.tsx
|
|
3334
|
-
import { forwardRef as
|
|
3335
|
-
import { jsx as
|
|
3336
|
-
var Triangle =
|
|
3421
|
+
import { forwardRef as forwardRef59 } from "react";
|
|
3422
|
+
import { jsx as jsx70 } from "react/jsx-runtime";
|
|
3423
|
+
var Triangle = forwardRef59((delegated, ref) => {
|
|
3337
3424
|
const { width = 20, height = 20, ...rest } = delegated;
|
|
3338
|
-
return /* @__PURE__ */
|
|
3425
|
+
return /* @__PURE__ */ jsx70("svg", {
|
|
3339
3426
|
viewBox: "0 0 17 15",
|
|
3340
3427
|
width,
|
|
3341
3428
|
height,
|
|
@@ -3343,7 +3430,7 @@ var Triangle = forwardRef57((delegated, ref) => {
|
|
|
3343
3430
|
fill: "none",
|
|
3344
3431
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3345
3432
|
...rest,
|
|
3346
|
-
children: /* @__PURE__ */
|
|
3433
|
+
children: /* @__PURE__ */ jsx70("path", {
|
|
3347
3434
|
d: "M15.463 1.2L8.5 12.685 1.537 1.2h13.925zM1.353.896s0 0 0 0h0z",
|
|
3348
3435
|
stroke: "currentColor",
|
|
3349
3436
|
strokeWidth: 2.4
|
|
@@ -3352,7 +3439,7 @@ var Triangle = forwardRef57((delegated, ref) => {
|
|
|
3352
3439
|
});
|
|
3353
3440
|
|
|
3354
3441
|
// src/input-with-label/input-with-label.tsx
|
|
3355
|
-
import { Fragment, jsx as
|
|
3442
|
+
import { Fragment, jsx as jsx71, jsxs as jsxs56 } from "react/jsx-runtime";
|
|
3356
3443
|
var inputWithLabelStyles = cva9(["c-input-with-label"], {
|
|
3357
3444
|
variants: {
|
|
3358
3445
|
variant: {
|
|
@@ -3366,29 +3453,29 @@ var inputWithLabelStyles = cva9(["c-input-with-label"], {
|
|
|
3366
3453
|
},
|
|
3367
3454
|
defaultVariants: {}
|
|
3368
3455
|
});
|
|
3369
|
-
var InputWithLabel =
|
|
3456
|
+
var InputWithLabel = forwardRef60(
|
|
3370
3457
|
({ className, label, append, errorMessage, status, variant, id, labelProps, ...delegated }, ref) => {
|
|
3371
3458
|
const { className: labelClassName, ...labelPropsRest } = labelProps ?? {};
|
|
3372
|
-
return /* @__PURE__ */
|
|
3373
|
-
children: /* @__PURE__ */
|
|
3459
|
+
return /* @__PURE__ */ jsx71(Fragment, {
|
|
3460
|
+
children: /* @__PURE__ */ jsxs56(Label2, {
|
|
3374
3461
|
className: inputWithLabelStyles({ status, variant, className: labelClassName }),
|
|
3375
3462
|
htmlFor: id,
|
|
3376
3463
|
...labelPropsRest,
|
|
3377
3464
|
children: [
|
|
3378
3465
|
label,
|
|
3379
|
-
/* @__PURE__ */
|
|
3466
|
+
/* @__PURE__ */ jsxs56("span", {
|
|
3380
3467
|
className: "c-input-with-label-input-wrap",
|
|
3381
3468
|
children: [
|
|
3382
|
-
/* @__PURE__ */
|
|
3469
|
+
/* @__PURE__ */ jsx71(Input, {
|
|
3383
3470
|
className: cx8("c-input-with-label-input", className),
|
|
3384
3471
|
ref,
|
|
3385
3472
|
id,
|
|
3386
3473
|
...delegated
|
|
3387
3474
|
}),
|
|
3388
|
-
!append && !errorMessage ? null : /* @__PURE__ */
|
|
3475
|
+
!append && !errorMessage ? null : /* @__PURE__ */ jsx71("div", {
|
|
3389
3476
|
className: "c-input-with-label-append",
|
|
3390
3477
|
title: errorMessage,
|
|
3391
|
-
children: errorMessage ? /* @__PURE__ */
|
|
3478
|
+
children: errorMessage ? /* @__PURE__ */ jsx71(Triangle, {}) : append
|
|
3392
3479
|
})
|
|
3393
3480
|
]
|
|
3394
3481
|
})
|
|
@@ -3402,12 +3489,12 @@ InputWithLabel.displayName = "InputWithLabel";
|
|
|
3402
3489
|
// src/progress/progress.tsx
|
|
3403
3490
|
import * as ProgressPrimitives from "@radix-ui/react-progress";
|
|
3404
3491
|
import { cx as cx9 } from "class-variance-authority";
|
|
3405
|
-
import { jsx as
|
|
3492
|
+
import { jsx as jsx72 } from "react/jsx-runtime";
|
|
3406
3493
|
function Progress({ className, value }) {
|
|
3407
|
-
return /* @__PURE__ */
|
|
3494
|
+
return /* @__PURE__ */ jsx72(ProgressPrimitives.Root, {
|
|
3408
3495
|
className: cx9(className, "c-progress-root"),
|
|
3409
3496
|
value,
|
|
3410
|
-
children: /* @__PURE__ */
|
|
3497
|
+
children: /* @__PURE__ */ jsx72(ProgressPrimitives.Indicator, {
|
|
3411
3498
|
className: "c-progress-indicator",
|
|
3412
3499
|
style: { transform: `translateX(-${100 - (value ?? 0)}%)` }
|
|
3413
3500
|
})
|
|
@@ -3416,12 +3503,12 @@ function Progress({ className, value }) {
|
|
|
3416
3503
|
|
|
3417
3504
|
// src/radio/radio.tsx
|
|
3418
3505
|
import * as RadioGroupPrimitive2 from "@radix-ui/react-radio-group";
|
|
3419
|
-
import { jsx as
|
|
3506
|
+
import { jsx as jsx73 } from "react/jsx-runtime";
|
|
3420
3507
|
function RadioGroupItem(props) {
|
|
3421
|
-
return /* @__PURE__ */
|
|
3508
|
+
return /* @__PURE__ */ jsx73(RadioGroupPrimitive2.Item, {
|
|
3422
3509
|
...props,
|
|
3423
3510
|
className: "c-radio-item",
|
|
3424
|
-
children: /* @__PURE__ */
|
|
3511
|
+
children: /* @__PURE__ */ jsx73(RadioGroupPrimitive2.Indicator, {
|
|
3425
3512
|
className: "c-radio-indicator"
|
|
3426
3513
|
})
|
|
3427
3514
|
});
|
|
@@ -3432,30 +3519,30 @@ var Radio = {
|
|
|
3432
3519
|
};
|
|
3433
3520
|
|
|
3434
3521
|
// src/select/select-item.tsx
|
|
3435
|
-
import { forwardRef as
|
|
3522
|
+
import { forwardRef as forwardRef61 } from "react";
|
|
3436
3523
|
import * as SelectPrimitives from "@radix-ui/react-select";
|
|
3437
|
-
import { jsx as
|
|
3438
|
-
var SelectItem =
|
|
3524
|
+
import { jsx as jsx74, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
3525
|
+
var SelectItem = forwardRef61((props, ref) => {
|
|
3439
3526
|
const { children, ...delegated } = props;
|
|
3440
|
-
return /* @__PURE__ */
|
|
3527
|
+
return /* @__PURE__ */ jsxs57(SelectPrimitives.Item, {
|
|
3441
3528
|
className: "c-select-item",
|
|
3442
3529
|
ref,
|
|
3443
3530
|
...delegated,
|
|
3444
3531
|
children: [
|
|
3445
|
-
/* @__PURE__ */
|
|
3532
|
+
/* @__PURE__ */ jsx74(SelectPrimitives.ItemText, {
|
|
3446
3533
|
children
|
|
3447
3534
|
}),
|
|
3448
|
-
/* @__PURE__ */
|
|
3535
|
+
/* @__PURE__ */ jsx74(SelectPrimitives.ItemIndicator, {})
|
|
3449
3536
|
]
|
|
3450
3537
|
});
|
|
3451
3538
|
});
|
|
3452
3539
|
SelectItem.displayName = "SelectItem";
|
|
3453
3540
|
|
|
3454
3541
|
// src/select/select-root.tsx
|
|
3455
|
-
import { forwardRef as
|
|
3542
|
+
import { forwardRef as forwardRef62 } from "react";
|
|
3456
3543
|
import * as SelectPrimitives2 from "@radix-ui/react-select";
|
|
3457
3544
|
import { cva as cva10 } from "class-variance-authority";
|
|
3458
|
-
import { jsx as
|
|
3545
|
+
import { jsx as jsx75, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
3459
3546
|
var selectTriggerStyles = cva10("c-select-trigger", {
|
|
3460
3547
|
variants: {
|
|
3461
3548
|
size: {
|
|
@@ -3469,36 +3556,36 @@ var selectTriggerStyles = cva10("c-select-trigger", {
|
|
|
3469
3556
|
size: "sm"
|
|
3470
3557
|
}
|
|
3471
3558
|
});
|
|
3472
|
-
var SelectContainer =
|
|
3559
|
+
var SelectContainer = forwardRef62(
|
|
3473
3560
|
({ children, id, placeholder, disabled, size, ...delegated }, ref) => {
|
|
3474
|
-
return /* @__PURE__ */
|
|
3561
|
+
return /* @__PURE__ */ jsxs58(SelectPrimitives2.Root, {
|
|
3475
3562
|
...delegated,
|
|
3476
3563
|
children: [
|
|
3477
|
-
/* @__PURE__ */
|
|
3564
|
+
/* @__PURE__ */ jsxs58(SelectPrimitives2.Trigger, {
|
|
3478
3565
|
ref,
|
|
3479
3566
|
className: selectTriggerStyles({ size }),
|
|
3480
3567
|
disabled,
|
|
3481
3568
|
id,
|
|
3482
3569
|
children: [
|
|
3483
|
-
/* @__PURE__ */
|
|
3484
|
-
placeholder: /* @__PURE__ */
|
|
3570
|
+
/* @__PURE__ */ jsx75(SelectPrimitives2.Value, {
|
|
3571
|
+
placeholder: /* @__PURE__ */ jsx75("span", {
|
|
3485
3572
|
className: "c-select-value",
|
|
3486
3573
|
children: placeholder ?? "Select..."
|
|
3487
3574
|
})
|
|
3488
3575
|
}),
|
|
3489
|
-
/* @__PURE__ */
|
|
3576
|
+
/* @__PURE__ */ jsx75(Icon.Arrow, {})
|
|
3490
3577
|
]
|
|
3491
3578
|
}),
|
|
3492
|
-
/* @__PURE__ */
|
|
3493
|
-
children: /* @__PURE__ */
|
|
3579
|
+
/* @__PURE__ */ jsx75(SelectPrimitives2.Portal, {
|
|
3580
|
+
children: /* @__PURE__ */ jsxs58(SelectPrimitives2.Content, {
|
|
3494
3581
|
className: "c-select-content",
|
|
3495
3582
|
children: [
|
|
3496
|
-
/* @__PURE__ */
|
|
3497
|
-
/* @__PURE__ */
|
|
3583
|
+
/* @__PURE__ */ jsx75(SelectPrimitives2.ScrollUpButton, {}),
|
|
3584
|
+
/* @__PURE__ */ jsx75(SelectPrimitives2.Viewport, {
|
|
3498
3585
|
className: "c-select-viewport",
|
|
3499
3586
|
children
|
|
3500
3587
|
}),
|
|
3501
|
-
/* @__PURE__ */
|
|
3588
|
+
/* @__PURE__ */ jsx75(SelectPrimitives2.ScrollDownButton, {})
|
|
3502
3589
|
]
|
|
3503
3590
|
})
|
|
3504
3591
|
})
|
|
@@ -3517,21 +3604,21 @@ var Select = {
|
|
|
3517
3604
|
// src/slider/slider.tsx
|
|
3518
3605
|
import * as SliderPrimitive from "@radix-ui/react-slider";
|
|
3519
3606
|
import { cx as cx10 } from "class-variance-authority";
|
|
3520
|
-
import { forwardRef as
|
|
3521
|
-
import { jsx as
|
|
3522
|
-
var Slider =
|
|
3523
|
-
return /* @__PURE__ */
|
|
3607
|
+
import { forwardRef as forwardRef63 } from "react";
|
|
3608
|
+
import { jsx as jsx76, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
3609
|
+
var Slider = forwardRef63(({ className, transparentRange, ...delegated }, ref) => {
|
|
3610
|
+
return /* @__PURE__ */ jsxs59(SliderPrimitive.Root, {
|
|
3524
3611
|
className: cx10("c-slider-root", className),
|
|
3525
3612
|
ref,
|
|
3526
3613
|
...delegated,
|
|
3527
3614
|
children: [
|
|
3528
|
-
/* @__PURE__ */
|
|
3615
|
+
/* @__PURE__ */ jsx76(SliderPrimitive.Track, {
|
|
3529
3616
|
className: "c-slider-track",
|
|
3530
|
-
children: /* @__PURE__ */
|
|
3617
|
+
children: /* @__PURE__ */ jsx76(SliderPrimitive.Range, {
|
|
3531
3618
|
className: `c-slider-range ${transparentRange ? "c-slider-range-transparent" : ""}`
|
|
3532
3619
|
})
|
|
3533
3620
|
}),
|
|
3534
|
-
/* @__PURE__ */
|
|
3621
|
+
/* @__PURE__ */ jsx76(SliderPrimitive.Thumb, {
|
|
3535
3622
|
className: "c-slider-thumb"
|
|
3536
3623
|
})
|
|
3537
3624
|
]
|
|
@@ -3540,7 +3627,7 @@ var Slider = forwardRef61(({ className, transparentRange, ...delegated }, ref) =
|
|
|
3540
3627
|
|
|
3541
3628
|
// src/tag/tag.tsx
|
|
3542
3629
|
import { cva as cva11 } from "class-variance-authority";
|
|
3543
|
-
import { jsx as
|
|
3630
|
+
import { jsx as jsx77 } from "react/jsx-runtime";
|
|
3544
3631
|
var tagStyles = cva11("c-tag", {
|
|
3545
3632
|
variants: {
|
|
3546
3633
|
variant: {
|
|
@@ -3553,7 +3640,7 @@ var tagStyles = cva11("c-tag", {
|
|
|
3553
3640
|
}
|
|
3554
3641
|
});
|
|
3555
3642
|
function Tag({ children, className, variant, ...delegated }) {
|
|
3556
|
-
return /* @__PURE__ */
|
|
3643
|
+
return /* @__PURE__ */ jsx77("span", {
|
|
3557
3644
|
className: tagStyles({ className, variant }),
|
|
3558
3645
|
...delegated,
|
|
3559
3646
|
children
|
|
@@ -3579,11 +3666,11 @@ import { ContentEditable } from "@lexical/react/LexicalContentEditable";
|
|
|
3579
3666
|
// src/rich-text-editor/context/SharedHistoryContext.tsx
|
|
3580
3667
|
import { createContext, useContext, useMemo } from "react";
|
|
3581
3668
|
import { createEmptyHistoryState } from "@lexical/react/LexicalHistoryPlugin";
|
|
3582
|
-
import { jsx as
|
|
3669
|
+
import { jsx as jsx78 } from "react/jsx-runtime";
|
|
3583
3670
|
var Context = createContext({});
|
|
3584
3671
|
var SharedHistoryContext = ({ children }) => {
|
|
3585
3672
|
const historyContext = useMemo(() => ({ historyState: createEmptyHistoryState() }), []);
|
|
3586
|
-
return /* @__PURE__ */
|
|
3673
|
+
return /* @__PURE__ */ jsx78(Context.Provider, {
|
|
3587
3674
|
value: historyContext,
|
|
3588
3675
|
children
|
|
3589
3676
|
});
|
|
@@ -3660,14 +3747,14 @@ var translations = {
|
|
|
3660
3747
|
var en_default = translations;
|
|
3661
3748
|
|
|
3662
3749
|
// src/rich-text-editor/i18n/index.tsx
|
|
3663
|
-
import { jsx as
|
|
3750
|
+
import { jsx as jsx79 } from "react/jsx-runtime";
|
|
3664
3751
|
var I18nContext = createContext2(null);
|
|
3665
3752
|
function I18nProvider({
|
|
3666
3753
|
labelTranslations,
|
|
3667
3754
|
children
|
|
3668
3755
|
}) {
|
|
3669
3756
|
const translations2 = labelTranslations || en_default;
|
|
3670
|
-
return /* @__PURE__ */
|
|
3757
|
+
return /* @__PURE__ */ jsx79(I18nContext.Provider, {
|
|
3671
3758
|
value: translations2,
|
|
3672
3759
|
children
|
|
3673
3760
|
});
|
|
@@ -4104,7 +4191,7 @@ var BaseNodes = [
|
|
|
4104
4191
|
// src/rich-text-editor/plugins/AutoLinkPlugin/index.tsx
|
|
4105
4192
|
import { AutoLinkPlugin } from "@lexical/react/LexicalAutoLinkPlugin";
|
|
4106
4193
|
import "react";
|
|
4107
|
-
import { jsx as
|
|
4194
|
+
import { jsx as jsx80 } from "react/jsx-runtime";
|
|
4108
4195
|
var URL_MATCHER = /((https?:\/\/(www\.)?)|(www\.))[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_+.~#?&//=]*)/;
|
|
4109
4196
|
var EMAIL_MATCHER = /(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))/;
|
|
4110
4197
|
var MATCHERS = [
|
|
@@ -4132,7 +4219,7 @@ var MATCHERS = [
|
|
|
4132
4219
|
}
|
|
4133
4220
|
];
|
|
4134
4221
|
function LexicalAutoLinkPlugin() {
|
|
4135
|
-
return /* @__PURE__ */
|
|
4222
|
+
return /* @__PURE__ */ jsx80(AutoLinkPlugin, {
|
|
4136
4223
|
matchers: MATCHERS
|
|
4137
4224
|
});
|
|
4138
4225
|
}
|
|
@@ -4151,7 +4238,7 @@ import { useState } from "react";
|
|
|
4151
4238
|
import { $getNearestNodeFromDOMNode, $getSelection, $setSelection } from "lexical";
|
|
4152
4239
|
import { useDebouncedCallback } from "use-debounce";
|
|
4153
4240
|
import { $isCodeNode as $isCodeNode2 } from "@lexical/code";
|
|
4154
|
-
import { jsx as
|
|
4241
|
+
import { jsx as jsx81 } from "react/jsx-runtime";
|
|
4155
4242
|
function CopyButton({ editor, getCodeDOMNode }) {
|
|
4156
4243
|
const [isCopyCompleted, setCopyCompleted] = useState(false);
|
|
4157
4244
|
const tr = useTr();
|
|
@@ -4180,13 +4267,13 @@ function CopyButton({ editor, getCodeDOMNode }) {
|
|
|
4180
4267
|
console.error("Failed to copy: ", err);
|
|
4181
4268
|
}
|
|
4182
4269
|
}
|
|
4183
|
-
return /* @__PURE__ */
|
|
4270
|
+
return /* @__PURE__ */ jsx81("button", {
|
|
4184
4271
|
className: "menu-item",
|
|
4185
4272
|
onClick: handleClick,
|
|
4186
4273
|
"aria-label": tr("actionCopyCode"),
|
|
4187
|
-
children: isCopyCompleted ? /* @__PURE__ */
|
|
4274
|
+
children: isCopyCompleted ? /* @__PURE__ */ jsx81("i", {
|
|
4188
4275
|
className: "format success"
|
|
4189
|
-
}) : /* @__PURE__ */
|
|
4276
|
+
}) : /* @__PURE__ */ jsx81("i", {
|
|
4190
4277
|
className: "format copy"
|
|
4191
4278
|
})
|
|
4192
4279
|
});
|
|
@@ -4197,7 +4284,7 @@ import "react";
|
|
|
4197
4284
|
import { useState as useState2 } from "react";
|
|
4198
4285
|
import { $getNearestNodeFromDOMNode as $getNearestNodeFromDOMNode2 } from "lexical";
|
|
4199
4286
|
import { $isCodeNode as $isCodeNode3 } from "@lexical/code";
|
|
4200
|
-
import { jsx as
|
|
4287
|
+
import { jsx as jsx82, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
4201
4288
|
var PRETTIER_PARSER_MODULES = {
|
|
4202
4289
|
css: () => import("prettier/parser-postcss"),
|
|
4203
4290
|
html: () => import("prettier/parser-html"),
|
|
@@ -4283,22 +4370,22 @@ function PrettierButton({ lang, editor, getCodeDOMNode }) {
|
|
|
4283
4370
|
setTipsVisible(false);
|
|
4284
4371
|
}
|
|
4285
4372
|
}
|
|
4286
|
-
return /* @__PURE__ */
|
|
4373
|
+
return /* @__PURE__ */ jsxs60("div", {
|
|
4287
4374
|
className: "prettier-wrapper",
|
|
4288
4375
|
children: [
|
|
4289
|
-
/* @__PURE__ */
|
|
4376
|
+
/* @__PURE__ */ jsx82("button", {
|
|
4290
4377
|
className: "menu-item",
|
|
4291
4378
|
onClick: handleClick,
|
|
4292
4379
|
onMouseEnter: handleMouseEnter,
|
|
4293
4380
|
onMouseLeave: handleMouseLeave,
|
|
4294
4381
|
"aria-label": tr("actionFormatCode"),
|
|
4295
|
-
children: syntaxError ? /* @__PURE__ */
|
|
4382
|
+
children: syntaxError ? /* @__PURE__ */ jsx82("i", {
|
|
4296
4383
|
className: "format prettier-error"
|
|
4297
|
-
}) : /* @__PURE__ */
|
|
4384
|
+
}) : /* @__PURE__ */ jsx82("i", {
|
|
4298
4385
|
className: "format prettier"
|
|
4299
4386
|
})
|
|
4300
4387
|
}),
|
|
4301
|
-
tipsVisible ? /* @__PURE__ */
|
|
4388
|
+
tipsVisible ? /* @__PURE__ */ jsx82("pre", {
|
|
4302
4389
|
className: "code-error-tips",
|
|
4303
4390
|
children: syntaxError
|
|
4304
4391
|
}) : null
|
|
@@ -4307,7 +4394,7 @@ function PrettierButton({ lang, editor, getCodeDOMNode }) {
|
|
|
4307
4394
|
}
|
|
4308
4395
|
|
|
4309
4396
|
// src/rich-text-editor/plugins/CodeActionMenuPlugin/index.tsx
|
|
4310
|
-
import { Fragment as Fragment2, jsx as
|
|
4397
|
+
import { Fragment as Fragment2, jsx as jsx83, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
4311
4398
|
var CODE_PADDING = 8;
|
|
4312
4399
|
function CodeActionMenuContainer({ anchorElem }) {
|
|
4313
4400
|
const [editor] = useLexicalComposerContext();
|
|
@@ -4384,20 +4471,20 @@ function CodeActionMenuContainer({ anchorElem }) {
|
|
|
4384
4471
|
});
|
|
4385
4472
|
const normalizedLang = normalizeCodeLang(lang);
|
|
4386
4473
|
const codeFriendlyName = getLanguageFriendlyName(lang);
|
|
4387
|
-
return /* @__PURE__ */
|
|
4388
|
-
children: isShown ? /* @__PURE__ */
|
|
4474
|
+
return /* @__PURE__ */ jsx83(Fragment2, {
|
|
4475
|
+
children: isShown ? /* @__PURE__ */ jsxs61("div", {
|
|
4389
4476
|
className: "code-action-menu-container",
|
|
4390
4477
|
style: { ...position },
|
|
4391
4478
|
children: [
|
|
4392
|
-
/* @__PURE__ */
|
|
4479
|
+
/* @__PURE__ */ jsx83("div", {
|
|
4393
4480
|
className: "code-highlight-language",
|
|
4394
4481
|
children: codeFriendlyName
|
|
4395
4482
|
}),
|
|
4396
|
-
/* @__PURE__ */
|
|
4483
|
+
/* @__PURE__ */ jsx83(CopyButton, {
|
|
4397
4484
|
editor,
|
|
4398
4485
|
getCodeDOMNode
|
|
4399
4486
|
}),
|
|
4400
|
-
canBePrettier(normalizedLang) ? /* @__PURE__ */
|
|
4487
|
+
canBePrettier(normalizedLang) ? /* @__PURE__ */ jsx83(PrettierButton, {
|
|
4401
4488
|
editor,
|
|
4402
4489
|
getCodeDOMNode,
|
|
4403
4490
|
lang: normalizedLang
|
|
@@ -4419,7 +4506,7 @@ function getMouseInfo(event) {
|
|
|
4419
4506
|
function CodeActionMenuPlugin({
|
|
4420
4507
|
anchorElem = document.body
|
|
4421
4508
|
}) {
|
|
4422
|
-
return createPortal(/* @__PURE__ */
|
|
4509
|
+
return createPortal(/* @__PURE__ */ jsx83(CodeActionMenuContainer, {
|
|
4423
4510
|
anchorElem
|
|
4424
4511
|
}), anchorElem);
|
|
4425
4512
|
}
|
|
@@ -4457,7 +4544,7 @@ import { $findMatchingParent, mergeRegister } from "@lexical/utils";
|
|
|
4457
4544
|
import { Suspense, useEffect as useEffect3, useState as useState4 } from "react";
|
|
4458
4545
|
import { $getSelection as $getSelection2, $isTextNode as $isTextNode3 } from "lexical";
|
|
4459
4546
|
import { useLexicalComposerContext as useLexicalComposerContext3 } from "@lexical/react/LexicalComposerContext";
|
|
4460
|
-
import { Fragment as Fragment3, jsx as
|
|
4547
|
+
import { Fragment as Fragment3, jsx as jsx84, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
4461
4548
|
var PREVIEW_CACHE = {};
|
|
4462
4549
|
var URL_MATCHER2 = /((https?:\/\/(www\.)?)|(www\.))[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_+.~#?&//=]*)/;
|
|
4463
4550
|
function useSuspenseRequest(url) {
|
|
@@ -4514,26 +4601,26 @@ function LinkPreviewContent({
|
|
|
4514
4601
|
if (!hasPreview) {
|
|
4515
4602
|
return null;
|
|
4516
4603
|
}
|
|
4517
|
-
return /* @__PURE__ */
|
|
4604
|
+
return /* @__PURE__ */ jsxs62("div", {
|
|
4518
4605
|
className: "LinkPreview__container",
|
|
4519
4606
|
children: [
|
|
4520
|
-
preview.google.image && /* @__PURE__ */
|
|
4607
|
+
preview.google.image && /* @__PURE__ */ jsx84("div", {
|
|
4521
4608
|
className: "LinkPreview__imageWrapper bg-purple-50-900",
|
|
4522
|
-
children: /* @__PURE__ */
|
|
4609
|
+
children: /* @__PURE__ */ jsx84("img", {
|
|
4523
4610
|
src: preview.google.image,
|
|
4524
4611
|
alt: preview.google.title,
|
|
4525
4612
|
className: "LinkPreview__image"
|
|
4526
4613
|
})
|
|
4527
4614
|
}),
|
|
4528
|
-
preview.google.title && /* @__PURE__ */
|
|
4615
|
+
preview.google.title && /* @__PURE__ */ jsx84("div", {
|
|
4529
4616
|
className: "LinkPreview__title",
|
|
4530
4617
|
children: preview.google.title
|
|
4531
4618
|
}),
|
|
4532
|
-
preview.google.description && /* @__PURE__ */
|
|
4619
|
+
preview.google.description && /* @__PURE__ */ jsx84("div", {
|
|
4533
4620
|
className: "LinkPreview__description",
|
|
4534
4621
|
children: preview.google.description
|
|
4535
4622
|
}),
|
|
4536
|
-
textContent && textContent !== preview.google.title ? /* @__PURE__ */
|
|
4623
|
+
textContent && textContent !== preview.google.title ? /* @__PURE__ */ jsx84(Button, {
|
|
4537
4624
|
className: "mb-4 ml-5",
|
|
4538
4625
|
onClick: useTitleForText,
|
|
4539
4626
|
children: tr("linkPreviewReplaceTextWithTitle")
|
|
@@ -4542,7 +4629,7 @@ function LinkPreviewContent({
|
|
|
4542
4629
|
});
|
|
4543
4630
|
}
|
|
4544
4631
|
function Glimmer(props) {
|
|
4545
|
-
return /* @__PURE__ */
|
|
4632
|
+
return /* @__PURE__ */ jsx84("div", {
|
|
4546
4633
|
className: "LinkPreview__glimmer",
|
|
4547
4634
|
...props,
|
|
4548
4635
|
style: {
|
|
@@ -4554,24 +4641,24 @@ function Glimmer(props) {
|
|
|
4554
4641
|
function LinkPreview({
|
|
4555
4642
|
url
|
|
4556
4643
|
}) {
|
|
4557
|
-
return /* @__PURE__ */
|
|
4558
|
-
fallback: /* @__PURE__ */
|
|
4644
|
+
return /* @__PURE__ */ jsx84(Suspense, {
|
|
4645
|
+
fallback: /* @__PURE__ */ jsxs62(Fragment3, {
|
|
4559
4646
|
children: [
|
|
4560
|
-
/* @__PURE__ */
|
|
4647
|
+
/* @__PURE__ */ jsx84(Glimmer, {
|
|
4561
4648
|
style: { height: "80px" },
|
|
4562
4649
|
index: 0
|
|
4563
4650
|
}),
|
|
4564
|
-
/* @__PURE__ */
|
|
4651
|
+
/* @__PURE__ */ jsx84(Glimmer, {
|
|
4565
4652
|
style: { width: "60%" },
|
|
4566
4653
|
index: 1
|
|
4567
4654
|
}),
|
|
4568
|
-
/* @__PURE__ */
|
|
4655
|
+
/* @__PURE__ */ jsx84(Glimmer, {
|
|
4569
4656
|
style: { width: "80%" },
|
|
4570
4657
|
index: 2
|
|
4571
4658
|
})
|
|
4572
4659
|
]
|
|
4573
4660
|
}),
|
|
4574
|
-
children: /* @__PURE__ */
|
|
4661
|
+
children: /* @__PURE__ */ jsx84(LinkPreviewContent, {
|
|
4575
4662
|
url
|
|
4576
4663
|
})
|
|
4577
4664
|
});
|
|
@@ -4640,7 +4727,7 @@ function validateUrl(url) {
|
|
|
4640
4727
|
}
|
|
4641
4728
|
|
|
4642
4729
|
// src/rich-text-editor/plugins/FloatingLinkEditorPlugin/index.tsx
|
|
4643
|
-
import { Fragment as Fragment4, jsx as
|
|
4730
|
+
import { Fragment as Fragment4, jsx as jsx85, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
4644
4731
|
function FloatingLinkEditor({
|
|
4645
4732
|
editor,
|
|
4646
4733
|
isLink,
|
|
@@ -4761,41 +4848,41 @@ function FloatingLinkEditor({
|
|
|
4761
4848
|
inputRef.current.focus();
|
|
4762
4849
|
}
|
|
4763
4850
|
}, [isEditMode]);
|
|
4764
|
-
return /* @__PURE__ */
|
|
4851
|
+
return /* @__PURE__ */ jsx85("div", {
|
|
4765
4852
|
ref: editorRef,
|
|
4766
4853
|
className: "link-editor",
|
|
4767
|
-
children: isEditMode ? /* @__PURE__ */
|
|
4854
|
+
children: isEditMode ? /* @__PURE__ */ jsxs63("div", {
|
|
4768
4855
|
children: [
|
|
4769
|
-
/* @__PURE__ */
|
|
4856
|
+
/* @__PURE__ */ jsx85("div", {
|
|
4770
4857
|
className: "border-0 border-b border-gray-100-800 border-solid px-3",
|
|
4771
|
-
children: /* @__PURE__ */
|
|
4858
|
+
children: /* @__PURE__ */ jsx85(InputWithLabel, {
|
|
4772
4859
|
label: tr("linkEditorLink"),
|
|
4773
4860
|
type: "text",
|
|
4774
4861
|
value: linkUrl,
|
|
4775
4862
|
onChange: (e) => setLinkUrl(e.target.value)
|
|
4776
4863
|
})
|
|
4777
4864
|
}),
|
|
4778
|
-
/* @__PURE__ */
|
|
4865
|
+
/* @__PURE__ */ jsx85("div", {
|
|
4779
4866
|
className: "border-0 border-b border-gray-100-800 border-solid px-3",
|
|
4780
|
-
children: /* @__PURE__ */
|
|
4867
|
+
children: /* @__PURE__ */ jsx85(InputWithLabel, {
|
|
4781
4868
|
label: tr("linkEditorRel"),
|
|
4782
4869
|
type: "text",
|
|
4783
4870
|
value: rel ?? "",
|
|
4784
4871
|
onChange: (e) => setRel(e.target.value)
|
|
4785
4872
|
})
|
|
4786
4873
|
}),
|
|
4787
|
-
/* @__PURE__ */
|
|
4874
|
+
/* @__PURE__ */ jsx85("div", {
|
|
4788
4875
|
className: "border-0 border-b border-gray-100-800 border-solid px-3",
|
|
4789
|
-
children: /* @__PURE__ */
|
|
4876
|
+
children: /* @__PURE__ */ jsx85(InputWithLabel, {
|
|
4790
4877
|
label: tr("linkEditorTarget"),
|
|
4791
4878
|
type: "text",
|
|
4792
4879
|
value: target ?? "",
|
|
4793
4880
|
onChange: (e) => setTarget(e.target.value)
|
|
4794
4881
|
})
|
|
4795
4882
|
}),
|
|
4796
|
-
/* @__PURE__ */
|
|
4883
|
+
/* @__PURE__ */ jsx85("div", {
|
|
4797
4884
|
className: "flex px-6 py-2 justify-end",
|
|
4798
|
-
children: /* @__PURE__ */
|
|
4885
|
+
children: /* @__PURE__ */ jsx85(Button, {
|
|
4799
4886
|
onClick: () => {
|
|
4800
4887
|
if (lastSelection !== null) {
|
|
4801
4888
|
if (linkUrl !== "") {
|
|
@@ -4812,28 +4899,28 @@ function FloatingLinkEditor({
|
|
|
4812
4899
|
})
|
|
4813
4900
|
})
|
|
4814
4901
|
]
|
|
4815
|
-
}) : /* @__PURE__ */
|
|
4902
|
+
}) : /* @__PURE__ */ jsxs63(Fragment4, {
|
|
4816
4903
|
children: [
|
|
4817
|
-
/* @__PURE__ */
|
|
4904
|
+
/* @__PURE__ */ jsxs63("div", {
|
|
4818
4905
|
className: "link-input !flex flex-nowrap justify-between items-center max-w-full ",
|
|
4819
4906
|
children: [
|
|
4820
|
-
/* @__PURE__ */
|
|
4907
|
+
/* @__PURE__ */ jsxs63("div", {
|
|
4821
4908
|
className: "grid",
|
|
4822
4909
|
children: [
|
|
4823
|
-
/* @__PURE__ */
|
|
4910
|
+
/* @__PURE__ */ jsx85("a", {
|
|
4824
4911
|
href: linkUrl,
|
|
4825
4912
|
target: "_blank",
|
|
4826
4913
|
rel: "noopener noreferrer",
|
|
4827
4914
|
children: linkUrl
|
|
4828
4915
|
}),
|
|
4829
|
-
rel || target ? /* @__PURE__ */
|
|
4916
|
+
rel || target ? /* @__PURE__ */ jsxs63("div", {
|
|
4830
4917
|
className: "flex mt-1 gap-1",
|
|
4831
4918
|
children: [
|
|
4832
|
-
rel && /* @__PURE__ */
|
|
4919
|
+
rel && /* @__PURE__ */ jsx85("div", {
|
|
4833
4920
|
className: "text-[10px] text-gray-600-300 px-1 bg-purple-50-900 rounded-md py-0.5",
|
|
4834
4921
|
children: rel
|
|
4835
4922
|
}),
|
|
4836
|
-
target && /* @__PURE__ */
|
|
4923
|
+
target && /* @__PURE__ */ jsx85("div", {
|
|
4837
4924
|
className: "text-[10px] text-gray-600-300 px-1 bg-purple-50-900 rounded-md py-0.5",
|
|
4838
4925
|
children: target
|
|
4839
4926
|
})
|
|
@@ -4841,20 +4928,20 @@ function FloatingLinkEditor({
|
|
|
4841
4928
|
}) : null
|
|
4842
4929
|
]
|
|
4843
4930
|
}),
|
|
4844
|
-
/* @__PURE__ */
|
|
4845
|
-
children: /* @__PURE__ */
|
|
4931
|
+
/* @__PURE__ */ jsx85("div", {
|
|
4932
|
+
children: /* @__PURE__ */ jsx85(IconButton, {
|
|
4846
4933
|
size: "sm",
|
|
4847
4934
|
tabIndex: 0,
|
|
4848
4935
|
onMouseDown: (event) => event.preventDefault(),
|
|
4849
4936
|
onClick: () => setEditMode(true),
|
|
4850
4937
|
"aria-label": tr("linkEditorEdit"),
|
|
4851
|
-
children: /* @__PURE__ */
|
|
4938
|
+
children: /* @__PURE__ */ jsx85(Icon.Edit, {})
|
|
4852
4939
|
})
|
|
4853
4940
|
})
|
|
4854
4941
|
]
|
|
4855
4942
|
}),
|
|
4856
|
-
/* @__PURE__ */
|
|
4857
|
-
children: /* @__PURE__ */
|
|
4943
|
+
/* @__PURE__ */ jsx85("div", {
|
|
4944
|
+
children: /* @__PURE__ */ jsx85(LinkPreview, {
|
|
4858
4945
|
url: linkUrl
|
|
4859
4946
|
})
|
|
4860
4947
|
})
|
|
@@ -4890,7 +4977,7 @@ function useFloatingLinkEditorToolbar(editor, anchorElem) {
|
|
|
4890
4977
|
);
|
|
4891
4978
|
}, [editor, updateToolbar]);
|
|
4892
4979
|
return isLink ? createPortal2(
|
|
4893
|
-
/* @__PURE__ */
|
|
4980
|
+
/* @__PURE__ */ jsx85(FloatingLinkEditor, {
|
|
4894
4981
|
editor: activeEditor,
|
|
4895
4982
|
isLink,
|
|
4896
4983
|
anchorElem,
|
|
@@ -4956,7 +5043,7 @@ function getDOMRangeRect(nativeSelection, rootElement) {
|
|
|
4956
5043
|
}
|
|
4957
5044
|
|
|
4958
5045
|
// src/rich-text-editor/plugins/FloatingTextFormatToolbarPlugin/index.tsx
|
|
4959
|
-
import { Fragment as Fragment5, jsx as
|
|
5046
|
+
import { Fragment as Fragment5, jsx as jsx86, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
4960
5047
|
function TextFormatFloatingToolbar({
|
|
4961
5048
|
editor,
|
|
4962
5049
|
anchorElem,
|
|
@@ -5029,92 +5116,92 @@ function TextFormatFloatingToolbar({
|
|
|
5029
5116
|
)
|
|
5030
5117
|
);
|
|
5031
5118
|
}, [editor, updateTextFormatFloatingToolbar]);
|
|
5032
|
-
return /* @__PURE__ */
|
|
5119
|
+
return /* @__PURE__ */ jsx86("div", {
|
|
5033
5120
|
ref: popupCharStylesEditorRef,
|
|
5034
5121
|
className: "c-floating-text-format-popup gap-0.5",
|
|
5035
|
-
children: editor.isEditable() && /* @__PURE__ */
|
|
5122
|
+
children: editor.isEditable() && /* @__PURE__ */ jsxs64(Fragment5, {
|
|
5036
5123
|
children: [
|
|
5037
|
-
/* @__PURE__ */
|
|
5124
|
+
/* @__PURE__ */ jsx86(IconButton, {
|
|
5038
5125
|
onClick: () => {
|
|
5039
5126
|
editor.dispatchCommand(FORMAT_TEXT_COMMAND, "bold");
|
|
5040
5127
|
},
|
|
5041
5128
|
style: { padding: 0, overflow: "hidden" },
|
|
5042
5129
|
title: tr(IS_APPLE ? "actionFormatAsStrongTitleApple" : "actionFormatAsStrongTitle"),
|
|
5043
5130
|
"aria-label": tr("actionFormatAsStrongLabel"),
|
|
5044
|
-
children: /* @__PURE__ */
|
|
5131
|
+
children: /* @__PURE__ */ jsx86("i", {
|
|
5045
5132
|
className: `format bold w-full h-full bg-[length:18px_18px] bg-no-repeat bg-center ${isBold ? "bg-purple-50-900 opacity-100" : "opacity-60"}`
|
|
5046
5133
|
})
|
|
5047
5134
|
}),
|
|
5048
|
-
/* @__PURE__ */
|
|
5135
|
+
/* @__PURE__ */ jsx86(IconButton, {
|
|
5049
5136
|
style: { padding: 0, overflow: "hidden" },
|
|
5050
5137
|
onClick: () => {
|
|
5051
5138
|
editor.dispatchCommand(FORMAT_TEXT_COMMAND, "italic");
|
|
5052
5139
|
},
|
|
5053
5140
|
title: tr("actionFormatAsEmphasizedTitle"),
|
|
5054
5141
|
"aria-label": tr("actionFormatAsEmphasizedLabel"),
|
|
5055
|
-
children: /* @__PURE__ */
|
|
5142
|
+
children: /* @__PURE__ */ jsx86("i", {
|
|
5056
5143
|
className: `format italic w-full h-full bg-[length:18px_18px] bg-no-repeat bg-center ${isItalic ? "bg-purple-50-900 opacity-100" : "opacity-60"}`
|
|
5057
5144
|
})
|
|
5058
5145
|
}),
|
|
5059
|
-
/* @__PURE__ */
|
|
5146
|
+
/* @__PURE__ */ jsx86(IconButton, {
|
|
5060
5147
|
style: { padding: 0, overflow: "hidden" },
|
|
5061
5148
|
onClick: () => {
|
|
5062
5149
|
editor.dispatchCommand(FORMAT_TEXT_COMMAND, "underline");
|
|
5063
5150
|
},
|
|
5064
5151
|
title: tr("actionFormatAsUnderlinedTitle"),
|
|
5065
5152
|
"aria-label": tr("actionFormatAsUnderlinedLabel"),
|
|
5066
|
-
children: /* @__PURE__ */
|
|
5153
|
+
children: /* @__PURE__ */ jsx86("i", {
|
|
5067
5154
|
className: `format underline w-full h-full bg-[length:18px_18px] bg-no-repeat bg-center ${isUnderline ? "bg-purple-50-900 opacity-100" : "opacity-60"}`
|
|
5068
5155
|
})
|
|
5069
5156
|
}),
|
|
5070
|
-
/* @__PURE__ */
|
|
5157
|
+
/* @__PURE__ */ jsx86(IconButton, {
|
|
5071
5158
|
style: { padding: 0, overflow: "hidden" },
|
|
5072
5159
|
onClick: () => {
|
|
5073
5160
|
editor.dispatchCommand(FORMAT_TEXT_COMMAND, "strikethrough");
|
|
5074
5161
|
},
|
|
5075
5162
|
title: tr("actionFormatWithStrikethroughTitle"),
|
|
5076
5163
|
"aria-label": tr("actionFormatWithStrikethroughLabel"),
|
|
5077
|
-
children: /* @__PURE__ */
|
|
5164
|
+
children: /* @__PURE__ */ jsx86("i", {
|
|
5078
5165
|
className: `format strikethrough w-full h-full bg-[length:18px_18px] bg-no-repeat bg-center ${isStrikethrough ? "bg-purple-50-900 opacity-100" : "opacity-60"}`
|
|
5079
5166
|
})
|
|
5080
5167
|
}),
|
|
5081
|
-
/* @__PURE__ */
|
|
5168
|
+
/* @__PURE__ */ jsx86(IconButton, {
|
|
5082
5169
|
style: { padding: 0, overflow: "hidden" },
|
|
5083
5170
|
onClick: () => {
|
|
5084
5171
|
editor.dispatchCommand(FORMAT_TEXT_COMMAND, "subscript");
|
|
5085
5172
|
},
|
|
5086
5173
|
title: tr("actionFormatWithSubscriptTitle"),
|
|
5087
5174
|
"aria-label": tr("actionFormatWithSubscriptLabel"),
|
|
5088
|
-
children: /* @__PURE__ */
|
|
5175
|
+
children: /* @__PURE__ */ jsx86("i", {
|
|
5089
5176
|
className: `format subscript w-full h-full bg-[length:18px_18px] bg-no-repeat bg-center ${isSubscript ? "bg-purple-50-900 opacity-100" : "opacity-60"}`
|
|
5090
5177
|
})
|
|
5091
5178
|
}),
|
|
5092
|
-
/* @__PURE__ */
|
|
5179
|
+
/* @__PURE__ */ jsx86(IconButton, {
|
|
5093
5180
|
style: { padding: 0, overflow: "hidden" },
|
|
5094
5181
|
onClick: () => {
|
|
5095
5182
|
editor.dispatchCommand(FORMAT_TEXT_COMMAND, "superscript");
|
|
5096
5183
|
},
|
|
5097
5184
|
title: tr("actionFormatWithSuperscriptTitle"),
|
|
5098
5185
|
"aria-label": tr("actionFormatWithSuperscriptLabel"),
|
|
5099
|
-
children: /* @__PURE__ */
|
|
5186
|
+
children: /* @__PURE__ */ jsx86("i", {
|
|
5100
5187
|
className: `format superscript w-full h-full bg-[length:18px_18px] bg-no-repeat bg-center ${isSuperscript ? "bg-purple-50-900 opacity-100" : "opacity-60"}`
|
|
5101
5188
|
})
|
|
5102
5189
|
}),
|
|
5103
|
-
/* @__PURE__ */
|
|
5190
|
+
/* @__PURE__ */ jsx86(IconButton, {
|
|
5104
5191
|
style: { padding: 0, overflow: "hidden" },
|
|
5105
5192
|
onClick: () => {
|
|
5106
5193
|
editor.dispatchCommand(FORMAT_TEXT_COMMAND, "code");
|
|
5107
5194
|
},
|
|
5108
5195
|
"aria-label": tr("actionInsertCodeBlock"),
|
|
5109
|
-
children: /* @__PURE__ */
|
|
5196
|
+
children: /* @__PURE__ */ jsx86("i", {
|
|
5110
5197
|
className: `format code w-full h-full bg-[length:18px_18px] bg-no-repeat bg-center ${isCode ? "bg-purple-50-900 opacity-100" : "opacity-60"}`
|
|
5111
5198
|
})
|
|
5112
5199
|
}),
|
|
5113
|
-
/* @__PURE__ */
|
|
5200
|
+
/* @__PURE__ */ jsx86(IconButton, {
|
|
5114
5201
|
style: { padding: 0, overflow: "hidden" },
|
|
5115
5202
|
onClick: insertLink,
|
|
5116
5203
|
"aria-label": tr("actionInsertlink"),
|
|
5117
|
-
children: /* @__PURE__ */
|
|
5204
|
+
children: /* @__PURE__ */ jsx86("i", {
|
|
5118
5205
|
className: `format link w-full h-full bg-[length:18px_18px] bg-no-repeat bg-center ${isLink ? "bg-purple-50-900 opacity-100" : "opacity-60"}`
|
|
5119
5206
|
})
|
|
5120
5207
|
})
|
|
@@ -5190,7 +5277,7 @@ function useFloatingTextFormatToolbar(editor, anchorElem) {
|
|
|
5190
5277
|
return null;
|
|
5191
5278
|
}
|
|
5192
5279
|
return createPortal3(
|
|
5193
|
-
/* @__PURE__ */
|
|
5280
|
+
/* @__PURE__ */ jsx86(TextFormatFloatingToolbar, {
|
|
5194
5281
|
editor,
|
|
5195
5282
|
anchorElem,
|
|
5196
5283
|
isLink,
|
|
@@ -5215,9 +5302,9 @@ function FloatingTextFormatToolbarPlugin({
|
|
|
5215
5302
|
// src/rich-text-editor/plugins/LinkPlugin/index.tsx
|
|
5216
5303
|
import { LinkPlugin as LexicalLinkPlugin } from "@lexical/react/LexicalLinkPlugin";
|
|
5217
5304
|
import "react";
|
|
5218
|
-
import { jsx as
|
|
5305
|
+
import { jsx as jsx87 } from "react/jsx-runtime";
|
|
5219
5306
|
function LinkPlugin() {
|
|
5220
|
-
return /* @__PURE__ */
|
|
5307
|
+
return /* @__PURE__ */ jsx87(LexicalLinkPlugin, {
|
|
5221
5308
|
validateUrl
|
|
5222
5309
|
});
|
|
5223
5310
|
}
|
|
@@ -5417,7 +5504,7 @@ import {
|
|
|
5417
5504
|
TableCellHeaderStates,
|
|
5418
5505
|
TableCellNode as TableCellNode2
|
|
5419
5506
|
} from "@lexical/table";
|
|
5420
|
-
import { Fragment as Fragment6, jsx as
|
|
5507
|
+
import { Fragment as Fragment6, jsx as jsx88, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
5421
5508
|
function TableActionMenu({ tableCellNode: _tableCellNode, tableStats }) {
|
|
5422
5509
|
const [editor] = useLexicalComposerContext9();
|
|
5423
5510
|
const [tableCellNode, updateTableCellNode] = useState7(_tableCellNode);
|
|
@@ -5572,46 +5659,46 @@ function TableActionMenu({ tableCellNode: _tableCellNode, tableStats }) {
|
|
|
5572
5659
|
clearTableSelection();
|
|
5573
5660
|
});
|
|
5574
5661
|
}, [editor, tableCellNode, clearTableSelection]);
|
|
5575
|
-
return /* @__PURE__ */
|
|
5662
|
+
return /* @__PURE__ */ jsxs65(Fragment6, {
|
|
5576
5663
|
children: [
|
|
5577
|
-
/* @__PURE__ */
|
|
5664
|
+
/* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5578
5665
|
onSelect: () => insertTableRowAtSelection(false),
|
|
5579
5666
|
children: tr("actionTableInsertRowsAbove", selectionCounts.rows)
|
|
5580
5667
|
}),
|
|
5581
|
-
/* @__PURE__ */
|
|
5668
|
+
/* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5582
5669
|
onSelect: () => insertTableRowAtSelection(true),
|
|
5583
5670
|
children: tr("actionTableInsertRowsBelow", selectionCounts.rows)
|
|
5584
5671
|
}),
|
|
5585
|
-
/* @__PURE__ */
|
|
5672
|
+
/* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5586
5673
|
onSelect: () => insertTableColumnAtSelection(false),
|
|
5587
5674
|
children: tr("actionTableInsertColumnsBefore", selectionCounts.columns)
|
|
5588
5675
|
}),
|
|
5589
|
-
/* @__PURE__ */
|
|
5676
|
+
/* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5590
5677
|
onSelect: () => insertTableColumnAtSelection(true),
|
|
5591
5678
|
children: tr("actionTableInsertColumnsAfter", selectionCounts.columns)
|
|
5592
5679
|
}),
|
|
5593
|
-
/* @__PURE__ */
|
|
5680
|
+
/* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5594
5681
|
onSelect: () => toggleTableRowIsHeader(),
|
|
5595
5682
|
children: tr(
|
|
5596
5683
|
(tableCellNode.__headerState & TableCellHeaderStates.ROW) === TableCellHeaderStates.ROW ? "actionTableRemoveRowHeader" : "actionTableAddRowHeader"
|
|
5597
5684
|
)
|
|
5598
5685
|
}),
|
|
5599
|
-
/* @__PURE__ */
|
|
5686
|
+
/* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5600
5687
|
onSelect: () => toggleTableColumnIsHeader(),
|
|
5601
5688
|
children: tr(
|
|
5602
5689
|
(tableCellNode.__headerState & TableCellHeaderStates.COLUMN) === TableCellHeaderStates.COLUMN ? "actionTableRemoveColumnHeader" : "actionTableAddColumnHeader"
|
|
5603
5690
|
)
|
|
5604
5691
|
}),
|
|
5605
|
-
/* @__PURE__ */
|
|
5606
|
-
tableStats.columns > 1 && /* @__PURE__ */
|
|
5692
|
+
/* @__PURE__ */ jsx88(DropdownMenu.Separator, {}),
|
|
5693
|
+
tableStats.columns > 1 && /* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5607
5694
|
onSelect: () => deleteTableColumnAtSelection(),
|
|
5608
5695
|
children: tr("actionTableDeleteColumn")
|
|
5609
5696
|
}),
|
|
5610
|
-
tableStats.rows > 1 && /* @__PURE__ */
|
|
5697
|
+
tableStats.rows > 1 && /* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5611
5698
|
onSelect: () => deleteTableRowAtSelection(),
|
|
5612
5699
|
children: tr("actionTableDeleteRow")
|
|
5613
5700
|
}),
|
|
5614
|
-
/* @__PURE__ */
|
|
5701
|
+
/* @__PURE__ */ jsx88(DropdownMenu.Item, {
|
|
5615
5702
|
onSelect: () => deleteTableAtSelection(),
|
|
5616
5703
|
children: tr("actionTableDeleteTable")
|
|
5617
5704
|
})
|
|
@@ -5693,20 +5780,20 @@ function TableCellActionMenuContainer({ anchorElem }) {
|
|
|
5693
5780
|
}
|
|
5694
5781
|
}
|
|
5695
5782
|
}, [menuButtonRef, tableCellNode, editor, anchorElem]);
|
|
5696
|
-
return /* @__PURE__ */
|
|
5783
|
+
return /* @__PURE__ */ jsx88("div", {
|
|
5697
5784
|
className: "table-cell-action-button-container",
|
|
5698
5785
|
ref: menuButtonRef,
|
|
5699
|
-
children: tableCellNode != null && /* @__PURE__ */
|
|
5786
|
+
children: tableCellNode != null && /* @__PURE__ */ jsx88(DropdownMenu.Root, {
|
|
5700
5787
|
onOpenChange: (isOpen) => setIsMenuOpen(isOpen),
|
|
5701
|
-
content: /* @__PURE__ */
|
|
5788
|
+
content: /* @__PURE__ */ jsx88(TableActionMenu, {
|
|
5702
5789
|
tableCellNode,
|
|
5703
5790
|
tableStats
|
|
5704
5791
|
}),
|
|
5705
|
-
children: /* @__PURE__ */
|
|
5792
|
+
children: /* @__PURE__ */ jsx88(IconButton, {
|
|
5706
5793
|
size: "xs",
|
|
5707
5794
|
className: "table-cell-action-button",
|
|
5708
5795
|
"aria-label": tr("actionTableOpenOptions"),
|
|
5709
|
-
children: /* @__PURE__ */
|
|
5796
|
+
children: /* @__PURE__ */ jsx88(Icon.Arrow, {})
|
|
5710
5797
|
})
|
|
5711
5798
|
})
|
|
5712
5799
|
});
|
|
@@ -5715,7 +5802,7 @@ function TableActionMenuPlugin({
|
|
|
5715
5802
|
anchorElem = document.body
|
|
5716
5803
|
}) {
|
|
5717
5804
|
const isEditable = useLexicalEditable();
|
|
5718
|
-
return createPortal4(isEditable ? /* @__PURE__ */
|
|
5805
|
+
return createPortal4(isEditable ? /* @__PURE__ */ jsx88(TableCellActionMenuContainer, {
|
|
5719
5806
|
anchorElem
|
|
5720
5807
|
}) : null, anchorElem);
|
|
5721
5808
|
}
|
|
@@ -5770,7 +5857,7 @@ import {
|
|
|
5770
5857
|
import { useRef as useRef5 } from "react";
|
|
5771
5858
|
import { CLEAR_EDITOR_COMMAND } from "lexical";
|
|
5772
5859
|
import { useLexicalComposerContext as useLexicalComposerContext10 } from "@lexical/react/LexicalComposerContext";
|
|
5773
|
-
import { jsx as
|
|
5860
|
+
import { jsx as jsx89, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
5774
5861
|
async function copyJson(editor) {
|
|
5775
5862
|
const json = lexicalToCrystallizeRichText({ editor, editorState: editor.getEditorState() });
|
|
5776
5863
|
try {
|
|
@@ -5786,24 +5873,24 @@ function ActionsPlugin({
|
|
|
5786
5873
|
const [editor] = useLexicalComposerContext10();
|
|
5787
5874
|
const tr = useTr();
|
|
5788
5875
|
const actionMenuAnchorRef = useRef5(null);
|
|
5789
|
-
return /* @__PURE__ */
|
|
5876
|
+
return /* @__PURE__ */ jsxs66("div", {
|
|
5790
5877
|
ref: actionMenuAnchorRef,
|
|
5791
5878
|
className: "z-50 flex items-center ",
|
|
5792
5879
|
children: [
|
|
5793
|
-
/* @__PURE__ */
|
|
5794
|
-
/* @__PURE__ */
|
|
5880
|
+
/* @__PURE__ */ jsx89("div", {}),
|
|
5881
|
+
/* @__PURE__ */ jsxs66(ActionMenu, {
|
|
5795
5882
|
container: actionMenuAnchorRef.current,
|
|
5796
5883
|
children: [
|
|
5797
|
-
!prepend ? null : prepend.map((actionItem) => /* @__PURE__ */
|
|
5884
|
+
!prepend ? null : prepend.map((actionItem) => /* @__PURE__ */ jsx89(ActionMenu.Item, {
|
|
5798
5885
|
onSelect: actionItem.action,
|
|
5799
5886
|
className: actionItem.type === "danger" ? "danger" : "",
|
|
5800
5887
|
children: actionItem.title
|
|
5801
5888
|
}, actionItem.title)),
|
|
5802
|
-
/* @__PURE__ */
|
|
5889
|
+
/* @__PURE__ */ jsx89(ActionMenu.Item, {
|
|
5803
5890
|
onSelect: () => copyJson(editor),
|
|
5804
5891
|
children: tr("actionCopyJSON")
|
|
5805
5892
|
}),
|
|
5806
|
-
/* @__PURE__ */
|
|
5893
|
+
/* @__PURE__ */ jsx89(ActionMenu.Item, {
|
|
5807
5894
|
className: "danger",
|
|
5808
5895
|
onSelect: () => {
|
|
5809
5896
|
editor.dispatchCommand(CLEAR_EDITOR_COMMAND, void 0);
|
|
@@ -5811,7 +5898,7 @@ function ActionsPlugin({
|
|
|
5811
5898
|
},
|
|
5812
5899
|
children: tr("actionClear")
|
|
5813
5900
|
}),
|
|
5814
|
-
!append ? null : append.map((actionItem) => /* @__PURE__ */
|
|
5901
|
+
!append ? null : append.map((actionItem) => /* @__PURE__ */ jsx89(ActionMenu.Item, {
|
|
5815
5902
|
onSelect: actionItem.action,
|
|
5816
5903
|
className: actionItem.type === "danger" ? "danger" : "",
|
|
5817
5904
|
children: actionItem.title
|
|
@@ -5825,7 +5912,7 @@ function ActionsPlugin({
|
|
|
5825
5912
|
// src/rich-text-editor/plugins/ToolbarPlugin/insert-table.tsx
|
|
5826
5913
|
import { useState as useState8 } from "react";
|
|
5827
5914
|
import { INSERT_TABLE_COMMAND } from "@lexical/table";
|
|
5828
|
-
import { Fragment as Fragment7, jsx as
|
|
5915
|
+
import { Fragment as Fragment7, jsx as jsx90, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
5829
5916
|
function InsertTableDialog({ activeEditor }) {
|
|
5830
5917
|
const [rows, setRows] = useState8("5");
|
|
5831
5918
|
const [columns, setColumns] = useState8("5");
|
|
@@ -5843,12 +5930,12 @@ function InsertTableDialog({ activeEditor }) {
|
|
|
5843
5930
|
}
|
|
5844
5931
|
});
|
|
5845
5932
|
};
|
|
5846
|
-
return /* @__PURE__ */
|
|
5933
|
+
return /* @__PURE__ */ jsxs67(Fragment7, {
|
|
5847
5934
|
children: [
|
|
5848
|
-
/* @__PURE__ */
|
|
5935
|
+
/* @__PURE__ */ jsxs67("div", {
|
|
5849
5936
|
className: "grid grid-cols-[1fr_1px_1fr] border border-gray-100-800 border-solid shadow-sm rounded-md ",
|
|
5850
5937
|
children: [
|
|
5851
|
-
/* @__PURE__ */
|
|
5938
|
+
/* @__PURE__ */ jsx90(InputWithLabel, {
|
|
5852
5939
|
label: tr("insertTableRows"),
|
|
5853
5940
|
value: rows,
|
|
5854
5941
|
placeholder: "0",
|
|
@@ -5856,10 +5943,10 @@ function InsertTableDialog({ activeEditor }) {
|
|
|
5856
5943
|
inputMode: "numeric",
|
|
5857
5944
|
onChange: (e) => setRows(e.target.value)
|
|
5858
5945
|
}),
|
|
5859
|
-
/* @__PURE__ */
|
|
5946
|
+
/* @__PURE__ */ jsx90("span", {
|
|
5860
5947
|
className: "h-full bg-gray-100-800"
|
|
5861
5948
|
}),
|
|
5862
|
-
/* @__PURE__ */
|
|
5949
|
+
/* @__PURE__ */ jsx90(InputWithLabel, {
|
|
5863
5950
|
type: "text",
|
|
5864
5951
|
label: tr("insertTableColumns"),
|
|
5865
5952
|
placeholder: "0",
|
|
@@ -5869,9 +5956,9 @@ function InsertTableDialog({ activeEditor }) {
|
|
|
5869
5956
|
})
|
|
5870
5957
|
]
|
|
5871
5958
|
}),
|
|
5872
|
-
/* @__PURE__ */
|
|
5959
|
+
/* @__PURE__ */ jsx90("div", {
|
|
5873
5960
|
className: "flex justify-end mt-3",
|
|
5874
|
-
children: /* @__PURE__ */
|
|
5961
|
+
children: /* @__PURE__ */ jsx90(Button, {
|
|
5875
5962
|
as: Dialog.Close,
|
|
5876
5963
|
size: "sm",
|
|
5877
5964
|
intent: "action",
|
|
@@ -5885,7 +5972,7 @@ function InsertTableDialog({ activeEditor }) {
|
|
|
5885
5972
|
}
|
|
5886
5973
|
|
|
5887
5974
|
// src/rich-text-editor/plugins/ToolbarPlugin/index.tsx
|
|
5888
|
-
import { Fragment as Fragment8, jsx as
|
|
5975
|
+
import { Fragment as Fragment8, jsx as jsx91, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
5889
5976
|
var headingTypeToBlockName = {
|
|
5890
5977
|
h1: "Heading 1",
|
|
5891
5978
|
h2: "Heading 2",
|
|
@@ -5989,83 +6076,83 @@ function BlockFormatDropDown({
|
|
|
5989
6076
|
});
|
|
5990
6077
|
}
|
|
5991
6078
|
};
|
|
5992
|
-
return /* @__PURE__ */
|
|
6079
|
+
return /* @__PURE__ */ jsx91(DropdownMenu.Root, {
|
|
5993
6080
|
disabled,
|
|
5994
6081
|
style: { zIndex: 1 },
|
|
5995
|
-
content: /* @__PURE__ */
|
|
6082
|
+
content: /* @__PURE__ */ jsxs68(Fragment8, {
|
|
5996
6083
|
children: [
|
|
5997
|
-
/* @__PURE__ */
|
|
6084
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
5998
6085
|
onClick: formatParagraph,
|
|
5999
6086
|
children: [
|
|
6000
|
-
/* @__PURE__ */
|
|
6087
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6001
6088
|
className: `icon paragraph border w-6 h-6 rounded-md bg-no-repeat bg-center bg-[length:18px_18px] ${blockType === "paragraph" ? "opacity-100 bg-purple-50-900" : "opacity-60"}`
|
|
6002
6089
|
}),
|
|
6003
|
-
/* @__PURE__ */
|
|
6090
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6004
6091
|
className: "icon paragraph"
|
|
6005
6092
|
}),
|
|
6006
|
-
/* @__PURE__ */
|
|
6093
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6007
6094
|
className: `${blockType === "paragraph" ? "font-bold" : "font-normal"} text-sm px-3 min-w-[150px]`,
|
|
6008
6095
|
children: "Normal"
|
|
6009
6096
|
})
|
|
6010
6097
|
]
|
|
6011
6098
|
}),
|
|
6012
|
-
headings.map((headingSize) => /* @__PURE__ */
|
|
6099
|
+
headings.map((headingSize) => /* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6013
6100
|
onClick: () => formatHeading(headingSize),
|
|
6014
6101
|
children: [
|
|
6015
|
-
/* @__PURE__ */
|
|
6102
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6016
6103
|
className: `icon ${headingSize} border w-6 h-6 rounded-md bg-no-repeat bg-center bg-[length:18px_18px] ${blockType === headingSize ? "opacity-100 bg-purple-50-900" : "opacity-60"}`
|
|
6017
6104
|
}),
|
|
6018
|
-
/* @__PURE__ */
|
|
6105
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6019
6106
|
className: `${blockType === headingSize ? "font-bold" : "font-normal"} text-sm px-3 min-w-[150px]`,
|
|
6020
6107
|
children: headingTypeToBlockName[headingSize]
|
|
6021
6108
|
})
|
|
6022
6109
|
]
|
|
6023
6110
|
}, headingSize)),
|
|
6024
|
-
/* @__PURE__ */
|
|
6111
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6025
6112
|
onClick: formatBulletList,
|
|
6026
6113
|
children: [
|
|
6027
|
-
/* @__PURE__ */
|
|
6114
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6028
6115
|
className: `icon bullet-list border w-6 h-6 rounded-md bg-no-repeat bg-center bg-[length:18px_18px] ${blockType === "bullet" ? "opacity-100 bg-purple-50-900" : "opacity-60"}`
|
|
6029
6116
|
}),
|
|
6030
|
-
/* @__PURE__ */
|
|
6117
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6031
6118
|
className: `${blockType === "bullet" ? "font-bold" : "font-normal"} text-sm px-3 min-w-[150px]`,
|
|
6032
6119
|
children: "Bullet List"
|
|
6033
6120
|
})
|
|
6034
6121
|
]
|
|
6035
6122
|
}),
|
|
6036
|
-
/* @__PURE__ */
|
|
6123
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6037
6124
|
onClick: formatNumberedList,
|
|
6038
6125
|
children: [
|
|
6039
|
-
/* @__PURE__ */
|
|
6126
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6040
6127
|
className: `icon numbered-list border w-6 h-6 rounded-md bg-no-repeat bg-center bg-[length:18px_18px] ${blockType === "number" ? "opacity-100 bg-purple-50-900" : "opacity-60"}`
|
|
6041
6128
|
}),
|
|
6042
|
-
/* @__PURE__ */
|
|
6129
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6043
6130
|
className: `${blockType === "number" ? "font-bold" : "font-normal"} text-sm px-3 min-w-[150px]`,
|
|
6044
6131
|
children: "Numbered List"
|
|
6045
6132
|
})
|
|
6046
6133
|
]
|
|
6047
6134
|
}),
|
|
6048
|
-
/* @__PURE__ */
|
|
6135
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6049
6136
|
onClick: formatQuote,
|
|
6050
6137
|
"data-testid": "toggle-block-format-quote",
|
|
6051
6138
|
children: [
|
|
6052
|
-
/* @__PURE__ */
|
|
6139
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6053
6140
|
className: `icon quote border w-6 h-6 rounded-md bg-no-repeat bg-center bg-[length:18px_18px] ${blockType === "quote" ? "opacity-100 bg-purple-50-900" : "opacity-60"}`
|
|
6054
6141
|
}),
|
|
6055
|
-
/* @__PURE__ */
|
|
6142
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6056
6143
|
className: `${blockType === "quote" ? "font-bold" : "font-normal"} text-sm px-3 min-w-[150px]`,
|
|
6057
6144
|
children: "Quote"
|
|
6058
6145
|
})
|
|
6059
6146
|
]
|
|
6060
6147
|
}),
|
|
6061
|
-
/* @__PURE__ */
|
|
6148
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6062
6149
|
onClick: formatCode,
|
|
6063
6150
|
"data-testid": "toggle-block-format-code",
|
|
6064
6151
|
children: [
|
|
6065
|
-
/* @__PURE__ */
|
|
6152
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6066
6153
|
className: `icon code border w-6 h-6 rounded-md bg-no-repeat bg-center bg-[length:18px_18px] ${blockType === "code" ? "opacity-100 bg-purple-50-900" : "opacity-60"}`
|
|
6067
6154
|
}),
|
|
6068
|
-
/* @__PURE__ */
|
|
6155
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6069
6156
|
className: `${blockType === "code" ? "font-bold" : "font-normal"} text-sm px-3 min-w-[150px]`,
|
|
6070
6157
|
children: "Code block"
|
|
6071
6158
|
})
|
|
@@ -6073,21 +6160,21 @@ function BlockFormatDropDown({
|
|
|
6073
6160
|
})
|
|
6074
6161
|
]
|
|
6075
6162
|
}),
|
|
6076
|
-
children: /* @__PURE__ */
|
|
6163
|
+
children: /* @__PURE__ */ jsxs68(Button, {
|
|
6077
6164
|
style: { backgroundColor: "transparent", padding: "0 8px" },
|
|
6078
6165
|
"aria-label": "Formatting options for text style",
|
|
6079
6166
|
"data-testid": "toggle-block-format",
|
|
6080
6167
|
children: [
|
|
6081
|
-
/* @__PURE__ */
|
|
6168
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6082
6169
|
className: `icon ${blockType} border bg-no-repeat bg-center bg-[length:18px_18px] w-6 h-6`
|
|
6083
6170
|
}),
|
|
6084
|
-
/* @__PURE__ */
|
|
6171
|
+
/* @__PURE__ */ jsx91(Icon.Arrow, {})
|
|
6085
6172
|
]
|
|
6086
6173
|
})
|
|
6087
6174
|
});
|
|
6088
6175
|
}
|
|
6089
6176
|
function Divider() {
|
|
6090
|
-
return /* @__PURE__ */
|
|
6177
|
+
return /* @__PURE__ */ jsx91("div", {
|
|
6091
6178
|
className: "divider"
|
|
6092
6179
|
});
|
|
6093
6180
|
}
|
|
@@ -6236,13 +6323,13 @@ function ToolbarPlugin({
|
|
|
6236
6323
|
},
|
|
6237
6324
|
[activeEditor, selectedElementKey]
|
|
6238
6325
|
);
|
|
6239
|
-
return /* @__PURE__ */
|
|
6326
|
+
return /* @__PURE__ */ jsxs68("div", {
|
|
6240
6327
|
className: "toolbar",
|
|
6241
6328
|
children: [
|
|
6242
|
-
/* @__PURE__ */
|
|
6329
|
+
/* @__PURE__ */ jsxs68("div", {
|
|
6243
6330
|
className: "flex",
|
|
6244
6331
|
children: [
|
|
6245
|
-
/* @__PURE__ */
|
|
6332
|
+
/* @__PURE__ */ jsx91(IconButton, {
|
|
6246
6333
|
disabled: !canUndo || !isEditable,
|
|
6247
6334
|
onClick: () => {
|
|
6248
6335
|
activeEditor.dispatchCommand(UNDO_COMMAND, void 0);
|
|
@@ -6250,12 +6337,12 @@ function ToolbarPlugin({
|
|
|
6250
6337
|
type: "button",
|
|
6251
6338
|
title: tr(IS_APPLE ? "actionUndoTitleApple" : "actionUndoTitle"),
|
|
6252
6339
|
"aria-label": tr("actionUndoLabel"),
|
|
6253
|
-
children: /* @__PURE__ */
|
|
6340
|
+
children: /* @__PURE__ */ jsx91("i", {
|
|
6254
6341
|
className: `format icon undo border w-4 h-6 bg-no-repeat bg-center bg-[length:17px_17px] ${canUndo ? "opacity-100" : "opacity-30"}
|
|
6255
6342
|
`
|
|
6256
6343
|
})
|
|
6257
6344
|
}),
|
|
6258
|
-
/* @__PURE__ */
|
|
6345
|
+
/* @__PURE__ */ jsx91(IconButton, {
|
|
6259
6346
|
disabled: !canRedo || !isEditable,
|
|
6260
6347
|
onClick: () => {
|
|
6261
6348
|
activeEditor.dispatchCommand(REDO_COMMAND, void 0);
|
|
@@ -6263,51 +6350,51 @@ function ToolbarPlugin({
|
|
|
6263
6350
|
type: "button",
|
|
6264
6351
|
title: tr(IS_APPLE ? "actionRedoTitleApple" : "actionRedoTitle"),
|
|
6265
6352
|
"aria-label": tr("actionRedoLabel"),
|
|
6266
|
-
children: /* @__PURE__ */
|
|
6353
|
+
children: /* @__PURE__ */ jsx91("i", {
|
|
6267
6354
|
className: `format icon redo border w-4 h-6 bg-no-repeat bg-center bg-[length:17px_17px] ${canRedo ? "opacity-100" : "opacity-30"}`
|
|
6268
6355
|
})
|
|
6269
6356
|
}),
|
|
6270
|
-
/* @__PURE__ */
|
|
6271
|
-
blockType in blockTypeToBlockName && activeEditor === editor && /* @__PURE__ */
|
|
6357
|
+
/* @__PURE__ */ jsx91(Divider, {}),
|
|
6358
|
+
blockType in blockTypeToBlockName && activeEditor === editor && /* @__PURE__ */ jsxs68(Fragment8, {
|
|
6272
6359
|
children: [
|
|
6273
|
-
/* @__PURE__ */
|
|
6360
|
+
/* @__PURE__ */ jsx91(BlockFormatDropDown, {
|
|
6274
6361
|
disabled: !isEditable,
|
|
6275
6362
|
blockType,
|
|
6276
6363
|
editor
|
|
6277
6364
|
}),
|
|
6278
|
-
/* @__PURE__ */
|
|
6365
|
+
/* @__PURE__ */ jsx91(Divider, {})
|
|
6279
6366
|
]
|
|
6280
6367
|
}),
|
|
6281
|
-
blockType === "code" ? /* @__PURE__ */
|
|
6282
|
-
children: /* @__PURE__ */
|
|
6368
|
+
blockType === "code" ? /* @__PURE__ */ jsx91(Fragment8, {
|
|
6369
|
+
children: /* @__PURE__ */ jsx91(DropdownMenu.Root, {
|
|
6283
6370
|
disabled: !isEditable,
|
|
6284
6371
|
style: { zIndex: 1 },
|
|
6285
|
-
content: /* @__PURE__ */
|
|
6372
|
+
content: /* @__PURE__ */ jsx91(Fragment8, {
|
|
6286
6373
|
children: CODE_LANGUAGE_OPTIONS.map(([value, name]) => {
|
|
6287
|
-
return /* @__PURE__ */
|
|
6374
|
+
return /* @__PURE__ */ jsx91(DropdownMenu.Item, {
|
|
6288
6375
|
className: `item ${dropDownActiveClass(value === codeLanguage)}`,
|
|
6289
6376
|
onClick: () => onCodeLanguageSelect(value),
|
|
6290
|
-
children: /* @__PURE__ */
|
|
6377
|
+
children: /* @__PURE__ */ jsx91("span", {
|
|
6291
6378
|
className: `text min-w-[200px] block text-sm px-3 ${dropDownActiveClass(value === codeLanguage) ? "font-bold opacity-100" : "font-normal opacity-80"}`,
|
|
6292
6379
|
children: name
|
|
6293
6380
|
})
|
|
6294
6381
|
}, value);
|
|
6295
6382
|
})
|
|
6296
6383
|
}),
|
|
6297
|
-
children: /* @__PURE__ */
|
|
6384
|
+
children: /* @__PURE__ */ jsx91(Button, {
|
|
6298
6385
|
"aria-label": tr("codeSelectLanguage"),
|
|
6299
|
-
append: /* @__PURE__ */
|
|
6300
|
-
children: /* @__PURE__ */
|
|
6386
|
+
append: /* @__PURE__ */ jsx91(Icon.Arrow, {}),
|
|
6387
|
+
children: /* @__PURE__ */ jsx91("span", {
|
|
6301
6388
|
className: "font-medium text-sm",
|
|
6302
6389
|
children: getLanguageFriendlyName2(codeLanguage)
|
|
6303
6390
|
})
|
|
6304
6391
|
})
|
|
6305
6392
|
})
|
|
6306
|
-
}) : /* @__PURE__ */
|
|
6307
|
-
children: /* @__PURE__ */
|
|
6393
|
+
}) : /* @__PURE__ */ jsx91(Dialog, {
|
|
6394
|
+
children: /* @__PURE__ */ jsxs68("div", {
|
|
6308
6395
|
className: "flex gap-1",
|
|
6309
6396
|
children: [
|
|
6310
|
-
/* @__PURE__ */
|
|
6397
|
+
/* @__PURE__ */ jsx91(IconButton, {
|
|
6311
6398
|
disabled: !isEditable,
|
|
6312
6399
|
className: `${isBold ? "opacity-100 !bg-purple-50-900" : "opacity-60"}`,
|
|
6313
6400
|
type: "button",
|
|
@@ -6317,11 +6404,11 @@ function ToolbarPlugin({
|
|
|
6317
6404
|
onClick: () => {
|
|
6318
6405
|
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND2, "bold");
|
|
6319
6406
|
},
|
|
6320
|
-
children: /* @__PURE__ */
|
|
6407
|
+
children: /* @__PURE__ */ jsx91("i", {
|
|
6321
6408
|
className: `format icon bold border w-full h-full bg-no-repeat bg-center bg-[length:18px_18px]`
|
|
6322
6409
|
})
|
|
6323
6410
|
}),
|
|
6324
|
-
/* @__PURE__ */
|
|
6411
|
+
/* @__PURE__ */ jsx91(IconButton, {
|
|
6325
6412
|
className: `${isItalic ? "opacity-100 !bg-purple-50-900" : "opacity-60"}`,
|
|
6326
6413
|
disabled: !isEditable,
|
|
6327
6414
|
onClick: () => {
|
|
@@ -6331,11 +6418,11 @@ function ToolbarPlugin({
|
|
|
6331
6418
|
title: tr(IS_APPLE ? "actionFormatAsEmphasizedTitleApple" : "actionFormatAsEmphasizedTitle"),
|
|
6332
6419
|
"aria-label": tr("actionFormatAsEmphasizedLabel"),
|
|
6333
6420
|
"data-testid": "toggle-format-emphasized",
|
|
6334
|
-
children: /* @__PURE__ */
|
|
6421
|
+
children: /* @__PURE__ */ jsx91("i", {
|
|
6335
6422
|
className: `format icon italic border w-full h-full bg-no-repeat bg-center bg-[length:18px_18px]`
|
|
6336
6423
|
})
|
|
6337
6424
|
}),
|
|
6338
|
-
/* @__PURE__ */
|
|
6425
|
+
/* @__PURE__ */ jsx91(IconButton, {
|
|
6339
6426
|
className: `${isUnderline ? "opacity-100 !bg-purple-50-900" : "opacity-60"}`,
|
|
6340
6427
|
disabled: !isEditable,
|
|
6341
6428
|
onClick: () => {
|
|
@@ -6345,11 +6432,11 @@ function ToolbarPlugin({
|
|
|
6345
6432
|
title: tr(IS_APPLE ? "actionFormatAsUnderlinedTitleApple" : "actionFormatAsUnderlinedTitle"),
|
|
6346
6433
|
"aria-label": tr("actionFormatAsUnderlinedLabel"),
|
|
6347
6434
|
"data-testid": "toggle-format-underlined",
|
|
6348
|
-
children: /* @__PURE__ */
|
|
6435
|
+
children: /* @__PURE__ */ jsx91("i", {
|
|
6349
6436
|
className: `format icon underline border w-full h-full bg-no-repeat bg-center bg-[length:18px_18px]`
|
|
6350
6437
|
})
|
|
6351
6438
|
}),
|
|
6352
|
-
/* @__PURE__ */
|
|
6439
|
+
/* @__PURE__ */ jsx91(IconButton, {
|
|
6353
6440
|
className: `${isCode ? "opacity-100 !bg-purple-50-900" : "opacity-60"}`,
|
|
6354
6441
|
disabled: !isEditable,
|
|
6355
6442
|
onClick: () => {
|
|
@@ -6358,84 +6445,84 @@ function ToolbarPlugin({
|
|
|
6358
6445
|
type: "button",
|
|
6359
6446
|
title: tr("actionInsertCodeBlock"),
|
|
6360
6447
|
"aria-label": tr("actionInsertCodeBlock"),
|
|
6361
|
-
children: /* @__PURE__ */
|
|
6448
|
+
children: /* @__PURE__ */ jsx91("i", {
|
|
6362
6449
|
className: `format icon code border w-full h-full bg-no-repeat bg-center bg-[length:18px_18px]`
|
|
6363
6450
|
})
|
|
6364
6451
|
}),
|
|
6365
|
-
/* @__PURE__ */
|
|
6452
|
+
/* @__PURE__ */ jsx91(IconButton, {
|
|
6366
6453
|
className: `${isLink ? "opacity-100 !bg-purple-50-900" : "opacity-60"}`,
|
|
6367
6454
|
disabled: !isEditable,
|
|
6368
6455
|
onClick: insertLink,
|
|
6369
6456
|
type: "button",
|
|
6370
6457
|
"aria-label": tr("actionInsertlink"),
|
|
6371
6458
|
title: tr("actionInsertlink"),
|
|
6372
|
-
children: /* @__PURE__ */
|
|
6459
|
+
children: /* @__PURE__ */ jsx91("i", {
|
|
6373
6460
|
className: `format icon link border w-full h-full bg-no-repeat bg-center bg-[length:18px_18px]`
|
|
6374
6461
|
})
|
|
6375
6462
|
}),
|
|
6376
|
-
/* @__PURE__ */
|
|
6463
|
+
/* @__PURE__ */ jsx91(DropdownMenu.Root, {
|
|
6377
6464
|
disabled: !isEditable,
|
|
6378
6465
|
style: { zIndex: 1 },
|
|
6379
|
-
content: /* @__PURE__ */
|
|
6466
|
+
content: /* @__PURE__ */ jsxs68(Fragment8, {
|
|
6380
6467
|
children: [
|
|
6381
|
-
/* @__PURE__ */
|
|
6468
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6382
6469
|
onClick: () => {
|
|
6383
6470
|
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND2, "strikethrough");
|
|
6384
6471
|
},
|
|
6385
6472
|
title: tr("actionFormatWithStrikethroughTitle"),
|
|
6386
6473
|
"aria-label": tr("actionFormatWithStrikethroughLabel"),
|
|
6387
6474
|
children: [
|
|
6388
|
-
/* @__PURE__ */
|
|
6475
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6389
6476
|
className: `icon w-6 h-6 strikethrough border bg-no-repeat bg-center bg-[length:16px_16px] rounded-sm ${isStrikethrough ? "opacity-100 !bg-purple-50-900" : "opacity-60"}`
|
|
6390
6477
|
}),
|
|
6391
|
-
/* @__PURE__ */
|
|
6478
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6392
6479
|
className: `px-3 text-sm font-sans ${isStrikethrough ? "font-medium" : "font-normal"}`,
|
|
6393
6480
|
children: tr("actionFormatAsStrongTitle")
|
|
6394
6481
|
})
|
|
6395
6482
|
]
|
|
6396
6483
|
}),
|
|
6397
|
-
/* @__PURE__ */
|
|
6484
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6398
6485
|
onClick: () => {
|
|
6399
6486
|
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND2, "subscript");
|
|
6400
6487
|
},
|
|
6401
6488
|
title: tr("actionFormatWithSubscriptTitle"),
|
|
6402
6489
|
"aria-label": tr("actionFormatWithSubscriptLabel"),
|
|
6403
6490
|
children: [
|
|
6404
|
-
/* @__PURE__ */
|
|
6491
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6405
6492
|
className: `icon w-6 h-6 subscript border bg-no-repeat bg-center bg-[length:16px_16px] rounded-sm ${isSubscript ? "opacity-100 !bg-purple-50-900" : "opacity-60"}`
|
|
6406
6493
|
}),
|
|
6407
|
-
/* @__PURE__ */
|
|
6494
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6408
6495
|
className: `px-3 text-sm font-sans ${isSubscript ? "font-medium" : "font-normal"}`,
|
|
6409
6496
|
children: tr("actionFormatWithSubscriptTitle")
|
|
6410
6497
|
})
|
|
6411
6498
|
]
|
|
6412
6499
|
}),
|
|
6413
|
-
/* @__PURE__ */
|
|
6500
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6414
6501
|
onClick: () => {
|
|
6415
6502
|
activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND2, "superscript");
|
|
6416
6503
|
},
|
|
6417
6504
|
title: tr("actionFormatWithSuperscriptTitle"),
|
|
6418
6505
|
"aria-label": tr("actionFormatWithSuperscriptLabel"),
|
|
6419
6506
|
children: [
|
|
6420
|
-
/* @__PURE__ */
|
|
6507
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6421
6508
|
className: `icon w-6 h-6 superscript border bg-no-repeat bg-center bg-[length:16px_16px] rounded-sm ${isSuperscript ? "opacity-100 !bg-purple-50-900" : "opacity-60"}`
|
|
6422
6509
|
}),
|
|
6423
|
-
/* @__PURE__ */
|
|
6510
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6424
6511
|
className: `px-3 text-sm font-sans ${isSuperscript ? "bg-purple-50-900" : "font-normal"}`,
|
|
6425
6512
|
children: tr("actionFormatWithSuperscriptTitle")
|
|
6426
6513
|
})
|
|
6427
6514
|
]
|
|
6428
6515
|
}),
|
|
6429
|
-
/* @__PURE__ */
|
|
6516
|
+
/* @__PURE__ */ jsxs68(DropdownMenu.Item, {
|
|
6430
6517
|
onClick: clearFormatting,
|
|
6431
6518
|
className: "item",
|
|
6432
6519
|
title: tr("actionClearTextFormatting"),
|
|
6433
6520
|
"aria-label": tr("actionClearTextFormatting"),
|
|
6434
6521
|
children: [
|
|
6435
|
-
/* @__PURE__ */
|
|
6522
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6436
6523
|
className: "icon w-6 h-6 clear border bg-no-repeat bg-center bg-[length:16px_16px] opacity-60"
|
|
6437
6524
|
}),
|
|
6438
|
-
/* @__PURE__ */
|
|
6525
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6439
6526
|
className: "px-3 text-sm text-pink-600-300 font-sans font-normal",
|
|
6440
6527
|
children: "Clear Formatting"
|
|
6441
6528
|
})
|
|
@@ -6443,50 +6530,50 @@ function ToolbarPlugin({
|
|
|
6443
6530
|
})
|
|
6444
6531
|
]
|
|
6445
6532
|
}),
|
|
6446
|
-
children: /* @__PURE__ */
|
|
6533
|
+
children: /* @__PURE__ */ jsxs68(Button, {
|
|
6447
6534
|
style: { backgroundColor: "transparent", padding: "0 8px" },
|
|
6448
6535
|
"aria-label": tr("actionTextFormattingOptions"),
|
|
6449
6536
|
children: [
|
|
6450
|
-
/* @__PURE__ */
|
|
6537
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6451
6538
|
className: `icon dropdown-more border bg-no-repeat bg-center bg-[length:18px_18px] w-6 h-6`
|
|
6452
6539
|
}),
|
|
6453
|
-
/* @__PURE__ */
|
|
6540
|
+
/* @__PURE__ */ jsx91(Icon.Arrow, {})
|
|
6454
6541
|
]
|
|
6455
6542
|
})
|
|
6456
6543
|
}),
|
|
6457
|
-
/* @__PURE__ */
|
|
6458
|
-
/* @__PURE__ */
|
|
6544
|
+
/* @__PURE__ */ jsx91(Divider, {}),
|
|
6545
|
+
/* @__PURE__ */ jsx91(DropdownMenu.Root, {
|
|
6459
6546
|
style: { zIndex: 1 },
|
|
6460
6547
|
disabled: !isEditable,
|
|
6461
|
-
content: /* @__PURE__ */
|
|
6548
|
+
content: /* @__PURE__ */ jsxs68(Fragment8, {
|
|
6462
6549
|
children: [
|
|
6463
|
-
/* @__PURE__ */
|
|
6550
|
+
/* @__PURE__ */ jsx91(DropdownMenu.Item, {
|
|
6464
6551
|
onClick: () => {
|
|
6465
6552
|
activeEditor.dispatchCommand(INSERT_HORIZONTAL_RULE_COMMAND, void 0);
|
|
6466
6553
|
},
|
|
6467
|
-
children: /* @__PURE__ */
|
|
6554
|
+
children: /* @__PURE__ */ jsxs68("div", {
|
|
6468
6555
|
className: "flex items-center font-sans font-normal",
|
|
6469
6556
|
children: [
|
|
6470
|
-
/* @__PURE__ */
|
|
6557
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6471
6558
|
className: "icon w-5 h-5 horizontal-rule border bg-no-repeat bg-center bg-[length:16px_16px] opacity-60"
|
|
6472
6559
|
}),
|
|
6473
|
-
/* @__PURE__ */
|
|
6560
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6474
6561
|
className: "px-3 text-sm",
|
|
6475
6562
|
children: tr("horizontalRule")
|
|
6476
6563
|
})
|
|
6477
6564
|
]
|
|
6478
6565
|
})
|
|
6479
6566
|
}),
|
|
6480
|
-
/* @__PURE__ */
|
|
6481
|
-
children: /* @__PURE__ */
|
|
6567
|
+
/* @__PURE__ */ jsx91(DropdownMenu.Item, {
|
|
6568
|
+
children: /* @__PURE__ */ jsx91(Dialog.Trigger, {
|
|
6482
6569
|
asChild: true,
|
|
6483
|
-
children: /* @__PURE__ */
|
|
6570
|
+
children: /* @__PURE__ */ jsxs68("div", {
|
|
6484
6571
|
className: "flex items-center font-sans font-normal",
|
|
6485
6572
|
children: [
|
|
6486
|
-
/* @__PURE__ */
|
|
6573
|
+
/* @__PURE__ */ jsx91("i", {
|
|
6487
6574
|
className: "icon w-5 h-5 table border bg-no-repeat bg-center bg-[length:16px_16px] opacity-60"
|
|
6488
6575
|
}),
|
|
6489
|
-
/* @__PURE__ */
|
|
6576
|
+
/* @__PURE__ */ jsx91("span", {
|
|
6490
6577
|
className: "px-3 text-sm",
|
|
6491
6578
|
children: tr("table")
|
|
6492
6579
|
})
|
|
@@ -6496,23 +6583,23 @@ function ToolbarPlugin({
|
|
|
6496
6583
|
})
|
|
6497
6584
|
]
|
|
6498
6585
|
}),
|
|
6499
|
-
children: /* @__PURE__ */
|
|
6500
|
-
children: /* @__PURE__ */
|
|
6586
|
+
children: /* @__PURE__ */ jsx91(IconButton, {
|
|
6587
|
+
children: /* @__PURE__ */ jsx91("i", {
|
|
6501
6588
|
className: "icon plus border w-full h-full bg-no-repeat bg-center bg-[length:20px_20px] "
|
|
6502
6589
|
})
|
|
6503
6590
|
})
|
|
6504
6591
|
}),
|
|
6505
|
-
/* @__PURE__ */
|
|
6592
|
+
/* @__PURE__ */ jsxs68(Dialog.Content, {
|
|
6506
6593
|
children: [
|
|
6507
|
-
/* @__PURE__ */
|
|
6594
|
+
/* @__PURE__ */ jsx91(Dialog.Title, {
|
|
6508
6595
|
children: tr("insertTableTitle")
|
|
6509
6596
|
}),
|
|
6510
|
-
/* @__PURE__ */
|
|
6597
|
+
/* @__PURE__ */ jsx91(Dialog.Description, {
|
|
6511
6598
|
children: tr("insertTableDescription")
|
|
6512
6599
|
}),
|
|
6513
|
-
/* @__PURE__ */
|
|
6600
|
+
/* @__PURE__ */ jsx91("div", {
|
|
6514
6601
|
className: "items-center justify-between",
|
|
6515
|
-
children: /* @__PURE__ */
|
|
6602
|
+
children: /* @__PURE__ */ jsx91(InsertTableDialog, {
|
|
6516
6603
|
activeEditor
|
|
6517
6604
|
})
|
|
6518
6605
|
})
|
|
@@ -6523,7 +6610,7 @@ function ToolbarPlugin({
|
|
|
6523
6610
|
})
|
|
6524
6611
|
]
|
|
6525
6612
|
}),
|
|
6526
|
-
/* @__PURE__ */
|
|
6613
|
+
/* @__PURE__ */ jsx91(ActionsPlugin, {
|
|
6527
6614
|
prepend: actionsMenuPrepend,
|
|
6528
6615
|
append: actionsMenuAppend
|
|
6529
6616
|
})
|
|
@@ -6634,7 +6721,7 @@ var theme = {
|
|
|
6634
6721
|
var CrystallizeRTEditorTheme_default = theme;
|
|
6635
6722
|
|
|
6636
6723
|
// src/rich-text-editor/rich-text-editor.tsx
|
|
6637
|
-
import { Fragment as Fragment9, jsx as
|
|
6724
|
+
import { Fragment as Fragment9, jsx as jsx92, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
6638
6725
|
function RichTextEditor({
|
|
6639
6726
|
initialData,
|
|
6640
6727
|
editable = true,
|
|
@@ -6642,7 +6729,7 @@ function RichTextEditor({
|
|
|
6642
6729
|
labelTranslations,
|
|
6643
6730
|
...rest
|
|
6644
6731
|
}) {
|
|
6645
|
-
return /* @__PURE__ */
|
|
6732
|
+
return /* @__PURE__ */ jsx92(LexicalComposer, {
|
|
6646
6733
|
initialConfig: {
|
|
6647
6734
|
namespace: "crystallize-rich-text-editor",
|
|
6648
6735
|
nodes: [...BaseNodes],
|
|
@@ -6655,13 +6742,13 @@ function RichTextEditor({
|
|
|
6655
6742
|
richText: initialData
|
|
6656
6743
|
}) : void 0
|
|
6657
6744
|
},
|
|
6658
|
-
children: /* @__PURE__ */
|
|
6745
|
+
children: /* @__PURE__ */ jsx92(I18nProvider, {
|
|
6659
6746
|
language,
|
|
6660
6747
|
labelTranslations,
|
|
6661
|
-
children: /* @__PURE__ */
|
|
6662
|
-
children: /* @__PURE__ */
|
|
6748
|
+
children: /* @__PURE__ */ jsx92(SharedHistoryContext, {
|
|
6749
|
+
children: /* @__PURE__ */ jsx92("div", {
|
|
6663
6750
|
className: "c-rich-text-editor",
|
|
6664
|
-
children: /* @__PURE__ */
|
|
6751
|
+
children: /* @__PURE__ */ jsx92(RichTextEditorWithoutContext, {
|
|
6665
6752
|
...rest,
|
|
6666
6753
|
editable
|
|
6667
6754
|
})
|
|
@@ -6682,7 +6769,7 @@ function RichTextEditorWithoutContext({
|
|
|
6682
6769
|
editable
|
|
6683
6770
|
}) {
|
|
6684
6771
|
const { historyState } = useSharedHistoryContext();
|
|
6685
|
-
const placeholder = /* @__PURE__ */
|
|
6772
|
+
const placeholder = /* @__PURE__ */ jsx92("div", {
|
|
6686
6773
|
className: "text-[14px] font-normal text-gray-300-600 italic absolute overflow-hidden text-ellipsis top-0 left-6 right-10 select-none whitespace-nowrap inline-block pointer-events-none ",
|
|
6687
6774
|
children: placeholderText ?? ""
|
|
6688
6775
|
});
|
|
@@ -6718,36 +6805,36 @@ function RichTextEditorWithoutContext({
|
|
|
6718
6805
|
}
|
|
6719
6806
|
firstOnChangeTriggeredRef.current = true;
|
|
6720
6807
|
}
|
|
6721
|
-
return /* @__PURE__ */
|
|
6808
|
+
return /* @__PURE__ */ jsxs69(Fragment9, {
|
|
6722
6809
|
children: [
|
|
6723
|
-
/* @__PURE__ */
|
|
6810
|
+
/* @__PURE__ */ jsx92(OnChangePlugin, {
|
|
6724
6811
|
onChange: onLocalChange,
|
|
6725
6812
|
ignoreSelectionChange: true
|
|
6726
6813
|
}),
|
|
6727
|
-
/* @__PURE__ */
|
|
6814
|
+
/* @__PURE__ */ jsx92(ToolbarPlugin, {
|
|
6728
6815
|
actionsMenuPrepend,
|
|
6729
6816
|
actionsMenuAppend
|
|
6730
6817
|
}),
|
|
6731
6818
|
slotPreContent,
|
|
6732
|
-
/* @__PURE__ */
|
|
6819
|
+
/* @__PURE__ */ jsxs69("div", {
|
|
6733
6820
|
className: "editor-container",
|
|
6734
6821
|
children: [
|
|
6735
|
-
maxLength != null ? /* @__PURE__ */
|
|
6822
|
+
maxLength != null ? /* @__PURE__ */ jsx92(MaxLengthPlugin, {
|
|
6736
6823
|
maxLength
|
|
6737
6824
|
}) : null,
|
|
6738
|
-
!autoFocus ? null : /* @__PURE__ */
|
|
6739
|
-
/* @__PURE__ */
|
|
6740
|
-
/* @__PURE__ */
|
|
6741
|
-
/* @__PURE__ */
|
|
6825
|
+
!autoFocus ? null : /* @__PURE__ */ jsx92(AutoFocusPlugin, {}),
|
|
6826
|
+
/* @__PURE__ */ jsx92(ClearEditorPlugin, {}),
|
|
6827
|
+
/* @__PURE__ */ jsx92(LexicalAutoLinkPlugin, {}),
|
|
6828
|
+
/* @__PURE__ */ jsx92(HistoryPlugin, {
|
|
6742
6829
|
externalHistoryState: historyState
|
|
6743
6830
|
}),
|
|
6744
|
-
/* @__PURE__ */
|
|
6745
|
-
contentEditable: /* @__PURE__ */
|
|
6831
|
+
/* @__PURE__ */ jsx92(RichTextPlugin, {
|
|
6832
|
+
contentEditable: /* @__PURE__ */ jsx92("div", {
|
|
6746
6833
|
className: "editor-scroller",
|
|
6747
|
-
children: /* @__PURE__ */
|
|
6834
|
+
children: /* @__PURE__ */ jsx92("div", {
|
|
6748
6835
|
className: "editor",
|
|
6749
6836
|
ref: onRef,
|
|
6750
|
-
children: /* @__PURE__ */
|
|
6837
|
+
children: /* @__PURE__ */ jsx92(ContentEditable, {
|
|
6751
6838
|
className: "ContentEditable__root"
|
|
6752
6839
|
})
|
|
6753
6840
|
})
|
|
@@ -6755,28 +6842,28 @@ function RichTextEditorWithoutContext({
|
|
|
6755
6842
|
placeholder,
|
|
6756
6843
|
ErrorBoundary: LexicalErrorBoundary
|
|
6757
6844
|
}),
|
|
6758
|
-
/* @__PURE__ */
|
|
6759
|
-
/* @__PURE__ */
|
|
6760
|
-
/* @__PURE__ */
|
|
6845
|
+
/* @__PURE__ */ jsx92(CodeHighlightPlugin, {}),
|
|
6846
|
+
/* @__PURE__ */ jsx92(ListPlugin, {}),
|
|
6847
|
+
/* @__PURE__ */ jsx92(ListMaxIndentLevelPlugin, {
|
|
6761
6848
|
maxDepth: 7
|
|
6762
6849
|
}),
|
|
6763
|
-
/* @__PURE__ */
|
|
6764
|
-
/* @__PURE__ */
|
|
6765
|
-
/* @__PURE__ */
|
|
6766
|
-
/* @__PURE__ */
|
|
6767
|
-
/* @__PURE__ */
|
|
6768
|
-
floatingAnchorElem && !isSmallWidthViewport && /* @__PURE__ */
|
|
6850
|
+
/* @__PURE__ */ jsx92(TablePlugin, {}),
|
|
6851
|
+
/* @__PURE__ */ jsx92(LinkPlugin, {}),
|
|
6852
|
+
/* @__PURE__ */ jsx92(HorizontalRulePlugin, {}),
|
|
6853
|
+
/* @__PURE__ */ jsx92(TabFocusPlugin, {}),
|
|
6854
|
+
/* @__PURE__ */ jsx92(TabIndentationPlugin, {}),
|
|
6855
|
+
floatingAnchorElem && !isSmallWidthViewport && /* @__PURE__ */ jsxs69(Fragment9, {
|
|
6769
6856
|
children: [
|
|
6770
|
-
/* @__PURE__ */
|
|
6857
|
+
/* @__PURE__ */ jsx92(CodeActionMenuPlugin, {
|
|
6771
6858
|
anchorElem: floatingAnchorElem
|
|
6772
6859
|
}),
|
|
6773
|
-
/* @__PURE__ */
|
|
6860
|
+
/* @__PURE__ */ jsx92(FloatingLinkEditorPlugin, {
|
|
6774
6861
|
anchorElem: floatingAnchorElem
|
|
6775
6862
|
}),
|
|
6776
|
-
/* @__PURE__ */
|
|
6863
|
+
/* @__PURE__ */ jsx92(TableActionMenuPlugin, {
|
|
6777
6864
|
anchorElem: floatingAnchorElem
|
|
6778
6865
|
}),
|
|
6779
|
-
/* @__PURE__ */
|
|
6866
|
+
/* @__PURE__ */ jsx92(FloatingTextFormatToolbarPlugin, {
|
|
6780
6867
|
anchorElem: floatingAnchorElem
|
|
6781
6868
|
})
|
|
6782
6869
|
]
|