@crystallize/design-system 1.24.18 → 1.24.20
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 +12 -0
- package/dist/{chunk-GAFUHKHL.mjs → chunk-W7U5TSTK.mjs} +636 -548
- package/dist/index.css +25 -2
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1163 -1054
- package/dist/index.mjs +10 -3
- package/dist/{rich-text-editor-REO7ES7Q.mjs → rich-text-editor-3QCILLYH.mjs} +1 -1
- package/package.json +1 -1
- package/src/collapsible/collapsible.css +11 -3
- package/src/collapsible/collapsible.tsx +8 -1
- package/src/iconography/index.ts +4 -0
- package/src/iconography/info.tsx +3 -9
- package/src/iconography/organization.tsx +31 -0
- package/src/iconography/user.tsx +44 -0
- package/src/iconography/warning.tsx +1 -0
- package/src/toast/toast.tsx +1 -1
|
@@ -2726,7 +2726,6 @@ import { jsx as jsx58, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
|
2726
2726
|
var Info = forwardRef52((delegated, ref) => {
|
|
2727
2727
|
return /* @__PURE__ */ jsxs49("svg", {
|
|
2728
2728
|
ref,
|
|
2729
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2730
2729
|
width: "22",
|
|
2731
2730
|
height: "22",
|
|
2732
2731
|
fill: "none",
|
|
@@ -2735,7 +2734,8 @@ var Info = forwardRef52((delegated, ref) => {
|
|
|
2735
2734
|
children: [
|
|
2736
2735
|
/* @__PURE__ */ jsx58("path", {
|
|
2737
2736
|
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",
|
|
2738
|
-
fill: "#BFF6F8"
|
|
2737
|
+
fill: "#BFF6F8",
|
|
2738
|
+
className: "c-icon-fill"
|
|
2739
2739
|
}),
|
|
2740
2740
|
/* @__PURE__ */ jsx58("path", {
|
|
2741
2741
|
fillRule: "evenodd",
|
|
@@ -2745,7 +2745,8 @@ var Info = forwardRef52((delegated, ref) => {
|
|
|
2745
2745
|
}),
|
|
2746
2746
|
/* @__PURE__ */ jsx58("path", {
|
|
2747
2747
|
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",
|
|
2748
|
-
fill: "#BFF6F8"
|
|
2748
|
+
fill: "#BFF6F8",
|
|
2749
|
+
className: "c-icon-fill"
|
|
2749
2750
|
}),
|
|
2750
2751
|
/* @__PURE__ */ jsx58("path", {
|
|
2751
2752
|
fillRule: "evenodd",
|
|
@@ -3709,68 +3710,105 @@ var Order = forwardRef66((delegated, ref) => {
|
|
|
3709
3710
|
});
|
|
3710
3711
|
Order.displayName = "OrderIcon";
|
|
3711
3712
|
|
|
3712
|
-
// src/iconography/
|
|
3713
|
+
// src/iconography/organization.tsx
|
|
3713
3714
|
import { forwardRef as forwardRef67 } from "react";
|
|
3714
3715
|
import { jsx as jsx73, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
3715
|
-
var
|
|
3716
|
+
var Organization = forwardRef67((delegated, ref) => {
|
|
3716
3717
|
return /* @__PURE__ */ jsxs64("svg", {
|
|
3717
3718
|
ref,
|
|
3718
3719
|
width: "22",
|
|
3719
3720
|
height: "22",
|
|
3720
|
-
viewBox: "0 0 22 22",
|
|
3721
3721
|
fill: "none",
|
|
3722
|
+
viewBox: "0 0 22 22",
|
|
3722
3723
|
...delegated,
|
|
3723
3724
|
children: [
|
|
3724
3725
|
/* @__PURE__ */ jsx73("path", {
|
|
3726
|
+
d: "M2.911 3.495h9.652V18.72H2.911V3.495Z",
|
|
3727
|
+
fill: "#fff"
|
|
3728
|
+
}),
|
|
3729
|
+
/* @__PURE__ */ jsx73("path", {
|
|
3730
|
+
fillRule: "evenodd",
|
|
3731
|
+
clipRule: "evenodd",
|
|
3732
|
+
d: "M3.394 3.568a.193.193 0 0 0-.193.193V18.24c0 .106.086.193.193.193h6.685a.29.29 0 0 1 0 .579H3.394a.772.772 0 0 1-.772-.772V3.76c0-.426.346-.772.772-.772h8.687c.426 0 .772.346.772.772v4.13a.29.29 0 1 1-.58 0V3.76a.193.193 0 0 0-.192-.193H3.394Z",
|
|
3733
|
+
fill: "#528693"
|
|
3734
|
+
}),
|
|
3735
|
+
/* @__PURE__ */ jsx73("path", {
|
|
3736
|
+
d: "m10.15 9.213 4.885-3.554 4.875 3.554v9.205c0 .267-.383.425-.65.425l-9.028-.113-.082-9.517Z",
|
|
3737
|
+
fill: "#BFF6F8"
|
|
3738
|
+
}),
|
|
3739
|
+
/* @__PURE__ */ jsx73("path", {
|
|
3740
|
+
fillRule: "evenodd",
|
|
3741
|
+
clipRule: "evenodd",
|
|
3742
|
+
d: "M14.916 5.457a.29.29 0 0 1 .331.003l4.532 3.23c.203.144.324.379.324.628v8.92a.772.772 0 0 1-.772.773H10.15a.29.29 0 0 1-.29-.29V9.324c0-.255.126-.493.336-.637l4.72-3.23Zm.16.592-4.553 3.116a.193.193 0 0 0-.084.16v9.107h8.892a.193.193 0 0 0 .193-.193v-8.92a.193.193 0 0 0-.081-.158L15.076 6.05Z",
|
|
3743
|
+
fill: "#528693"
|
|
3744
|
+
})
|
|
3745
|
+
]
|
|
3746
|
+
});
|
|
3747
|
+
});
|
|
3748
|
+
Organization.displayName = "OrganizationIcon";
|
|
3749
|
+
|
|
3750
|
+
// src/iconography/paragraph-collection.tsx
|
|
3751
|
+
import { forwardRef as forwardRef68 } from "react";
|
|
3752
|
+
import { jsx as jsx74, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
3753
|
+
var ParagraphCollection = forwardRef68((delegated, ref) => {
|
|
3754
|
+
return /* @__PURE__ */ jsxs65("svg", {
|
|
3755
|
+
ref,
|
|
3756
|
+
width: "22",
|
|
3757
|
+
height: "22",
|
|
3758
|
+
viewBox: "0 0 22 22",
|
|
3759
|
+
fill: "none",
|
|
3760
|
+
...delegated,
|
|
3761
|
+
children: [
|
|
3762
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3725
3763
|
d: "M18 18.4001C18 18.7314 17.7314 19.0001 17.4 19.0001L4.6 19.0001C4.26863 19.0001 4 18.7314 4 18.4001L4 14.6001C4 14.2687 4.26863 14.0001 4.6 14.0001L17.4 14.0001C17.7314 14.0001 18 14.2687 18 14.6001L18 18.4001Z",
|
|
3726
3764
|
fill: "#BFF6F8",
|
|
3727
3765
|
className: "c-icon-fill"
|
|
3728
3766
|
}),
|
|
3729
|
-
/* @__PURE__ */
|
|
3767
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3730
3768
|
fillRule: "evenodd",
|
|
3731
3769
|
clipRule: "evenodd",
|
|
3732
3770
|
d: "M17.4 19.6L4.60001 19.6C3.93726 19.6 3.40001 19.0628 3.40001 18.4L3.40001 14.6C3.40001 13.9373 3.93726 13.4 4.60001 13.4L17.4 13.4C18.0627 13.4 18.6 13.9373 18.6 14.6L18.6 18.4C18.6 19.0628 18.0627 19.6 17.4 19.6ZM17.4 19C17.7314 19 18 18.7314 18 18.4L18 14.6C18 14.2687 17.7314 14 17.4 14L4.60001 14C4.26864 14 4.00001 14.2687 4.00001 14.6L4.00001 18.4C4.00001 18.7314 4.26863 19 4.60001 19L17.4 19Z",
|
|
3733
3771
|
fill: "#528693"
|
|
3734
3772
|
}),
|
|
3735
|
-
/* @__PURE__ */
|
|
3773
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3736
3774
|
d: "M18 10.4001C18 10.7314 17.7314 11.0001 17.4 11.0001L4.6 11.0001C4.26863 11.0001 4 10.7314 4 10.4001L4 9.60006C4 9.26869 4.26863 9.00006 4.6 9.00006L17.4 9.00006C17.7314 9.00006 18 9.26869 18 9.60006L18 10.4001Z",
|
|
3737
3775
|
fill: "#BFF6F8",
|
|
3738
3776
|
className: "c-icon-fill"
|
|
3739
3777
|
}),
|
|
3740
|
-
/* @__PURE__ */
|
|
3778
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3741
3779
|
fillRule: "evenodd",
|
|
3742
3780
|
clipRule: "evenodd",
|
|
3743
3781
|
d: "M17.4 11.6L4.60001 11.6C3.93726 11.6 3.40001 11.0628 3.40001 10.4L3.40001 9.60004C3.40001 8.93729 3.93726 8.40004 4.60001 8.40004L17.4 8.40004C18.0627 8.40004 18.6 8.93729 18.6 9.60004L18.6 10.4C18.6 11.0628 18.0627 11.6 17.4 11.6ZM17.4 11C17.7314 11 18 10.7314 18 10.4L18 9.60004C18 9.26867 17.7314 9.00004 17.4 9.00004L4.60001 9.00004C4.26864 9.00004 4.00001 9.26866 4.00001 9.60004L4.00001 10.4C4.00001 10.7314 4.26863 11 4.60001 11L17.4 11Z",
|
|
3744
3782
|
fill: "#528693"
|
|
3745
3783
|
}),
|
|
3746
|
-
/* @__PURE__ */
|
|
3784
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3747
3785
|
d: "M18 5.40006C18 5.73143 17.7314 6.00006 17.4 6.00006L4.6 6.00006C4.26863 6.00006 4 5.73143 4 5.40006L4 3.60006C4 3.26869 4.26863 3.00006 4.6 3.00006L17.4 3.00006C17.7314 3.00006 18 3.26869 18 3.60006L18 5.40006Z",
|
|
3748
3786
|
fill: "#BFF6F8",
|
|
3749
3787
|
className: "c-icon-fill"
|
|
3750
3788
|
}),
|
|
3751
|
-
/* @__PURE__ */
|
|
3789
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3752
3790
|
fillRule: "evenodd",
|
|
3753
3791
|
clipRule: "evenodd",
|
|
3754
3792
|
d: "M17.4 6.60004L4.60001 6.60004C3.93726 6.60004 3.40001 6.06278 3.40001 5.40004L3.40001 3.60004C3.40001 2.93729 3.93726 2.40004 4.60001 2.40004L17.4 2.40004C18.0627 2.40004 18.6 2.93729 18.6 3.60004L18.6 5.40004C18.6 6.06278 18.0627 6.60004 17.4 6.60004ZM17.4 6.00004C17.7314 6.00004 18 5.73141 18 5.40004L18 3.60004C18 3.26867 17.7314 3.00004 17.4 3.00004L4.60001 3.00004C4.26864 3.00004 4.00001 3.26866 4.00001 3.60004L4.00001 5.40004C4.00001 5.73141 4.26863 6.00004 4.60001 6.00004L17.4 6.00004Z",
|
|
3755
3793
|
fill: "#528693"
|
|
3756
3794
|
}),
|
|
3757
|
-
/* @__PURE__ */
|
|
3795
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3758
3796
|
d: "M11 15C8.6 14.6 5 16.8333 3.5 18L4 19L4.5 19.5H17L18 19L18.5 16.5C18.1 17.3 15 17.8333 13.5 18C11.5 17.6 11 15.8333 11 15Z",
|
|
3759
3797
|
fill: "white"
|
|
3760
3798
|
}),
|
|
3761
|
-
/* @__PURE__ */
|
|
3799
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3762
3800
|
fillRule: "evenodd",
|
|
3763
3801
|
clipRule: "evenodd",
|
|
3764
3802
|
d: "M8.12258 15.2807C9.53327 14.8558 10.7686 14.7497 11.4727 14.8201C11.5725 14.8301 11.6494 14.9124 11.6527 15.0126C11.656 15.1128 11.5846 15.1999 11.4857 15.2164C10.5346 15.3749 9.97375 15.6289 9.66223 15.9136C9.36259 16.1875 9.27811 16.504 9.31556 16.8504C9.35133 17.1812 9.47565 17.4361 9.6655 17.6338C9.85768 17.834 10.1264 17.9852 10.4634 18.0893C11.1414 18.2986 12.0567 18.3051 13.0478 18.174C15.0299 17.9117 17.214 17.1139 18.1891 16.4638L18.411 16.7966C17.3722 17.4891 15.1257 18.3025 13.1002 18.5705C12.0875 18.7045 11.1047 18.706 10.3453 18.4714C9.96356 18.3536 9.62877 18.1731 9.37695 17.9108C9.1228 17.6461 8.96266 17.3077 8.91787 16.8934C8.86874 16.4389 8.98565 15.9901 9.39237 15.6184C9.52033 15.5014 9.67515 15.3938 9.8594 15.2962C9.37178 15.3693 8.82237 15.4877 8.23794 15.6637C6.86614 16.0769 5.31482 16.8036 3.93021 17.9904L3.66989 17.6867C5.10473 16.4569 6.7085 15.7067 8.12258 15.2807Z",
|
|
3765
3803
|
fill: "#528693"
|
|
3766
3804
|
}),
|
|
3767
|
-
/* @__PURE__ */
|
|
3805
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3768
3806
|
fillRule: "evenodd",
|
|
3769
3807
|
clipRule: "evenodd",
|
|
3770
3808
|
d: "M11.5316 14.8353C11.6331 14.8788 11.6802 14.9963 11.6367 15.0979C11.4602 15.5097 11.3727 16.1267 11.6369 16.6837C11.8959 17.2297 12.5181 17.7698 13.8683 17.9874C13.905 17.9933 13.9423 17.999 13.9801 18.0045C14.0894 18.0202 14.1653 18.1215 14.1496 18.2309C14.1339 18.3402 14.0325 18.4161 13.9232 18.4004C13.8832 18.3946 13.8436 18.3886 13.8046 18.3823C12.3693 18.151 11.6079 17.5559 11.2755 16.8551C10.9483 16.1653 11.0618 15.4238 11.269 14.9403C11.3125 14.8388 11.4301 14.7917 11.5316 14.8353Z",
|
|
3771
3809
|
fill: "#528693"
|
|
3772
3810
|
}),
|
|
3773
|
-
/* @__PURE__ */
|
|
3811
|
+
/* @__PURE__ */ jsx74("path", {
|
|
3774
3812
|
fillRule: "evenodd",
|
|
3775
3813
|
clipRule: "evenodd",
|
|
3776
3814
|
d: "M17.4 19.6L4.60001 19.6C3.93726 19.6 3.40001 19.0628 3.40001 18.4L3.40001 14.6C3.40001 13.9373 3.93726 13.4 4.60001 13.4L17.4 13.4C18.0627 13.4 18.6 13.9373 18.6 14.6L18.6 18.4C18.6 19.0628 18.0627 19.6 17.4 19.6ZM17.4 19C17.7314 19 18 18.7314 18 18.4L18 14.6C18 14.2687 17.7314 14 17.4 14L4.60001 14C4.26864 14 4.00001 14.2687 4.00001 14.6L4.00001 18.4C4.00001 18.7314 4.26863 19 4.60001 19L17.4 19Z",
|
|
@@ -3782,10 +3820,10 @@ var ParagraphCollection = forwardRef67((delegated, ref) => {
|
|
|
3782
3820
|
ParagraphCollection.displayName = "ParagraphCollection";
|
|
3783
3821
|
|
|
3784
3822
|
// src/iconography/particle.tsx
|
|
3785
|
-
import { forwardRef as
|
|
3786
|
-
import { jsx as
|
|
3787
|
-
var Particle =
|
|
3788
|
-
return /* @__PURE__ */
|
|
3823
|
+
import { forwardRef as forwardRef69 } from "react";
|
|
3824
|
+
import { jsx as jsx75, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
3825
|
+
var Particle = forwardRef69((delegated, ref) => {
|
|
3826
|
+
return /* @__PURE__ */ jsxs66("svg", {
|
|
3789
3827
|
ref,
|
|
3790
3828
|
width: "22",
|
|
3791
3829
|
height: "20",
|
|
@@ -3794,68 +3832,68 @@ var Particle = forwardRef68((delegated, ref) => {
|
|
|
3794
3832
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3795
3833
|
...delegated,
|
|
3796
3834
|
children: [
|
|
3797
|
-
/* @__PURE__ */
|
|
3835
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3798
3836
|
fill: "#528693",
|
|
3799
3837
|
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",
|
|
3800
3838
|
opacity: ".05"
|
|
3801
3839
|
}),
|
|
3802
|
-
/* @__PURE__ */
|
|
3840
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3803
3841
|
fill: "#528693",
|
|
3804
3842
|
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"
|
|
3805
3843
|
}),
|
|
3806
|
-
/* @__PURE__ */
|
|
3844
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3807
3845
|
fill: "#FFBD54",
|
|
3808
3846
|
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"
|
|
3809
3847
|
}),
|
|
3810
|
-
/* @__PURE__ */
|
|
3848
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3811
3849
|
fill: "#528693",
|
|
3812
3850
|
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"
|
|
3813
3851
|
}),
|
|
3814
|
-
/* @__PURE__ */
|
|
3852
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3815
3853
|
fill: "#528693",
|
|
3816
3854
|
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"
|
|
3817
3855
|
}),
|
|
3818
|
-
/* @__PURE__ */
|
|
3856
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3819
3857
|
fill: "#FFBD54",
|
|
3820
3858
|
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"
|
|
3821
3859
|
}),
|
|
3822
|
-
/* @__PURE__ */
|
|
3860
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3823
3861
|
fill: "#528693",
|
|
3824
3862
|
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"
|
|
3825
3863
|
}),
|
|
3826
|
-
/* @__PURE__ */
|
|
3864
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3827
3865
|
fill: "#FFBD54",
|
|
3828
3866
|
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"
|
|
3829
3867
|
}),
|
|
3830
|
-
/* @__PURE__ */
|
|
3868
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3831
3869
|
fill: "#528693",
|
|
3832
3870
|
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"
|
|
3833
3871
|
}),
|
|
3834
|
-
/* @__PURE__ */
|
|
3872
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3835
3873
|
fill: "#FFBD54",
|
|
3836
3874
|
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"
|
|
3837
3875
|
}),
|
|
3838
|
-
/* @__PURE__ */
|
|
3876
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3839
3877
|
fill: "#528693",
|
|
3840
3878
|
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"
|
|
3841
3879
|
}),
|
|
3842
|
-
/* @__PURE__ */
|
|
3880
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3843
3881
|
fill: "#528693",
|
|
3844
3882
|
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"
|
|
3845
3883
|
}),
|
|
3846
|
-
/* @__PURE__ */
|
|
3884
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3847
3885
|
fill: "#FFBD54",
|
|
3848
3886
|
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"
|
|
3849
3887
|
}),
|
|
3850
|
-
/* @__PURE__ */
|
|
3888
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3851
3889
|
fill: "#528693",
|
|
3852
3890
|
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"
|
|
3853
3891
|
}),
|
|
3854
|
-
/* @__PURE__ */
|
|
3892
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3855
3893
|
fill: "#528693",
|
|
3856
3894
|
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"
|
|
3857
3895
|
}),
|
|
3858
|
-
/* @__PURE__ */
|
|
3896
|
+
/* @__PURE__ */ jsx75("path", {
|
|
3859
3897
|
fill: "#528693",
|
|
3860
3898
|
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",
|
|
3861
3899
|
opacity: ".05"
|
|
@@ -3866,10 +3904,10 @@ var Particle = forwardRef68((delegated, ref) => {
|
|
|
3866
3904
|
Particle.displayName = "ParticleIcon";
|
|
3867
3905
|
|
|
3868
3906
|
// src/iconography/paths.tsx
|
|
3869
|
-
import { forwardRef as
|
|
3870
|
-
import { jsx as
|
|
3871
|
-
var Paths =
|
|
3872
|
-
return /* @__PURE__ */
|
|
3907
|
+
import { forwardRef as forwardRef70 } from "react";
|
|
3908
|
+
import { jsx as jsx76, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
3909
|
+
var Paths = forwardRef70((delegated, ref) => {
|
|
3910
|
+
return /* @__PURE__ */ jsxs67("svg", {
|
|
3873
3911
|
ref,
|
|
3874
3912
|
width: "22",
|
|
3875
3913
|
height: "22",
|
|
@@ -3877,21 +3915,21 @@ var Paths = forwardRef69((delegated, ref) => {
|
|
|
3877
3915
|
fill: "none",
|
|
3878
3916
|
...delegated,
|
|
3879
3917
|
children: [
|
|
3880
|
-
/* @__PURE__ */
|
|
3918
|
+
/* @__PURE__ */ jsx76("path", {
|
|
3881
3919
|
d: "M12.742 13.88a7.265 7.265 0 00-7.266-7.265V5.36a.313.313 0 00-.507-.245L1.305 8.018a.313.313 0 00.005.495l3.665 2.768a.313.313 0 00.501-.25V9.924a3.778 3.778 0 013.779 3.779v5.856c0 .173.14.313.312.313h2.945a.23.23 0 00.23-.23v-5.76z",
|
|
3882
3920
|
fill: "#fff"
|
|
3883
3921
|
}),
|
|
3884
|
-
/* @__PURE__ */
|
|
3922
|
+
/* @__PURE__ */ jsx76("path", {
|
|
3885
3923
|
fillRule: "evenodd",
|
|
3886
3924
|
clipRule: "evenodd",
|
|
3887
3925
|
d: "M5.789 5.36a.626.626 0 00-1.014-.49L1.111 7.773a.626.626 0 00.01.99l3.665 2.768a.626.626 0 001.003-.5v-.78a3.466 3.466 0 013.153 3.45v5.857c0 .345.28.625.625.625h2.945c.3 0 .542-.242.542-.542v-5.76A7.578 7.578 0 005.79 6.308V5.36zm-4.29 2.903L5.163 5.36v1.568h.313a6.952 6.952 0 016.953 6.952v5.678H9.567v-5.856a4.091 4.091 0 00-4.09-4.091h-.314v1.42L1.5 8.264z",
|
|
3888
3926
|
fill: "#528693"
|
|
3889
3927
|
}),
|
|
3890
|
-
/* @__PURE__ */
|
|
3928
|
+
/* @__PURE__ */ jsx76("path", {
|
|
3891
3929
|
d: "M9.259 10.963a7.265 7.265 0 017.265-7.265V2.443c0-.262.302-.408.507-.245L20.695 5.1a.313.313 0 01-.005.495l-3.665 2.768a.313.313 0 01-.501-.25V7.006a3.778 3.778 0 00-3.779 3.778v8.668c0 .173-.14.313-.312.313H9.537a.279.279 0 01-.278-.279v-8.523z",
|
|
3892
3930
|
fill: "#BFF6F8"
|
|
3893
3931
|
}),
|
|
3894
|
-
/* @__PURE__ */
|
|
3932
|
+
/* @__PURE__ */ jsx76("path", {
|
|
3895
3933
|
fillRule: "evenodd",
|
|
3896
3934
|
clipRule: "evenodd",
|
|
3897
3935
|
d: "M16.211 2.443a.626.626 0 011.014-.49l3.665 2.903a.625.625 0 01-.012.99l-3.664 2.768a.626.626 0 01-1.003-.5v-.781a3.466 3.466 0 00-3.153 3.452v8.668c0 .345-.28.625-.625.625H9.537a.591.591 0 01-.591-.591v-8.524a7.578 7.578 0 017.265-7.571v-.949zm4.29 2.903l-3.664-2.903v1.568h-.313a6.952 6.952 0 00-6.953 6.952v8.49h2.862v-8.668a4.091 4.091 0 014.09-4.091h.314v1.42L20.5 5.347z",
|
|
@@ -3903,10 +3941,10 @@ var Paths = forwardRef69((delegated, ref) => {
|
|
|
3903
3941
|
Paths.displayName = "PathsIcon";
|
|
3904
3942
|
|
|
3905
3943
|
// src/iconography/people.tsx
|
|
3906
|
-
import { forwardRef as
|
|
3907
|
-
import { jsx as
|
|
3908
|
-
var People =
|
|
3909
|
-
return /* @__PURE__ */
|
|
3944
|
+
import { forwardRef as forwardRef71 } from "react";
|
|
3945
|
+
import { jsx as jsx77, jsxs as jsxs68 } from "react/jsx-runtime";
|
|
3946
|
+
var People = forwardRef71((delegated, ref) => {
|
|
3947
|
+
return /* @__PURE__ */ jsxs68("svg", {
|
|
3910
3948
|
ref,
|
|
3911
3949
|
width: "17",
|
|
3912
3950
|
height: "16",
|
|
@@ -3914,51 +3952,51 @@ var People = forwardRef70((delegated, ref) => {
|
|
|
3914
3952
|
fill: "none",
|
|
3915
3953
|
...delegated,
|
|
3916
3954
|
children: [
|
|
3917
|
-
/* @__PURE__ */
|
|
3955
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3918
3956
|
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",
|
|
3919
3957
|
fill: "#528693"
|
|
3920
3958
|
}),
|
|
3921
|
-
/* @__PURE__ */
|
|
3959
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3922
3960
|
fillRule: "evenodd",
|
|
3923
3961
|
clipRule: "evenodd",
|
|
3924
3962
|
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",
|
|
3925
3963
|
fill: "#528693"
|
|
3926
3964
|
}),
|
|
3927
|
-
/* @__PURE__ */
|
|
3965
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3928
3966
|
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",
|
|
3929
3967
|
fill: "#BFF6F8"
|
|
3930
3968
|
}),
|
|
3931
|
-
/* @__PURE__ */
|
|
3969
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3932
3970
|
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",
|
|
3933
3971
|
fill: "#fff"
|
|
3934
3972
|
}),
|
|
3935
|
-
/* @__PURE__ */
|
|
3973
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3936
3974
|
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",
|
|
3937
3975
|
fill: "#528693"
|
|
3938
3976
|
}),
|
|
3939
|
-
/* @__PURE__ */
|
|
3977
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3940
3978
|
fillRule: "evenodd",
|
|
3941
3979
|
clipRule: "evenodd",
|
|
3942
3980
|
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",
|
|
3943
3981
|
fill: "#528693"
|
|
3944
3982
|
}),
|
|
3945
|
-
/* @__PURE__ */
|
|
3983
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3946
3984
|
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",
|
|
3947
3985
|
fill: "#BFF6F8"
|
|
3948
3986
|
}),
|
|
3949
|
-
/* @__PURE__ */
|
|
3987
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3950
3988
|
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",
|
|
3951
3989
|
fill: "#fff"
|
|
3952
3990
|
}),
|
|
3953
|
-
/* @__PURE__ */
|
|
3991
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3954
3992
|
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",
|
|
3955
3993
|
fill: "#528693"
|
|
3956
3994
|
}),
|
|
3957
|
-
/* @__PURE__ */
|
|
3995
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3958
3996
|
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",
|
|
3959
3997
|
fill: "#BFF6F8"
|
|
3960
3998
|
}),
|
|
3961
|
-
/* @__PURE__ */
|
|
3999
|
+
/* @__PURE__ */ jsx77("path", {
|
|
3962
4000
|
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",
|
|
3963
4001
|
fill: "#fff"
|
|
3964
4002
|
})
|
|
@@ -3968,10 +4006,10 @@ var People = forwardRef70((delegated, ref) => {
|
|
|
3968
4006
|
People.displayName = "PeopleIcon";
|
|
3969
4007
|
|
|
3970
4008
|
// src/iconography/percentage.tsx
|
|
3971
|
-
import { forwardRef as
|
|
3972
|
-
import { jsx as
|
|
3973
|
-
var Percentage =
|
|
3974
|
-
return /* @__PURE__ */
|
|
4009
|
+
import { forwardRef as forwardRef72 } from "react";
|
|
4010
|
+
import { jsx as jsx78, jsxs as jsxs69 } from "react/jsx-runtime";
|
|
4011
|
+
var Percentage = forwardRef72((delegated, ref) => {
|
|
4012
|
+
return /* @__PURE__ */ jsxs69("svg", {
|
|
3975
4013
|
ref,
|
|
3976
4014
|
width: "22",
|
|
3977
4015
|
height: "22",
|
|
@@ -3979,40 +4017,40 @@ var Percentage = forwardRef71((delegated, ref) => {
|
|
|
3979
4017
|
fill: "none",
|
|
3980
4018
|
...delegated,
|
|
3981
4019
|
children: [
|
|
3982
|
-
/* @__PURE__ */
|
|
4020
|
+
/* @__PURE__ */ jsx78("path", {
|
|
3983
4021
|
fillRule: "evenodd",
|
|
3984
4022
|
clipRule: "evenodd",
|
|
3985
4023
|
d: "M6.03188 15.4616L16.3576 5.13588C16.7481 4.74536 17.3813 4.74536 17.7718 5.13588C18.1623 5.52641 18.1623 6.15957 17.7718 6.5501L7.44609 16.8758C7.05556 17.2663 6.4224 17.2663 6.03188 16.8758C5.64135 16.4853 5.64135 15.8521 6.03188 15.4616Z",
|
|
3986
4024
|
fill: "#BFF6F8",
|
|
3987
4025
|
className: "c-icon-fill"
|
|
3988
4026
|
}),
|
|
3989
|
-
/* @__PURE__ */
|
|
4027
|
+
/* @__PURE__ */ jsx78("path", {
|
|
3990
4028
|
fillRule: "evenodd",
|
|
3991
4029
|
clipRule: "evenodd",
|
|
3992
4030
|
d: "M5.60761 15.0373L15.9333 4.71159C16.5582 4.08676 17.5712 4.08676 18.1961 4.7116C18.8209 5.33644 18.8209 6.3495 18.1961 6.97434L7.87035 17.3C7.24551 17.9249 6.23245 17.9249 5.60761 17.3C4.98277 16.6752 4.98277 15.6621 5.60761 15.0373ZM16.3576 5.13586L6.03187 15.4616C5.64135 15.8521 5.64135 16.4853 6.03187 16.8758C6.4224 17.2663 7.05556 17.2663 7.44609 16.8758L17.7718 6.55007C18.1623 6.15955 18.1623 5.52638 17.7718 5.13586C17.3813 4.74533 16.7481 4.74533 16.3576 5.13586Z",
|
|
3993
4031
|
fill: "#528693"
|
|
3994
4032
|
}),
|
|
3995
|
-
/* @__PURE__ */
|
|
4033
|
+
/* @__PURE__ */ jsx78("path", {
|
|
3996
4034
|
fillRule: "evenodd",
|
|
3997
4035
|
clipRule: "evenodd",
|
|
3998
4036
|
d: "M9.60204 6.70605C9.60204 7.81062 8.70661 8.70605 7.60204 8.70605C6.49747 8.70605 5.60204 7.81062 5.60204 6.70605C5.60204 5.60148 6.49747 4.70605 7.60204 4.70605C8.70661 4.70605 9.60204 5.60148 9.60204 6.70605Z",
|
|
3999
4037
|
fill: "#BFF6F8",
|
|
4000
4038
|
className: "c-icon-fill"
|
|
4001
4039
|
}),
|
|
4002
|
-
/* @__PURE__ */
|
|
4040
|
+
/* @__PURE__ */ jsx78("path", {
|
|
4003
4041
|
fillRule: "evenodd",
|
|
4004
4042
|
clipRule: "evenodd",
|
|
4005
4043
|
d: "M10.202 6.70603C10.202 8.14197 9.03798 9.30603 7.60204 9.30603C6.1661 9.30603 5.00204 8.14197 5.00204 6.70603C5.00204 5.27009 6.1661 4.10603 7.60204 4.10603C9.03798 4.10603 10.202 5.27009 10.202 6.70603ZM7.60204 8.70603C8.70661 8.70603 9.60204 7.8106 9.60204 6.70603C9.60204 5.60146 8.70661 4.70603 7.60204 4.70603C6.49747 4.70603 5.60204 5.60146 5.60204 6.70603C5.60204 7.8106 6.49747 8.70603 7.60204 8.70603Z",
|
|
4006
4044
|
fill: "#528693"
|
|
4007
4045
|
}),
|
|
4008
|
-
/* @__PURE__ */
|
|
4046
|
+
/* @__PURE__ */ jsx78("path", {
|
|
4009
4047
|
fillRule: "evenodd",
|
|
4010
4048
|
clipRule: "evenodd",
|
|
4011
4049
|
d: "M18.602 15.7061C18.602 16.8106 17.7066 17.7061 16.602 17.7061C15.4975 17.7061 14.602 16.8106 14.602 15.7061C14.602 14.6015 15.4975 13.7061 16.602 13.7061C17.7066 13.7061 18.602 14.6015 18.602 15.7061Z",
|
|
4012
4050
|
fill: "#BFF6F8",
|
|
4013
4051
|
className: "c-icon-fill"
|
|
4014
4052
|
}),
|
|
4015
|
-
/* @__PURE__ */
|
|
4053
|
+
/* @__PURE__ */ jsx78("path", {
|
|
4016
4054
|
fillRule: "evenodd",
|
|
4017
4055
|
clipRule: "evenodd",
|
|
4018
4056
|
d: "M19.202 15.7061C19.202 17.142 18.038 18.3061 16.602 18.3061C15.1661 18.3061 14.002 17.142 14.002 15.7061C14.002 14.2701 15.1661 13.1061 16.602 13.1061C18.038 13.1061 19.202 14.2701 19.202 15.7061ZM16.602 17.7061C17.7066 17.7061 18.602 16.8106 18.602 15.7061C18.602 14.6015 17.7066 13.7061 16.602 13.7061C15.4975 13.7061 14.602 14.6015 14.602 15.7061C14.602 16.8106 15.4975 17.7061 16.602 17.7061Z",
|
|
@@ -4024,10 +4062,10 @@ var Percentage = forwardRef71((delegated, ref) => {
|
|
|
4024
4062
|
Percentage.displayName = "PercentageIcon";
|
|
4025
4063
|
|
|
4026
4064
|
// src/iconography/piece.tsx
|
|
4027
|
-
import { forwardRef as
|
|
4028
|
-
import { jsx as
|
|
4029
|
-
var Piece =
|
|
4030
|
-
return /* @__PURE__ */
|
|
4065
|
+
import { forwardRef as forwardRef73 } from "react";
|
|
4066
|
+
import { jsx as jsx79, jsxs as jsxs70 } from "react/jsx-runtime";
|
|
4067
|
+
var Piece = forwardRef73((delegated, ref) => {
|
|
4068
|
+
return /* @__PURE__ */ jsxs70("svg", {
|
|
4031
4069
|
ref,
|
|
4032
4070
|
width: "22",
|
|
4033
4071
|
height: "22",
|
|
@@ -4035,23 +4073,23 @@ var Piece = forwardRef72((delegated, ref) => {
|
|
|
4035
4073
|
fill: "none",
|
|
4036
4074
|
...delegated,
|
|
4037
4075
|
children: [
|
|
4038
|
-
/* @__PURE__ */
|
|
4076
|
+
/* @__PURE__ */ jsxs70("g", {
|
|
4039
4077
|
clipPath: "url(#a)",
|
|
4040
4078
|
children: [
|
|
4041
|
-
/* @__PURE__ */
|
|
4079
|
+
/* @__PURE__ */ jsx79("path", {
|
|
4042
4080
|
fill: "#BFF6F8",
|
|
4043
4081
|
d: "M1.67 1.89h18.491v18.157H1.671V1.891Z",
|
|
4044
4082
|
className: "c-icon-fill"
|
|
4045
4083
|
}),
|
|
4046
|
-
/* @__PURE__ */
|
|
4084
|
+
/* @__PURE__ */ jsx79("path", {
|
|
4047
4085
|
fill: "#fff",
|
|
4048
4086
|
d: "M11.232 10.957h2.232l1.159-3.053H16.5l1.43 3.053h2.232v9.091h-8.93v-2.842l3.063-.346v-2.136l-3.063-.361v-3.406Z"
|
|
4049
4087
|
}),
|
|
4050
|
-
/* @__PURE__ */
|
|
4088
|
+
/* @__PURE__ */ jsx79("path", {
|
|
4051
4089
|
fill: "#528693",
|
|
4052
4090
|
d: "M18.351.729H3.67A2.89 2.89 0 0 0 .783 3.614v14.683a2.89 2.89 0 0 0 2.886 2.885h14.682a2.89 2.89 0 0 0 2.886-2.885V3.614A2.89 2.89 0 0 0 18.351.73Zm1.688 2.885V10.4H17.75V8.906a2.04 2.04 0 0 0-2.038-2.037 2.04 2.04 0 0 0-2.037 2.037V10.4H11.64V6.993H8.888a.84.84 0 0 1 0-1.678l2.751-.025V1.927h6.712c.93 0 1.688.757 1.688 1.687ZM3.669 1.927h6.772v2.175l-1.556.015A2.04 2.04 0 0 0 6.85 6.154a2.04 2.04 0 0 0 2.038 2.037h1.553V10.4H6.975v2.752a.84.84 0 0 1-1.678 0l-.026-2.752h-3.29V3.614c0-.93.758-1.687 1.688-1.687Zm-1.687 16.37v-6.7h2.102l.014 1.557a2.04 2.04 0 0 0 2.038 2.034 2.04 2.04 0 0 0 2.037-2.037v-1.553h2.268v3.295h2.691a.84.84 0 0 1 0 1.678h-2.691v3.413H3.669a1.69 1.69 0 0 1-1.687-1.688Zm16.37 1.687h-6.713v-2.215h1.493a2.04 2.04 0 0 0 2.038-2.037 2.04 2.04 0 0 0-2.038-2.038H11.64v-2.096h3.236V8.906a.84.84 0 0 1 1.677 0v2.692h3.487v6.699a1.69 1.69 0 0 1-1.688 1.687Z"
|
|
4053
4091
|
}),
|
|
4054
|
-
/* @__PURE__ */
|
|
4092
|
+
/* @__PURE__ */ jsx79("path", {
|
|
4055
4093
|
fill: "#BFF6F8",
|
|
4056
4094
|
fillRule: "evenodd",
|
|
4057
4095
|
d: "M20.273 10.634h-2.757V8.906c0-.994-.809-1.803-1.802-1.803-.994 0-1.803.81-1.803 1.803v1.728h-2.506V7.228H8.888a1.075 1.075 0 0 1-.001-2.148l2.518-.023V1.692h6.946c1.06 0 1.922.862 1.922 1.922v7.02ZM11.64 5.29l-2.751.025a.84.84 0 0 0 0 1.678h2.751v3.406h2.037V8.906a2.04 2.04 0 0 1 2.037-2.037 2.04 2.04 0 0 1 2.038 2.037V10.4h2.288V3.614a1.69 1.69 0 0 0-1.688-1.687H11.64V5.29Zm-.963-3.598v2.643l-1.791.016c-.993.002-1.8.81-1.8 1.803 0 .994.809 1.803 1.803 1.803h1.787v2.677H7.21v2.517a1.075 1.075 0 0 1-2.147 0l-.023-2.517H1.747v-7.02c0-1.06.862-1.922 1.922-1.922h7.006ZM5.27 10.4l.026 2.752a.84.84 0 0 0 1.678 0v-2.752h3.466V8.191H8.888A2.04 2.04 0 0 1 6.85 6.154a2.04 2.04 0 0 1 2.035-2.037l1.556-.015V1.927H3.669a1.69 1.69 0 0 0-1.687 1.687V10.4h3.29Zm-3.524.964h2.57l.016 1.79c.002.993.81 1.8 1.803 1.8.994 0 1.802-.808 1.802-1.802v-1.788h2.737v3.295h2.457a1.075 1.075 0 0 1 0 2.147h-2.457v3.413H3.67a1.924 1.924 0 0 1-1.922-1.921v-6.934Zm8.694 5.208h2.691a.84.84 0 0 0 0-1.678h-2.691v-3.295H8.173v1.553a2.04 2.04 0 0 1-2.037 2.037 2.04 2.04 0 0 1-2.038-2.034l-.014-1.556H1.982v6.699c0 .93.757 1.687 1.687 1.687h6.772V16.57Zm.964 3.647v-2.683h1.727c.994 0 1.803-.81 1.803-1.803 0-.994-.809-1.803-1.803-1.803h-1.727v-2.566h3.235V8.906a1.075 1.075 0 0 1 2.147 0v2.457h3.486v6.934c0 1.06-.862 1.921-1.922 1.921h-6.946Zm5.147-8.62V8.906a.84.84 0 0 0-1.678 0v2.692H11.64v2.096h1.493a2.04 2.04 0 0 1 2.038 2.038 2.04 2.04 0 0 1-2.038 2.037H11.64v2.215h6.712a1.69 1.69 0 0 0 1.688-1.688v-6.698h-3.487Zm1.8-10.635H3.668a2.655 2.655 0 0 0-2.651 2.651v14.683a2.655 2.655 0 0 0 2.651 2.65h14.682a2.655 2.655 0 0 0 2.651-2.65V3.614a2.655 2.655 0 0 0-2.65-2.65ZM3.668.73h14.682a2.89 2.89 0 0 1 2.886 2.885v14.683a2.89 2.89 0 0 1-2.886 2.885H3.67a2.89 2.89 0 0 1-2.886-2.885V3.614A2.89 2.89 0 0 1 3.67.73Z",
|
|
@@ -4059,10 +4097,10 @@ var Piece = forwardRef72((delegated, ref) => {
|
|
|
4059
4097
|
})
|
|
4060
4098
|
]
|
|
4061
4099
|
}),
|
|
4062
|
-
/* @__PURE__ */
|
|
4063
|
-
children: /* @__PURE__ */
|
|
4100
|
+
/* @__PURE__ */ jsx79("defs", {
|
|
4101
|
+
children: /* @__PURE__ */ jsx79("clipPath", {
|
|
4064
4102
|
id: "a",
|
|
4065
|
-
children: /* @__PURE__ */
|
|
4103
|
+
children: /* @__PURE__ */ jsx79("path", {
|
|
4066
4104
|
fill: "#fff",
|
|
4067
4105
|
d: "M0 0h22v22H0z"
|
|
4068
4106
|
})
|
|
@@ -4074,10 +4112,10 @@ var Piece = forwardRef72((delegated, ref) => {
|
|
|
4074
4112
|
Piece.displayName = "PieceIcon";
|
|
4075
4113
|
|
|
4076
4114
|
// src/iconography/pin.tsx
|
|
4077
|
-
import { forwardRef as
|
|
4078
|
-
import { jsx as
|
|
4079
|
-
var Pin =
|
|
4080
|
-
return /* @__PURE__ */
|
|
4115
|
+
import { forwardRef as forwardRef74 } from "react";
|
|
4116
|
+
import { jsx as jsx80, jsxs as jsxs71 } from "react/jsx-runtime";
|
|
4117
|
+
var Pin = forwardRef74((delegated, ref) => {
|
|
4118
|
+
return /* @__PURE__ */ jsxs71("svg", {
|
|
4081
4119
|
ref,
|
|
4082
4120
|
width: "26",
|
|
4083
4121
|
height: "26",
|
|
@@ -4085,19 +4123,19 @@ var Pin = forwardRef73((delegated, ref) => {
|
|
|
4085
4123
|
fill: "none",
|
|
4086
4124
|
...delegated,
|
|
4087
4125
|
children: [
|
|
4088
|
-
/* @__PURE__ */
|
|
4126
|
+
/* @__PURE__ */ jsx80("path", {
|
|
4089
4127
|
d: "M14.0891 2.50946C14.5034 1.79202 15.4207 1.54621 16.1382 1.96042L25.6645 7.46042C26.3819 7.87463 26.6277 8.79202 26.2135 9.50946V9.50946C25.7993 10.2269 24.8819 10.4727 24.1645 10.0585L14.6382 4.55849C13.9207 4.14428 13.6749 3.2269 14.0891 2.50946V2.50946Z",
|
|
4090
4128
|
fill: "#4C505B"
|
|
4091
4129
|
}),
|
|
4092
|
-
/* @__PURE__ */
|
|
4130
|
+
/* @__PURE__ */ jsx80("path", {
|
|
4093
4131
|
d: "M16.0712 3.07644L24.7314 8.07644L18.9635 22.0668L6.83914 15.0668L16.0712 3.07644Z",
|
|
4094
4132
|
fill: "#4C505B"
|
|
4095
4133
|
}),
|
|
4096
|
-
/* @__PURE__ */
|
|
4134
|
+
/* @__PURE__ */ jsx80("path", {
|
|
4097
4135
|
d: "M4.85709 14.4998C5.2713 13.7824 6.18869 13.5366 6.90612 13.9508L19.8965 21.4508C20.6139 21.865 20.8598 22.7824 20.4455 23.4998V23.4998C20.0313 24.2173 19.1139 24.4631 18.3965 24.0489L5.40612 16.5489C4.68869 16.1347 4.44287 15.2173 4.85709 14.4998V14.4998Z",
|
|
4098
4136
|
fill: "#4C505B"
|
|
4099
4137
|
}),
|
|
4100
|
-
/* @__PURE__ */
|
|
4138
|
+
/* @__PURE__ */ jsx80("path", {
|
|
4101
4139
|
d: "M9.42047 16.5958L16.3487 20.5958L8.31759 27.5061L7.45156 27.0061L9.42047 16.5958Z",
|
|
4102
4140
|
fill: "#4C505B"
|
|
4103
4141
|
})
|
|
@@ -4107,10 +4145,10 @@ var Pin = forwardRef73((delegated, ref) => {
|
|
|
4107
4145
|
Pin.displayName = "PinIcon";
|
|
4108
4146
|
|
|
4109
4147
|
// src/iconography/pipeline-dashed.tsx
|
|
4110
|
-
import { forwardRef as
|
|
4111
|
-
import { jsx as
|
|
4112
|
-
var PipelineDashed =
|
|
4113
|
-
return /* @__PURE__ */
|
|
4148
|
+
import { forwardRef as forwardRef75 } from "react";
|
|
4149
|
+
import { jsx as jsx81, jsxs as jsxs72 } from "react/jsx-runtime";
|
|
4150
|
+
var PipelineDashed = forwardRef75((delegated, ref) => {
|
|
4151
|
+
return /* @__PURE__ */ jsxs72("svg", {
|
|
4114
4152
|
ref,
|
|
4115
4153
|
width: "22",
|
|
4116
4154
|
height: "22",
|
|
@@ -4118,91 +4156,91 @@ var PipelineDashed = forwardRef74((delegated, ref) => {
|
|
|
4118
4156
|
fill: "none",
|
|
4119
4157
|
...delegated,
|
|
4120
4158
|
children: [
|
|
4121
|
-
/* @__PURE__ */
|
|
4159
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4122
4160
|
fillRule: "evenodd",
|
|
4123
4161
|
clipRule: "evenodd",
|
|
4124
4162
|
d: "M3.53671 14.1535C3.7024 14.1535 3.83671 14.2878 3.83671 14.4535V16.2373L5.13158 16.6689C5.28876 16.7213 5.37371 16.8912 5.32131 17.0484C5.26892 17.2056 5.09902 17.2905 4.94184 17.2381L3.44184 16.7381C3.31934 16.6973 3.23671 16.5826 3.23671 16.4535V14.4535C3.23671 14.2878 3.37102 14.1535 3.53671 14.1535Z",
|
|
4125
4163
|
fill: "#528693"
|
|
4126
4164
|
}),
|
|
4127
|
-
/* @__PURE__ */
|
|
4165
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4128
4166
|
fillRule: "evenodd",
|
|
4129
4167
|
clipRule: "evenodd",
|
|
4130
4168
|
d: "M3.53671 10.1535C3.7024 10.1535 3.83671 10.2878 3.83671 10.4535V12.4535C3.83671 12.6192 3.7024 12.7535 3.53671 12.7535C3.37102 12.7535 3.23671 12.6192 3.23671 12.4535V10.4535C3.23671 10.2878 3.37102 10.1535 3.53671 10.1535Z",
|
|
4131
4169
|
fill: "#528693"
|
|
4132
4170
|
}),
|
|
4133
|
-
/* @__PURE__ */
|
|
4171
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4134
4172
|
fillRule: "evenodd",
|
|
4135
4173
|
clipRule: "evenodd",
|
|
4136
4174
|
d: "M3.53671 14.1535C3.7024 14.1535 3.83671 14.2878 3.83671 14.4535V16.2373L5.13158 16.6689C5.28876 16.7213 5.37371 16.8912 5.32131 17.0484C5.26892 17.2056 5.09902 17.2905 4.94184 17.2381L3.44184 16.7381C3.31934 16.6973 3.23671 16.5826 3.23671 16.4535V14.4535C3.23671 14.2878 3.37102 14.1535 3.53671 14.1535Z",
|
|
4137
4175
|
fill: "#528693"
|
|
4138
4176
|
}),
|
|
4139
|
-
/* @__PURE__ */
|
|
4177
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4140
4178
|
fillRule: "evenodd",
|
|
4141
4179
|
clipRule: "evenodd",
|
|
4142
4180
|
d: "M3.53671 8.25354C3.7024 8.25354 3.83671 8.11923 3.83671 7.95354V6.16977L6.63158 5.23815C6.78876 5.18575 6.87371 5.01585 6.82131 4.85867C6.76892 4.70149 6.59902 4.61654 6.44184 4.66894L3.44184 5.66894C3.31934 5.70977 3.23671 5.82441 3.23671 5.95354V7.95354C3.23671 8.11923 3.37102 8.25354 3.53671 8.25354Z",
|
|
4143
4181
|
fill: "#528693"
|
|
4144
4182
|
}),
|
|
4145
|
-
/* @__PURE__ */
|
|
4183
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4146
4184
|
fillRule: "evenodd",
|
|
4147
4185
|
clipRule: "evenodd",
|
|
4148
4186
|
d: "M3.24253 5.89467C3.27503 5.7322 3.43307 5.62683 3.59554 5.65933L6.09554 6.15933C6.25801 6.19182 6.36337 6.34987 6.33088 6.51234C6.29839 6.6748 6.14034 6.78017 5.97787 6.74767L3.47787 6.24767C3.3154 6.21518 3.21004 6.05713 3.24253 5.89467Z",
|
|
4149
4187
|
fill: "#528693"
|
|
4150
4188
|
}),
|
|
4151
|
-
/* @__PURE__ */
|
|
4189
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4152
4190
|
fillRule: "evenodd",
|
|
4153
4191
|
clipRule: "evenodd",
|
|
4154
4192
|
d: "M18.5367 10.1535C18.371 10.1535 18.2367 10.2878 18.2367 10.4535V12.4535C18.2367 12.6192 18.371 12.7535 18.5367 12.7535C18.7024 12.7535 18.8367 12.6192 18.8367 12.4535V10.4535C18.8367 10.2878 18.7024 10.1535 18.5367 10.1535Z",
|
|
4155
4193
|
fill: "#528693"
|
|
4156
4194
|
}),
|
|
4157
|
-
/* @__PURE__ */
|
|
4195
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4158
4196
|
fillRule: "evenodd",
|
|
4159
4197
|
clipRule: "evenodd",
|
|
4160
4198
|
d: "M18.5367 14.1535C18.371 14.1535 18.2367 14.2878 18.2367 14.4535V16.2373L16.9418 16.6689C16.7846 16.7213 16.6997 16.8912 16.7521 17.0484C16.8045 17.2056 16.9744 17.2905 17.1316 17.2381L18.6316 16.7381C18.7541 16.6973 18.8367 16.5826 18.8367 16.4535V14.4535C18.8367 14.2878 18.7024 14.1535 18.5367 14.1535Z",
|
|
4161
4199
|
fill: "#528693"
|
|
4162
4200
|
}),
|
|
4163
|
-
/* @__PURE__ */
|
|
4201
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4164
4202
|
fillRule: "evenodd",
|
|
4165
4203
|
clipRule: "evenodd",
|
|
4166
4204
|
d: "M18.5367 8.25354C18.371 8.25354 18.2367 8.11923 18.2367 7.95354V6.16977L15.4418 5.23815C15.2846 5.18575 15.1997 5.01585 15.2521 4.85867C15.3045 4.70149 15.4744 4.61654 15.6316 4.66894L18.6316 5.66894C18.7541 5.70977 18.8367 5.82441 18.8367 5.95354V7.95354C18.8367 8.11923 18.7024 8.25354 18.5367 8.25354Z",
|
|
4167
4205
|
fill: "#528693"
|
|
4168
4206
|
}),
|
|
4169
|
-
/* @__PURE__ */
|
|
4207
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4170
4208
|
fillRule: "evenodd",
|
|
4171
4209
|
clipRule: "evenodd",
|
|
4172
4210
|
d: "M18.8309 5.89467C18.7984 5.7322 18.6403 5.62683 18.4779 5.65933L15.9779 6.15933C15.8154 6.19182 15.71 6.34987 15.7425 6.51234C15.775 6.6748 15.9331 6.78017 16.0955 6.74767L18.5955 6.24767C18.758 6.21518 18.8634 6.05713 18.8309 5.89467Z",
|
|
4173
4211
|
fill: "#528693"
|
|
4174
4212
|
}),
|
|
4175
|
-
/* @__PURE__ */
|
|
4213
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4176
4214
|
fillRule: "evenodd",
|
|
4177
4215
|
clipRule: "evenodd",
|
|
4178
4216
|
d: "M11.0367 3.33722L12.6316 3.86884C12.7888 3.92124 12.8737 4.09113 12.8213 4.24832C12.7689 4.4055 12.599 4.49045 12.4418 4.43805L11.0367 3.96967L9.63157 4.43805C9.47438 4.49045 9.30449 4.4055 9.25209 4.24832C9.1997 4.09113 9.28465 3.92124 9.44183 3.86884L11.0367 3.33722Z",
|
|
4179
4217
|
fill: "#528693"
|
|
4180
4218
|
}),
|
|
4181
|
-
/* @__PURE__ */
|
|
4219
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4182
4220
|
fillRule: "evenodd",
|
|
4183
4221
|
clipRule: "evenodd",
|
|
4184
4222
|
d: "M8.74566 7.0807C8.78585 6.91997 8.94873 6.82224 9.10946 6.86242L11.0367 7.34423L12.9639 6.86242C13.1247 6.82224 13.2876 6.91997 13.3277 7.0807C13.3679 7.24144 13.2702 7.40432 13.1095 7.44451L11.0367 7.9627L8.96394 7.44451C8.80321 7.40432 8.70548 7.24144 8.74566 7.0807Z",
|
|
4185
4223
|
fill: "#528693"
|
|
4186
4224
|
}),
|
|
4187
|
-
/* @__PURE__ */
|
|
4225
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4188
4226
|
fillRule: "evenodd",
|
|
4189
4227
|
clipRule: "evenodd",
|
|
4190
4228
|
d: "M8.74566 17.7808C8.78585 17.62 8.94873 17.5223 9.10946 17.5625L11.0367 18.0443L12.9639 17.5625C13.1247 17.5223 13.2876 17.62 13.3277 17.7808C13.3679 17.9415 13.2702 18.1044 13.1095 18.1446L11.0367 18.6628L8.96394 18.1446C8.80321 18.1044 8.70548 17.9415 8.74566 17.7808Z",
|
|
4191
4229
|
fill: "#528693"
|
|
4192
4230
|
}),
|
|
4193
|
-
/* @__PURE__ */
|
|
4231
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4194
4232
|
fillRule: "evenodd",
|
|
4195
4233
|
clipRule: "evenodd",
|
|
4196
4234
|
d: "M11.0367 7.6535C11.2024 7.6535 11.3367 7.78782 11.3367 7.9535V9.4535C11.3367 9.61919 11.2024 9.7535 11.0367 9.7535C10.871 9.7535 10.7367 9.61919 10.7367 9.4535V7.9535C10.7367 7.78782 10.871 7.6535 11.0367 7.6535Z",
|
|
4197
4235
|
fill: "#528693"
|
|
4198
4236
|
}),
|
|
4199
|
-
/* @__PURE__ */
|
|
4237
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4200
4238
|
fillRule: "evenodd",
|
|
4201
4239
|
clipRule: "evenodd",
|
|
4202
4240
|
d: "M11.0367 11.6535C11.2024 11.6535 11.3367 11.7878 11.3367 11.9535V13.4535C11.3367 13.6192 11.2024 13.7535 11.0367 13.7535C10.871 13.7535 10.7367 13.6192 10.7367 13.4535V11.9535C10.7367 11.7878 10.871 11.6535 11.0367 11.6535Z",
|
|
4203
4241
|
fill: "#528693"
|
|
4204
4242
|
}),
|
|
4205
|
-
/* @__PURE__ */
|
|
4243
|
+
/* @__PURE__ */ jsx81("path", {
|
|
4206
4244
|
fillRule: "evenodd",
|
|
4207
4245
|
clipRule: "evenodd",
|
|
4208
4246
|
d: "M11.0367 15.6535C11.2024 15.6535 11.3367 15.7878 11.3367 15.9535V18.1535C11.3367 18.3192 11.2024 18.4535 11.0367 18.4535C10.871 18.4535 10.7367 18.3192 10.7367 18.1535V15.9535C10.7367 15.7878 10.871 15.6535 11.0367 15.6535Z",
|
|
@@ -4214,10 +4252,10 @@ var PipelineDashed = forwardRef74((delegated, ref) => {
|
|
|
4214
4252
|
PipelineDashed.displayName = "PipelineDashed";
|
|
4215
4253
|
|
|
4216
4254
|
// src/iconography/plans-and-pricing.tsx
|
|
4217
|
-
import { forwardRef as
|
|
4218
|
-
import { jsx as
|
|
4219
|
-
var PlansAndPricing =
|
|
4220
|
-
return /* @__PURE__ */
|
|
4255
|
+
import { forwardRef as forwardRef76 } from "react";
|
|
4256
|
+
import { jsx as jsx82, jsxs as jsxs73 } from "react/jsx-runtime";
|
|
4257
|
+
var PlansAndPricing = forwardRef76((delegated, ref) => {
|
|
4258
|
+
return /* @__PURE__ */ jsxs73("svg", {
|
|
4221
4259
|
ref,
|
|
4222
4260
|
width: "17",
|
|
4223
4261
|
height: "16",
|
|
@@ -4225,45 +4263,45 @@ var PlansAndPricing = forwardRef75((delegated, ref) => {
|
|
|
4225
4263
|
fill: "none",
|
|
4226
4264
|
...delegated,
|
|
4227
4265
|
children: [
|
|
4228
|
-
/* @__PURE__ */
|
|
4266
|
+
/* @__PURE__ */ jsx82("path", {
|
|
4229
4267
|
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",
|
|
4230
4268
|
fill: "#BFF6F8"
|
|
4231
4269
|
}),
|
|
4232
|
-
/* @__PURE__ */
|
|
4270
|
+
/* @__PURE__ */ jsx82("path", {
|
|
4233
4271
|
fillRule: "evenodd",
|
|
4234
4272
|
clipRule: "evenodd",
|
|
4235
4273
|
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",
|
|
4236
4274
|
fill: "#528693"
|
|
4237
4275
|
}),
|
|
4238
|
-
/* @__PURE__ */
|
|
4276
|
+
/* @__PURE__ */ jsx82("path", {
|
|
4239
4277
|
d: "M11.0814 4.4614a.5.5 0 0 1-.5288-.5562l.2838-2.464L14.131 4.265l-3.0496.1964Z",
|
|
4240
4278
|
fill: "#fff"
|
|
4241
4279
|
}),
|
|
4242
|
-
/* @__PURE__ */
|
|
4280
|
+
/* @__PURE__ */ jsx82("path", {
|
|
4243
4281
|
fillRule: "evenodd",
|
|
4244
4282
|
clipRule: "evenodd",
|
|
4245
4283
|
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",
|
|
4246
4284
|
fill: "#528693"
|
|
4247
4285
|
}),
|
|
4248
|
-
/* @__PURE__ */
|
|
4286
|
+
/* @__PURE__ */ jsx82("path", {
|
|
4249
4287
|
fillRule: "evenodd",
|
|
4250
4288
|
clipRule: "evenodd",
|
|
4251
4289
|
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",
|
|
4252
4290
|
fill: "#fff"
|
|
4253
4291
|
}),
|
|
4254
|
-
/* @__PURE__ */
|
|
4292
|
+
/* @__PURE__ */ jsx82("path", {
|
|
4255
4293
|
fillRule: "evenodd",
|
|
4256
4294
|
clipRule: "evenodd",
|
|
4257
4295
|
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",
|
|
4258
4296
|
fill: "#528693"
|
|
4259
4297
|
}),
|
|
4260
|
-
/* @__PURE__ */
|
|
4298
|
+
/* @__PURE__ */ jsx82("path", {
|
|
4261
4299
|
fillRule: "evenodd",
|
|
4262
4300
|
clipRule: "evenodd",
|
|
4263
4301
|
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",
|
|
4264
4302
|
fill: "#fff"
|
|
4265
4303
|
}),
|
|
4266
|
-
/* @__PURE__ */
|
|
4304
|
+
/* @__PURE__ */ jsx82("path", {
|
|
4267
4305
|
fillRule: "evenodd",
|
|
4268
4306
|
clipRule: "evenodd",
|
|
4269
4307
|
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",
|
|
@@ -4275,10 +4313,10 @@ var PlansAndPricing = forwardRef75((delegated, ref) => {
|
|
|
4275
4313
|
PlansAndPricing.displayName = "PlansAndPricingIcon";
|
|
4276
4314
|
|
|
4277
4315
|
// src/iconography/plug.tsx
|
|
4278
|
-
import { forwardRef as
|
|
4279
|
-
import { jsx as
|
|
4280
|
-
var Plug =
|
|
4281
|
-
return /* @__PURE__ */
|
|
4316
|
+
import { forwardRef as forwardRef77 } from "react";
|
|
4317
|
+
import { jsx as jsx83, jsxs as jsxs74 } from "react/jsx-runtime";
|
|
4318
|
+
var Plug = forwardRef77((delegated, ref) => {
|
|
4319
|
+
return /* @__PURE__ */ jsxs74("svg", {
|
|
4282
4320
|
ref,
|
|
4283
4321
|
width: "23",
|
|
4284
4322
|
height: "22",
|
|
@@ -4286,31 +4324,31 @@ var Plug = forwardRef76((delegated, ref) => {
|
|
|
4286
4324
|
fill: "none",
|
|
4287
4325
|
...delegated,
|
|
4288
4326
|
children: [
|
|
4289
|
-
/* @__PURE__ */
|
|
4327
|
+
/* @__PURE__ */ jsx83("path", {
|
|
4290
4328
|
fill: "#fff",
|
|
4291
4329
|
d: "m8.858 2.818.924-.314.924.314v4.453H8.858V2.818ZM13.228 2.818l.924-.314.924.314v4.453h-1.848V2.818ZM8.563 14.186l3.288.416 3.327-.416v2.29c0 .673-.535 1.219-1.196 1.219H9.76c-.66 0-1.196-.546-1.196-1.22v-2.29Z"
|
|
4292
4330
|
}),
|
|
4293
|
-
/* @__PURE__ */
|
|
4331
|
+
/* @__PURE__ */ jsx83("path", {
|
|
4294
4332
|
fill: "#528693",
|
|
4295
4333
|
fillRule: "evenodd",
|
|
4296
4334
|
d: "m11.863 14.627-3.557-.441v2.43c0 .715.58 1.295 1.294 1.295h4.57c.714 0 1.294-.58 1.294-1.295v-2.43l-3.6.441Zm3 .237-3 .368-2.957-.367v1.751c0 .384.31.695.694.695h4.57c.383 0 .694-.311.694-.695v-1.752Z",
|
|
4297
4335
|
clipRule: "evenodd"
|
|
4298
4336
|
}),
|
|
4299
|
-
/* @__PURE__ */
|
|
4337
|
+
/* @__PURE__ */ jsx83("path", {
|
|
4300
4338
|
fill: "#fff",
|
|
4301
4339
|
d: "M8.513 3.338a1.261 1.261 0 0 1 2.522 0v4.36H8.513v-4.36Z"
|
|
4302
4340
|
}),
|
|
4303
|
-
/* @__PURE__ */
|
|
4341
|
+
/* @__PURE__ */ jsx83("path", {
|
|
4304
4342
|
fill: "#528693",
|
|
4305
4343
|
fillRule: "evenodd",
|
|
4306
4344
|
d: "M10.435 7.098v-3.76a.661.661 0 0 0-1.322 0v3.76h1.322Zm-1.922.6v-4.36a1.261 1.261 0 0 1 2.522 0v4.36H8.513ZM14.864 7.098v-3.76a.661.661 0 1 0-1.323 0v3.76h1.323Zm-1.923.6v-4.36a1.261 1.261 0 1 1 2.523 0v4.36H12.94ZM17.058 13a.3.3 0 0 1 .3.3v3.964a2.959 2.959 0 0 1-2.96 2.96h-.466a2.492 2.492 0 0 1-2.492-2.493h.6c0 1.045.847 1.892 1.892 1.892h.467a2.359 2.359 0 0 0 2.359-2.359V13.3a.3.3 0 0 1 .3-.3Z",
|
|
4307
4345
|
clipRule: "evenodd"
|
|
4308
4346
|
}),
|
|
4309
|
-
/* @__PURE__ */
|
|
4347
|
+
/* @__PURE__ */ jsx83("path", {
|
|
4310
4348
|
fill: "#BFF6F8",
|
|
4311
4349
|
d: "M7.168 7.454h9.384v4.667l-1.644 2.772-3.012.996-2.982-1.23-1.674-2.538-.072-4.667Z"
|
|
4312
4350
|
}),
|
|
4313
|
-
/* @__PURE__ */
|
|
4351
|
+
/* @__PURE__ */ jsx83("path", {
|
|
4314
4352
|
fill: "#528693",
|
|
4315
4353
|
fillRule: "evenodd",
|
|
4316
4354
|
d: "M7.427 7.735V10.9a4.458 4.458 0 1 0 8.916 0V7.735H7.427Zm-.022-.6a.578.578 0 0 0-.578.579V10.9a5.058 5.058 0 0 0 10.116 0V7.714a.578.578 0 0 0-.579-.579H7.405Z",
|
|
@@ -4322,10 +4360,10 @@ var Plug = forwardRef76((delegated, ref) => {
|
|
|
4322
4360
|
Plug.displayName = "PlugIcon";
|
|
4323
4361
|
|
|
4324
4362
|
// src/iconography/price-list.tsx
|
|
4325
|
-
import { forwardRef as
|
|
4326
|
-
import { jsx as
|
|
4327
|
-
var PriceList =
|
|
4328
|
-
return /* @__PURE__ */
|
|
4363
|
+
import { forwardRef as forwardRef78 } from "react";
|
|
4364
|
+
import { jsx as jsx84, jsxs as jsxs75 } from "react/jsx-runtime";
|
|
4365
|
+
var PriceList = forwardRef78((delegated, ref) => {
|
|
4366
|
+
return /* @__PURE__ */ jsxs75("svg", {
|
|
4329
4367
|
ref,
|
|
4330
4368
|
width: "22",
|
|
4331
4369
|
height: "22",
|
|
@@ -4333,41 +4371,41 @@ var PriceList = forwardRef77((delegated, ref) => {
|
|
|
4333
4371
|
fill: "currentColor",
|
|
4334
4372
|
...delegated,
|
|
4335
4373
|
children: [
|
|
4336
|
-
/* @__PURE__ */
|
|
4374
|
+
/* @__PURE__ */ jsx84("path", {
|
|
4337
4375
|
fill: "#BFF6F8",
|
|
4338
4376
|
d: "M3.094 5.635c0-.943.764-1.707 1.707-1.707h12.398c.943 0 1.707.764 1.707 1.707v13.66c0 .942-.764 1.706-1.707 1.706H4.801a1.707 1.707 0 0 1-1.707-1.707V5.634Z"
|
|
4339
4377
|
}),
|
|
4340
|
-
/* @__PURE__ */
|
|
4378
|
+
/* @__PURE__ */ jsx84("path", {
|
|
4341
4379
|
fill: "#528693",
|
|
4342
4380
|
fillRule: "evenodd",
|
|
4343
4381
|
d: "M4.801 3.416H17.2c1.225 0 2.219.994 2.219 2.219v13.66a2.219 2.219 0 0 1-2.22 2.219H4.802a2.219 2.219 0 0 1-2.219-2.22V5.636c0-1.225.994-2.219 2.219-2.219Zm0 .512c-.943 0-1.707.764-1.707 1.707v13.66c0 .942.764 1.707 1.707 1.707H17.2c.942 0 1.707-.765 1.707-1.707V5.635c0-.943-.765-1.707-1.707-1.707H4.8Z",
|
|
4344
4382
|
clipRule: "evenodd"
|
|
4345
4383
|
}),
|
|
4346
|
-
/* @__PURE__ */
|
|
4384
|
+
/* @__PURE__ */ jsx84("path", {
|
|
4347
4385
|
fill: "#fff",
|
|
4348
4386
|
d: "M7.92 4.205c0-.943.764-1.707 1.707-1.707h2.745c.943 0 1.707.764 1.707 1.707v.812a.341.341 0 0 1-.341.341H8.26a.341.341 0 0 1-.341-.34v-.813Z"
|
|
4349
4387
|
}),
|
|
4350
|
-
/* @__PURE__ */
|
|
4388
|
+
/* @__PURE__ */ jsx84("path", {
|
|
4351
4389
|
fill: "#528693",
|
|
4352
4390
|
fillRule: "evenodd",
|
|
4353
4391
|
d: "M9.625 1.986h2.746c1.225 0 2.219.994 2.219 2.22v.811a.853.853 0 0 1-.854.854H8.26a.853.853 0 0 1-.854-.854v-.812c0-1.225.994-2.219 2.22-2.219Zm0 .512c-.942 0-1.707.765-1.707 1.707v.812c0 .189.153.342.342.342h5.476a.341.341 0 0 0 .342-.342v-.812c0-.942-.765-1.707-1.707-1.707H9.625Z",
|
|
4354
4392
|
clipRule: "evenodd"
|
|
4355
4393
|
}),
|
|
4356
|
-
/* @__PURE__ */
|
|
4394
|
+
/* @__PURE__ */ jsx84("path", {
|
|
4357
4395
|
fill: "#fff",
|
|
4358
4396
|
d: "M11 .997a.98.98 0 0 0-.98.98h1.96a.98.98 0 0 0-.98-.98Z"
|
|
4359
4397
|
}),
|
|
4360
|
-
/* @__PURE__ */
|
|
4398
|
+
/* @__PURE__ */ jsx84("path", {
|
|
4361
4399
|
fill: "#528693",
|
|
4362
4400
|
fillRule: "evenodd",
|
|
4363
4401
|
d: "M9.506 2.49v-.512a1.492 1.492 0 0 1 2.984 0v.512H9.506Zm2.472-.512a.98.98 0 1 0-1.96 0h1.96Z",
|
|
4364
4402
|
clipRule: "evenodd"
|
|
4365
4403
|
}),
|
|
4366
|
-
/* @__PURE__ */
|
|
4404
|
+
/* @__PURE__ */ jsx84("path", {
|
|
4367
4405
|
fill: "#fff",
|
|
4368
4406
|
d: "M11 16.155c-.654 0-1.18-.533-1.18-1.18a.676.676 0 0 0-.675-.675.676.676 0 0 0-.674.674c0 1.14.755 2.105 1.787 2.422v.553c0 .37.304.674.675.674a.676.676 0 0 0 .674-.674v-.52A2.53 2.53 0 0 0 11 12.445c-.654.001-1.18-.532-1.18-1.18 0-.654.533-1.18 1.18-1.18.648 0 1.18.533 1.18 1.18 0 .372.304.675.675.675.37 0 .675-.303.675-.674a2.533 2.533 0 0 0-1.923-2.456v-.64a.676.676 0 0 0-.674-.675.677.677 0 0 0-.675.675v.674a2.53 2.53 0 0 0 .742 4.95c.654.001 1.18.534 1.18 1.181 0 .655-.526 1.18-1.18 1.18Z"
|
|
4369
4407
|
}),
|
|
4370
|
-
/* @__PURE__ */
|
|
4408
|
+
/* @__PURE__ */ jsx84("path", {
|
|
4371
4409
|
fill: "#528693",
|
|
4372
4410
|
fillRule: "evenodd",
|
|
4373
4411
|
d: "M10.332 14.974a.67.67 0 0 0 1.337 0 .67.67 0 0 0-.669-.668c-.358 0-.703-.063-1.022-.177.218.216.354.515.354.845ZM9.322 13.8a1.189 1.189 0 0 0-1.363 1.174c0 1.234.736 2.296 1.787 2.774v.2c0 .654.533 1.187 1.187 1.187s1.187-.533 1.187-1.187v-.146a3.038 3.038 0 0 0 1.922-2.828 3.04 3.04 0 0 0-1.363-2.537 1.189 1.189 0 0 0 1.363-1.174c0-1.283-.8-2.382-1.922-2.827v-.268c0-.654-.533-1.187-1.187-1.187s-1.187.533-1.187 1.187v.322a3.048 3.048 0 0 0-1.787 2.774A3.04 3.04 0 0 0 9.322 13.8Zm.937-4.957a2.53 2.53 0 0 0 .742 4.95c.654 0 1.18.533 1.18 1.18 0 .655-.526 1.181-1.18 1.181-.655 0-1.18-.533-1.18-1.18a.677.677 0 0 0-.675-.675.677.677 0 0 0-.675.675c0 1.14.756 2.104 1.787 2.421v.553c0 .371.304.675.675.675a.676.676 0 0 0 .675-.675v-.52A2.53 2.53 0 0 0 11 12.445c-.655 0-1.18-.533-1.18-1.18 0-.654.532-1.18 1.18-1.18.647 0 1.18.533 1.18 1.18 0 .371.303.675.674.675a.676.676 0 0 0 .675-.675 2.533 2.533 0 0 0-1.922-2.455v-.641a.676.676 0 0 0-.675-.674.676.676 0 0 0-.675.674v.675Zm1.764 3.266a1.183 1.183 0 0 1-.354-.845.674.674 0 0 0-.669-.668.67.67 0 0 0 0 1.336c.36 0 .704.063 1.023.177Z",
|
|
@@ -4379,10 +4417,10 @@ var PriceList = forwardRef77((delegated, ref) => {
|
|
|
4379
4417
|
PriceList.displayName = "PriceListIcon";
|
|
4380
4418
|
|
|
4381
4419
|
// src/iconography/price-tag.tsx
|
|
4382
|
-
import { forwardRef as
|
|
4383
|
-
import { jsx as
|
|
4384
|
-
var PriceTag =
|
|
4385
|
-
return /* @__PURE__ */
|
|
4420
|
+
import { forwardRef as forwardRef79 } from "react";
|
|
4421
|
+
import { jsx as jsx85, jsxs as jsxs76 } from "react/jsx-runtime";
|
|
4422
|
+
var PriceTag = forwardRef79((delegated, ref) => {
|
|
4423
|
+
return /* @__PURE__ */ jsxs76("svg", {
|
|
4386
4424
|
ref,
|
|
4387
4425
|
width: "22",
|
|
4388
4426
|
height: "22",
|
|
@@ -4390,38 +4428,38 @@ var PriceTag = forwardRef78((delegated, ref) => {
|
|
|
4390
4428
|
fill: "none",
|
|
4391
4429
|
...delegated,
|
|
4392
4430
|
children: [
|
|
4393
|
-
/* @__PURE__ */
|
|
4431
|
+
/* @__PURE__ */ jsx85("path", {
|
|
4394
4432
|
d: "M4.57615 15.8029C4.12332 15.4868 4.01254 14.8634 4.32871 14.4105L11.4395 4.22629L16.7681 3.58176L17.9989 8.80612L10.8881 18.9904C10.5719 19.4432 9.9485 19.554 9.49567 19.2378L4.57615 15.8029Z",
|
|
4395
4433
|
fill: "white"
|
|
4396
4434
|
}),
|
|
4397
|
-
/* @__PURE__ */
|
|
4435
|
+
/* @__PURE__ */ jsx85("path", {
|
|
4398
4436
|
fillRule: "evenodd",
|
|
4399
4437
|
clipRule: "evenodd",
|
|
4400
4438
|
d: "M10.9475 3.88277C11.0453 3.74281 11.198 3.6511 11.3675 3.6306L16.696 2.98607C16.9994 2.94937 17.282 3.14663 17.3521 3.44414L18.5829 8.66851C18.622 8.83466 18.5885 9.00962 18.4908 9.14958L11.38 19.3338C10.8741 20.0584 9.8767 20.2356 9.15218 19.7297L4.23266 16.2949C3.50814 15.789 3.33088 14.7916 3.83676 14.067L10.9475 3.88277ZM17.9989 8.80609L10.8881 18.9904C10.5719 19.4432 9.94849 19.554 9.49567 19.2378L4.57615 15.8029C4.12332 15.4867 4.01254 14.8634 4.32871 14.4105L11.4395 4.22626L16.7681 3.58173L17.9989 8.80609Z",
|
|
4401
4439
|
fill: "#528693"
|
|
4402
4440
|
}),
|
|
4403
|
-
/* @__PURE__ */
|
|
4441
|
+
/* @__PURE__ */ jsx85("path", {
|
|
4404
4442
|
d: "M3.7702 13.1376C3.37968 12.7471 3.37968 12.114 3.7702 11.7234L12.5532 2.94043L17.9123 3.23815L18.2101 8.59728L9.42706 17.3803C9.03653 17.7708 8.40337 17.7708 8.01284 17.3803L3.7702 13.1376Z",
|
|
4405
4443
|
fill: "#BFF6F8",
|
|
4406
4444
|
className: "c-icon-fill"
|
|
4407
4445
|
}),
|
|
4408
|
-
/* @__PURE__ */
|
|
4446
|
+
/* @__PURE__ */ jsx85("path", {
|
|
4409
4447
|
fillRule: "evenodd",
|
|
4410
4448
|
clipRule: "evenodd",
|
|
4411
4449
|
d: "M12.129 2.51616C12.2497 2.39546 12.4161 2.33188 12.5865 2.34135L17.9456 2.63908C18.2508 2.65603 18.4945 2.89969 18.5114 3.20487L18.8091 8.564C18.8186 8.73444 18.755 8.90084 18.6343 9.02154L9.85132 17.8046C9.22648 18.4294 8.21342 18.4294 7.58858 17.8046L3.34594 13.5619C2.7211 12.9371 2.7211 11.924 3.34594 11.2992L12.129 2.51616ZM18.2101 8.59728L9.42706 17.3803C9.03653 17.7708 8.40337 17.7708 8.01284 17.3803L3.7702 13.1376C3.37968 12.7471 3.37968 12.114 3.7702 11.7234L12.5532 2.94043L17.9123 3.23815L18.2101 8.59728Z",
|
|
4412
4450
|
fill: "#528693"
|
|
4413
4451
|
}),
|
|
4414
|
-
/* @__PURE__ */
|
|
4452
|
+
/* @__PURE__ */ jsx85("path", {
|
|
4415
4453
|
d: "M15.4375 5.71302C15.7304 6.00591 15.7304 6.48078 15.4375 6.77368C15.1446 7.06657 14.6697 7.06657 14.3768 6.77368C14.0839 6.48078 14.0839 6.00591 14.3768 5.71302C14.6697 5.42012 15.1446 5.42012 15.4375 5.71302Z",
|
|
4416
4454
|
fill: "white"
|
|
4417
4455
|
}),
|
|
4418
|
-
/* @__PURE__ */
|
|
4456
|
+
/* @__PURE__ */ jsx85("path", {
|
|
4419
4457
|
fillRule: "evenodd",
|
|
4420
4458
|
clipRule: "evenodd",
|
|
4421
4459
|
d: "M15.8617 5.28875C16.3889 5.81596 16.3889 6.67073 15.8617 7.19794C15.3345 7.72515 14.4797 7.72515 13.9525 7.19794C13.4253 6.67073 13.4253 5.81596 13.9525 5.28875C14.4797 4.76155 15.3345 4.76155 15.8617 5.28875ZM15.4375 6.77368C15.7304 6.48078 15.7304 6.00591 15.4375 5.71302C15.1446 5.42012 14.6697 5.42012 14.3768 5.71302C14.0839 6.00591 14.0839 6.48078 14.3768 6.77368C14.6697 7.06657 15.1446 7.06657 15.4375 6.77368Z",
|
|
4422
4460
|
fill: "#528693"
|
|
4423
4461
|
}),
|
|
4424
|
-
/* @__PURE__ */
|
|
4462
|
+
/* @__PURE__ */ jsx85("path", {
|
|
4425
4463
|
d: "M9.80065 13.1157C9.97264 12.9437 10.0568 12.738 10.053 12.4987C10.0512 12.2613 9.95488 11.9519 9.76419 11.5705C9.4875 11.0508 9.35476 10.6021 9.36598 10.2245C9.38094 9.84682 9.53891 9.5075 9.8399 9.20651C10.1465 8.89991 10.4868 8.73726 10.8607 8.71856C11.2364 8.70174 11.5991 8.83073 11.9487 9.10555L12.5629 8.49142L12.9807 8.90925L12.3638 9.52619C12.6348 9.88327 12.747 10.259 12.7003 10.6535C12.6554 11.0499 12.4413 11.4396 12.0581 11.8229L11.5421 11.3069C11.8057 11.0433 11.9525 10.7713 11.9824 10.4909C12.0123 10.2104 11.9207 9.96366 11.7076 9.75054C11.4851 9.52806 11.257 9.41589 11.0233 9.41402C10.7915 9.41028 10.5728 9.51124 10.3671 9.71688C10.1764 9.90758 10.0857 10.1216 10.0951 10.3591C10.1082 10.5965 10.2101 10.904 10.4008 11.2817C10.5952 11.6593 10.7158 11.9837 10.7625 12.2548C10.813 12.5258 10.8018 12.7726 10.7289 12.9951C10.6578 13.2194 10.5232 13.4307 10.325 13.6289C10.0091 13.9448 9.6595 14.1037 9.27625 14.1056C8.89486 14.1093 8.51535 13.9579 8.13771 13.6513L7.60209 14.1869L7.18706 13.7719L7.72268 13.2363C7.40673 12.8567 7.25717 12.4604 7.27399 12.0472C7.29456 11.6341 7.48992 11.2424 7.86009 10.8722L8.37888 11.391C8.11901 11.6509 7.98721 11.9192 7.98347 12.1959C7.97973 12.4726 8.10312 12.7362 8.35364 12.9867C8.59855 13.2316 8.85 13.3653 9.10799 13.3877C9.36598 13.4101 9.59687 13.3194 9.80065 13.1157Z",
|
|
4426
4464
|
fill: "#528693"
|
|
4427
4465
|
})
|
|
@@ -4431,10 +4469,10 @@ var PriceTag = forwardRef78((delegated, ref) => {
|
|
|
4431
4469
|
PriceTag.displayName = "PriceTagIcon";
|
|
4432
4470
|
|
|
4433
4471
|
// src/iconography/product.tsx
|
|
4434
|
-
import { forwardRef as
|
|
4435
|
-
import { jsx as
|
|
4436
|
-
var Product =
|
|
4437
|
-
return /* @__PURE__ */
|
|
4472
|
+
import { forwardRef as forwardRef80 } from "react";
|
|
4473
|
+
import { jsx as jsx86, jsxs as jsxs77 } from "react/jsx-runtime";
|
|
4474
|
+
var Product = forwardRef80((delegated, ref) => {
|
|
4475
|
+
return /* @__PURE__ */ jsxs77("svg", {
|
|
4438
4476
|
ref,
|
|
4439
4477
|
width: "22",
|
|
4440
4478
|
height: "22",
|
|
@@ -4442,58 +4480,58 @@ var Product = forwardRef79((delegated, ref) => {
|
|
|
4442
4480
|
fill: "none",
|
|
4443
4481
|
...delegated,
|
|
4444
4482
|
children: [
|
|
4445
|
-
/* @__PURE__ */
|
|
4483
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4446
4484
|
d: "M8.39836 6.06214C8.39836 7.75331 7.13285 9.12428 5.57177 9.12428C4.01069 9.12428 2.74518 7.75331 2.74518 6.06214C2.74518 4.37097 4.01069 3 5.57177 3C7.13285 3 8.39836 4.37097 8.39836 6.06214Z",
|
|
4447
4485
|
fill: "#BFF6F8",
|
|
4448
4486
|
className: "c-icon-fill"
|
|
4449
4487
|
}),
|
|
4450
|
-
/* @__PURE__ */
|
|
4488
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4451
4489
|
fillRule: "evenodd",
|
|
4452
4490
|
clipRule: "evenodd",
|
|
4453
4491
|
d: "M8.99835 6.06216C8.99835 8.03858 7.50853 9.7243 5.57176 9.7243C3.63499 9.7243 2.14517 8.03858 2.14517 6.06216C2.14517 4.08574 3.63499 2.40002 5.57176 2.40002C7.50853 2.40002 8.99835 4.08574 8.99835 6.06216ZM5.57176 9.1243C7.13284 9.1243 8.39835 7.75334 8.39835 6.06216C8.39835 4.37099 7.13284 3.00002 5.57176 3.00002C4.01068 3.00002 2.74517 4.37099 2.74517 6.06216C2.74517 7.75334 4.01068 9.1243 5.57176 9.1243Z",
|
|
4454
4492
|
fill: "#528693"
|
|
4455
4493
|
}),
|
|
4456
|
-
/* @__PURE__ */
|
|
4494
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4457
4495
|
d: "M17.6319 11.7624C17.6319 15.9253 14.4681 19.3 10.5654 19.3C6.66273 19.3 3.49896 15.9253 3.49896 11.7624C3.49896 7.59954 6.66273 4.22485 10.5654 4.22485C14.4681 4.22485 17.6319 7.59954 17.6319 11.7624Z",
|
|
4458
4496
|
fill: "#BFF6F8",
|
|
4459
4497
|
className: "c-icon-fill"
|
|
4460
4498
|
}),
|
|
4461
|
-
/* @__PURE__ */
|
|
4499
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4462
4500
|
fillRule: "evenodd",
|
|
4463
4501
|
clipRule: "evenodd",
|
|
4464
4502
|
d: "M18.2319 11.7625C18.2319 16.2196 14.8354 19.9 10.5655 19.9C6.2955 19.9 2.89899 16.2196 2.89899 11.7625C2.89899 7.30526 6.2955 3.62488 10.5655 3.62488C14.8354 3.62488 18.2319 7.30526 18.2319 11.7625ZM10.5655 19.3C14.4682 19.3 17.6319 15.9253 17.6319 11.7625C17.6319 7.59956 14.4682 4.22488 10.5655 4.22488C6.66275 4.22488 3.49899 7.59956 3.49899 11.7625C3.49899 15.9253 6.66275 19.3 10.5655 19.3Z",
|
|
4465
4503
|
fill: "#528693"
|
|
4466
4504
|
}),
|
|
4467
|
-
/* @__PURE__ */
|
|
4505
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4468
4506
|
d: "M19.3279 8.04078C19.3279 9.73195 18.0624 11.1029 16.5013 11.1029C14.9403 11.1029 13.6747 9.73195 13.6747 8.04078C13.6747 6.3496 14.9403 4.97864 16.5013 4.97864C18.0624 4.97864 19.3279 6.3496 19.3279 8.04078Z",
|
|
4469
4507
|
fill: "#BFF6F8",
|
|
4470
4508
|
className: "c-icon-fill"
|
|
4471
4509
|
}),
|
|
4472
|
-
/* @__PURE__ */
|
|
4510
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4473
4511
|
fillRule: "evenodd",
|
|
4474
4512
|
clipRule: "evenodd",
|
|
4475
4513
|
d: "M19.9279 8.04074C19.9279 10.0172 18.4381 11.7029 16.5013 11.7029C14.5646 11.7029 13.0747 10.0172 13.0747 8.04074C13.0747 6.06432 14.5646 4.3786 16.5013 4.3786C18.4381 4.3786 19.9279 6.06432 19.9279 8.04074ZM16.5013 11.1029C18.0624 11.1029 19.3279 9.73191 19.3279 8.04074C19.3279 6.34957 18.0624 4.9786 16.5013 4.9786C14.9402 4.9786 13.6747 6.34957 13.6747 8.04074C13.6747 9.73191 14.9402 11.1029 16.5013 11.1029Z",
|
|
4476
4514
|
fill: "#528693"
|
|
4477
4515
|
}),
|
|
4478
|
-
/* @__PURE__ */
|
|
4516
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4479
4517
|
fillRule: "evenodd",
|
|
4480
4518
|
clipRule: "evenodd",
|
|
4481
4519
|
d: "M7.06508 11.0485L7.06561 11.0474C7.06563 11.0474 7.06557 11.0474 7.06508 11.0485L7.05935 11.0613C7.05373 11.0741 7.04471 11.0957 7.03338 11.1259C7.01073 11.1862 6.97883 11.2814 6.94635 11.4113C6.88144 11.6708 6.81396 12.0704 6.81396 12.6104C6.81396 12.7761 6.67964 12.9104 6.51396 12.9104C6.34827 12.9104 6.21396 12.7761 6.21396 12.6104C6.21396 12.0198 6.28783 11.5714 6.36427 11.2657C6.40247 11.113 6.44124 10.9961 6.4716 10.9151C6.48678 10.8747 6.49984 10.8432 6.50968 10.8207C6.51459 10.8095 6.5187 10.8005 6.52186 10.7938L6.52587 10.7854L6.52731 10.7824L6.52788 10.7813C6.52793 10.7812 6.52835 10.7803 6.79363 10.913L6.52835 10.7803C6.60246 10.6321 6.78266 10.5721 6.93085 10.6462C7.07894 10.7203 7.13897 10.9004 7.06508 11.0485Z",
|
|
4482
4520
|
fill: "#528693"
|
|
4483
4521
|
}),
|
|
4484
|
-
/* @__PURE__ */
|
|
4522
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4485
4523
|
fillRule: "evenodd",
|
|
4486
4524
|
clipRule: "evenodd",
|
|
4487
4525
|
d: "M10.3157 11.8965L10.3163 11.8954C10.3163 11.8953 10.3162 11.8954 10.3157 11.8965L10.31 11.9092C10.3044 11.9221 10.2954 11.9436 10.284 11.9738C10.2614 12.0342 10.2295 12.1293 10.197 12.2592C10.1321 12.5188 10.0646 12.9184 10.0646 13.4584C10.0646 13.6241 9.93029 13.7584 9.7646 13.7584C9.59891 13.7584 9.4646 13.6241 9.4646 13.4584C9.4646 12.8678 9.53847 12.4194 9.61491 12.1137C9.65311 11.9609 9.69188 11.844 9.72224 11.7631C9.73742 11.7226 9.75048 11.6912 9.76032 11.6687C9.76524 11.6575 9.76934 11.6485 9.7725 11.6417L9.77651 11.6333L9.77795 11.6304L9.77852 11.6292C9.77857 11.6291 9.77899 11.6283 10.0443 11.7609L9.77899 11.6283C9.8531 11.4801 10.0333 11.42 10.1815 11.4942C10.3296 11.5682 10.3896 11.7483 10.3157 11.8965Z",
|
|
4488
4526
|
fill: "#528693"
|
|
4489
4527
|
}),
|
|
4490
|
-
/* @__PURE__ */
|
|
4528
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4491
4529
|
fillRule: "evenodd",
|
|
4492
4530
|
clipRule: "evenodd",
|
|
4493
4531
|
d: "M7.59368 14.6746C7.75459 14.714 7.85301 14.8765 7.81351 15.0374C7.74019 15.3362 7.61348 15.5725 7.43374 15.7311C7.24915 15.894 7.02714 15.9577 6.81002 15.9357C6.39445 15.8936 6.04476 15.5506 5.94033 15.1329C5.90015 14.9721 5.99788 14.8093 6.15862 14.7691C6.31935 14.7289 6.48223 14.8266 6.52242 14.9873C6.57503 15.1978 6.74353 15.3259 6.8705 15.3387C6.92465 15.3442 6.97999 15.3313 7.03674 15.2812C7.09833 15.2269 7.17694 15.1139 7.23081 14.8944C7.27031 14.7335 7.43277 14.6351 7.59368 14.6746Z",
|
|
4494
4532
|
fill: "#528693"
|
|
4495
4533
|
}),
|
|
4496
|
-
/* @__PURE__ */
|
|
4534
|
+
/* @__PURE__ */ jsx86("path", {
|
|
4497
4535
|
fillRule: "evenodd",
|
|
4498
4536
|
clipRule: "evenodd",
|
|
4499
4537
|
d: "M7.53156 14.666C7.36588 14.666 7.23156 14.8003 7.23156 14.966C7.23156 15.3263 7.34517 15.6211 7.53837 15.8387C7.72863 16.0529 7.97965 16.1739 8.22742 16.2206C8.47321 16.2669 8.73204 16.2433 8.95113 16.1492C9.17052 16.0549 9.37514 15.8762 9.44318 15.604C9.48337 15.4433 9.38564 15.2804 9.2249 15.2402C9.06416 15.2 8.90128 15.2978 8.8611 15.4585C8.85062 15.5004 8.81341 15.5553 8.71422 15.5979C8.61473 15.6407 8.47823 15.6573 8.3385 15.631C8.20076 15.605 8.07608 15.5406 7.98702 15.4403C7.90089 15.3433 7.83156 15.1945 7.83156 14.966C7.83156 14.8003 7.69725 14.666 7.53156 14.666Z",
|
|
@@ -4505,10 +4543,10 @@ var Product = forwardRef79((delegated, ref) => {
|
|
|
4505
4543
|
Product.displayName = "ProductIcon";
|
|
4506
4544
|
|
|
4507
4545
|
// src/iconography/product-shortcut.tsx
|
|
4508
|
-
import { forwardRef as
|
|
4509
|
-
import { jsx as
|
|
4510
|
-
var ProductShortcut =
|
|
4511
|
-
return /* @__PURE__ */
|
|
4546
|
+
import { forwardRef as forwardRef81 } from "react";
|
|
4547
|
+
import { jsx as jsx87, jsxs as jsxs78 } from "react/jsx-runtime";
|
|
4548
|
+
var ProductShortcut = forwardRef81((delegated, ref) => {
|
|
4549
|
+
return /* @__PURE__ */ jsxs78("svg", {
|
|
4512
4550
|
ref,
|
|
4513
4551
|
width: "22",
|
|
4514
4552
|
height: "22",
|
|
@@ -4516,47 +4554,47 @@ var ProductShortcut = forwardRef80((delegated, ref) => {
|
|
|
4516
4554
|
fill: "none",
|
|
4517
4555
|
...delegated,
|
|
4518
4556
|
children: [
|
|
4519
|
-
/* @__PURE__ */
|
|
4557
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4520
4558
|
d: "M8.362 6.062c0 1.691-1.266 3.062-2.827 3.062-1.56 0-2.826-1.37-2.826-3.062C2.709 4.371 3.974 3 5.535 3c1.561 0 2.827 1.371 2.827 3.062z",
|
|
4521
4559
|
fill: "#BFF6F8"
|
|
4522
4560
|
}),
|
|
4523
|
-
/* @__PURE__ */
|
|
4561
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4524
4562
|
fillRule: "evenodd",
|
|
4525
4563
|
clipRule: "evenodd",
|
|
4526
4564
|
d: "M8.962 6.062c0 1.977-1.49 3.662-3.427 3.662S2.11 8.04 2.11 6.062c0-1.976 1.49-3.662 3.426-3.662 1.937 0 3.427 1.686 3.427 3.662zM5.535 9.124c1.561 0 2.827-1.37 2.827-3.062C8.362 4.371 7.096 3 5.535 3 3.975 3 2.71 4.371 2.71 6.062c0 1.691 1.265 3.062 2.826 3.062z",
|
|
4527
4565
|
fill: "#528693"
|
|
4528
4566
|
}),
|
|
4529
|
-
/* @__PURE__ */
|
|
4567
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4530
4568
|
d: "M17.595 11.762c0 4.163-3.163 7.538-7.066 7.538s-7.067-3.375-7.067-7.538c0-4.162 3.164-7.537 7.067-7.537s7.066 3.375 7.066 7.537z",
|
|
4531
4569
|
fill: "#BFF6F8"
|
|
4532
4570
|
}),
|
|
4533
|
-
/* @__PURE__ */
|
|
4571
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4534
4572
|
fillRule: "evenodd",
|
|
4535
4573
|
clipRule: "evenodd",
|
|
4536
4574
|
d: "M18.195 11.762c0 4.458-3.396 8.138-7.666 8.138-4.27 0-7.667-3.68-7.667-8.137 0-4.458 3.397-8.138 7.667-8.138s7.666 3.68 7.666 8.137zM10.53 19.3c3.903 0 7.066-3.375 7.066-7.538 0-4.162-3.163-7.537-7.066-7.537S3.462 7.6 3.462 11.762c0 4.163 3.164 7.538 7.067 7.538z",
|
|
4537
4575
|
fill: "#528693"
|
|
4538
4576
|
}),
|
|
4539
|
-
/* @__PURE__ */
|
|
4577
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4540
4578
|
d: "M19.291 8.04c0 1.692-1.265 3.063-2.826 3.063-1.561 0-2.827-1.371-2.827-3.062 0-1.691 1.266-3.062 2.827-3.062 1.56 0 2.826 1.37 2.826 3.062z",
|
|
4541
4579
|
fill: "#BFF6F8"
|
|
4542
4580
|
}),
|
|
4543
|
-
/* @__PURE__ */
|
|
4581
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4544
4582
|
fillRule: "evenodd",
|
|
4545
4583
|
clipRule: "evenodd",
|
|
4546
4584
|
d: "M19.891 8.04c0 1.977-1.49 3.663-3.426 3.663-1.937 0-3.427-1.686-3.427-3.662 0-1.977 1.49-3.662 3.427-3.662 1.936 0 3.426 1.685 3.426 3.662zm-3.426 3.063c1.56 0 2.826-1.371 2.826-3.062 0-1.691-1.265-3.062-2.826-3.062-1.561 0-2.827 1.37-2.827 3.062 0 1.69 1.266 3.062 2.827 3.062zM10.28 11.896l-.007.013a2.64 2.64 0 00-.113.35c-.065.26-.132.66-.132 1.2a.3.3 0 11-.6 0c0-.591.074-1.04.15-1.345a3.24 3.24 0 01.158-.472l.004-.009.001-.003h.001s0-.002.266.13l-.266-.132a.3.3 0 01.537.268zM7.557 14.675a.3.3 0 01.22.362c-.073.3-.2.535-.38.694a.807.807 0 01-.624.205c-.415-.042-.765-.385-.87-.803a.3.3 0 01.583-.146c.052.21.221.339.348.352A.208.208 0 007 15.28c.062-.054.14-.167.194-.387a.3.3 0 01.363-.22z",
|
|
4547
4585
|
fill: "#528693"
|
|
4548
4586
|
}),
|
|
4549
|
-
/* @__PURE__ */
|
|
4587
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4550
4588
|
fillRule: "evenodd",
|
|
4551
4589
|
clipRule: "evenodd",
|
|
4552
4590
|
d: "M7.495 14.666a.3.3 0 00-.3.3c0 .36.114.655.307.873.19.214.441.335.689.382.246.046.504.022.724-.072.219-.094.424-.273.492-.545a.3.3 0 00-.582-.145c-.01.041-.048.096-.147.139a.666.666 0 01-.376.033.619.619 0 01-.352-.19c-.086-.098-.155-.247-.155-.475a.3.3 0 00-.3-.3z",
|
|
4553
4591
|
fill: "#528693"
|
|
4554
4592
|
}),
|
|
4555
|
-
/* @__PURE__ */
|
|
4593
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4556
4594
|
d: "M20.378 1.185a.558.558 0 01.616.614l-.51 6.188c-.046.544-.717.835-1.083.468l-.67-.67-.669-.668L6.708 18.472s-2.013 1.701-3.251 1.33c-1.215-.363-1.778-1.33-1.681-2.72.072-1.04 1.442-2.824 1.442-2.824l.562 1.285L15.2 4.255l-.805-.805-.651-.651c-.366-.366-.078-1.036.466-1.083l6.168-.531z",
|
|
4557
4595
|
fill: "#FFDE99"
|
|
4558
4596
|
}),
|
|
4559
|
-
/* @__PURE__ */
|
|
4597
|
+
/* @__PURE__ */ jsx87("path", {
|
|
4560
4598
|
fillRule: "evenodd",
|
|
4561
4599
|
clipRule: "evenodd",
|
|
4562
4600
|
d: "M3.78 15.543L15.2 4.255l-1.456-1.456c-.366-.366-.078-1.036.466-1.083l6.168-.531a.558.558 0 01.616.614l-.51 6.188c-.046.544-.717.835-1.083.468l-1.339-1.338L6.708 18.472s-2.013 1.701-3.251 1.33c-1.215-.363-1.778-1.33-1.681-2.72.046-.667.627-1.64 1.037-2.253.229-.341.405-.57.405-.57l.562 1.284zm-.562-1.284l-.476-.366-.002.002-.004.005-.013.017a7.77 7.77 0 00-.21.29c-.136.191-.317.458-.501.76a8.725 8.725 0 00-.53.993c-.148.337-.28.718-.305 1.081-.054.781.073 1.503.435 2.098.367.604.942 1.02 1.673 1.239.467.14.956.072 1.372-.052a5.677 5.677 0 001.189-.53 9.483 9.483 0 001.22-.842l.02-.017.006-.005.002-.001v-.001l-.386-.458.387.458.02-.016L18.061 7.966l.914.914c.392.391.928.405 1.325.233.396-.171.737-.557.78-1.077l.511-6.188a1.157 1.157 0 00-1.265-1.26l-6.168.53a1.293 1.293 0 00-1.074.782c-.171.397-.157.932.234 1.323l1.03 1.03-10.37 10.25-.619-1.415-.618.805.476.365z",
|
|
@@ -4568,10 +4606,10 @@ var ProductShortcut = forwardRef80((delegated, ref) => {
|
|
|
4568
4606
|
ProductShortcut.displayName = "ProductShortcutIcon";
|
|
4569
4607
|
|
|
4570
4608
|
// src/iconography/promotion.tsx
|
|
4571
|
-
import { forwardRef as
|
|
4572
|
-
import { jsx as
|
|
4573
|
-
var Promotion =
|
|
4574
|
-
return /* @__PURE__ */
|
|
4609
|
+
import { forwardRef as forwardRef82 } from "react";
|
|
4610
|
+
import { jsx as jsx88, jsxs as jsxs79 } from "react/jsx-runtime";
|
|
4611
|
+
var Promotion = forwardRef82((delegated, ref) => {
|
|
4612
|
+
return /* @__PURE__ */ jsxs79("svg", {
|
|
4575
4613
|
ref,
|
|
4576
4614
|
width: "22",
|
|
4577
4615
|
height: "23",
|
|
@@ -4579,53 +4617,53 @@ var Promotion = forwardRef81((delegated, ref) => {
|
|
|
4579
4617
|
fill: "currentColor",
|
|
4580
4618
|
...delegated,
|
|
4581
4619
|
children: [
|
|
4582
|
-
/* @__PURE__ */
|
|
4620
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4583
4621
|
d: "M3.60278 7.73474C3.68172 6.83379 4.43614 6.14258 5.34055 6.14258H16.7978C17.7095 6.14258 18.4674 6.84455 18.5371 7.75352L19.4852 20.1059C19.5629 21.119 18.7619 21.9838 17.7459 21.9838H4.25823C3.23472 21.9838 2.43112 21.1067 2.52046 20.0871L3.60278 7.73474Z",
|
|
4584
4622
|
fill: "#BFF6F8"
|
|
4585
4623
|
}),
|
|
4586
|
-
/* @__PURE__ */
|
|
4624
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4587
4625
|
fillRule: "evenodd",
|
|
4588
4626
|
clipRule: "evenodd",
|
|
4589
4627
|
d: "M5.33852 5.61914H16.7958C17.981 5.61914 18.9662 6.5317 19.0569 7.71336L20.0049 20.0658C20.106 21.3827 19.0647 22.5071 17.7438 22.5071H4.25621C2.92565 22.5071 1.88097 21.3668 1.99711 20.0414L3.07942 7.68896C3.18205 6.51771 4.16279 5.61914 5.33852 5.61914ZM5.33852 6.14247C4.43412 6.14247 3.67969 6.83368 3.60075 7.73463L2.51844 20.087C2.4291 21.1066 3.2327 21.9837 4.25621 21.9837H17.7438C18.7599 21.9837 19.5609 21.1189 19.4831 20.1058L18.5351 7.75341C18.4654 6.84444 17.7075 6.14247 16.7958 6.14247H5.33852Z",
|
|
4590
4628
|
fill: "#528693"
|
|
4591
4629
|
}),
|
|
4592
|
-
/* @__PURE__ */
|
|
4630
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4593
4631
|
fillRule: "evenodd",
|
|
4594
4632
|
clipRule: "evenodd",
|
|
4595
4633
|
d: "M10.9916 3.1396C11.9858 3.1396 12.8016 3.95541 12.8016 4.94959V7.48368C12.8016 7.8472 13.0962 8.14186 13.4598 8.14186C13.8233 8.14186 14.1179 7.8472 14.1179 7.48368V4.94959C14.1179 3.22878 12.7124 1.82324 10.9916 1.82324C9.27078 1.82324 7.86523 3.22878 7.86523 4.94959V7.48368C7.86523 7.8472 8.1599 8.14186 8.52341 8.14186C8.88693 8.14186 9.18159 7.8472 9.18159 7.48368V4.94959C9.18159 3.95541 9.99741 3.1396 10.9916 3.1396Z",
|
|
4596
4634
|
fill: "white"
|
|
4597
4635
|
}),
|
|
4598
|
-
/* @__PURE__ */
|
|
4636
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4599
4637
|
fillRule: "evenodd",
|
|
4600
4638
|
clipRule: "evenodd",
|
|
4601
4639
|
d: "M12.2762 4.94949C12.2762 4.24433 11.6947 3.66282 10.9895 3.66282C10.2844 3.66282 9.70286 4.24433 9.70286 4.94949V7.48358C9.70286 8.13612 9.17389 8.66509 8.52135 8.66509C7.86881 8.66509 7.33984 8.13612 7.33984 7.48358V4.94949C7.33984 2.93965 8.97969 1.2998 10.9895 1.2998C12.9994 1.2998 14.6392 2.93965 14.6392 4.94949V7.48358C14.6392 8.13612 14.1102 8.66509 13.4577 8.66509C12.8052 8.66509 12.2762 8.13612 12.2762 7.48358V4.94949ZM12.7995 4.94949C12.7995 3.95531 11.9837 3.13949 10.9895 3.13949C9.99535 3.13949 9.17953 3.95531 9.17953 4.94949V7.48358C9.17953 7.84709 8.88486 8.14176 8.52135 8.14176C8.15784 8.14176 7.86317 7.84709 7.86317 7.48358V4.94949C7.86317 3.22868 9.26871 1.82313 10.9895 1.82313C12.7103 1.82313 14.1159 3.22868 14.1159 4.94949V7.48358C14.1159 7.84709 13.8212 8.14176 13.4577 8.14176C13.0942 8.14176 12.7995 7.84709 12.7995 7.48358V4.94949Z",
|
|
4602
4640
|
fill: "#528693"
|
|
4603
4641
|
}),
|
|
4604
|
-
/* @__PURE__ */
|
|
4642
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4605
4643
|
d: "M7.49405 18.1396C7.28915 17.9347 7.28915 17.6025 7.49405 17.3976L13.7415 11.1501C13.9464 10.9452 14.2786 10.9452 14.4835 11.1501V11.1501C14.6884 11.355 14.6884 11.6872 14.4835 11.8921L8.23605 18.1396C8.03115 18.3445 7.69895 18.3445 7.49405 18.1396V18.1396Z",
|
|
4606
4644
|
fill: "white"
|
|
4607
4645
|
}),
|
|
4608
|
-
/* @__PURE__ */
|
|
4646
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4609
4647
|
fillRule: "evenodd",
|
|
4610
4648
|
clipRule: "evenodd",
|
|
4611
4649
|
d: "M7.15156 17.0545L13.399 10.8071C13.7933 10.4127 14.4327 10.4127 14.8271 10.8071C15.2215 11.2014 15.2215 11.8408 14.8271 12.2352L8.57969 18.4826C8.18533 18.877 7.54593 18.877 7.15156 18.4826C6.7572 18.0883 6.7572 17.4489 7.15156 17.0545ZM7.49463 17.3976C7.28973 17.6025 7.28973 17.9347 7.49463 18.1396C7.69953 18.3445 8.03173 18.3445 8.23663 18.1396L14.484 11.8921C14.6889 11.6872 14.6889 11.355 14.484 11.1501C14.2791 10.9452 13.9469 10.9452 13.742 11.1501L7.49463 17.3976Z",
|
|
4612
4650
|
fill: "#528693"
|
|
4613
4651
|
}),
|
|
4614
|
-
/* @__PURE__ */
|
|
4652
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4615
4653
|
d: "M10.7594 12.0233C10.7594 13.0274 9.94538 13.8414 8.94123 13.8414C7.93707 13.8414 7.12305 13.0274 7.12305 12.0233C7.12305 11.0191 7.93707 10.2051 8.94123 10.2051C9.94538 10.2051 10.7594 11.0191 10.7594 12.0233Z",
|
|
4616
4654
|
fill: "white"
|
|
4617
4655
|
}),
|
|
4618
|
-
/* @__PURE__ */
|
|
4656
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4619
4657
|
fillRule: "evenodd",
|
|
4620
4658
|
clipRule: "evenodd",
|
|
4621
4659
|
d: "M8.94123 13.3563C9.67743 13.3563 10.2742 12.7595 10.2742 12.0233C10.2742 11.2871 9.67743 10.6902 8.94123 10.6902C8.20502 10.6902 7.60821 11.2871 7.60821 12.0233C7.60821 12.7595 8.20502 13.3563 8.94123 13.3563ZM8.94123 13.8414C9.94538 13.8414 10.7594 13.0274 10.7594 12.0233C10.7594 11.0191 9.94538 10.2051 8.94123 10.2051C7.93707 10.2051 7.12305 11.0191 7.12305 12.0233C7.12305 13.0274 7.93707 13.8414 8.94123 13.8414Z",
|
|
4622
4660
|
fill: "#528693"
|
|
4623
4661
|
}),
|
|
4624
|
-
/* @__PURE__ */
|
|
4662
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4625
4663
|
d: "M14.8532 17.2606C14.8532 18.2647 14.0391 19.0787 13.035 19.0787C12.0308 19.0787 11.2168 18.2647 11.2168 17.2606C11.2168 16.2564 12.0308 15.4424 13.035 15.4424C14.0391 15.4424 14.8532 16.2564 14.8532 17.2606Z",
|
|
4626
4664
|
fill: "white"
|
|
4627
4665
|
}),
|
|
4628
|
-
/* @__PURE__ */
|
|
4666
|
+
/* @__PURE__ */ jsx88("path", {
|
|
4629
4667
|
fillRule: "evenodd",
|
|
4630
4668
|
clipRule: "evenodd",
|
|
4631
4669
|
d: "M13.035 18.5936C13.7712 18.5936 14.368 17.9968 14.368 17.2606C14.368 16.5244 13.7712 15.9275 13.035 15.9275C12.2988 15.9275 11.702 16.5244 11.702 17.2606C11.702 17.9968 12.2988 18.5936 13.035 18.5936ZM13.035 19.0787C14.0391 19.0787 14.8532 18.2647 14.8532 17.2606C14.8532 16.2564 14.0391 15.4424 13.035 15.4424C12.0308 15.4424 11.2168 16.2564 11.2168 17.2606C11.2168 18.2647 12.0308 19.0787 13.035 19.0787Z",
|
|
@@ -4637,10 +4675,10 @@ var Promotion = forwardRef81((delegated, ref) => {
|
|
|
4637
4675
|
Promotion.displayName = "PromotionIcon";
|
|
4638
4676
|
|
|
4639
4677
|
// src/iconography/property-table.tsx
|
|
4640
|
-
import { forwardRef as
|
|
4641
|
-
import { jsx as
|
|
4642
|
-
var PropertyTable =
|
|
4643
|
-
return /* @__PURE__ */
|
|
4678
|
+
import { forwardRef as forwardRef83 } from "react";
|
|
4679
|
+
import { jsx as jsx89, jsxs as jsxs80 } from "react/jsx-runtime";
|
|
4680
|
+
var PropertyTable = forwardRef83((delegated, ref) => {
|
|
4681
|
+
return /* @__PURE__ */ jsxs80("svg", {
|
|
4644
4682
|
ref,
|
|
4645
4683
|
width: "22",
|
|
4646
4684
|
height: "22",
|
|
@@ -4648,23 +4686,23 @@ var PropertyTable = forwardRef82((delegated, ref) => {
|
|
|
4648
4686
|
fill: "none",
|
|
4649
4687
|
...delegated,
|
|
4650
4688
|
children: [
|
|
4651
|
-
/* @__PURE__ */
|
|
4689
|
+
/* @__PURE__ */ jsx89("path", {
|
|
4652
4690
|
d: "M5.25482 3H9.34603C9.74692 3 10.034 3.38464 9.92363 3.77005C9.31279 5.9038 8.66795 8.74673 10 10.7037C11.295 12.6062 10.8547 16.1665 10.264 18.5558C10.199 18.8189 9.96088 19 9.68994 19H5.2986C4.86287 19 4.56788 18.5491 4.71707 18.1398C5.45619 16.1115 6.17961 12.7471 4.851 10.7037C3.42147 8.50515 4.0913 5.11706 4.70833 3.37652C4.78991 3.14641 5.01068 3 5.25482 3Z",
|
|
4653
4691
|
fill: "#BFF6F8",
|
|
4654
4692
|
className: "c-icon-fill"
|
|
4655
4693
|
}),
|
|
4656
|
-
/* @__PURE__ */
|
|
4694
|
+
/* @__PURE__ */ jsx89("path", {
|
|
4657
4695
|
fillRule: "evenodd",
|
|
4658
4696
|
clipRule: "evenodd",
|
|
4659
4697
|
d: "M5.25483 2.40002H9.34604C10.15 2.40002 10.7194 3.1706 10.5005 3.93521C10.1971 4.99483 9.89923 6.18576 9.83223 7.33802C9.76516 8.49157 9.93372 9.54003 10.496 10.3661C11.2487 11.472 11.4617 12.9902 11.4391 14.4565C11.4162 15.9424 11.1488 17.477 10.8465 18.6999C10.7133 19.2387 10.2285 19.6 9.68995 19.6H5.29861C4.41674 19.6 3.87182 18.7069 4.15334 17.9343C4.5103 16.9548 4.85962 15.6611 4.96133 14.3799C5.06407 13.0857 4.90738 11.8911 4.34799 11.0308C3.53603 9.78203 3.34403 8.23969 3.41295 6.8389C3.48228 5.42955 3.8191 4.08925 4.14283 3.17606C4.31474 2.69113 4.77328 2.40002 5.25483 2.40002ZM9.34604 3.00002H5.25483C5.01069 3.00002 4.78992 3.14643 4.70835 3.37654C4.09132 5.11708 3.42149 8.50517 4.85101 10.7037C6.17962 12.7471 5.4562 16.1115 4.71708 18.1398C4.56789 18.5492 4.86288 19 5.29861 19H9.68995C9.9609 19 10.199 18.8189 10.264 18.5559C10.8548 16.1665 11.295 12.6062 10 10.7037C8.66796 8.74676 9.31281 5.90382 9.92364 3.77008C10.034 3.38466 9.74693 3.00002 9.34604 3.00002Z",
|
|
4660
4698
|
fill: "#528693"
|
|
4661
4699
|
}),
|
|
4662
|
-
/* @__PURE__ */
|
|
4700
|
+
/* @__PURE__ */ jsx89("path", {
|
|
4663
4701
|
d: "M13.2548 3H17.346C17.7469 3 18.034 3.38464 17.9236 3.77005C17.3128 5.9038 16.6679 8.74673 18 10.7037C19.295 12.6062 18.8547 16.1665 18.264 18.5558C18.199 18.8189 17.9609 19 17.6899 19H13.2986C12.8629 19 12.5679 18.5491 12.7171 18.1398C13.4562 16.1115 14.1796 12.7471 12.851 10.7037C11.4215 8.50515 12.0913 5.11706 12.7083 3.37652C12.7899 3.14641 13.0107 3 13.2548 3Z",
|
|
4664
4702
|
fill: "#BFF6F8",
|
|
4665
4703
|
className: "c-icon-fill"
|
|
4666
4704
|
}),
|
|
4667
|
-
/* @__PURE__ */
|
|
4705
|
+
/* @__PURE__ */ jsx89("path", {
|
|
4668
4706
|
fillRule: "evenodd",
|
|
4669
4707
|
clipRule: "evenodd",
|
|
4670
4708
|
d: "M13.2548 2.40002H17.346C18.15 2.40002 18.7194 3.1706 18.5005 3.93521C18.1971 4.99483 17.8992 6.18576 17.8322 7.33802C17.7652 8.49157 17.9337 9.54003 18.496 10.3661C19.2487 11.472 19.4617 12.9902 19.4391 14.4565C19.4162 15.9424 19.1488 17.477 18.8465 18.6999C18.7133 19.2387 18.2285 19.6 17.69 19.6H13.2986C12.4167 19.6 11.8718 18.7069 12.1533 17.9343C12.5103 16.9548 12.8596 15.6611 12.9613 14.3799C13.0641 13.0857 12.9074 11.8911 12.348 11.0308C11.536 9.78203 11.344 8.23969 11.4129 6.8389C11.4823 5.42955 11.8191 4.08925 12.1428 3.17606C12.3147 2.69113 12.7733 2.40002 13.2548 2.40002ZM17.346 3.00002H13.2548C13.0107 3.00002 12.7899 3.14643 12.7083 3.37654C12.0913 5.11708 11.4215 8.50517 12.851 10.7037C14.1796 12.7471 13.4562 16.1115 12.7171 18.1398C12.5679 18.5492 12.8629 19 13.2986 19H17.69C17.9609 19 18.199 18.8189 18.264 18.5559C18.8548 16.1665 19.295 12.6062 18 10.7037C16.668 8.74676 17.3128 5.90382 17.9236 3.77008C18.034 3.38466 17.7469 3.00002 17.346 3.00002Z",
|
|
@@ -4676,10 +4714,10 @@ var PropertyTable = forwardRef82((delegated, ref) => {
|
|
|
4676
4714
|
PropertyTable.displayName = "PropertyTable";
|
|
4677
4715
|
|
|
4678
4716
|
// src/iconography/relation.tsx
|
|
4679
|
-
import { forwardRef as
|
|
4680
|
-
import { jsx as
|
|
4681
|
-
var Relation =
|
|
4682
|
-
return /* @__PURE__ */
|
|
4717
|
+
import { forwardRef as forwardRef84 } from "react";
|
|
4718
|
+
import { jsx as jsx90, jsxs as jsxs81 } from "react/jsx-runtime";
|
|
4719
|
+
var Relation = forwardRef84((delegated, ref) => {
|
|
4720
|
+
return /* @__PURE__ */ jsxs81("svg", {
|
|
4683
4721
|
ref,
|
|
4684
4722
|
width: "22",
|
|
4685
4723
|
height: "22",
|
|
@@ -4687,12 +4725,12 @@ var Relation = forwardRef83((delegated, ref) => {
|
|
|
4687
4725
|
fill: "none",
|
|
4688
4726
|
...delegated,
|
|
4689
4727
|
children: [
|
|
4690
|
-
/* @__PURE__ */
|
|
4728
|
+
/* @__PURE__ */ jsx90("path", {
|
|
4691
4729
|
d: "M14.8812 3.79999C12.9026 3.79999 11.9488 5.40165 11.2618 6.69266C11.1494 6.90405 10.8506 6.90407 10.7381 6.69269C10.051 5.40167 9.09737 3.79999 7.11879 3.79999C4.87692 3.79999 3 5.8738 3 8.43196C3 12.5133 11 18.8 11 18.8C11 18.8 19 12.5133 19 8.43196C19.0003 5.8738 17.123 3.79999 14.8812 3.79999Z",
|
|
4692
4730
|
fill: "#BFF6F8",
|
|
4693
4731
|
className: "c-icon-fill"
|
|
4694
4732
|
}),
|
|
4695
|
-
/* @__PURE__ */
|
|
4733
|
+
/* @__PURE__ */ jsx90("path", {
|
|
4696
4734
|
fillRule: "evenodd",
|
|
4697
4735
|
clipRule: "evenodd",
|
|
4698
4736
|
d: "M10.6292 19.2718L11 18.8L11.3707 19.2718C11.1531 19.4428 10.8468 19.4428 10.6292 19.2718ZM19 8.43199C19.0002 5.87382 17.123 3.80001 14.8812 3.80001C12.9026 3.80001 11.9488 5.40167 11.2618 6.69268C11.1494 6.90407 10.8506 6.90409 10.7381 6.69271C10.051 5.40169 9.09736 3.80001 7.11879 3.80001C4.87691 3.80001 2.99999 5.87382 2.99999 8.43199C2.99999 12.5133 11 18.8 11 18.8C10.6292 19.2718 10.6294 19.2719 10.6292 19.2718L10.6223 19.2663L10.6039 19.2517L10.5345 19.1963C10.4742 19.1479 10.3864 19.0769 10.2751 18.9853C10.0526 18.8024 9.73574 18.5372 9.35593 18.2064C8.59713 17.5456 7.58324 16.6197 6.5673 15.5622C5.55372 14.5071 4.52485 13.3074 3.74571 12.0989C2.97688 10.9064 2.39999 9.62795 2.39999 8.43199C2.39999 5.60736 4.48415 3.20001 7.11879 3.20001C9.2023 3.20001 10.3084 4.70368 10.9999 5.92098C11.6914 4.70363 12.7977 3.20001 14.8812 3.20001C17.5157 3.20001 19.6002 5.60728 19.6 8.43199M19 8.43199C19 12.5133 11 18.8 11 18.8C11.3707 19.2718 11.3706 19.2719 11.3707 19.2718L11.3777 19.2663L11.396 19.2517L11.4654 19.1963C11.5258 19.1479 11.6135 19.0769 11.7248 18.9854C11.9473 18.8024 12.2642 18.5372 12.644 18.2064C13.4028 17.5456 14.4167 16.6197 15.4327 15.5622C16.4462 14.5071 17.4751 13.3074 18.2543 12.0989C19.0231 10.9064 19.6 9.62793 19.6 8.43199",
|
|
@@ -4704,10 +4742,10 @@ var Relation = forwardRef83((delegated, ref) => {
|
|
|
4704
4742
|
Relation.displayName = "Relation";
|
|
4705
4743
|
|
|
4706
4744
|
// src/iconography/renew.tsx
|
|
4707
|
-
import { forwardRef as
|
|
4708
|
-
import { jsx as
|
|
4709
|
-
var Renew =
|
|
4710
|
-
return /* @__PURE__ */
|
|
4745
|
+
import { forwardRef as forwardRef85 } from "react";
|
|
4746
|
+
import { jsx as jsx91, jsxs as jsxs82 } from "react/jsx-runtime";
|
|
4747
|
+
var Renew = forwardRef85((delegated, ref) => {
|
|
4748
|
+
return /* @__PURE__ */ jsxs82("svg", {
|
|
4711
4749
|
ref,
|
|
4712
4750
|
width: "22",
|
|
4713
4751
|
height: "22",
|
|
@@ -4715,21 +4753,21 @@ var Renew = forwardRef84((delegated, ref) => {
|
|
|
4715
4753
|
fill: "none",
|
|
4716
4754
|
...delegated,
|
|
4717
4755
|
children: [
|
|
4718
|
-
/* @__PURE__ */
|
|
4756
|
+
/* @__PURE__ */ jsx91("path", {
|
|
4719
4757
|
d: "M7.08054 10.4135H8.91886C8.91886 10.4135 6.21721 14.0757 5.85357 14.5583C4.81898 13.1782 3.80149 11.8182 2.75087 10.4169H4.54216C4.71531 8.06261 5.67401 6.17473 7.47492 4.78678C8.79488 3.76791 10.2955 3.3116 11.9307 3.38206C12.9972 3.42832 13.9853 3.70955 14.8998 4.22048C15.5288 4.57186 15.6186 5.40451 15.1811 5.97692L-nan -nanL-nan -nanL15.1811 5.97692C14.7464 6.54573 13.9482 6.64535 13.2901 6.36336C11.8846 5.76101 10.4618 5.89061 9.04498 6.86926C7.85755 7.68906 7.23231 8.90141 7.08054 10.4124V10.4135Z",
|
|
4720
4758
|
fill: "#BFF6F8"
|
|
4721
4759
|
}),
|
|
4722
|
-
/* @__PURE__ */
|
|
4760
|
+
/* @__PURE__ */ jsx91("path", {
|
|
4723
4761
|
fillRule: "evenodd",
|
|
4724
4762
|
clipRule: "evenodd",
|
|
4725
4763
|
d: "M9.40169 10.7697L8.91886 10.4135H7.08054V10.4124C7.10115 10.2072 7.1305 10.0075 7.1688 9.81352C7.41251 8.57936 8.01882 7.57773 9.04498 6.86928C10.4618 5.89063 11.8846 5.76103 13.2901 6.36338C13.9482 6.64537 14.7464 6.54575 15.1811 5.97694C15.6186 5.40453 15.5288 4.57187 14.8998 4.2205C13.9853 3.70957 12.9972 3.42834 11.9307 3.38208C10.2955 3.31162 8.79488 3.76793 7.47492 4.7868C5.67401 6.17475 4.7153 8.06262 4.54216 10.4169H2.75087C2.9014 10.6177 3.05125 10.8176 3.20058 11.0169C3.587 11.5326 3.96986 12.0438 4.35171 12.5536C4.72749 13.0554 5.10229 13.5559 5.47856 14.058C5.60337 14.2246 5.72834 14.3913 5.85357 14.5584C5.9166 14.4747 6.04988 14.2955 6.22717 14.0564C6.81207 13.2676 7.87592 11.8267 8.47611 11.0135C8.74349 10.6512 8.91886 10.4135 8.91886 10.4135L9.40169 10.7697L8.9738 11.3496C8.71481 11.7005 8.36569 12.1734 8.00519 12.6615C7.28564 13.6356 6.51682 14.6752 6.33276 14.9194C6.21923 15.0701 6.04147 15.1586 5.85282 15.1584C5.66418 15.1581 5.48663 15.0692 5.37348 14.9182C4.86944 14.2459 4.37116 13.5805 3.87125 12.913C3.3425 12.207 2.81193 11.4986 2.2708 10.7768C2.13449 10.595 2.11259 10.3517 2.21424 10.1485C2.31588 9.94526 2.52362 9.81688 2.75087 9.81688H3.99953C4.28818 7.55897 5.30719 5.70008 7.1083 4.31184M7.1083 4.31184C8.54315 3.20433 10.1836 2.70624 11.9565 2.78263C13.116 2.83293 14.1957 3.13982 15.1925 3.6967C16.2047 4.26224 16.2699 5.54032 15.6578 6.34127C15.0108 7.18787 13.8882 7.27246 13.0538 6.91487C11.8476 6.39799 10.642 6.49532 9.38598 7.36295C8.53805 7.94836 8.01288 8.76671 7.78161 9.81352H8.91886C9.14527 9.81352 9.3524 9.94097 9.45445 10.1431C9.5565 10.3452 9.5361 10.5875 9.40169 10.7697",
|
|
4726
4764
|
fill: "#528693"
|
|
4727
4765
|
}),
|
|
4728
|
-
/* @__PURE__ */
|
|
4766
|
+
/* @__PURE__ */ jsx91("path", {
|
|
4729
4767
|
d: "M16.8044 11.5865L14.9661 11.5865C14.9661 11.5865 17.6677 7.92426 18.0313 7.44167C19.0659 8.82179 20.0834 10.1818 21.134 11.5831L19.3428 11.5831C19.1696 13.9374 18.2109 15.8253 16.41 17.2132C15.09 18.2321 13.5895 18.6884 11.9542 18.6179C10.8878 18.5717 9.89961 18.2904 8.9851 17.7795C8.35615 17.4281 8.26636 16.5955 8.70383 16.0231L-nan -nanL-nan -nanL8.70383 16.0231C9.13856 15.4543 9.93675 15.3546 10.5948 15.6366C12.0004 16.239 13.4232 16.1094 14.8399 15.1307C16.0274 14.3109 16.6526 13.0986 16.8044 11.5876L16.8044 11.5865Z",
|
|
4730
4768
|
fill: "#BFF6F8"
|
|
4731
4769
|
}),
|
|
4732
|
-
/* @__PURE__ */
|
|
4770
|
+
/* @__PURE__ */ jsx91("path", {
|
|
4733
4771
|
fillRule: "evenodd",
|
|
4734
4772
|
clipRule: "evenodd",
|
|
4735
4773
|
d: "M14.4832 11.2303L14.9661 11.5865L16.8044 11.5865L16.8044 11.5876C16.7838 11.7928 16.7544 11.9925 16.7161 12.1865C16.4724 13.4206 15.8661 14.4223 14.8399 15.1307C13.4232 16.1094 12.0004 16.239 10.5948 15.6366C9.93675 15.3546 9.13856 15.4543 8.70383 16.0231C8.26636 16.5955 8.35616 17.4281 8.9851 17.7795C9.89961 18.2904 10.8878 18.5717 11.9542 18.6179C13.5895 18.6884 15.09 18.2321 16.41 17.2132C18.2109 15.8253 19.1696 13.9374 19.3428 11.5831L21.1341 11.5831C20.9835 11.3823 20.8337 11.1824 20.6843 10.9831C20.2979 10.4674 19.9151 9.95622 19.5332 9.44635C19.1574 8.9446 18.7826 8.44415 18.4064 7.942C18.2815 7.77544 18.1566 7.60869 18.0314 7.44165C17.9683 7.5253 17.835 7.70449 17.6577 7.94359C17.0728 8.73241 16.009 10.1733 15.4088 10.9865C15.1414 11.3488 14.9661 11.5865 14.9661 11.5865L14.4832 11.2303L14.9111 10.6504C15.1701 10.2995 15.5192 9.82657 15.8797 9.33854C16.5993 8.36444 17.3681 7.32484 17.5522 7.08057C17.6657 6.92991 17.8435 6.84141 18.0321 6.84165C18.2207 6.84188 18.3983 6.93082 18.5114 7.08176C19.0155 7.75414 19.5138 8.41947 20.0137 9.08697C20.5424 9.79298 21.073 10.5014 21.6141 11.2232C21.7504 11.405 21.7723 11.6483 21.6707 11.8515C21.569 12.0547 21.3613 12.1831 21.1341 12.1831L19.8854 12.1831C19.5967 14.441 18.5777 16.2999 16.7766 17.6882M16.7766 17.6882C15.3418 18.7957 13.7013 19.2938 11.9284 19.2174C10.7689 19.1671 9.68923 18.8602 8.69246 18.3033C7.68018 17.7378 7.61497 16.4597 8.22712 15.6587C8.87415 14.8121 9.9967 14.7275 10.8311 15.0851C12.0373 15.602 13.2429 15.5047 14.4989 14.637C15.3469 14.0516 15.872 13.2333 16.1033 12.1865L14.9661 12.1865C14.7397 12.1865 14.5325 12.059 14.4305 11.8569C14.3284 11.6548 14.3488 11.4125 14.4832 11.2303",
|
|
@@ -4741,10 +4779,10 @@ var Renew = forwardRef84((delegated, ref) => {
|
|
|
4741
4779
|
Renew.displayName = "RenewIcon";
|
|
4742
4780
|
|
|
4743
4781
|
// src/iconography/restricted-catalogue.tsx
|
|
4744
|
-
import { forwardRef as
|
|
4745
|
-
import { jsx as
|
|
4746
|
-
var RestrictedCatalogue =
|
|
4747
|
-
return /* @__PURE__ */
|
|
4782
|
+
import { forwardRef as forwardRef86 } from "react";
|
|
4783
|
+
import { jsx as jsx92, jsxs as jsxs83 } from "react/jsx-runtime";
|
|
4784
|
+
var RestrictedCatalogue = forwardRef86((delegated, ref) => {
|
|
4785
|
+
return /* @__PURE__ */ jsxs83("svg", {
|
|
4748
4786
|
ref,
|
|
4749
4787
|
width: "22",
|
|
4750
4788
|
height: "22",
|
|
@@ -4752,41 +4790,41 @@ var RestrictedCatalogue = forwardRef85((delegated, ref) => {
|
|
|
4752
4790
|
fill: "none",
|
|
4753
4791
|
...delegated,
|
|
4754
4792
|
children: [
|
|
4755
|
-
/* @__PURE__ */
|
|
4793
|
+
/* @__PURE__ */ jsx92("path", {
|
|
4756
4794
|
fill: "#FFDE99",
|
|
4757
4795
|
d: "M11.14 5.027h8.041v12.615a.27.27 0 0 1-.009.071c-.097.356-.562 1.052-1.242 1.052H11.3c-.088 0-.16-.141-.16-.315V5.027Z"
|
|
4758
4796
|
}),
|
|
4759
|
-
/* @__PURE__ */
|
|
4797
|
+
/* @__PURE__ */ jsx92("path", {
|
|
4760
4798
|
fill: "#FFEDC6",
|
|
4761
4799
|
d: "M19.181 3.525a.31.31 0 0 0-.31-.31h-5.636a2.067 2.067 0 0 0-2.068 2.069v12.97c0-2.704 6.188-2.276 7.663-2.117a.317.317 0 0 0 .351-.316V3.526Z"
|
|
4762
4800
|
}),
|
|
4763
|
-
/* @__PURE__ */
|
|
4801
|
+
/* @__PURE__ */ jsx92("path", {
|
|
4764
4802
|
fill: "#fff",
|
|
4765
4803
|
d: "M3.415 5.027h7.576v12.857c0 .166-.068.302-.151.302H3.566c-.084 0-.151-.136-.151-.302V5.027Z"
|
|
4766
4804
|
}),
|
|
4767
|
-
/* @__PURE__ */
|
|
4805
|
+
/* @__PURE__ */ jsx92("path", {
|
|
4768
4806
|
fill: "#528693",
|
|
4769
4807
|
fillRule: "evenodd",
|
|
4770
4808
|
d: "M2.81 4.423h8.496v13.46c0 .501-.406.907-.906.907H3.717a.906.906 0 0 1-.906-.906V4.423Zm.605.604v12.857c0 .166.135.302.302.302H10.4a.302.302 0 0 0 .302-.302V5.027H3.415Z",
|
|
4771
4809
|
clipRule: "evenodd"
|
|
4772
4810
|
}),
|
|
4773
|
-
/* @__PURE__ */
|
|
4811
|
+
/* @__PURE__ */ jsx92("path", {
|
|
4774
4812
|
fill: "#BFF6F8",
|
|
4775
4813
|
d: "M3.415 4.12c0-.166.135-.302.302-.302H8.65a2.01 2.01 0 0 1 2.014 2.01v12.589c0-2.624-5.471-2.209-6.907-2.054a.309.309 0 0 1-.342-.306V4.12Z"
|
|
4776
4814
|
}),
|
|
4777
|
-
/* @__PURE__ */
|
|
4815
|
+
/* @__PURE__ */ jsx92("path", {
|
|
4778
4816
|
fill: "#528693",
|
|
4779
4817
|
fillRule: "evenodd",
|
|
4780
4818
|
d: "M10.06 17.161c-1.463-1.21-5.16-.921-6.303-.798a.309.309 0 0 1-.342-.307V4.12c0-.166.135-.302.302-.302H8.65a2.01 2.01 0 0 1 2.014 2.009v12.59c0-.536-.229-.945-.604-1.256ZM3.717 3.214H8.65a2.614 2.614 0 0 1 2.618 2.613v12.938H10.06v-.348c0-.397-.186-.688-.589-.934-.429-.263-1.06-.438-1.801-.536-1.473-.195-3.14-.06-3.849.016a.913.913 0 0 1-1.01-.907V4.12c0-.5.406-.906.906-.906Z",
|
|
4781
4819
|
clipRule: "evenodd"
|
|
4782
4820
|
}),
|
|
4783
|
-
/* @__PURE__ */
|
|
4821
|
+
/* @__PURE__ */ jsx92("path", {
|
|
4784
4822
|
fill: "#528693",
|
|
4785
4823
|
fillRule: "evenodd",
|
|
4786
4824
|
d: "M18.585 3.824a.04.04 0 0 0-.028-.01h-.578a.302.302 0 0 1 0-.604h.578c.329 0 .632.254.632.61v.653a.302.302 0 1 1-.604 0v-.649Zm-1.846-.312a.302.302 0 0 0-.302-.302H15.28a.302.302 0 0 0 0 .604h1.156a.302.302 0 0 0 .302-.302Zm-2.698 0a.302.302 0 0 0-.302-.302h-.578c-.278 0-.545.043-.796.121a.302.302 0 0 0 .18.577c.193-.06.4-.094.616-.094h.578a.302.302 0 0 0 .302-.302Zm4.846 2.4a.302.302 0 0 0-.302.301v1.305a.302.302 0 1 0 .604 0V6.213a.302.302 0 0 0-.302-.302ZM10.96 7.387a.302.302 0 0 0-.303.302v1.163a.302.302 0 1 0 .604 0V7.69a.302.302 0 0 0-.301-.302Zm7.928 1.568a.302.302 0 0 0-.302.302v1.305a.302.302 0 0 0 .604 0V9.258a.302.302 0 0 0-.302-.302Zm-7.928 1.145a.302.302 0 0 0-.303.302v1.163a.302.302 0 1 0 .604 0v-1.163a.302.302 0 0 0-.301-.302Zm7.928 1.9a.302.302 0 0 0-.302.302v1.305a.302.302 0 0 0 .604 0v-1.305a.302.302 0 0 0-.302-.302Zm-7.928.813a.302.302 0 0 0-.303.302v1.163a.302.302 0 1 0 .604 0v-1.163a.302.302 0 0 0-.301-.302Zm7.928 2.232a.302.302 0 0 0-.302.303v.65l-.003.01a.26.26 0 0 0-.02.003.06.06 0 0 1-.019.001 24.867 24.867 0 0 0-.615-.054.302.302 0 1 0-.045.603c.238.018.442.036.6.052a.663.663 0 0 0 .214-.013.302.302 0 0 0 .215-.187.302.302 0 0 0 .23-.181.596.596 0 0 0 .047-.232v-.652a.302.302 0 0 0-.302-.303Zm-7.928.48a.302.302 0 0 0-.303.303v1.161a.302.302 0 1 0 .604 0V15.83a.302.302 0 0 0-.301-.302Zm5.32.363a19.33 19.33 0 0 0-1.243.028.302.302 0 1 0 .034.603c.408-.023.815-.03 1.203-.026a.302.302 0 1 0 .006-.605Zm-2.549.464a.302.302 0 0 0-.355-.238 6.167 6.167 0 0 0-1.231.367.302.302 0 0 0 .239.555c.323-.14.7-.247 1.11-.329a.302.302 0 0 0 .237-.355Zm-2.54 1.18a.302.302 0 0 0-.396.163c-.09.218-.138.457-.138.714v.355h.604v-.355c0-.182.034-.34.092-.482a.302.302 0 0 0-.163-.395Z",
|
|
4787
4825
|
clipRule: "evenodd"
|
|
4788
4826
|
}),
|
|
4789
|
-
/* @__PURE__ */
|
|
4827
|
+
/* @__PURE__ */ jsx92("path", {
|
|
4790
4828
|
fill: "#528693",
|
|
4791
4829
|
fillRule: "evenodd",
|
|
4792
4830
|
d: "M18.886 16.776c.167 0 .302.136.302.303v.333c0 .138-.023.271-.065.396a.302.302 0 0 1-.572-.196.614.614 0 0 0 .033-.2v-.333c0-.167.136-.303.302-.303Zm-.312 1.544a.302.302 0 0 1-.183.386c-.125.045-.26.07-.4.07h-.723a.302.302 0 0 1 0-.605h.724c.069 0 .135-.012.196-.034a.302.302 0 0 1 .386.183Zm-6.614.455h-.724v-.604h.724a.302.302 0 1 1 0 .604Zm1.628-.302c0-.167.135-.302.302-.302h1.448a.302.302 0 1 1 0 .604H13.89a.302.302 0 0 1-.302-.302Z",
|
|
@@ -4798,10 +4836,10 @@ var RestrictedCatalogue = forwardRef85((delegated, ref) => {
|
|
|
4798
4836
|
RestrictedCatalogue.displayName = "RestrictedCatalogueIcon";
|
|
4799
4837
|
|
|
4800
4838
|
// src/iconography/rich-text.tsx
|
|
4801
|
-
import { forwardRef as
|
|
4802
|
-
import { jsx as
|
|
4803
|
-
var RichText =
|
|
4804
|
-
return /* @__PURE__ */
|
|
4839
|
+
import { forwardRef as forwardRef87 } from "react";
|
|
4840
|
+
import { jsx as jsx93, jsxs as jsxs84 } from "react/jsx-runtime";
|
|
4841
|
+
var RichText = forwardRef87((delegated, ref) => {
|
|
4842
|
+
return /* @__PURE__ */ jsxs84("svg", {
|
|
4805
4843
|
ref,
|
|
4806
4844
|
width: "22",
|
|
4807
4845
|
height: "22",
|
|
@@ -4809,34 +4847,34 @@ var RichText = forwardRef86((delegated, ref) => {
|
|
|
4809
4847
|
fill: "none",
|
|
4810
4848
|
...delegated,
|
|
4811
4849
|
children: [
|
|
4812
|
-
/* @__PURE__ */
|
|
4850
|
+
/* @__PURE__ */ jsx93("path", {
|
|
4813
4851
|
d: "M4 4.6C4 4.26863 4.26863 4 4.6 4H17.4C17.7314 4 18 4.26863 18 4.6V6.2C18 6.53137 17.7314 6.8 17.4 6.8H4.6C4.26863 6.8 4 6.53137 4 6.2V4.6Z",
|
|
4814
4852
|
fill: "#BFF6F8",
|
|
4815
4853
|
className: "c-icon-fill"
|
|
4816
4854
|
}),
|
|
4817
|
-
/* @__PURE__ */
|
|
4855
|
+
/* @__PURE__ */ jsx93("path", {
|
|
4818
4856
|
fillRule: "evenodd",
|
|
4819
4857
|
clipRule: "evenodd",
|
|
4820
4858
|
d: "M4.59999 3.40002H17.4C18.0627 3.40002 18.6 3.93728 18.6 4.60002V6.20003C18.6 6.86277 18.0627 7.40002 17.4 7.40002H4.59999C3.93725 7.40002 3.39999 6.86277 3.39999 6.20002V4.60002C3.39999 3.93728 3.93725 3.40002 4.59999 3.40002ZM4.59999 4.00002C4.26862 4.00002 3.99999 4.26865 3.99999 4.60002V6.20002C3.99999 6.5314 4.26862 6.80002 4.59999 6.80002H17.4C17.7314 6.80002 18 6.5314 18 6.20003V4.60002C18 4.26865 17.7314 4.00002 17.4 4.00002H4.59999Z",
|
|
4821
4859
|
fill: "#528693"
|
|
4822
4860
|
}),
|
|
4823
|
-
/* @__PURE__ */
|
|
4861
|
+
/* @__PURE__ */ jsx93("path", {
|
|
4824
4862
|
d: "M4 10.2C4 9.86867 4.26863 9.60004 4.6 9.60004H17.4C17.7314 9.60004 18 9.86867 18 10.2V11.8C18 12.1314 17.7314 12.4 17.4 12.4H4.6C4.26863 12.4 4 12.1314 4 11.8V10.2Z",
|
|
4825
4863
|
className: "c-icon-fill",
|
|
4826
4864
|
fill: "#BFF6F8"
|
|
4827
4865
|
}),
|
|
4828
|
-
/* @__PURE__ */
|
|
4866
|
+
/* @__PURE__ */ jsx93("path", {
|
|
4829
4867
|
fillRule: "evenodd",
|
|
4830
4868
|
clipRule: "evenodd",
|
|
4831
4869
|
d: "M4.59999 9H17.4C18.0627 9 18.6 9.53726 18.6 10.2V11.8C18.6 12.4627 18.0627 13 17.4 13H4.59999C3.93725 13 3.39999 12.4627 3.39999 11.8V10.2C3.39999 9.53726 3.93725 9 4.59999 9ZM4.59999 9.6C4.26862 9.6 3.99999 9.86863 3.99999 10.2V11.8C3.99999 12.1314 4.26862 12.4 4.59999 12.4H17.4C17.7314 12.4 18 12.1314 18 11.8V10.2C18 9.86863 17.7314 9.6 17.4 9.6H4.59999Z",
|
|
4832
4870
|
fill: "#528693"
|
|
4833
4871
|
}),
|
|
4834
|
-
/* @__PURE__ */
|
|
4872
|
+
/* @__PURE__ */ jsx93("path", {
|
|
4835
4873
|
d: "M4 15.8C4 15.4686 4.26863 15.2 4.6 15.2H13.025C13.3564 15.2 13.625 15.4686 13.625 15.8V17.4C13.625 17.7314 13.3564 18 13.025 18H4.6C4.26863 18 4 17.7314 4 17.4V15.8Z",
|
|
4836
4874
|
className: "c-icon-fill",
|
|
4837
4875
|
fill: "#BFF6F8"
|
|
4838
4876
|
}),
|
|
4839
|
-
/* @__PURE__ */
|
|
4877
|
+
/* @__PURE__ */ jsx93("path", {
|
|
4840
4878
|
fillRule: "evenodd",
|
|
4841
4879
|
clipRule: "evenodd",
|
|
4842
4880
|
d: "M4.59999 14.6H13.025C13.6877 14.6 14.225 15.1373 14.225 15.8V17.4C14.225 18.0628 13.6877 18.6 13.025 18.6H4.59999C3.93725 18.6 3.39999 18.0628 3.39999 17.4V15.8C3.39999 15.1373 3.93725 14.6 4.59999 14.6ZM4.59999 15.2C4.26862 15.2 3.99999 15.4687 3.99999 15.8V17.4C3.99999 17.7314 4.26862 18 4.59999 18H13.025C13.3564 18 13.625 17.7314 13.625 17.4V15.8C13.625 15.4687 13.3564 15.2 13.025 15.2H4.59999Z",
|
|
@@ -4848,10 +4886,10 @@ var RichText = forwardRef86((delegated, ref) => {
|
|
|
4848
4886
|
RichText.displayName = "RichText";
|
|
4849
4887
|
|
|
4850
4888
|
// src/iconography/rocket.tsx
|
|
4851
|
-
import { forwardRef as
|
|
4852
|
-
import { jsx as
|
|
4853
|
-
var Rocket =
|
|
4854
|
-
return /* @__PURE__ */
|
|
4889
|
+
import { forwardRef as forwardRef88 } from "react";
|
|
4890
|
+
import { jsx as jsx94, jsxs as jsxs85 } from "react/jsx-runtime";
|
|
4891
|
+
var Rocket = forwardRef88((delegated, ref) => {
|
|
4892
|
+
return /* @__PURE__ */ jsxs85("svg", {
|
|
4855
4893
|
ref,
|
|
4856
4894
|
width: "16",
|
|
4857
4895
|
height: "16",
|
|
@@ -4859,27 +4897,27 @@ var Rocket = forwardRef87((delegated, ref) => {
|
|
|
4859
4897
|
fill: "none",
|
|
4860
4898
|
...delegated,
|
|
4861
4899
|
children: [
|
|
4862
|
-
/* @__PURE__ */
|
|
4900
|
+
/* @__PURE__ */ jsx94("path", {
|
|
4863
4901
|
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",
|
|
4864
4902
|
fill: "#fff"
|
|
4865
4903
|
}),
|
|
4866
|
-
/* @__PURE__ */
|
|
4904
|
+
/* @__PURE__ */ jsx94("path", {
|
|
4867
4905
|
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",
|
|
4868
4906
|
fill: "#528693"
|
|
4869
4907
|
}),
|
|
4870
|
-
/* @__PURE__ */
|
|
4908
|
+
/* @__PURE__ */ jsx94("path", {
|
|
4871
4909
|
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",
|
|
4872
4910
|
fill: "#BFF6F8"
|
|
4873
4911
|
}),
|
|
4874
|
-
/* @__PURE__ */
|
|
4912
|
+
/* @__PURE__ */ jsx94("path", {
|
|
4875
4913
|
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",
|
|
4876
4914
|
fill: "#fff"
|
|
4877
4915
|
}),
|
|
4878
|
-
/* @__PURE__ */
|
|
4916
|
+
/* @__PURE__ */ jsx94("path", {
|
|
4879
4917
|
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",
|
|
4880
4918
|
fill: "#BFF6F8"
|
|
4881
4919
|
}),
|
|
4882
|
-
/* @__PURE__ */
|
|
4920
|
+
/* @__PURE__ */ jsx94("path", {
|
|
4883
4921
|
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",
|
|
4884
4922
|
fill: "#528693"
|
|
4885
4923
|
})
|
|
@@ -4889,10 +4927,10 @@ var Rocket = forwardRef87((delegated, ref) => {
|
|
|
4889
4927
|
Rocket.displayName = "RocketIcon";
|
|
4890
4928
|
|
|
4891
4929
|
// src/iconography/search.tsx
|
|
4892
|
-
import { forwardRef as
|
|
4893
|
-
import { jsx as
|
|
4894
|
-
var Search =
|
|
4895
|
-
return /* @__PURE__ */
|
|
4930
|
+
import { forwardRef as forwardRef89 } from "react";
|
|
4931
|
+
import { jsx as jsx95, jsxs as jsxs86 } from "react/jsx-runtime";
|
|
4932
|
+
var Search = forwardRef89((delegated, ref) => {
|
|
4933
|
+
return /* @__PURE__ */ jsxs86("svg", {
|
|
4896
4934
|
ref,
|
|
4897
4935
|
width: "22",
|
|
4898
4936
|
height: "23",
|
|
@@ -4900,21 +4938,21 @@ var Search = forwardRef88((delegated, ref) => {
|
|
|
4900
4938
|
fill: "none",
|
|
4901
4939
|
...delegated,
|
|
4902
4940
|
children: [
|
|
4903
|
-
/* @__PURE__ */
|
|
4941
|
+
/* @__PURE__ */ jsx95("path", {
|
|
4904
4942
|
d: "M19.02 9.531a6.238 6.238 0 1 1-12.476 0 6.238 6.238 0 0 1 12.476 0Z",
|
|
4905
4943
|
fill: "#fff"
|
|
4906
4944
|
}),
|
|
4907
|
-
/* @__PURE__ */
|
|
4945
|
+
/* @__PURE__ */ jsx95("path", {
|
|
4908
4946
|
d: "M18.023 14.86c2.913-2.914 2.913-7.655 0-10.568-2.914-2.914-7.654-2.914-10.568 0a7.327 7.327 0 0 0-1.124 9.018s.124.208-.043.375l-3.813 3.812c-.759.759-.94 1.82-.266 2.493l.116.116c.673.673 1.734.492 2.492-.267l3.805-3.804c.175-.175.382-.051.382-.051a7.327 7.327 0 0 0 9.019-1.124Zm-9.188-1.38a5.528 5.528 0 0 1 0-7.808 5.528 5.528 0 0 1 7.808 0 5.528 5.528 0 0 1 0 7.808 5.528 5.528 0 0 1-7.808 0Z",
|
|
4909
4947
|
fill: "#BFF6F8"
|
|
4910
4948
|
}),
|
|
4911
|
-
/* @__PURE__ */
|
|
4949
|
+
/* @__PURE__ */ jsx95("path", {
|
|
4912
4950
|
fillRule: "evenodd",
|
|
4913
4951
|
clipRule: "evenodd",
|
|
4914
4952
|
d: "M6.288 13.685c.167-.167.043-.375.043-.375a7.327 7.327 0 0 1 1.124-9.018c2.914-2.914 7.654-2.914 10.568 0 2.913 2.913 2.913 7.654 0 10.568a7.327 7.327 0 0 1-9.019 1.124s-.207-.124-.382.051L4.817 19.84c-.758.758-1.82.939-2.492.266l-.116-.116c-.673-.673-.493-1.734.266-2.493l3.813-3.812ZM1.9 20.53l-.115-.115c-1.001-1.001-.621-2.455.266-3.342l3.651-3.651a7.925 7.925 0 0 1 1.329-9.554c3.148-3.148 8.268-3.148 11.416 0 3.148 3.148 3.148 8.268 0 11.416a7.925 7.925 0 0 1-9.554 1.329l-3.65 3.65c-.888.887-2.342 1.268-3.343.267ZM16.22 6.096a4.928 4.928 0 0 0-6.96 0 4.928 4.928 0 0 0 0 6.96 4.928 4.928 0 0 0 6.96 0 4.928 4.928 0 0 0 0-6.96Zm.424 7.384a5.528 5.528 0 0 0 0-7.808 5.528 5.528 0 0 0-7.808 0 5.528 5.528 0 0 0 0 7.808 5.528 5.528 0 0 0 7.808 0Z",
|
|
4915
4953
|
fill: "#528693"
|
|
4916
4954
|
}),
|
|
4917
|
-
/* @__PURE__ */
|
|
4955
|
+
/* @__PURE__ */ jsx95("path", {
|
|
4918
4956
|
d: "M9.312 9.453a.77.77 0 0 1-.3-.061c-.393-.166-.576-.349-.41-.741a4.86 4.86 0 0 1 6.363-2.58c.392.167.576.35.41.742a.771.771 0 0 1-1.011.41 3.316 3.316 0 0 0-4.342 1.76.771.771 0 0 1-.71.47Z",
|
|
4919
4957
|
fill: "#528693"
|
|
4920
4958
|
})
|
|
@@ -4924,10 +4962,10 @@ var Search = forwardRef88((delegated, ref) => {
|
|
|
4924
4962
|
Search.displayName = "SearchIcon";
|
|
4925
4963
|
|
|
4926
4964
|
// src/iconography/selection.tsx
|
|
4927
|
-
import { forwardRef as
|
|
4928
|
-
import { jsx as
|
|
4929
|
-
var Selection =
|
|
4930
|
-
return /* @__PURE__ */
|
|
4965
|
+
import { forwardRef as forwardRef90 } from "react";
|
|
4966
|
+
import { jsx as jsx96, jsxs as jsxs87 } from "react/jsx-runtime";
|
|
4967
|
+
var Selection = forwardRef90((delegated, ref) => {
|
|
4968
|
+
return /* @__PURE__ */ jsxs87("svg", {
|
|
4931
4969
|
ref,
|
|
4932
4970
|
width: "22",
|
|
4933
4971
|
height: "22",
|
|
@@ -4935,65 +4973,65 @@ var Selection = forwardRef89((delegated, ref) => {
|
|
|
4935
4973
|
fill: "none",
|
|
4936
4974
|
...delegated,
|
|
4937
4975
|
children: [
|
|
4938
|
-
/* @__PURE__ */
|
|
4976
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4939
4977
|
d: "M3.98749 15.5C3.98749 15.3343 4.1218 15.2 4.28749 15.2H6.48749C6.65317 15.2 6.78749 15.3343 6.78749 15.5V17.7C6.78749 17.8657 6.65317 18 6.48749 18H4.28749C4.1218 18 3.98749 17.8657 3.98749 17.7V15.5Z",
|
|
4940
4978
|
fill: "white"
|
|
4941
4979
|
}),
|
|
4942
|
-
/* @__PURE__ */
|
|
4980
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4943
4981
|
fillRule: "evenodd",
|
|
4944
4982
|
clipRule: "evenodd",
|
|
4945
4983
|
d: "M4.28751 14.6H6.48751C6.98457 14.6 7.38751 15.0029 7.38751 15.5V17.7C7.38751 18.197 6.98457 18.6 6.48751 18.6H4.28751C3.79045 18.6 3.38751 18.197 3.38751 17.7V15.5C3.38751 15.0029 3.79046 14.6 4.28751 14.6ZM4.28751 15.2C4.12183 15.2 3.98751 15.3343 3.98751 15.5V17.7C3.98751 17.8657 4.12183 18 4.28751 18H6.48751C6.6532 18 6.78751 17.8657 6.78751 17.7V15.5C6.78751 15.3343 6.6532 15.2 6.48751 15.2H4.28751Z",
|
|
4946
4984
|
fill: "#528693"
|
|
4947
4985
|
}),
|
|
4948
|
-
/* @__PURE__ */
|
|
4986
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4949
4987
|
d: "M9.28754 15.5C9.28754 15.3343 9.42185 15.2 9.58754 15.2H17.7125C17.8782 15.2 18.0125 15.3343 18.0125 15.5V17.7C18.0125 17.8657 17.8782 18 17.7125 18H9.58754C9.42185 18 9.28754 17.8657 9.28754 17.7V15.5Z",
|
|
4950
4988
|
fill: "#BFF6F8",
|
|
4951
4989
|
className: "c-icon-fill"
|
|
4952
4990
|
}),
|
|
4953
|
-
/* @__PURE__ */
|
|
4991
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4954
4992
|
fillRule: "evenodd",
|
|
4955
4993
|
clipRule: "evenodd",
|
|
4956
4994
|
d: "M9.58756 14.6H17.7125C18.2096 14.6 18.6125 15.0029 18.6125 15.5V17.7C18.6125 18.197 18.2096 18.6 17.7125 18.6H9.58756C9.09051 18.6 8.68756 18.197 8.68756 17.7V15.5C8.68756 15.0029 9.09051 14.6 9.58756 14.6ZM9.58756 15.2C9.42188 15.2 9.28756 15.3343 9.28756 15.5V17.7C9.28756 17.8657 9.42188 18 9.58756 18H17.7125C17.8782 18 18.0125 17.8657 18.0125 17.7V15.5C18.0125 15.3343 17.8782 15.2 17.7125 15.2H9.58756Z",
|
|
4957
4995
|
fill: "#528693"
|
|
4958
4996
|
}),
|
|
4959
|
-
/* @__PURE__ */
|
|
4997
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4960
4998
|
d: "M3.98749 9.89991C3.98749 9.73423 4.1218 9.59991 4.28749 9.59991H6.48749C6.65317 9.59991 6.78749 9.73423 6.78749 9.89991V12.0999C6.78749 12.2656 6.65317 12.3999 6.48749 12.3999H4.28749C4.1218 12.3999 3.98749 12.2656 3.98749 12.0999V9.89991Z",
|
|
4961
4999
|
fill: "white"
|
|
4962
5000
|
}),
|
|
4963
|
-
/* @__PURE__ */
|
|
5001
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4964
5002
|
fillRule: "evenodd",
|
|
4965
5003
|
clipRule: "evenodd",
|
|
4966
5004
|
d: "M4.28751 8.99994H6.48751C6.98457 8.99994 7.38751 9.40288 7.38751 9.89994V12.0999C7.38751 12.597 6.98457 12.9999 6.48751 12.9999H4.28751C3.79045 12.9999 3.38751 12.597 3.38751 12.0999V9.89994C3.38751 9.40288 3.79046 8.99994 4.28751 8.99994ZM4.28751 9.59994C4.12183 9.59994 3.98751 9.73425 3.98751 9.89994V12.0999C3.98751 12.2656 4.12183 12.3999 4.28751 12.3999H6.48751C6.6532 12.3999 6.78751 12.2656 6.78751 12.0999V9.89994C6.78751 9.73425 6.6532 9.59994 6.48751 9.59994H4.28751Z",
|
|
4967
5005
|
fill: "#528693"
|
|
4968
5006
|
}),
|
|
4969
|
-
/* @__PURE__ */
|
|
5007
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4970
5008
|
d: "M9.28754 9.89991C9.28754 9.73423 9.42185 9.59991 9.58754 9.59991H17.7125C17.8782 9.59991 18.0125 9.73423 18.0125 9.89991V12.0999C18.0125 12.2656 17.8782 12.3999 17.7125 12.3999H9.58754C9.42185 12.3999 9.28754 12.2656 9.28754 12.0999V9.89991Z",
|
|
4971
5009
|
fill: "#BFF6F8",
|
|
4972
5010
|
className: "c-icon-fill"
|
|
4973
5011
|
}),
|
|
4974
|
-
/* @__PURE__ */
|
|
5012
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4975
5013
|
fillRule: "evenodd",
|
|
4976
5014
|
clipRule: "evenodd",
|
|
4977
5015
|
d: "M9.5875 8.99994H17.7125C18.2095 8.99994 18.6125 9.40288 18.6125 9.89994V12.0999C18.6125 12.597 18.2095 12.9999 17.7125 12.9999H9.5875C9.09044 12.9999 8.6875 12.597 8.6875 12.0999V9.89994C8.6875 9.40288 9.09044 8.99994 9.5875 8.99994ZM9.5875 9.59994C9.42181 9.59994 9.2875 9.73425 9.2875 9.89994V12.0999C9.2875 12.2656 9.42181 12.3999 9.5875 12.3999H17.7125C17.8782 12.3999 18.0125 12.2656 18.0125 12.0999V9.89994C18.0125 9.73425 17.8782 9.59994 17.7125 9.59994H9.5875Z",
|
|
4978
5016
|
fill: "#528693"
|
|
4979
5017
|
}),
|
|
4980
|
-
/* @__PURE__ */
|
|
5018
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4981
5019
|
d: "M3.98749 4.29994C3.98749 4.13425 4.1218 3.99994 4.28749 3.99994H6.48749C6.65317 3.99994 6.78749 4.13425 6.78749 4.29994V6.49994C6.78749 6.66562 6.65317 6.79994 6.48749 6.79994H4.28749C4.1218 6.79994 3.98749 6.66562 3.98749 6.49994V4.29994Z",
|
|
4982
5020
|
fill: "#BFF6F8",
|
|
4983
5021
|
className: "c-icon-fill"
|
|
4984
5022
|
}),
|
|
4985
|
-
/* @__PURE__ */
|
|
5023
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4986
5024
|
fillRule: "evenodd",
|
|
4987
5025
|
clipRule: "evenodd",
|
|
4988
5026
|
d: "M4.28751 3.39996H6.48751C6.98457 3.39996 7.38751 3.80291 7.38751 4.29996V6.49996C7.38751 6.99702 6.98457 7.39996 6.48751 7.39996H4.28751C3.79045 7.39996 3.38751 6.99702 3.38751 6.49996V4.29996C3.38751 3.80291 3.79046 3.39996 4.28751 3.39996ZM4.28751 3.99996C4.12183 3.99996 3.98751 4.13428 3.98751 4.29996V6.49996C3.98751 6.66565 4.12183 6.79996 4.28751 6.79996H6.48751C6.6532 6.79996 6.78751 6.66565 6.78751 6.49996V4.29996C6.78751 4.13428 6.6532 3.99996 6.48751 3.99996H4.28751Z",
|
|
4989
5027
|
fill: "#528693"
|
|
4990
5028
|
}),
|
|
4991
|
-
/* @__PURE__ */
|
|
5029
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4992
5030
|
d: "M9.28748 4.29994C9.28748 4.13425 9.42179 3.99994 9.58748 3.99994H17.7125C17.8782 3.99994 18.0125 4.13425 18.0125 4.29994V6.49994C18.0125 6.66562 17.8782 6.79994 17.7125 6.79994H9.58748C9.42179 6.79994 9.28748 6.66562 9.28748 6.49994V4.29994Z",
|
|
4993
5031
|
fill: "#BFF6F8",
|
|
4994
5032
|
className: "c-icon-fill"
|
|
4995
5033
|
}),
|
|
4996
|
-
/* @__PURE__ */
|
|
5034
|
+
/* @__PURE__ */ jsx96("path", {
|
|
4997
5035
|
fillRule: "evenodd",
|
|
4998
5036
|
clipRule: "evenodd",
|
|
4999
5037
|
d: "M9.5875 3.39996H17.7125C18.2096 3.39996 18.6125 3.80291 18.6125 4.29996V6.49996C18.6125 6.99702 18.2096 7.39996 17.7125 7.39996H9.5875C9.09044 7.39996 8.6875 6.99702 8.6875 6.49996V4.29996C8.6875 3.80291 9.09044 3.39996 9.5875 3.39996ZM9.5875 3.99996C9.42181 3.99996 9.2875 4.13428 9.2875 4.29996V6.49996C9.2875 6.66565 9.42181 6.79996 9.5875 6.79996H17.7125C17.8782 6.79996 18.0125 6.66565 18.0125 6.49996V4.29996C18.0125 4.13428 17.8782 3.99996 17.7125 3.99996H9.5875Z",
|
|
@@ -5005,22 +5043,22 @@ var Selection = forwardRef89((delegated, ref) => {
|
|
|
5005
5043
|
Selection.displayName = "Selection";
|
|
5006
5044
|
|
|
5007
5045
|
// src/iconography/settings.tsx
|
|
5008
|
-
import { forwardRef as
|
|
5009
|
-
import { jsx as
|
|
5010
|
-
var Settings =
|
|
5011
|
-
return /* @__PURE__ */
|
|
5046
|
+
import { forwardRef as forwardRef91 } from "react";
|
|
5047
|
+
import { jsx as jsx97, jsxs as jsxs88 } from "react/jsx-runtime";
|
|
5048
|
+
var Settings = forwardRef91((delegated, ref) => {
|
|
5049
|
+
return /* @__PURE__ */ jsxs88("svg", {
|
|
5012
5050
|
ref,
|
|
5013
5051
|
width: "22",
|
|
5014
5052
|
height: "22",
|
|
5015
5053
|
viewBox: "0 0 22 22",
|
|
5016
5054
|
...delegated,
|
|
5017
5055
|
children: [
|
|
5018
|
-
/* @__PURE__ */
|
|
5056
|
+
/* @__PURE__ */ jsx97("path", {
|
|
5019
5057
|
d: "M20.1994 9.46253L18.0308 9.05601C17.8991 8.61747 17.7263 8.19681 17.5126 7.80108L18.7672 5.96691C18.8834 5.79715 18.8596 5.54178 18.714 5.39659L17.1671 3.84944C17.0216 3.70388 16.7665 3.68043 16.5968 3.7962L14.7621 5.0515C14.3548 4.83186 13.9211 4.65577 13.4691 4.52287L13.0648 2.36594C13.0265 2.1638 12.8295 2 12.6237 2H10.4357C10.2298 2 10.0329 2.1638 9.99452 2.36594L9.58612 4.54409C9.1524 4.67662 8.73655 4.84935 8.34489 5.06229L6.53331 3.82301C6.36355 3.70686 6.10816 3.73068 5.96296 3.87624L4.41571 5.4234C4.27014 5.56895 4.24669 5.82396 4.36247 5.99371L5.60966 7.81635C5.39968 8.20798 5.22954 8.62343 5.09924 9.05638L2.93101 9.46253C2.72922 9.50087 2.56541 9.6978 2.56541 9.90367V12.0915C2.56541 12.2974 2.72922 12.4943 2.93101 12.5326L5.09775 12.9388C5.22992 13.381 5.40415 13.8054 5.61933 14.2041L4.3863 16.0067C4.27014 16.1764 4.29397 16.4318 4.43954 16.577L5.98642 18.1241C6.13198 18.2697 6.387 18.2931 6.55677 18.1774L8.35867 16.944C8.74622 17.1536 9.15761 17.3241 9.58686 17.4559L9.99527 19.6344C10.0336 19.8362 10.2306 20 10.4364 20H12.6244C12.8303 20 13.0272 19.8362 13.0656 19.6344L13.4699 17.4768C13.917 17.345 14.3463 17.1711 14.7498 16.9552L16.5748 18.2038C16.7446 18.3199 17 18.2961 17.1452 18.1506L18.692 16.6042C18.8376 16.4586 18.8611 16.2036 18.7453 16.0338L17.5037 14.2194C17.723 13.8159 17.8994 13.3866 18.0334 12.9388L20.1998 12.5326C20.4016 12.4943 20.5654 12.2974 20.5654 12.0915V9.90367C20.5654 9.6978 20.4012 9.50087 20.1994 9.46253ZM11.5652 14.7543C9.4923 14.7543 7.8114 13.0735 7.8114 10.9996C7.8114 8.9272 9.4923 7.24603 11.5652 7.24603C13.6389 7.24603 15.3202 8.9272 15.3202 10.9996C15.3202 13.0735 13.6385 14.7543 11.5652 14.7543Z",
|
|
5020
5058
|
fill: "#BFF6F8",
|
|
5021
5059
|
className: "c-icon-fill"
|
|
5022
5060
|
}),
|
|
5023
|
-
/* @__PURE__ */
|
|
5061
|
+
/* @__PURE__ */ jsx97("path", {
|
|
5024
5062
|
fillRule: "evenodd",
|
|
5025
5063
|
clipRule: "evenodd",
|
|
5026
5064
|
d: "M20.3115 8.8731C20.7945 8.9649 21.1654 9.40781 21.1654 9.90369V12.0915C21.1654 12.5867 20.7956 13.0302 20.3118 13.1221L20.3104 13.1224L18.4935 13.463C18.4079 13.7056 18.31 13.943 18.1998 14.1743L19.2404 15.695C19.5183 16.1024 19.4664 16.6784 19.1163 17.0285L17.57 18.5743C17.2204 18.9241 16.6438 18.978 16.236 18.699L14.7027 17.65C14.4721 17.7582 14.2354 17.8544 13.9938 17.9385L13.655 19.7465C13.5631 20.2303 13.1195 20.6 12.6244 20.6H10.4364C9.94132 20.6 9.49777 20.2303 9.40582 19.7465L9.40554 19.745L9.06215 17.9133C8.83811 17.8325 8.61861 17.7414 8.40448 17.6398L6.89483 18.6731C6.48748 18.9509 5.91223 18.8985 5.56217 18.5484L4.01583 17.0018C4.01573 17.0017 4.01593 17.0019 4.01583 17.0018C3.66572 16.6523 3.61199 16.0759 3.89108 15.6679C3.89107 15.6679 3.8911 15.6679 3.89108 15.6679L4.92383 14.1582C4.81678 13.9322 4.72136 13.7001 4.63764 13.463L2.819 13.1221C2.3352 13.0302 1.96542 12.5867 1.96542 12.0915V9.90369C1.96542 9.40853 2.3352 8.96503 2.819 8.8731L2.82054 8.8728L4.63983 8.53202C4.72067 8.30423 4.81227 8.08102 4.91473 7.86328L3.86731 6.33257C3.58946 5.92521 3.64139 5.34919 3.99146 4.99914L5.53817 3.45253C5.53807 3.45263 5.53827 3.45243 5.53817 3.45253C5.88768 3.10244 6.46414 3.04873 6.87209 3.32782C6.87208 3.32781 6.87209 3.32782 6.87209 3.32782L8.3899 4.36615C8.60847 4.26189 8.83263 4.16866 9.06149 4.08636L9.40504 2.25414C9.49687 1.77003 9.94031 1.40002 10.4357 1.40002H12.6237C13.119 1.40002 13.5625 1.77003 13.6543 2.25414L13.6546 2.25542L13.993 4.06095C14.2395 4.1467 14.4809 4.24503 14.7159 4.35613L16.258 3.30104C16.6653 3.02324 17.2413 3.07515 17.5914 3.42518L19.1377 4.9718C19.1376 4.97168 19.1378 4.97192 19.1377 4.9718C19.4878 5.32131 19.5415 5.89782 19.2624 6.30576L18.2081 7.84705C18.3136 8.0698 18.4077 8.29837 18.4904 8.53173L20.3115 8.8731ZM18.0308 9.05603C17.8991 8.6175 17.7263 8.19683 17.5126 7.80111L18.7672 5.96693C18.8834 5.79718 18.8596 5.5418 18.714 5.39662L17.1671 3.84946C17.0216 3.7039 16.7665 3.68045 16.5968 3.79623L14.7621 5.05152C14.3548 4.83188 13.9211 4.6558 13.4691 4.5229L13.0648 2.36597C13.0265 2.16382 12.8295 2.00002 12.6237 2.00002H10.4357C10.2298 2.00002 10.0329 2.16382 9.99452 2.36597L9.58612 4.54412C9.1524 4.67665 8.73655 4.84938 8.34489 5.06232L6.53332 3.82303C6.36355 3.70688 6.10816 3.73071 5.96296 3.87627L4.41571 5.42342C4.27015 5.56898 4.24669 5.82398 4.36247 5.99374L5.60966 7.81637C5.39968 8.208 5.22955 8.62345 5.09924 9.0564L2.93101 9.46255C2.72922 9.50089 2.56542 9.69782 2.56542 9.90369V12.0915C2.56542 12.2974 2.72922 12.4943 2.93101 12.5327L5.09775 12.9388C5.22992 13.3811 5.40415 13.8055 5.61934 14.2042L4.3863 16.0067C4.27015 16.1764 4.29397 16.4318 4.43954 16.577L5.98642 18.1242C6.13198 18.2697 6.387 18.2932 6.55677 18.1774L8.35867 16.9441C8.74623 17.1536 9.15761 17.3241 9.58686 17.4559L9.99527 19.6345C10.0336 19.8362 10.2306 20 10.4364 20H12.6244C12.8303 20 13.0272 19.8362 13.0656 19.6345L13.4699 17.4768C13.917 17.345 14.3463 17.1711 14.7498 16.9552L16.5748 18.2038C16.7446 18.32 17 18.2961 17.1452 18.1506L18.692 16.6042C18.8376 16.4586 18.8611 16.2036 18.7453 16.0339L17.5037 14.2194C17.723 13.8159 17.8994 13.3866 18.0334 12.9388L20.1998 12.5327C20.4016 12.4943 20.5654 12.2974 20.5654 12.0915V9.90369C20.5654 9.69782 20.4012 9.50089 20.1995 9.46255L18.0308 9.05603ZM8.4114 10.9997C8.4114 12.7423 9.82375 14.1544 11.5652 14.1544C13.3073 14.1544 14.7202 12.7421 14.7202 10.9997C14.7202 9.25875 13.3077 7.84605 11.5652 7.84605C9.82368 7.84605 8.4114 9.25859 8.4114 10.9997ZM7.8114 10.9997C7.8114 13.0736 9.4923 14.7544 11.5652 14.7544C13.6385 14.7544 15.3202 13.0736 15.3202 10.9997C15.3202 8.92723 13.6389 7.24605 11.5652 7.24605C9.4923 7.24605 7.8114 8.92723 7.8114 10.9997Z",
|
|
@@ -5032,10 +5070,10 @@ var Settings = forwardRef90((delegated, ref) => {
|
|
|
5032
5070
|
Settings.displayName = "SettingsIcon";
|
|
5033
5071
|
|
|
5034
5072
|
// src/iconography/shapes.tsx
|
|
5035
|
-
import { forwardRef as
|
|
5036
|
-
import { jsx as
|
|
5037
|
-
var Shapes =
|
|
5038
|
-
return /* @__PURE__ */
|
|
5073
|
+
import { forwardRef as forwardRef92 } from "react";
|
|
5074
|
+
import { jsx as jsx98, jsxs as jsxs89 } from "react/jsx-runtime";
|
|
5075
|
+
var Shapes = forwardRef92((delegated, ref) => {
|
|
5076
|
+
return /* @__PURE__ */ jsxs89("svg", {
|
|
5039
5077
|
ref,
|
|
5040
5078
|
width: "23",
|
|
5041
5079
|
height: "22",
|
|
@@ -5043,41 +5081,41 @@ var Shapes = forwardRef91((delegated, ref) => {
|
|
|
5043
5081
|
fill: "none",
|
|
5044
5082
|
...delegated,
|
|
5045
5083
|
children: [
|
|
5046
|
-
/* @__PURE__ */
|
|
5084
|
+
/* @__PURE__ */ jsx98("path", {
|
|
5047
5085
|
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",
|
|
5048
5086
|
fill: "#BFF6F8"
|
|
5049
5087
|
}),
|
|
5050
|
-
/* @__PURE__ */
|
|
5088
|
+
/* @__PURE__ */ jsx98("path", {
|
|
5051
5089
|
fillRule: "evenodd",
|
|
5052
5090
|
clipRule: "evenodd",
|
|
5053
5091
|
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",
|
|
5054
5092
|
fill: "#528693"
|
|
5055
5093
|
}),
|
|
5056
|
-
/* @__PURE__ */
|
|
5094
|
+
/* @__PURE__ */ jsx98("path", {
|
|
5057
5095
|
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",
|
|
5058
5096
|
fill: "#fff"
|
|
5059
5097
|
}),
|
|
5060
|
-
/* @__PURE__ */
|
|
5098
|
+
/* @__PURE__ */ jsx98("path", {
|
|
5061
5099
|
fillRule: "evenodd",
|
|
5062
5100
|
clipRule: "evenodd",
|
|
5063
5101
|
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",
|
|
5064
5102
|
fill: "#528693"
|
|
5065
5103
|
}),
|
|
5066
|
-
/* @__PURE__ */
|
|
5104
|
+
/* @__PURE__ */ jsx98("path", {
|
|
5067
5105
|
d: "m17.069 2.8 3.51 7h-7.097l3.587-7Z",
|
|
5068
5106
|
fill: "#BFF6F8"
|
|
5069
5107
|
}),
|
|
5070
|
-
/* @__PURE__ */
|
|
5108
|
+
/* @__PURE__ */ jsx98("path", {
|
|
5071
5109
|
fillRule: "evenodd",
|
|
5072
5110
|
clipRule: "evenodd",
|
|
5073
5111
|
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",
|
|
5074
5112
|
fill: "#528693"
|
|
5075
5113
|
}),
|
|
5076
|
-
/* @__PURE__ */
|
|
5114
|
+
/* @__PURE__ */ jsx98("path", {
|
|
5077
5115
|
d: "M10.679 16.3a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z",
|
|
5078
5116
|
fill: "#BFF6F8"
|
|
5079
5117
|
}),
|
|
5080
|
-
/* @__PURE__ */
|
|
5118
|
+
/* @__PURE__ */ jsx98("path", {
|
|
5081
5119
|
fillRule: "evenodd",
|
|
5082
5120
|
clipRule: "evenodd",
|
|
5083
5121
|
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",
|
|
@@ -5089,10 +5127,10 @@ var Shapes = forwardRef91((delegated, ref) => {
|
|
|
5089
5127
|
Shapes.displayName = "ShapesIcon";
|
|
5090
5128
|
|
|
5091
5129
|
// src/iconography/singleline.tsx
|
|
5092
|
-
import { forwardRef as
|
|
5093
|
-
import { jsx as
|
|
5094
|
-
var SingleLine =
|
|
5095
|
-
return /* @__PURE__ */
|
|
5130
|
+
import { forwardRef as forwardRef93 } from "react";
|
|
5131
|
+
import { jsx as jsx99, jsxs as jsxs90 } from "react/jsx-runtime";
|
|
5132
|
+
var SingleLine = forwardRef93((delegated, ref) => {
|
|
5133
|
+
return /* @__PURE__ */ jsxs90("svg", {
|
|
5096
5134
|
ref,
|
|
5097
5135
|
width: "22",
|
|
5098
5136
|
height: "22",
|
|
@@ -5100,12 +5138,12 @@ var SingleLine = forwardRef92((delegated, ref) => {
|
|
|
5100
5138
|
fill: "none",
|
|
5101
5139
|
...delegated,
|
|
5102
5140
|
children: [
|
|
5103
|
-
/* @__PURE__ */
|
|
5141
|
+
/* @__PURE__ */ jsx99("path", {
|
|
5104
5142
|
d: "M3 8.6C3 8.26863 3.26863 8 3.6 8H18.4C18.7314 8 19 8.26863 19 8.6V13.4C19 13.7314 18.7314 14 18.4 14H3.6C3.26863 14 3 13.7314 3 13.4V8.6Z",
|
|
5105
5143
|
fill: "#BFF6F8",
|
|
5106
5144
|
className: "c-icon-fill"
|
|
5107
5145
|
}),
|
|
5108
|
-
/* @__PURE__ */
|
|
5146
|
+
/* @__PURE__ */ jsx99("path", {
|
|
5109
5147
|
fillRule: "evenodd",
|
|
5110
5148
|
clipRule: "evenodd",
|
|
5111
5149
|
d: "M3.59999 7.40002H18.4C19.0627 7.40002 19.6 7.93728 19.6 8.60002V13.4C19.6 14.0628 19.0627 14.6 18.4 14.6H3.59999C2.93725 14.6 2.39999 14.0628 2.39999 13.4V8.60002C2.39999 7.93728 2.93725 7.40002 3.59999 7.40002ZM3.59999 8.00002C3.26862 8.00002 2.99999 8.26865 2.99999 8.60002V13.4C2.99999 13.7314 3.26862 14 3.59999 14H18.4C18.7314 14 19 13.7314 19 13.4V8.60002C19 8.26865 18.7314 8.00002 18.4 8.00002H3.59999Z",
|
|
@@ -5117,10 +5155,10 @@ var SingleLine = forwardRef92((delegated, ref) => {
|
|
|
5117
5155
|
SingleLine.displayName = "SingleLine";
|
|
5118
5156
|
|
|
5119
5157
|
// src/iconography/special-price.tsx
|
|
5120
|
-
import { forwardRef as
|
|
5121
|
-
import { jsx as
|
|
5122
|
-
var SpecialPrice =
|
|
5123
|
-
return /* @__PURE__ */
|
|
5158
|
+
import { forwardRef as forwardRef94 } from "react";
|
|
5159
|
+
import { jsx as jsx100, jsxs as jsxs91 } from "react/jsx-runtime";
|
|
5160
|
+
var SpecialPrice = forwardRef94((delegated, ref) => {
|
|
5161
|
+
return /* @__PURE__ */ jsxs91("svg", {
|
|
5124
5162
|
ref,
|
|
5125
5163
|
width: "23",
|
|
5126
5164
|
height: "22",
|
|
@@ -5128,41 +5166,41 @@ var SpecialPrice = forwardRef93((delegated, ref) => {
|
|
|
5128
5166
|
fill: "none",
|
|
5129
5167
|
...delegated,
|
|
5130
5168
|
children: [
|
|
5131
|
-
/* @__PURE__ */
|
|
5169
|
+
/* @__PURE__ */ jsx100("path", {
|
|
5132
5170
|
fill: "#BFF6F8",
|
|
5133
5171
|
d: "M10.568 1.418c.542-.42 1.3-.42 1.843 0l1.324 1.025c.276.214.618.325.968.315l1.673-.052c.686-.021 1.3.425 1.492 1.084l.468 1.607c.097.336.309.627.598.824l1.384.941c.567.386.802 1.108.57 1.754l-.567 1.575a1.506 1.506 0 0 0 0 1.018l.567 1.575a1.505 1.505 0 0 1-.57 1.754l-1.384.942c-.29.196-.5.487-.598.823l-.468 1.607a1.505 1.505 0 0 1-1.492 1.084l-1.673-.052c-.35-.01-.692.1-.968.315l-1.324 1.025c-.542.42-1.3.42-1.843 0l-1.324-1.025a1.505 1.505 0 0 0-.968-.315l-1.673.052a1.505 1.505 0 0 1-1.491-1.084l-.468-1.607a1.505 1.505 0 0 0-.599-.824l-1.384-.941a1.505 1.505 0 0 1-.57-1.753l.567-1.576a1.505 1.505 0 0 0 0-1.018L2.09 8.916a1.505 1.505 0 0 1 .57-1.754l1.384-.941c.29-.197.5-.488.599-.824l.468-1.607a1.505 1.505 0 0 1 1.49-1.084l1.674.052c.35.01.692-.1.968-.315l1.324-1.025Z"
|
|
5134
5172
|
}),
|
|
5135
|
-
/* @__PURE__ */
|
|
5173
|
+
/* @__PURE__ */ jsx100("path", {
|
|
5136
5174
|
fill: "#528693",
|
|
5137
5175
|
fillRule: "evenodd",
|
|
5138
5176
|
d: "M13.393 2.884 12.07 1.859a.947.947 0 0 0-1.16 0L9.585 2.884a2.063 2.063 0 0 1-1.327.431l-1.673-.051a.947.947 0 0 0-.939.681L5.18 5.553c-.134.46-.424.86-.82 1.129l-1.384.942a.947.947 0 0 0-.359 1.103l.567 1.575c.162.451.162.945 0 1.396l-.567 1.575a.947.947 0 0 0 .359 1.104l1.384.941c.396.27.686.669.82 1.13l.468 1.607c.12.414.507.695.939.681l1.673-.051c.48-.015.948.137 1.327.43l1.323 1.026a.947.947 0 0 0 1.16 0l1.324-1.025a2.063 2.063 0 0 1 1.327-.431l1.673.051a.947.947 0 0 0 .939-.681l.468-1.608c.134-.46.424-.86.82-1.129l1.384-.941a.947.947 0 0 0 .359-1.104l-.566-1.575a2.063 2.063 0 0 1 0-1.396l.566-1.575a.947.947 0 0 0-.359-1.103l-1.384-.942a2.063 2.063 0 0 1-.82-1.13l-.468-1.607a.947.947 0 0 0-.939-.681l-1.673.051a2.063 2.063 0 0 1-1.327-.431Zm-.982-1.466c-.542-.42-1.3-.42-1.843 0L9.244 2.443a1.505 1.505 0 0 1-.968.315l-1.673-.052A1.505 1.505 0 0 0 5.112 3.79l-.468 1.607c-.098.336-.31.627-.599.824l-1.384.941a1.505 1.505 0 0 0-.57 1.754l.567 1.575c.118.329.118.689 0 1.018l-.567 1.575a1.505 1.505 0 0 0 .57 1.754l1.384.942c.29.196.5.487.599.823l.468 1.607a1.505 1.505 0 0 0 1.49 1.084l1.674-.052c.35-.01.692.1.968.315l1.324 1.025c.542.42 1.3.42 1.843 0l1.324-1.025c.276-.214.618-.325.968-.315l1.673.052c.686.021 1.3-.425 1.492-1.084l.468-1.607c.097-.336.309-.627.598-.824l1.384-.941a1.505 1.505 0 0 0 .57-1.753l-.567-1.576a1.506 1.506 0 0 1 0-1.018l.567-1.575a1.505 1.505 0 0 0-.57-1.754l-1.384-.941a1.505 1.505 0 0 1-.598-.824l-.468-1.607a1.505 1.505 0 0 0-1.492-1.084l-1.673.052c-.35.01-.692-.1-.968-.315L12.41 1.418Z",
|
|
5139
5177
|
clipRule: "evenodd"
|
|
5140
5178
|
}),
|
|
5141
|
-
/* @__PURE__ */
|
|
5179
|
+
/* @__PURE__ */ jsx100("path", {
|
|
5142
5180
|
fill: "#fff",
|
|
5143
5181
|
d: "M7.471 15.02a.603.603 0 0 1 0-.853l7.184-7.183a.603.603 0 0 1 .853.853L8.324 15.02a.603.603 0 0 1-.853 0Z"
|
|
5144
5182
|
}),
|
|
5145
|
-
/* @__PURE__ */
|
|
5183
|
+
/* @__PURE__ */ jsx100("path", {
|
|
5146
5184
|
fill: "#528693",
|
|
5147
5185
|
fillRule: "evenodd",
|
|
5148
5186
|
d: "m7.076 13.773 7.184-7.184a1.161 1.161 0 1 1 1.642 1.642L8.72 15.415a1.161 1.161 0 0 1-1.643-1.642Zm.395.394a.603.603 0 0 0 .853.853l7.184-7.183a.603.603 0 1 0-.853-.853L7.47 14.167Z",
|
|
5149
5187
|
clipRule: "evenodd"
|
|
5150
5188
|
}),
|
|
5151
|
-
/* @__PURE__ */
|
|
5189
|
+
/* @__PURE__ */ jsx100("path", {
|
|
5152
5190
|
fill: "#fff",
|
|
5153
5191
|
d: "M11.226 7.989a2.09 2.09 0 1 1-4.182 0 2.09 2.09 0 0 1 4.182 0Z"
|
|
5154
5192
|
}),
|
|
5155
|
-
/* @__PURE__ */
|
|
5193
|
+
/* @__PURE__ */ jsx100("path", {
|
|
5156
5194
|
fill: "#528693",
|
|
5157
5195
|
fillRule: "evenodd",
|
|
5158
5196
|
d: "M9.135 9.521a1.533 1.533 0 1 0 0-3.065 1.533 1.533 0 0 0 0 3.065Zm0 .558a2.09 2.09 0 1 0 0-4.181 2.09 2.09 0 0 0 0 4.181Z",
|
|
5159
5197
|
clipRule: "evenodd"
|
|
5160
5198
|
}),
|
|
5161
|
-
/* @__PURE__ */
|
|
5199
|
+
/* @__PURE__ */ jsx100("path", {
|
|
5162
5200
|
fill: "#fff",
|
|
5163
5201
|
d: "M15.934 14.011a2.09 2.09 0 1 1-4.181 0 2.09 2.09 0 0 1 4.18 0Z"
|
|
5164
5202
|
}),
|
|
5165
|
-
/* @__PURE__ */
|
|
5203
|
+
/* @__PURE__ */ jsx100("path", {
|
|
5166
5204
|
fill: "#528693",
|
|
5167
5205
|
fillRule: "evenodd",
|
|
5168
5206
|
d: "M13.843 15.544a1.533 1.533 0 1 0 0-3.066 1.533 1.533 0 0 0 0 3.066Zm0 .558a2.09 2.09 0 1 0 0-4.182 2.09 2.09 0 0 0 0 4.182Z",
|
|
@@ -5174,10 +5212,10 @@ var SpecialPrice = forwardRef93((delegated, ref) => {
|
|
|
5174
5212
|
SpecialPrice.displayName = "SpecialPriceIcon";
|
|
5175
5213
|
|
|
5176
5214
|
// src/iconography/split.tsx
|
|
5177
|
-
import { forwardRef as
|
|
5178
|
-
import { jsx as
|
|
5179
|
-
var Split =
|
|
5180
|
-
return /* @__PURE__ */
|
|
5215
|
+
import { forwardRef as forwardRef95 } from "react";
|
|
5216
|
+
import { jsx as jsx101, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
5217
|
+
var Split = forwardRef95((delegated, ref) => {
|
|
5218
|
+
return /* @__PURE__ */ jsxs92("svg", {
|
|
5181
5219
|
ref,
|
|
5182
5220
|
width: "22",
|
|
5183
5221
|
height: "22",
|
|
@@ -5185,41 +5223,41 @@ var Split = forwardRef94((delegated, ref) => {
|
|
|
5185
5223
|
fill: "none",
|
|
5186
5224
|
...delegated,
|
|
5187
5225
|
children: [
|
|
5188
|
-
/* @__PURE__ */
|
|
5226
|
+
/* @__PURE__ */ jsx101("path", {
|
|
5189
5227
|
fill: "#fff",
|
|
5190
5228
|
d: "M2.388 3.858c0-.56.454-1.015 1.015-1.015H9.64c.56 0 1.015.454 1.015 1.015v3.418c0 .56-.454 1.015-1.015 1.015H3.403c-.56 0-1.015-.454-1.015-1.015V3.858Z"
|
|
5191
5229
|
}),
|
|
5192
|
-
/* @__PURE__ */
|
|
5230
|
+
/* @__PURE__ */ jsx101("path", {
|
|
5193
5231
|
fill: "#528693",
|
|
5194
5232
|
fillRule: "evenodd",
|
|
5195
5233
|
d: "M9.64 3.452H3.403a.406.406 0 0 0-.406.406v3.418c0 .224.182.406.406.406H9.64a.406.406 0 0 0 .406-.406V3.858a.406.406 0 0 0-.406-.406Zm-6.237-.61c-.56 0-1.015.455-1.015 1.016v3.418c0 .56.454 1.015 1.015 1.015H9.64c.56 0 1.015-.454 1.015-1.015V3.858c0-.56-.454-1.015-1.015-1.015H3.403Z",
|
|
5196
5234
|
clipRule: "evenodd"
|
|
5197
5235
|
}),
|
|
5198
|
-
/* @__PURE__ */
|
|
5236
|
+
/* @__PURE__ */ jsx101("path", {
|
|
5199
5237
|
fill: "#fff",
|
|
5200
5238
|
d: "M11.345 3.858c0-.56.454-1.015 1.015-1.015h6.237c.56 0 1.015.454 1.015 1.015v3.418c0 .56-.454 1.015-1.015 1.015H12.36c-.56 0-1.015-.454-1.015-1.015V3.858Z"
|
|
5201
5239
|
}),
|
|
5202
|
-
/* @__PURE__ */
|
|
5240
|
+
/* @__PURE__ */ jsx101("path", {
|
|
5203
5241
|
fill: "#528693",
|
|
5204
5242
|
fillRule: "evenodd",
|
|
5205
5243
|
d: "M18.597 3.452H12.36a.406.406 0 0 0-.406.406v3.418c0 .224.182.406.406.406h6.237a.406.406 0 0 0 .406-.406V3.858a.406.406 0 0 0-.406-.406Zm-6.237-.61c-.56 0-1.015.455-1.015 1.016v3.418c0 .56.454 1.015 1.015 1.015h6.237c.56 0 1.015-.454 1.015-1.015V3.858c0-.56-.454-1.015-1.015-1.015H12.36Z",
|
|
5206
5244
|
clipRule: "evenodd"
|
|
5207
5245
|
}),
|
|
5208
|
-
/* @__PURE__ */
|
|
5246
|
+
/* @__PURE__ */ jsx101("path", {
|
|
5209
5247
|
fill: "#BFF6F8",
|
|
5210
5248
|
d: "M2.388 5.212h8.267v12.93c0 .56-.454 1.015-1.015 1.015H3.403c-.56 0-1.015-.454-1.015-1.015V5.212Z"
|
|
5211
5249
|
}),
|
|
5212
|
-
/* @__PURE__ */
|
|
5250
|
+
/* @__PURE__ */ jsx101("path", {
|
|
5213
5251
|
fill: "#528693",
|
|
5214
5252
|
fillRule: "evenodd",
|
|
5215
5253
|
d: "M10.046 5.821H2.997v12.321c0 .224.182.406.406.406H9.64a.406.406 0 0 0 .406-.406V5.822Zm-7.658-.609v12.93c0 .56.454 1.015 1.015 1.015H9.64c.56 0 1.015-.454 1.015-1.015V5.212H2.388Z",
|
|
5216
5254
|
clipRule: "evenodd"
|
|
5217
5255
|
}),
|
|
5218
|
-
/* @__PURE__ */
|
|
5256
|
+
/* @__PURE__ */ jsx101("path", {
|
|
5219
5257
|
fill: "#BFF6F8",
|
|
5220
5258
|
d: "M11.345 5.212h8.267v12.93c0 .56-.454 1.015-1.015 1.015H12.36c-.56 0-1.015-.454-1.015-1.015V5.212Z"
|
|
5221
5259
|
}),
|
|
5222
|
-
/* @__PURE__ */
|
|
5260
|
+
/* @__PURE__ */ jsx101("path", {
|
|
5223
5261
|
fill: "#528693",
|
|
5224
5262
|
fillRule: "evenodd",
|
|
5225
5263
|
d: "M19.003 5.821h-7.049v12.321c0 .224.182.406.406.406h6.237a.406.406 0 0 0 .406-.406V5.822Zm-7.658-.609v12.93c0 .56.454 1.015 1.015 1.015h6.237c.56 0 1.015-.454 1.015-1.015V5.212h-8.267Z",
|
|
@@ -5231,10 +5269,10 @@ var Split = forwardRef94((delegated, ref) => {
|
|
|
5231
5269
|
Split.displayName = "SplitIcon";
|
|
5232
5270
|
|
|
5233
5271
|
// src/iconography/stock-location.tsx
|
|
5234
|
-
import { forwardRef as
|
|
5235
|
-
import { jsx as
|
|
5236
|
-
var StockLocation =
|
|
5237
|
-
return /* @__PURE__ */
|
|
5272
|
+
import { forwardRef as forwardRef96 } from "react";
|
|
5273
|
+
import { jsx as jsx102, jsxs as jsxs93 } from "react/jsx-runtime";
|
|
5274
|
+
var StockLocation = forwardRef96((delegated, ref) => {
|
|
5275
|
+
return /* @__PURE__ */ jsxs93("svg", {
|
|
5238
5276
|
ref,
|
|
5239
5277
|
width: "22",
|
|
5240
5278
|
height: "22",
|
|
@@ -5242,70 +5280,70 @@ var StockLocation = forwardRef95((delegated, ref) => {
|
|
|
5242
5280
|
fill: "none",
|
|
5243
5281
|
...delegated,
|
|
5244
5282
|
children: [
|
|
5245
|
-
/* @__PURE__ */
|
|
5283
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5246
5284
|
d: "M10.9679 19.3917L5.40032 17.234C5.31939 17.2027 5.26605 17.1248 5.26605 17.038V14.3176L3.52424 13.6176C3.38452 13.5615 3.3474 13.381 3.45363 13.2742L5.26605 11.4533L3.68162 9.71664C3.58183 9.60727 3.62333 9.43177 3.76154 9.37868L9.01297 7.36131L10.9679 9.16177L12.9228 7.19763C14.7691 7.93418 18.5432 9.48913 18.5432 9.48913C18.5432 9.48913 16.6541 11.5181 16.5883 11.4533C17.3511 12.1629 18.5415 13.2703 18.5415 13.2703C18.6552 13.3761 18.6189 13.5644 18.4741 13.6204L16.6697 14.3176V16.9581C16.6697 17.0439 16.6175 17.1211 16.5379 17.1531L10.9679 19.3917Z",
|
|
5247
5285
|
fill: "#BFF6F8",
|
|
5248
5286
|
className: "c-icon-fill"
|
|
5249
5287
|
}),
|
|
5250
|
-
/* @__PURE__ */
|
|
5288
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5251
5289
|
fillRule: "evenodd",
|
|
5252
5290
|
clipRule: "evenodd",
|
|
5253
5291
|
d: "M16.8238 11.2674C16.6912 11.3923 16.6025 11.4657 16.5885 11.4534L18.5415 13.2703C18.6552 13.3761 18.6189 13.5644 18.4741 13.6204L16.6697 14.3176V16.958C16.6697 17.0439 16.6175 17.1211 16.5379 17.1531L10.9679 19.3916L5.40032 17.234C5.31939 17.2027 5.26605 17.1248 5.26605 17.038V14.3176L3.52424 13.6176C3.38452 13.5615 3.3474 13.3809 3.45363 13.2742L5.26605 11.4532L3.68162 9.71662C3.58183 9.60725 3.62333 9.43175 3.76154 9.37866L9.01297 7.36129L10.9679 9.16175L12.9228 7.19761C14.3178 7.75412 16.8133 8.77782 17.95 9.24504C18.3177 9.3962 18.5432 9.48911 18.5432 9.48911C18.5432 9.48911 18.359 9.68692 18.1037 9.95703C17.7873 10.2918 17.3616 10.7375 17.0416 11.0555C16.9612 11.1355 16.8874 11.2074 16.8238 11.2674ZM18.5432 9.48911L18.9823 9.898L18.9001 9.98607C18.8479 10.0418 18.7734 10.1213 18.6838 10.2164C18.5049 10.4065 18.265 10.6599 18.0227 10.9116C17.8369 11.1046 17.6472 11.2992 17.4813 11.4645L18.9493 12.8302L18.9501 12.831C19.3883 13.2386 19.2486 13.9643 18.6904 14.18L17.2697 14.729V16.958C17.2697 17.2889 17.0686 17.5865 16.7616 17.7099L11.1916 19.9484C11.0504 20.0051 10.893 20.0061 10.7511 19.9511L5.18351 17.7935C4.87161 17.6726 4.66605 17.3725 4.66605 17.038V14.7231L3.3005 14.1743C2.76206 13.9579 2.619 13.2622 3.02836 12.8509L4.43742 11.4352L3.23838 10.121C2.85382 9.69953 3.01376 9.02318 3.54637 8.81857L8.79781 6.8012C9.01075 6.7194 9.25165 6.76542 9.41944 6.91995L10.9498 8.32939L12.4975 6.77435C12.6671 6.60401 12.9219 6.55127 13.1451 6.64032C14.0711 7.00972 15.4785 7.58355 16.6527 8.06431C17.2402 8.30484 17.7699 8.52233 18.1527 8.67969L18.7711 8.93406L18.5432 9.48911ZM18.5432 9.48911L18.7711 8.93406C18.953 9.00903 19.0874 9.16876 19.1294 9.36102C19.1714 9.55329 19.1164 9.75397 18.9823 9.898L18.5432 9.48911Z",
|
|
5254
5292
|
fill: "#528693"
|
|
5255
5293
|
}),
|
|
5256
|
-
/* @__PURE__ */
|
|
5294
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5257
5295
|
d: "M16.79 11.4532L10.968 13.6629L5.07001 11.4532L10.968 9.16174L16.79 11.4532Z",
|
|
5258
5296
|
fill: "#B1DDDF"
|
|
5259
5297
|
}),
|
|
5260
|
-
/* @__PURE__ */
|
|
5298
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5261
5299
|
fillRule: "evenodd",
|
|
5262
5300
|
clipRule: "evenodd",
|
|
5263
5301
|
d: "M10.968 13.6629L16.79 11.4532L10.968 9.16171L5.07001 11.4532L10.968 13.6629ZM11.1809 14.2238C11.0445 14.2756 10.894 14.2759 10.7575 14.2247L4.85951 12.0151C4.62648 11.9278 4.47153 11.7057 4.47002 11.4568C4.46851 11.208 4.62076 10.984 4.85272 10.8939L10.7507 8.60243C10.8913 8.5478 11.0473 8.54814 11.1877 8.60339L17.0098 10.8949C17.2404 10.9857 17.3915 11.209 17.39 11.4569C17.3885 11.7048 17.2347 11.9262 17.0029 12.0142L11.1809 14.2238Z",
|
|
5264
5302
|
fill: "#528693"
|
|
5265
5303
|
}),
|
|
5266
|
-
/* @__PURE__ */
|
|
5304
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5267
5305
|
d: "M2.91127 13.821L4.72369 12L10.4255 14.2097L8.48953 16.3104C8.42933 16.3757 8.33459 16.3962 8.25282 16.3615L4.72369 14.8644L2.98188 14.1644C2.84217 14.1082 2.80505 13.9277 2.91127 13.821Z",
|
|
5268
5306
|
fill: "#BFF6F8",
|
|
5269
5307
|
className: "c-icon-fill"
|
|
5270
5308
|
}),
|
|
5271
|
-
/* @__PURE__ */
|
|
5309
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5272
5310
|
fillRule: "evenodd",
|
|
5273
5311
|
clipRule: "evenodd",
|
|
5274
5312
|
d: "M4.29843 11.5767C4.46645 11.4079 4.71841 11.3545 4.9405 11.4405L10.6423 13.6502C10.8274 13.7219 10.9651 13.8805 11.01 14.0739C11.0549 14.2672 11.0013 14.4703 10.8667 14.6162L8.93074 16.717C8.69877 16.9687 8.33363 17.0475 8.0185 16.9138L4.49464 15.4189L2.75814 14.7211C2.2197 14.5047 2.07664 13.809 2.48601 13.3977L4.29843 11.5767ZM4.72369 14.8643L8.25282 16.3615C8.33459 16.3961 8.42933 16.3757 8.48953 16.3104L10.4255 14.2096L4.72369 12L2.91127 13.8209C2.80505 13.9277 2.84217 14.1082 2.98188 14.1643L4.72369 14.8643Z",
|
|
5275
5313
|
fill: "#528693"
|
|
5276
5314
|
}),
|
|
5277
|
-
/* @__PURE__ */
|
|
5315
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5278
5316
|
d: "M19.1287 13.821L17.3163 12L11.6144 14.2097L13.5505 16.3104C13.6106 16.3757 13.7054 16.3962 13.7872 16.3615L17.3163 14.8644L19.0581 14.1644C19.1978 14.1082 19.2349 13.9277 19.1287 13.821Z",
|
|
5279
5317
|
fill: "#BFF6F8",
|
|
5280
5318
|
className: "c-icon-fill"
|
|
5281
5319
|
}),
|
|
5282
|
-
/* @__PURE__ */
|
|
5320
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5283
5321
|
fillRule: "evenodd",
|
|
5284
5322
|
clipRule: "evenodd",
|
|
5285
5323
|
d: "M17.7416 11.5767C17.5735 11.4079 17.3216 11.3545 17.0995 11.4405L11.3976 13.6502C11.2126 13.7219 11.0749 13.8805 11.03 14.0739C10.9851 14.2672 11.0387 14.4703 11.1732 14.6162L13.1092 16.717C13.3412 16.9687 13.7063 17.0475 14.0215 16.9138L17.5453 15.4189L19.2818 14.7211C19.8203 14.5047 19.9633 13.809 19.554 13.3977L17.7416 11.5767ZM17.3163 14.8643L13.7872 16.3615C13.7054 16.3961 13.6106 16.3757 13.5505 16.3104L11.6144 14.2096L17.3163 12L19.1287 13.8209C19.2349 13.9277 19.1978 14.1082 19.0581 14.1643L17.3163 14.8643Z",
|
|
5286
5324
|
fill: "#528693"
|
|
5287
5325
|
}),
|
|
5288
|
-
/* @__PURE__ */
|
|
5326
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5289
5327
|
fillRule: "evenodd",
|
|
5290
5328
|
clipRule: "evenodd",
|
|
5291
5329
|
d: "M10.7 19.5V9H11.3V19.5H10.7Z",
|
|
5292
5330
|
fill: "#528693"
|
|
5293
5331
|
}),
|
|
5294
|
-
/* @__PURE__ */
|
|
5332
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5295
5333
|
d: "M14.125 6.125C14.125 7.26958 12.7506 9.91972 11.8247 11.5751C11.4584 12.2301 10.5416 12.2301 10.1753 11.5751C9.2494 9.91972 7.875 7.26958 7.875 6.125C7.875 4.39911 9.27411 3 11 3C12.7259 3 14.125 4.39911 14.125 6.125Z",
|
|
5296
5334
|
fill: "white"
|
|
5297
5335
|
}),
|
|
5298
|
-
/* @__PURE__ */
|
|
5336
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5299
5337
|
fillRule: "evenodd",
|
|
5300
5338
|
clipRule: "evenodd",
|
|
5301
5339
|
d: "M13.8685 8.9064C13.3991 9.94112 12.8148 11.0342 12.3484 11.868C11.753 12.9325 10.247 12.9325 9.65159 11.868C9.18523 11.0342 8.60093 9.94112 8.13153 8.9064C7.89698 8.38936 7.68686 7.87762 7.53431 7.41433C7.38586 6.96345 7.275 6.50937 7.275 6.12502C7.275 4.06776 8.94274 2.40002 11 2.40002C13.0573 2.40002 14.725 4.06776 14.725 6.12502C14.725 6.50937 14.6141 6.96345 14.4657 7.41433C14.3131 7.87762 14.103 8.38936 13.8685 8.9064ZM11.8247 11.5751C12.7506 9.91974 14.125 7.2696 14.125 6.12502C14.125 4.39913 12.7259 3.00002 11 3.00002C9.27411 3.00002 7.875 4.39913 7.875 6.12502C7.875 7.2696 9.2494 9.91974 10.1753 11.5751C10.5416 12.2301 11.4584 12.2301 11.8247 11.5751Z",
|
|
5302
5340
|
fill: "#528693"
|
|
5303
5341
|
}),
|
|
5304
|
-
/* @__PURE__ */
|
|
5342
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5305
5343
|
d: "M12.25 6.125C12.25 6.81536 11.6904 7.375 11 7.375C10.3096 7.375 9.75 6.81536 9.75 6.125C9.75 5.43464 10.3096 4.875 11 4.875C11.6904 4.875 12.25 5.43464 12.25 6.125Z",
|
|
5306
5344
|
fill: "white"
|
|
5307
5345
|
}),
|
|
5308
|
-
/* @__PURE__ */
|
|
5346
|
+
/* @__PURE__ */ jsx102("path", {
|
|
5309
5347
|
fillRule: "evenodd",
|
|
5310
5348
|
clipRule: "evenodd",
|
|
5311
5349
|
d: "M12.85 6.12502C12.85 7.14675 12.0217 7.97502 11 7.97502C9.97827 7.97502 9.15 7.14675 9.15 6.12502C9.15 5.1033 9.97827 4.27502 11 4.27502C12.0217 4.27502 12.85 5.1033 12.85 6.12502ZM11 7.37502C11.6904 7.37502 12.25 6.81538 12.25 6.12502C12.25 5.43467 11.6904 4.87502 11 4.87502C10.3096 4.87502 9.75 5.43467 9.75 6.12502C9.75 6.81538 10.3096 7.37502 11 7.37502Z",
|
|
@@ -5317,10 +5355,10 @@ var StockLocation = forwardRef95((delegated, ref) => {
|
|
|
5317
5355
|
StockLocation.displayName = "StockLocationIcon";
|
|
5318
5356
|
|
|
5319
5357
|
// src/iconography/subscription.tsx
|
|
5320
|
-
import { forwardRef as
|
|
5321
|
-
import { jsx as
|
|
5322
|
-
var Subscription =
|
|
5323
|
-
return /* @__PURE__ */
|
|
5358
|
+
import { forwardRef as forwardRef97 } from "react";
|
|
5359
|
+
import { jsx as jsx103, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
5360
|
+
var Subscription = forwardRef97((delegated, ref) => {
|
|
5361
|
+
return /* @__PURE__ */ jsxs94("svg", {
|
|
5324
5362
|
ref,
|
|
5325
5363
|
width: "34",
|
|
5326
5364
|
height: "34",
|
|
@@ -5328,21 +5366,21 @@ var Subscription = forwardRef96((delegated, ref) => {
|
|
|
5328
5366
|
fill: "none",
|
|
5329
5367
|
...delegated,
|
|
5330
5368
|
children: [
|
|
5331
|
-
/* @__PURE__ */
|
|
5369
|
+
/* @__PURE__ */ jsx103("path", {
|
|
5332
5370
|
d: "M6.61561 5.18342H25.0671H27.0366L28.0213 8.13757L29.006 15.0306L6.35752 13.0612L5.3728 7.15285L6.61561 5.18342Z",
|
|
5333
5371
|
fill: "#bff6f8"
|
|
5334
5372
|
}),
|
|
5335
|
-
/* @__PURE__ */
|
|
5373
|
+
/* @__PURE__ */ jsx103("path", {
|
|
5336
5374
|
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",
|
|
5337
5375
|
fill: "#fff"
|
|
5338
5376
|
}),
|
|
5339
|
-
/* @__PURE__ */
|
|
5377
|
+
/* @__PURE__ */ jsx103("path", {
|
|
5340
5378
|
fillRule: "evenodd",
|
|
5341
5379
|
clipRule: "evenodd",
|
|
5342
5380
|
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",
|
|
5343
5381
|
fill: "#528693"
|
|
5344
5382
|
}),
|
|
5345
|
-
/* @__PURE__ */
|
|
5383
|
+
/* @__PURE__ */ jsx103("path", {
|
|
5346
5384
|
fillRule: "evenodd",
|
|
5347
5385
|
clipRule: "evenodd",
|
|
5348
5386
|
d: "M28.4567 13.455L6.24786 13.455L6.24786 12.4094L28.4567 12.4094L28.4567 13.455Z",
|
|
@@ -5354,11 +5392,11 @@ var Subscription = forwardRef96((delegated, ref) => {
|
|
|
5354
5392
|
Subscription.displayName = "SubscriptionIcon";
|
|
5355
5393
|
|
|
5356
5394
|
// src/iconography/subscription-contracts.tsx
|
|
5357
|
-
import { forwardRef as
|
|
5358
|
-
import { jsx as
|
|
5359
|
-
var SubscriptionContracts =
|
|
5395
|
+
import { forwardRef as forwardRef98 } from "react";
|
|
5396
|
+
import { jsx as jsx104, jsxs as jsxs95 } from "react/jsx-runtime";
|
|
5397
|
+
var SubscriptionContracts = forwardRef98(
|
|
5360
5398
|
(delegated, ref) => {
|
|
5361
|
-
return /* @__PURE__ */
|
|
5399
|
+
return /* @__PURE__ */ jsxs95("svg", {
|
|
5362
5400
|
ref,
|
|
5363
5401
|
width: "23",
|
|
5364
5402
|
height: "22",
|
|
@@ -5366,37 +5404,37 @@ var SubscriptionContracts = forwardRef97(
|
|
|
5366
5404
|
fill: "none",
|
|
5367
5405
|
...delegated,
|
|
5368
5406
|
children: [
|
|
5369
|
-
/* @__PURE__ */
|
|
5407
|
+
/* @__PURE__ */ jsx104("path", {
|
|
5370
5408
|
fill: "#BFF6F8",
|
|
5371
5409
|
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"
|
|
5372
5410
|
}),
|
|
5373
|
-
/* @__PURE__ */
|
|
5411
|
+
/* @__PURE__ */ jsx104("path", {
|
|
5374
5412
|
fill: "#528693",
|
|
5375
5413
|
fillRule: "evenodd",
|
|
5376
5414
|
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",
|
|
5377
5415
|
clipRule: "evenodd"
|
|
5378
5416
|
}),
|
|
5379
|
-
/* @__PURE__ */
|
|
5417
|
+
/* @__PURE__ */ jsx104("path", {
|
|
5380
5418
|
fill: "#528693",
|
|
5381
5419
|
fillRule: "evenodd",
|
|
5382
5420
|
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",
|
|
5383
5421
|
clipRule: "evenodd"
|
|
5384
5422
|
}),
|
|
5385
|
-
/* @__PURE__ */
|
|
5423
|
+
/* @__PURE__ */ jsx104("path", {
|
|
5386
5424
|
fill: "#fff",
|
|
5387
5425
|
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"
|
|
5388
5426
|
}),
|
|
5389
|
-
/* @__PURE__ */
|
|
5427
|
+
/* @__PURE__ */ jsx104("path", {
|
|
5390
5428
|
fill: "#528693",
|
|
5391
5429
|
fillRule: "evenodd",
|
|
5392
5430
|
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",
|
|
5393
5431
|
clipRule: "evenodd"
|
|
5394
5432
|
}),
|
|
5395
|
-
/* @__PURE__ */
|
|
5433
|
+
/* @__PURE__ */ jsx104("path", {
|
|
5396
5434
|
fill: "#fff",
|
|
5397
5435
|
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"
|
|
5398
5436
|
}),
|
|
5399
|
-
/* @__PURE__ */
|
|
5437
|
+
/* @__PURE__ */ jsx104("path", {
|
|
5400
5438
|
fill: "#528693",
|
|
5401
5439
|
fillRule: "evenodd",
|
|
5402
5440
|
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",
|
|
@@ -5409,10 +5447,10 @@ var SubscriptionContracts = forwardRef97(
|
|
|
5409
5447
|
SubscriptionContracts.displayName = "SubscriptionContractsIcon";
|
|
5410
5448
|
|
|
5411
5449
|
// src/iconography/subscription-plans.tsx
|
|
5412
|
-
import { forwardRef as
|
|
5413
|
-
import { jsx as
|
|
5414
|
-
var SubscriptionPlans =
|
|
5415
|
-
return /* @__PURE__ */
|
|
5450
|
+
import { forwardRef as forwardRef99 } from "react";
|
|
5451
|
+
import { jsx as jsx105, jsxs as jsxs96 } from "react/jsx-runtime";
|
|
5452
|
+
var SubscriptionPlans = forwardRef99((delegated, ref) => {
|
|
5453
|
+
return /* @__PURE__ */ jsxs96("svg", {
|
|
5416
5454
|
ref,
|
|
5417
5455
|
width: "23",
|
|
5418
5456
|
height: "22",
|
|
@@ -5420,47 +5458,47 @@ var SubscriptionPlans = forwardRef98((delegated, ref) => {
|
|
|
5420
5458
|
fill: "none",
|
|
5421
5459
|
...delegated,
|
|
5422
5460
|
children: [
|
|
5423
|
-
/* @__PURE__ */
|
|
5461
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5424
5462
|
fill: "#BFF6F8",
|
|
5425
5463
|
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"
|
|
5426
5464
|
}),
|
|
5427
|
-
/* @__PURE__ */
|
|
5465
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5428
5466
|
fill: "#528693",
|
|
5429
5467
|
fillRule: "evenodd",
|
|
5430
5468
|
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",
|
|
5431
5469
|
clipRule: "evenodd"
|
|
5432
5470
|
}),
|
|
5433
|
-
/* @__PURE__ */
|
|
5471
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5434
5472
|
fill: "#fff",
|
|
5435
5473
|
d: "M5.397 6.227a1 1 0 0 1 1-1h11.09a1 1 0 0 1 1 1v1.455H5.398V6.227Z"
|
|
5436
5474
|
}),
|
|
5437
|
-
/* @__PURE__ */
|
|
5475
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5438
5476
|
fill: "#528693",
|
|
5439
5477
|
fillRule: "evenodd",
|
|
5440
5478
|
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",
|
|
5441
5479
|
clipRule: "evenodd"
|
|
5442
5480
|
}),
|
|
5443
|
-
/* @__PURE__ */
|
|
5481
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5444
5482
|
fill: "#528693",
|
|
5445
5483
|
fillRule: "evenodd",
|
|
5446
5484
|
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",
|
|
5447
5485
|
clipRule: "evenodd"
|
|
5448
5486
|
}),
|
|
5449
|
-
/* @__PURE__ */
|
|
5487
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5450
5488
|
fill: "#fff",
|
|
5451
5489
|
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"
|
|
5452
5490
|
}),
|
|
5453
|
-
/* @__PURE__ */
|
|
5491
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5454
5492
|
fill: "#528693",
|
|
5455
5493
|
fillRule: "evenodd",
|
|
5456
5494
|
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",
|
|
5457
5495
|
clipRule: "evenodd"
|
|
5458
5496
|
}),
|
|
5459
|
-
/* @__PURE__ */
|
|
5497
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5460
5498
|
fill: "#fff",
|
|
5461
5499
|
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"
|
|
5462
5500
|
}),
|
|
5463
|
-
/* @__PURE__ */
|
|
5501
|
+
/* @__PURE__ */ jsx105("path", {
|
|
5464
5502
|
fill: "#528693",
|
|
5465
5503
|
fillRule: "evenodd",
|
|
5466
5504
|
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",
|
|
@@ -5472,10 +5510,10 @@ var SubscriptionPlans = forwardRef98((delegated, ref) => {
|
|
|
5472
5510
|
SubscriptionPlans.displayName = "SubscriptionPlansIcon";
|
|
5473
5511
|
|
|
5474
5512
|
// src/iconography/switch.tsx
|
|
5475
|
-
import { forwardRef as
|
|
5476
|
-
import { jsx as
|
|
5477
|
-
var Switch =
|
|
5478
|
-
return /* @__PURE__ */
|
|
5513
|
+
import { forwardRef as forwardRef100 } from "react";
|
|
5514
|
+
import { jsx as jsx106, jsxs as jsxs97 } from "react/jsx-runtime";
|
|
5515
|
+
var Switch = forwardRef100((delegated, ref) => {
|
|
5516
|
+
return /* @__PURE__ */ jsxs97("svg", {
|
|
5479
5517
|
ref,
|
|
5480
5518
|
width: "22",
|
|
5481
5519
|
height: "22",
|
|
@@ -5483,43 +5521,43 @@ var Switch = forwardRef99((delegated, ref) => {
|
|
|
5483
5521
|
fill: "none",
|
|
5484
5522
|
...delegated,
|
|
5485
5523
|
children: [
|
|
5486
|
-
/* @__PURE__ */
|
|
5524
|
+
/* @__PURE__ */ jsx106("path", {
|
|
5487
5525
|
d: "M19 15.2C19 13.6536 17.7464 12.4 16.2 12.4H5.8C4.2536 12.4 3 13.6536 3 15.2V15.2C3 16.7464 4.2536 18 5.8 18H16.2C17.7464 18 19 16.7464 19 15.2V15.2Z",
|
|
5488
5526
|
fill: "white"
|
|
5489
5527
|
}),
|
|
5490
|
-
/* @__PURE__ */
|
|
5528
|
+
/* @__PURE__ */ jsx106("path", {
|
|
5491
5529
|
fillRule: "evenodd",
|
|
5492
5530
|
clipRule: "evenodd",
|
|
5493
5531
|
d: "M16.2 11.8H5.80001C3.92224 11.8 2.40001 13.3223 2.40001 15.2C2.40001 17.0778 3.92224 18.6 5.80001 18.6H16.2C18.0778 18.6 19.6 17.0778 19.6 15.2C19.6 13.3223 18.0778 11.8 16.2 11.8ZM16.2 12.4C17.7464 12.4 19 13.6537 19 15.2C19 16.7464 17.7464 18 16.2 18H5.80001C4.25361 18 3.00001 16.7464 3.00001 15.2C3.00001 13.6537 4.25361 12.4 5.80001 12.4H16.2Z",
|
|
5494
5532
|
fill: "#528693"
|
|
5495
5533
|
}),
|
|
5496
|
-
/* @__PURE__ */
|
|
5534
|
+
/* @__PURE__ */ jsx106("path", {
|
|
5497
5535
|
d: "M5 15.2501C5 15.9404 5.55964 16.5001 6.25 16.5001C6.94036 16.5001 7.5 15.9404 7.5 15.2501C7.5 14.5597 6.94036 14.0001 6.25 14.0001C5.55964 14.0001 5 14.5597 5 15.2501Z",
|
|
5498
5536
|
fill: "#BFF6F8",
|
|
5499
5537
|
className: "c-icon-fill"
|
|
5500
5538
|
}),
|
|
5501
|
-
/* @__PURE__ */
|
|
5539
|
+
/* @__PURE__ */ jsx106("path", {
|
|
5502
5540
|
fillRule: "evenodd",
|
|
5503
5541
|
clipRule: "evenodd",
|
|
5504
5542
|
d: "M4.40001 15.2501C4.40001 16.2718 5.22828 17.1001 6.25001 17.1001C7.27173 17.1001 8.10001 16.2718 8.10001 15.2501C8.10001 14.2284 7.27173 13.4001 6.25001 13.4001C5.22828 13.4001 4.40001 14.2284 4.40001 15.2501ZM6.25001 16.5001C5.55965 16.5001 5.00001 15.9404 5.00001 15.2501C5.00001 14.5597 5.55965 14.0001 6.25001 14.0001C6.94036 14.0001 7.50001 14.5597 7.50001 15.2501C7.50001 15.9404 6.94036 16.5001 6.25001 16.5001Z",
|
|
5505
5543
|
fill: "#528693"
|
|
5506
5544
|
}),
|
|
5507
|
-
/* @__PURE__ */
|
|
5545
|
+
/* @__PURE__ */ jsx106("path", {
|
|
5508
5546
|
d: "M3 6.8C3 5.2536 4.2536 4 5.8 4H16.2C17.7464 4 19 5.2536 19 6.8V6.8C19 8.3464 17.7464 9.6 16.2 9.6H5.8C4.2536 9.6 3 8.3464 3 6.8V6.8Z",
|
|
5509
5547
|
fill: "#BFF6F8",
|
|
5510
5548
|
className: "c-icon-fill"
|
|
5511
5549
|
}),
|
|
5512
|
-
/* @__PURE__ */
|
|
5550
|
+
/* @__PURE__ */ jsx106("path", {
|
|
5513
5551
|
fillRule: "evenodd",
|
|
5514
5552
|
clipRule: "evenodd",
|
|
5515
5553
|
d: "M5.79999 3.40002H16.2C18.0778 3.40002 19.6 4.92226 19.6 6.80002C19.6 8.67779 18.0778 10.2 16.2 10.2H5.79999C3.92223 10.2 2.39999 8.67779 2.39999 6.80002C2.39999 4.92226 3.92223 3.40002 5.79999 3.40002ZM5.79999 4.00002C4.2536 4.00002 2.99999 5.25363 2.99999 6.80002C2.99999 8.34642 4.2536 9.60002 5.79999 9.60002H16.2C17.7464 9.60002 19 8.34642 19 6.80002C19 5.25363 17.7464 4.00002 16.2 4.00002H5.79999Z",
|
|
5516
5554
|
fill: "#528693"
|
|
5517
5555
|
}),
|
|
5518
|
-
/* @__PURE__ */
|
|
5556
|
+
/* @__PURE__ */ jsx106("path", {
|
|
5519
5557
|
d: "M17 6.85004C17 7.54039 16.4404 8.10004 15.75 8.10004C15.0596 8.10004 14.5 7.54039 14.5 6.85004C14.5 6.15968 15.0596 5.60004 15.75 5.60004C16.4404 5.60004 17 6.15968 17 6.85004Z",
|
|
5520
5558
|
fill: "white"
|
|
5521
5559
|
}),
|
|
5522
|
-
/* @__PURE__ */
|
|
5560
|
+
/* @__PURE__ */ jsx106("path", {
|
|
5523
5561
|
fillRule: "evenodd",
|
|
5524
5562
|
clipRule: "evenodd",
|
|
5525
5563
|
d: "M17.6 6.85006C17.6 7.87179 16.7717 8.70006 15.75 8.70006C14.7283 8.70006 13.9 7.87179 13.9 6.85006C13.9 5.82833 14.7283 5.00006 15.75 5.00006C16.7717 5.00006 17.6 5.82833 17.6 6.85006ZM15.75 8.10006C16.4403 8.10006 17 7.54042 17 6.85006C17 6.15971 16.4403 5.60006 15.75 5.60006C15.0596 5.60006 14.5 6.15971 14.5 6.85006C14.5 7.54042 15.0596 8.10006 15.75 8.10006Z",
|
|
@@ -5531,10 +5569,10 @@ var Switch = forwardRef99((delegated, ref) => {
|
|
|
5531
5569
|
Switch.displayName = "Switch";
|
|
5532
5570
|
|
|
5533
5571
|
// src/iconography/target.tsx
|
|
5534
|
-
import { forwardRef as
|
|
5535
|
-
import { jsx as
|
|
5536
|
-
var Target =
|
|
5537
|
-
return /* @__PURE__ */
|
|
5572
|
+
import { forwardRef as forwardRef101 } from "react";
|
|
5573
|
+
import { jsx as jsx107, jsxs as jsxs98 } from "react/jsx-runtime";
|
|
5574
|
+
var Target = forwardRef101((delegated, ref) => {
|
|
5575
|
+
return /* @__PURE__ */ jsxs98("svg", {
|
|
5538
5576
|
ref,
|
|
5539
5577
|
width: "23",
|
|
5540
5578
|
height: "22",
|
|
@@ -5542,67 +5580,67 @@ var Target = forwardRef100((delegated, ref) => {
|
|
|
5542
5580
|
viewBox: "0 0 23 22",
|
|
5543
5581
|
...delegated,
|
|
5544
5582
|
children: [
|
|
5545
|
-
/* @__PURE__ */
|
|
5583
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5546
5584
|
fill: "#BFF6F8",
|
|
5547
5585
|
d: "M20.524 12.018a8.522 8.522 0 1 1-17.044 0 8.522 8.522 0 0 1 17.044 0Z"
|
|
5548
5586
|
}),
|
|
5549
|
-
/* @__PURE__ */
|
|
5587
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5550
5588
|
fill: "#528693",
|
|
5551
5589
|
fillRule: "evenodd",
|
|
5552
5590
|
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",
|
|
5553
5591
|
clipRule: "evenodd"
|
|
5554
5592
|
}),
|
|
5555
|
-
/* @__PURE__ */
|
|
5593
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5556
5594
|
fill: "#fff",
|
|
5557
5595
|
d: "M18.3 12.018a6.299 6.299 0 1 1-12.597 0 6.299 6.299 0 0 1 12.598 0Z"
|
|
5558
5596
|
}),
|
|
5559
|
-
/* @__PURE__ */
|
|
5597
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5560
5598
|
fill: "#528693",
|
|
5561
5599
|
fillRule: "evenodd",
|
|
5562
5600
|
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",
|
|
5563
5601
|
clipRule: "evenodd"
|
|
5564
5602
|
}),
|
|
5565
|
-
/* @__PURE__ */
|
|
5603
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5566
5604
|
fill: "#BFF6F8",
|
|
5567
5605
|
d: "M16.078 12.018a4.076 4.076 0 1 1-8.152 0 4.076 4.076 0 0 1 8.152 0Z"
|
|
5568
5606
|
}),
|
|
5569
|
-
/* @__PURE__ */
|
|
5607
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5570
5608
|
fill: "#528693",
|
|
5571
5609
|
fillRule: "evenodd",
|
|
5572
5610
|
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",
|
|
5573
5611
|
clipRule: "evenodd"
|
|
5574
5612
|
}),
|
|
5575
|
-
/* @__PURE__ */
|
|
5613
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5576
5614
|
fill: "#fff",
|
|
5577
5615
|
d: "M13.854 12.018a1.853 1.853 0 1 1-3.705 0 1.853 1.853 0 0 1 3.705 0Z"
|
|
5578
5616
|
}),
|
|
5579
|
-
/* @__PURE__ */
|
|
5617
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5580
5618
|
fill: "#528693",
|
|
5581
5619
|
fillRule: "evenodd",
|
|
5582
5620
|
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",
|
|
5583
5621
|
clipRule: "evenodd"
|
|
5584
5622
|
}),
|
|
5585
|
-
/* @__PURE__ */
|
|
5623
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5586
5624
|
fill: "#fff",
|
|
5587
5625
|
d: "m15.899.398.906 4.093L14.2 8.688l-1.09-3.916L15.9.398Z"
|
|
5588
5626
|
}),
|
|
5589
|
-
/* @__PURE__ */
|
|
5627
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5590
5628
|
fill: "#fff",
|
|
5591
5629
|
d: "m20.897 3.585-4.092.906L14.2 8.687l3.909-.728 2.788-4.374Z"
|
|
5592
5630
|
}),
|
|
5593
|
-
/* @__PURE__ */
|
|
5631
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5594
5632
|
fill: "#528693",
|
|
5595
5633
|
fillRule: "evenodd",
|
|
5596
5634
|
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",
|
|
5597
5635
|
clipRule: "evenodd"
|
|
5598
5636
|
}),
|
|
5599
|
-
/* @__PURE__ */
|
|
5637
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5600
5638
|
fill: "#528693",
|
|
5601
5639
|
fillRule: "evenodd",
|
|
5602
5640
|
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",
|
|
5603
5641
|
clipRule: "evenodd"
|
|
5604
5642
|
}),
|
|
5605
|
-
/* @__PURE__ */
|
|
5643
|
+
/* @__PURE__ */ jsx107("path", {
|
|
5606
5644
|
fill: "#528693",
|
|
5607
5645
|
fillRule: "evenodd",
|
|
5608
5646
|
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",
|
|
@@ -5614,10 +5652,10 @@ var Target = forwardRef100((delegated, ref) => {
|
|
|
5614
5652
|
Target.displayName = "TargetIcon";
|
|
5615
5653
|
|
|
5616
5654
|
// src/iconography/topics.tsx
|
|
5617
|
-
import { forwardRef as
|
|
5618
|
-
import { jsx as
|
|
5619
|
-
var Topics =
|
|
5620
|
-
return /* @__PURE__ */
|
|
5655
|
+
import { forwardRef as forwardRef102 } from "react";
|
|
5656
|
+
import { jsx as jsx108, jsxs as jsxs99 } from "react/jsx-runtime";
|
|
5657
|
+
var Topics = forwardRef102((delegated, ref) => {
|
|
5658
|
+
return /* @__PURE__ */ jsxs99("svg", {
|
|
5621
5659
|
ref,
|
|
5622
5660
|
width: "23",
|
|
5623
5661
|
height: "23",
|
|
@@ -5625,47 +5663,47 @@ var Topics = forwardRef101((delegated, ref) => {
|
|
|
5625
5663
|
fill: "none",
|
|
5626
5664
|
...delegated,
|
|
5627
5665
|
children: [
|
|
5628
|
-
/* @__PURE__ */
|
|
5666
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5629
5667
|
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",
|
|
5630
5668
|
fill: "#528693"
|
|
5631
5669
|
}),
|
|
5632
|
-
/* @__PURE__ */
|
|
5670
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5633
5671
|
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",
|
|
5634
5672
|
fill: "#528693"
|
|
5635
5673
|
}),
|
|
5636
|
-
/* @__PURE__ */
|
|
5674
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5637
5675
|
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",
|
|
5638
5676
|
fill: "#fff"
|
|
5639
5677
|
}),
|
|
5640
|
-
/* @__PURE__ */
|
|
5678
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5641
5679
|
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",
|
|
5642
5680
|
fill: "#528693"
|
|
5643
5681
|
}),
|
|
5644
|
-
/* @__PURE__ */
|
|
5682
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5645
5683
|
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",
|
|
5646
5684
|
fill: "#528693"
|
|
5647
5685
|
}),
|
|
5648
|
-
/* @__PURE__ */
|
|
5686
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5649
5687
|
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",
|
|
5650
5688
|
fill: "#BFF6F8"
|
|
5651
5689
|
}),
|
|
5652
|
-
/* @__PURE__ */
|
|
5690
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5653
5691
|
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",
|
|
5654
5692
|
fill: "#528693"
|
|
5655
5693
|
}),
|
|
5656
|
-
/* @__PURE__ */
|
|
5694
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5657
5695
|
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",
|
|
5658
5696
|
fill: "#BFF6F8"
|
|
5659
5697
|
}),
|
|
5660
|
-
/* @__PURE__ */
|
|
5698
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5661
5699
|
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",
|
|
5662
5700
|
fill: "#528693"
|
|
5663
5701
|
}),
|
|
5664
|
-
/* @__PURE__ */
|
|
5702
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5665
5703
|
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",
|
|
5666
5704
|
fill: "#BFF6F8"
|
|
5667
5705
|
}),
|
|
5668
|
-
/* @__PURE__ */
|
|
5706
|
+
/* @__PURE__ */ jsx108("path", {
|
|
5669
5707
|
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",
|
|
5670
5708
|
fill: "#528693"
|
|
5671
5709
|
})
|
|
@@ -5675,10 +5713,10 @@ var Topics = forwardRef101((delegated, ref) => {
|
|
|
5675
5713
|
Topics.displayName = "TopicsIcon";
|
|
5676
5714
|
|
|
5677
5715
|
// src/iconography/unpublish.tsx
|
|
5678
|
-
import { forwardRef as
|
|
5679
|
-
import { jsx as
|
|
5680
|
-
var Unpublish =
|
|
5681
|
-
return /* @__PURE__ */
|
|
5716
|
+
import { forwardRef as forwardRef103 } from "react";
|
|
5717
|
+
import { jsx as jsx109, jsxs as jsxs100 } from "react/jsx-runtime";
|
|
5718
|
+
var Unpublish = forwardRef103((delegated, ref) => {
|
|
5719
|
+
return /* @__PURE__ */ jsxs100("svg", {
|
|
5682
5720
|
ref,
|
|
5683
5721
|
width: "22",
|
|
5684
5722
|
height: "22",
|
|
@@ -5686,33 +5724,33 @@ var Unpublish = forwardRef102((delegated, ref) => {
|
|
|
5686
5724
|
fill: "none",
|
|
5687
5725
|
...delegated,
|
|
5688
5726
|
children: [
|
|
5689
|
-
/* @__PURE__ */
|
|
5727
|
+
/* @__PURE__ */ jsx109("path", {
|
|
5690
5728
|
fill: "#fff",
|
|
5691
5729
|
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"
|
|
5692
5730
|
}),
|
|
5693
|
-
/* @__PURE__ */
|
|
5731
|
+
/* @__PURE__ */ jsx109("path", {
|
|
5694
5732
|
fill: "#528693",
|
|
5695
5733
|
fillRule: "evenodd",
|
|
5696
5734
|
d: "M2.254 9.331c.6-.625 1.294-.872 2.143-.944.27-.023.568.008.825.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.195 5.195 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.26 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-.004c-1.458-.031-2.908-.062-4.758-.062-.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",
|
|
5697
5735
|
clipRule: "evenodd"
|
|
5698
5736
|
}),
|
|
5699
|
-
/* @__PURE__ */
|
|
5737
|
+
/* @__PURE__ */ jsx109("path", {
|
|
5700
5738
|
fill: "#BFF6F8",
|
|
5701
5739
|
d: "M14.8 14.25a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z"
|
|
5702
5740
|
}),
|
|
5703
|
-
/* @__PURE__ */
|
|
5741
|
+
/* @__PURE__ */ jsx109("path", {
|
|
5704
5742
|
fill: "#528693",
|
|
5705
5743
|
fillRule: "evenodd",
|
|
5706
5744
|
d: "M15.4 14.25a4.35 4.35 0 1 1-8.7 0 4.35 4.35 0 0 1 8.7 0ZM11.05 18a3.75 3.75 0 1 0 0-7.5 3.75 3.75 0 0 0 0 7.5Z",
|
|
5707
5745
|
clipRule: "evenodd"
|
|
5708
5746
|
}),
|
|
5709
|
-
/* @__PURE__ */
|
|
5747
|
+
/* @__PURE__ */ jsx109("path", {
|
|
5710
5748
|
fill: "#528693",
|
|
5711
5749
|
fillRule: "evenodd",
|
|
5712
5750
|
d: "M9.088 12.288a.3.3 0 0 1 .424 0l3.5 3.5a.3.3 0 1 1-.424.424l-3.5-3.5a.3.3 0 0 1 0-.424Z",
|
|
5713
5751
|
clipRule: "evenodd"
|
|
5714
5752
|
}),
|
|
5715
|
-
/* @__PURE__ */
|
|
5753
|
+
/* @__PURE__ */ jsx109("path", {
|
|
5716
5754
|
fill: "#528693",
|
|
5717
5755
|
fillRule: "evenodd",
|
|
5718
5756
|
d: "M9.088 16.212a.3.3 0 0 1 0-.424l3.5-3.5a.3.3 0 1 1 .424.424l-3.5 3.5a.3.3 0 0 1-.424 0Z",
|
|
@@ -5724,10 +5762,10 @@ var Unpublish = forwardRef102((delegated, ref) => {
|
|
|
5724
5762
|
Unpublish.displayName = "UnpublishIcon";
|
|
5725
5763
|
|
|
5726
5764
|
// src/iconography/usage.tsx
|
|
5727
|
-
import { forwardRef as
|
|
5728
|
-
import { jsx as
|
|
5729
|
-
var Usage =
|
|
5730
|
-
return /* @__PURE__ */
|
|
5765
|
+
import { forwardRef as forwardRef104 } from "react";
|
|
5766
|
+
import { jsx as jsx110, jsxs as jsxs101 } from "react/jsx-runtime";
|
|
5767
|
+
var Usage = forwardRef104((delegated, ref) => {
|
|
5768
|
+
return /* @__PURE__ */ jsxs101("svg", {
|
|
5731
5769
|
ref,
|
|
5732
5770
|
width: "23",
|
|
5733
5771
|
height: "23",
|
|
@@ -5735,21 +5773,21 @@ var Usage = forwardRef103((delegated, ref) => {
|
|
|
5735
5773
|
fill: "none",
|
|
5736
5774
|
...delegated,
|
|
5737
5775
|
children: [
|
|
5738
|
-
/* @__PURE__ */
|
|
5776
|
+
/* @__PURE__ */ jsx110("path", {
|
|
5739
5777
|
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",
|
|
5740
5778
|
fill: "#BFF6F8"
|
|
5741
5779
|
}),
|
|
5742
|
-
/* @__PURE__ */
|
|
5780
|
+
/* @__PURE__ */ jsx110("path", {
|
|
5743
5781
|
fillRule: "evenodd",
|
|
5744
5782
|
clipRule: "evenodd",
|
|
5745
5783
|
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",
|
|
5746
5784
|
fill: "#528693"
|
|
5747
5785
|
}),
|
|
5748
|
-
/* @__PURE__ */
|
|
5786
|
+
/* @__PURE__ */ jsx110("path", {
|
|
5749
5787
|
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",
|
|
5750
5788
|
fill: "#fff"
|
|
5751
5789
|
}),
|
|
5752
|
-
/* @__PURE__ */
|
|
5790
|
+
/* @__PURE__ */ jsx110("path", {
|
|
5753
5791
|
fillRule: "evenodd",
|
|
5754
5792
|
clipRule: "evenodd",
|
|
5755
5793
|
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",
|
|
@@ -5761,10 +5799,10 @@ var Usage = forwardRef103((delegated, ref) => {
|
|
|
5761
5799
|
Usage.displayName = "UsageIcon";
|
|
5762
5800
|
|
|
5763
5801
|
// src/iconography/usage-meter.tsx
|
|
5764
|
-
import { forwardRef as
|
|
5765
|
-
import { jsx as
|
|
5766
|
-
var UsageMeter =
|
|
5767
|
-
return /* @__PURE__ */
|
|
5802
|
+
import { forwardRef as forwardRef105 } from "react";
|
|
5803
|
+
import { jsx as jsx111, jsxs as jsxs102 } from "react/jsx-runtime";
|
|
5804
|
+
var UsageMeter = forwardRef105((delegated, ref) => {
|
|
5805
|
+
return /* @__PURE__ */ jsxs102("svg", {
|
|
5768
5806
|
ref,
|
|
5769
5807
|
width: "17",
|
|
5770
5808
|
height: "16",
|
|
@@ -5772,24 +5810,24 @@ var UsageMeter = forwardRef104((delegated, ref) => {
|
|
|
5772
5810
|
fill: "none",
|
|
5773
5811
|
...delegated,
|
|
5774
5812
|
children: [
|
|
5775
|
-
/* @__PURE__ */
|
|
5813
|
+
/* @__PURE__ */ jsxs102("g", {
|
|
5776
5814
|
clipPath: "url(#a)",
|
|
5777
5815
|
children: [
|
|
5778
|
-
/* @__PURE__ */
|
|
5816
|
+
/* @__PURE__ */ jsx111("path", {
|
|
5779
5817
|
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",
|
|
5780
5818
|
fill: "#528693"
|
|
5781
5819
|
}),
|
|
5782
|
-
/* @__PURE__ */
|
|
5820
|
+
/* @__PURE__ */ jsx111("path", {
|
|
5783
5821
|
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",
|
|
5784
5822
|
fill: "#BFF6F8",
|
|
5785
5823
|
stroke: "#BFF6F8",
|
|
5786
5824
|
strokeWidth: ".2"
|
|
5787
5825
|
}),
|
|
5788
|
-
/* @__PURE__ */
|
|
5826
|
+
/* @__PURE__ */ jsx111("path", {
|
|
5789
5827
|
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",
|
|
5790
5828
|
fill: "#528693"
|
|
5791
5829
|
}),
|
|
5792
|
-
/* @__PURE__ */
|
|
5830
|
+
/* @__PURE__ */ jsx111("path", {
|
|
5793
5831
|
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",
|
|
5794
5832
|
fill: "#fff",
|
|
5795
5833
|
stroke: "#fff",
|
|
@@ -5797,10 +5835,10 @@ var UsageMeter = forwardRef104((delegated, ref) => {
|
|
|
5797
5835
|
})
|
|
5798
5836
|
]
|
|
5799
5837
|
}),
|
|
5800
|
-
/* @__PURE__ */
|
|
5801
|
-
children: /* @__PURE__ */
|
|
5838
|
+
/* @__PURE__ */ jsx111("defs", {
|
|
5839
|
+
children: /* @__PURE__ */ jsx111("clipPath", {
|
|
5802
5840
|
id: "a",
|
|
5803
|
-
children: /* @__PURE__ */
|
|
5841
|
+
children: /* @__PURE__ */ jsx111("path", {
|
|
5804
5842
|
fill: "#fff",
|
|
5805
5843
|
transform: "translate(.984)",
|
|
5806
5844
|
d: "M0 0h16v16H0z"
|
|
@@ -5812,11 +5850,58 @@ var UsageMeter = forwardRef104((delegated, ref) => {
|
|
|
5812
5850
|
});
|
|
5813
5851
|
UsageMeter.displayName = "UsageMeterIcon";
|
|
5814
5852
|
|
|
5853
|
+
// src/iconography/user.tsx
|
|
5854
|
+
import { forwardRef as forwardRef106 } from "react";
|
|
5855
|
+
import { jsx as jsx112, jsxs as jsxs103 } from "react/jsx-runtime";
|
|
5856
|
+
var User = forwardRef106((delegated, ref) => {
|
|
5857
|
+
return /* @__PURE__ */ jsxs103("svg", {
|
|
5858
|
+
ref,
|
|
5859
|
+
width: "23",
|
|
5860
|
+
height: "22",
|
|
5861
|
+
viewBox: "0 0 23 22",
|
|
5862
|
+
fill: "none",
|
|
5863
|
+
...delegated,
|
|
5864
|
+
children: [
|
|
5865
|
+
/* @__PURE__ */ jsx112("path", {
|
|
5866
|
+
d: "M19.0183 18.5C19.0183 19 15.4366 20 11.0183 20C6.60001 20 3.01829 19 3.01829 18.5C3.01829 15.4624 6.60001 13 11.0183 13C15.4366 13 19.0183 15.4624 19.0183 18.5Z",
|
|
5867
|
+
fill: "#BFF6F8"
|
|
5868
|
+
}),
|
|
5869
|
+
/* @__PURE__ */ jsx112("path", {
|
|
5870
|
+
fillRule: "evenodd",
|
|
5871
|
+
clipRule: "evenodd",
|
|
5872
|
+
d: "M16.8017 20.024C15.312 20.3456 13.2695 20.6 11.0183 20.6C8.76706 20.6 6.72461 20.3456 5.23484 20.024C4.49262 19.8638 3.87028 19.6832 3.42161 19.5014C3.2008 19.4119 2.99558 19.3117 2.8349 19.1983C2.75497 19.1419 2.66392 19.0669 2.58765 18.9698C2.5131 18.8748 2.41829 18.7139 2.41829 18.5C2.41829 16.7268 3.46427 15.1871 5.02152 14.1165C6.58142 13.0441 8.70343 12.4 11.0183 12.4C13.3331 12.4 15.4552 13.0441 17.0151 14.1165C18.5723 15.1871 19.6183 16.7268 19.6183 18.5C19.6183 18.7139 19.5235 18.8748 19.4489 18.9698C19.3727 19.0669 19.2816 19.1419 19.2017 19.1983C19.041 19.3117 18.8358 19.4119 18.615 19.5014C18.1663 19.6832 17.544 19.8638 16.8017 20.024ZM11.0183 20C15.4366 20 19.0183 19 19.0183 18.5C19.0183 15.4625 15.4366 13 11.0183 13C6.60001 13 3.01829 15.4625 3.01829 18.5C3.01829 19 6.60001 20 11.0183 20Z",
|
|
5873
|
+
fill: "#528693"
|
|
5874
|
+
}),
|
|
5875
|
+
/* @__PURE__ */ jsx112("path", {
|
|
5876
|
+
d: "M13.0183 12.5C13.0183 13.8807 12.1229 15 11.0183 15C9.91373 15 9.0183 13.8807 9.0183 12.5C9.0183 11.1193 9.91373 10 11.0183 10C12.1229 10 13.0183 11.1193 13.0183 12.5Z",
|
|
5877
|
+
fill: "white"
|
|
5878
|
+
}),
|
|
5879
|
+
/* @__PURE__ */ jsx112("path", {
|
|
5880
|
+
fillRule: "evenodd",
|
|
5881
|
+
clipRule: "evenodd",
|
|
5882
|
+
d: "M13.6183 12.5C13.6183 14.0802 12.5722 15.6 11.0183 15.6C9.46433 15.6 8.41829 14.0802 8.41829 12.5C8.41829 10.9198 9.46433 9.40002 11.0183 9.40002C12.5722 9.40002 13.6183 10.9198 13.6183 12.5ZM11.0183 15C12.1229 15 13.0183 13.8807 13.0183 12.5C13.0183 11.1193 12.1229 10 11.0183 10C9.91372 10 9.01829 11.1193 9.01829 12.5C9.01829 13.8807 9.91372 15 11.0183 15Z",
|
|
5883
|
+
fill: "#528693"
|
|
5884
|
+
}),
|
|
5885
|
+
/* @__PURE__ */ jsx112("path", {
|
|
5886
|
+
d: "M15.1183 7.99999C15.1183 11.3137 11.98 12.8 11.0183 12.8C10.0566 12.8 6.91831 11.3137 6.91831 7.99999C6.91831 4.68628 7.91836 2.29999 11.0183 2.29999C14.1183 2.29999 15.1183 4.68628 15.1183 7.99999Z",
|
|
5887
|
+
fill: "white"
|
|
5888
|
+
}),
|
|
5889
|
+
/* @__PURE__ */ jsx112("path", {
|
|
5890
|
+
fillRule: "evenodd",
|
|
5891
|
+
clipRule: "evenodd",
|
|
5892
|
+
d: "M12.3086 13.0642C11.8438 13.2711 11.3786 13.4 11.0183 13.4C10.658 13.4 10.1929 13.2711 9.72804 13.0642C9.2481 12.8506 8.71451 12.5301 8.21426 12.0957C7.2092 11.2228 6.31831 9.86784 6.31831 8.00001C6.31831 6.30355 6.57045 4.74139 7.29834 3.58729C8.0574 2.38379 9.28518 1.70001 11.0183 1.70001C12.7515 1.70001 13.9793 2.38379 14.7383 3.5873C15.4662 4.74139 15.7183 6.30356 15.7183 8.00001C15.7183 9.86783 14.8274 11.2228 13.8224 12.0957C13.3221 12.5301 12.7886 12.8506 12.3086 13.0642ZM11.0183 12.8C11.98 12.8 15.1183 11.3137 15.1183 8.00001C15.1183 4.6863 14.1183 2.30001 11.0183 2.30001C7.91836 2.30001 6.91831 4.6863 6.91831 8.00001C6.91831 11.3137 10.0566 12.8 11.0183 12.8Z",
|
|
5893
|
+
fill: "#528693"
|
|
5894
|
+
})
|
|
5895
|
+
]
|
|
5896
|
+
});
|
|
5897
|
+
});
|
|
5898
|
+
User.displayName = "UserIcon";
|
|
5899
|
+
|
|
5815
5900
|
// src/iconography/user-card.tsx
|
|
5816
|
-
import { forwardRef as
|
|
5817
|
-
import { jsx as
|
|
5818
|
-
var UserCard =
|
|
5819
|
-
return /* @__PURE__ */
|
|
5901
|
+
import { forwardRef as forwardRef107 } from "react";
|
|
5902
|
+
import { jsx as jsx113, jsxs as jsxs104 } from "react/jsx-runtime";
|
|
5903
|
+
var UserCard = forwardRef107((delegated, ref) => {
|
|
5904
|
+
return /* @__PURE__ */ jsxs104("svg", {
|
|
5820
5905
|
ref,
|
|
5821
5906
|
width: "17",
|
|
5822
5907
|
height: "16",
|
|
@@ -5824,7 +5909,7 @@ var UserCard = forwardRef105((delegated, ref) => {
|
|
|
5824
5909
|
fill: "none",
|
|
5825
5910
|
...delegated,
|
|
5826
5911
|
children: [
|
|
5827
|
-
/* @__PURE__ */
|
|
5912
|
+
/* @__PURE__ */ jsx113("rect", {
|
|
5828
5913
|
x: "2.184",
|
|
5829
5914
|
y: "4.2",
|
|
5830
5915
|
width: "13.6",
|
|
@@ -5834,7 +5919,7 @@ var UserCard = forwardRef105((delegated, ref) => {
|
|
|
5834
5919
|
stroke: "#528693",
|
|
5835
5920
|
strokeWidth: ".4"
|
|
5836
5921
|
}),
|
|
5837
|
-
/* @__PURE__ */
|
|
5922
|
+
/* @__PURE__ */ jsx113("circle", {
|
|
5838
5923
|
cx: "5.984",
|
|
5839
5924
|
cy: "8.5",
|
|
5840
5925
|
r: "2.2",
|
|
@@ -5842,7 +5927,7 @@ var UserCard = forwardRef105((delegated, ref) => {
|
|
|
5842
5927
|
stroke: "#528693",
|
|
5843
5928
|
strokeWidth: ".4"
|
|
5844
5929
|
}),
|
|
5845
|
-
/* @__PURE__ */
|
|
5930
|
+
/* @__PURE__ */ jsx113("path", {
|
|
5846
5931
|
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",
|
|
5847
5932
|
fill: "#fff",
|
|
5848
5933
|
stroke: "#528693",
|
|
@@ -5854,10 +5939,10 @@ var UserCard = forwardRef105((delegated, ref) => {
|
|
|
5854
5939
|
UserCard.displayName = "UserCardIcon";
|
|
5855
5940
|
|
|
5856
5941
|
// src/iconography/users.tsx
|
|
5857
|
-
import { forwardRef as
|
|
5858
|
-
import { jsx as
|
|
5859
|
-
var Users =
|
|
5860
|
-
return /* @__PURE__ */
|
|
5942
|
+
import { forwardRef as forwardRef108 } from "react";
|
|
5943
|
+
import { jsx as jsx114, jsxs as jsxs105 } from "react/jsx-runtime";
|
|
5944
|
+
var Users = forwardRef108((delegated, ref) => {
|
|
5945
|
+
return /* @__PURE__ */ jsxs105("svg", {
|
|
5861
5946
|
ref,
|
|
5862
5947
|
width: "24",
|
|
5863
5948
|
height: "24",
|
|
@@ -5865,33 +5950,33 @@ var Users = forwardRef106((delegated, ref) => {
|
|
|
5865
5950
|
fill: "none",
|
|
5866
5951
|
...delegated,
|
|
5867
5952
|
children: [
|
|
5868
|
-
/* @__PURE__ */
|
|
5953
|
+
/* @__PURE__ */ jsx114("path", {
|
|
5869
5954
|
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",
|
|
5870
5955
|
fill: "#528693"
|
|
5871
5956
|
}),
|
|
5872
|
-
/* @__PURE__ */
|
|
5957
|
+
/* @__PURE__ */ jsx114("path", {
|
|
5873
5958
|
fillRule: "evenodd",
|
|
5874
5959
|
clipRule: "evenodd",
|
|
5875
5960
|
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",
|
|
5876
5961
|
fill: "#528693"
|
|
5877
5962
|
}),
|
|
5878
|
-
/* @__PURE__ */
|
|
5963
|
+
/* @__PURE__ */ jsx114("path", {
|
|
5879
5964
|
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",
|
|
5880
5965
|
fill: "#BFF6F8"
|
|
5881
5966
|
}),
|
|
5882
|
-
/* @__PURE__ */
|
|
5967
|
+
/* @__PURE__ */ jsx114("path", {
|
|
5883
5968
|
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",
|
|
5884
5969
|
fill: "#fff"
|
|
5885
5970
|
}),
|
|
5886
|
-
/* @__PURE__ */
|
|
5971
|
+
/* @__PURE__ */ jsx114("path", {
|
|
5887
5972
|
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",
|
|
5888
5973
|
fill: "#528693"
|
|
5889
5974
|
}),
|
|
5890
|
-
/* @__PURE__ */
|
|
5975
|
+
/* @__PURE__ */ jsx114("path", {
|
|
5891
5976
|
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",
|
|
5892
5977
|
fill: "#BFF6F8"
|
|
5893
5978
|
}),
|
|
5894
|
-
/* @__PURE__ */
|
|
5979
|
+
/* @__PURE__ */ jsx114("path", {
|
|
5895
5980
|
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",
|
|
5896
5981
|
fill: "#fff"
|
|
5897
5982
|
})
|
|
@@ -5901,10 +5986,10 @@ var Users = forwardRef106((delegated, ref) => {
|
|
|
5901
5986
|
Users.displayName = "UsersIcon";
|
|
5902
5987
|
|
|
5903
5988
|
// src/iconography/video.tsx
|
|
5904
|
-
import { forwardRef as
|
|
5905
|
-
import { jsx as
|
|
5906
|
-
var Video =
|
|
5907
|
-
return /* @__PURE__ */
|
|
5989
|
+
import { forwardRef as forwardRef109 } from "react";
|
|
5990
|
+
import { jsx as jsx115, jsxs as jsxs106 } from "react/jsx-runtime";
|
|
5991
|
+
var Video = forwardRef109((delegated, ref) => {
|
|
5992
|
+
return /* @__PURE__ */ jsxs106("svg", {
|
|
5908
5993
|
ref,
|
|
5909
5994
|
width: "22",
|
|
5910
5995
|
height: "22",
|
|
@@ -5912,33 +5997,33 @@ var Video = forwardRef107((delegated, ref) => {
|
|
|
5912
5997
|
fill: "none",
|
|
5913
5998
|
...delegated,
|
|
5914
5999
|
children: [
|
|
5915
|
-
/* @__PURE__ */
|
|
6000
|
+
/* @__PURE__ */ jsx115("path", {
|
|
5916
6001
|
d: "M2 5C2 4.44772 2.44772 4 3 4H19C19.5523 4 20 4.44772 20 5V17C20 17.5523 19.5523 18 19 18H3C2.44772 18 2 17.5523 2 17V5Z",
|
|
5917
6002
|
fill: "white"
|
|
5918
6003
|
}),
|
|
5919
|
-
/* @__PURE__ */
|
|
6004
|
+
/* @__PURE__ */ jsx115("path", {
|
|
5920
6005
|
fillRule: "evenodd",
|
|
5921
6006
|
clipRule: "evenodd",
|
|
5922
6007
|
d: "M2.99999 3.40002H19C19.8836 3.40002 20.6 4.11637 20.6 5.00002V17C20.6 17.8837 19.8836 18.6 19 18.6H2.99999C2.11634 18.6 1.39999 17.8837 1.39999 17V5.00002C1.39999 4.11637 2.11634 3.40002 2.99999 3.40002ZM2.99999 4.00002C2.44771 4.00002 1.99999 4.44774 1.99999 5.00002V17C1.99999 17.5523 2.44771 18 2.99999 18H19C19.5523 18 20 17.5523 20 17V5.00002C20 4.44774 19.5523 4.00002 19 4.00002H2.99999Z",
|
|
5923
6008
|
fill: "#528693"
|
|
5924
6009
|
}),
|
|
5925
|
-
/* @__PURE__ */
|
|
6010
|
+
/* @__PURE__ */ jsx115("path", {
|
|
5926
6011
|
d: "M2 5C2 4.44772 2.44772 4 3 4H19C19.5523 4 20 4.44772 20 5V7H2V5Z",
|
|
5927
6012
|
fill: "#BFF6F8",
|
|
5928
6013
|
className: "c-icon-fill"
|
|
5929
6014
|
}),
|
|
5930
|
-
/* @__PURE__ */
|
|
6015
|
+
/* @__PURE__ */ jsx115("path", {
|
|
5931
6016
|
fillRule: "evenodd",
|
|
5932
6017
|
clipRule: "evenodd",
|
|
5933
6018
|
d: "M20.6 7.60002H1.39999V5.00002C1.39999 4.11637 2.11634 3.40002 2.99999 3.40002H19C19.8836 3.40002 20.6 4.11637 20.6 5.00002V7.60002ZM2.99999 4.00002C2.44771 4.00002 1.99999 4.44774 1.99999 5.00002V7.00002H20V5.00002C20 4.44774 19.5523 4.00002 19 4.00002H2.99999Z",
|
|
5934
6019
|
fill: "#528693"
|
|
5935
6020
|
}),
|
|
5936
|
-
/* @__PURE__ */
|
|
6021
|
+
/* @__PURE__ */ jsx115("path", {
|
|
5937
6022
|
d: "M13.0176 12.312C13.2176 12.4275 13.2176 12.7162 13.0176 12.8316L9.41763 14.9101C9.21763 15.0256 8.96763 14.8812 8.96763 14.6503L8.96763 10.4934C8.96763 10.2624 9.21763 10.1181 9.41763 10.2336L13.0176 12.312Z",
|
|
5938
6023
|
fill: "#BFF6F8",
|
|
5939
6024
|
className: "c-icon-fill"
|
|
5940
6025
|
}),
|
|
5941
|
-
/* @__PURE__ */
|
|
6026
|
+
/* @__PURE__ */ jsx115("path", {
|
|
5942
6027
|
fillRule: "evenodd",
|
|
5943
6028
|
clipRule: "evenodd",
|
|
5944
6029
|
d: "M13.3176 13.3513L9.71764 15.4297C9.11764 15.7761 8.36764 15.3431 8.36764 14.6503L8.36764 10.4934C8.36764 9.80056 9.11764 9.36755 9.71764 9.71396L13.3176 11.7924C13.9176 12.1388 13.9176 13.0049 13.3176 13.3513ZM13.0176 12.8317C13.2176 12.7162 13.2176 12.4275 13.0176 12.312L9.41764 10.2336C9.21764 10.1181 8.96764 10.2624 8.96764 10.4934L8.96764 14.6503C8.96764 14.8812 9.21764 15.0256 9.41764 14.9101L13.0176 12.8317Z",
|
|
@@ -5950,10 +6035,10 @@ var Video = forwardRef107((delegated, ref) => {
|
|
|
5950
6035
|
Video.displayName = "Video";
|
|
5951
6036
|
|
|
5952
6037
|
// src/iconography/wand.tsx
|
|
5953
|
-
import { forwardRef as
|
|
5954
|
-
import { jsx as
|
|
5955
|
-
var Wand =
|
|
5956
|
-
return /* @__PURE__ */
|
|
6038
|
+
import { forwardRef as forwardRef110 } from "react";
|
|
6039
|
+
import { jsx as jsx116, jsxs as jsxs107 } from "react/jsx-runtime";
|
|
6040
|
+
var Wand = forwardRef110((delegated, ref) => {
|
|
6041
|
+
return /* @__PURE__ */ jsxs107("svg", {
|
|
5957
6042
|
ref,
|
|
5958
6043
|
width: "19",
|
|
5959
6044
|
height: "19",
|
|
@@ -5961,39 +6046,39 @@ var Wand = forwardRef108((delegated, ref) => {
|
|
|
5961
6046
|
fill: "none",
|
|
5962
6047
|
...delegated,
|
|
5963
6048
|
children: [
|
|
5964
|
-
/* @__PURE__ */
|
|
6049
|
+
/* @__PURE__ */ jsxs107("g", {
|
|
5965
6050
|
clipPath: "url(#wand-clip-path)",
|
|
5966
6051
|
children: [
|
|
5967
|
-
/* @__PURE__ */
|
|
6052
|
+
/* @__PURE__ */ jsx116("path", {
|
|
5968
6053
|
fill: "#fff",
|
|
5969
6054
|
d: "M2.261 17.145c.54.54 1.416.54 1.957 0l7.6-7.6-1.956-1.957-7.6 7.6c-.541.541-.541 1.417 0 1.957Z"
|
|
5970
6055
|
}),
|
|
5971
|
-
/* @__PURE__ */
|
|
6056
|
+
/* @__PURE__ */ jsx116("path", {
|
|
5972
6057
|
fill: "#528693",
|
|
5973
6058
|
fillRule: "evenodd",
|
|
5974
6059
|
d: "M11.023 9.545 3.82 16.748a.82.82 0 0 1-1.161-1.161l7.203-7.203 1.161 1.16Zm-6.805 7.6A1.384 1.384 0 0 1 2.26 15.19l7.601-7.6 1.957 1.956-7.601 7.6Z",
|
|
5975
6060
|
clipRule: "evenodd"
|
|
5976
6061
|
}),
|
|
5977
|
-
/* @__PURE__ */
|
|
6062
|
+
/* @__PURE__ */ jsx116("path", {
|
|
5978
6063
|
fill: "#BFF6F8",
|
|
5979
6064
|
d: "M9.695 2.72c0-.47.542-.732.91-.441l1.93 1.52a.562.562 0 0 0 .521.094l2.336-.758a.562.562 0 0 1 .701.73l-.85 2.304a.562.562 0 0 0 .073.525l1.442 1.988a.563.563 0 0 1-.477.892l-2.454-.097a.563.563 0 0 0-.477.232l-1.445 1.986a.562.562 0 0 1-.996-.178l-.667-2.364a.563.563 0 0 0-.367-.383L7.54 8.01A.562.562 0 0 1 7.4 7.008l2.043-1.365a.562.562 0 0 0 .25-.467V2.72Z"
|
|
5980
6065
|
}),
|
|
5981
|
-
/* @__PURE__ */
|
|
6066
|
+
/* @__PURE__ */ jsx116("path", {
|
|
5982
6067
|
fill: "#528693",
|
|
5983
6068
|
fillRule: "evenodd",
|
|
5984
6069
|
d: "m10.953 1.837 1.929 1.52 2.336-.757a1.125 1.125 0 0 1 1.402 1.46l-.85 2.304 1.443 1.987a1.125 1.125 0 0 1-.955 1.785l-2.454-.096-1.445 1.986a1.125 1.125 0 0 1-1.992-.357L9.7 9.305l-2.335-.76a1.125 1.125 0 0 1-.277-2.005L9.13 5.176l.002-2.456c0-.94 1.084-1.465 1.821-.883Zm-.348.442a.562.562 0 0 0-.91.441l-.002 2.456a.562.562 0 0 1-.25.467L7.4 7.008a.563.563 0 0 0 .138 1.002l2.335.76a.563.563 0 0 1 .368.383l.666 2.364c.128.452.72.558.997.178l1.444-1.986a.563.563 0 0 1 .477-.232l2.454.097a.563.563 0 0 0 .478-.892l-1.443-1.988a.563.563 0 0 1-.072-.525l.85-2.304a.562.562 0 0 0-.701-.73l-2.337.758a.563.563 0 0 1-.521-.094l-1.929-1.52Z",
|
|
5985
6070
|
clipRule: "evenodd"
|
|
5986
6071
|
}),
|
|
5987
|
-
/* @__PURE__ */
|
|
6072
|
+
/* @__PURE__ */ jsx116("path", {
|
|
5988
6073
|
fill: "#528693",
|
|
5989
6074
|
d: "M15.967 10.93a.704.704 0 1 1-1.408 0 .704.704 0 0 1 1.408 0ZM17.668 5.933a.505.505 0 1 1-1.01 0 .505.505 0 0 1 1.01 0ZM18.067 1.985a.704.704 0 1 1-1.409 0 .704.704 0 0 1 1.41 0ZM13.49 1.77a.49.49 0 1 1-.98 0 .49.49 0 0 1 .98 0ZM8.525 3.792a.49.49 0 1 1-.98 0 .49.49 0 0 1 .98 0Z"
|
|
5990
6075
|
})
|
|
5991
6076
|
]
|
|
5992
6077
|
}),
|
|
5993
|
-
/* @__PURE__ */
|
|
5994
|
-
children: /* @__PURE__ */
|
|
6078
|
+
/* @__PURE__ */ jsx116("defs", {
|
|
6079
|
+
children: /* @__PURE__ */ jsx116("clipPath", {
|
|
5995
6080
|
id: "wand-clip-path",
|
|
5996
|
-
children: /* @__PURE__ */
|
|
6081
|
+
children: /* @__PURE__ */ jsx116("path", {
|
|
5997
6082
|
fill: "#fff",
|
|
5998
6083
|
d: "M0 0h18v18H0z",
|
|
5999
6084
|
transform: "translate(.572 .576)"
|
|
@@ -6006,10 +6091,10 @@ var Wand = forwardRef108((delegated, ref) => {
|
|
|
6006
6091
|
Wand.displayName = "Wand";
|
|
6007
6092
|
|
|
6008
6093
|
// src/iconography/warning.tsx
|
|
6009
|
-
import { forwardRef as
|
|
6010
|
-
import { jsx as
|
|
6011
|
-
var Warning =
|
|
6012
|
-
return /* @__PURE__ */
|
|
6094
|
+
import { forwardRef as forwardRef111 } from "react";
|
|
6095
|
+
import { jsx as jsx117, jsxs as jsxs108 } from "react/jsx-runtime";
|
|
6096
|
+
var Warning = forwardRef111((delegated, ref) => {
|
|
6097
|
+
return /* @__PURE__ */ jsxs108("svg", {
|
|
6013
6098
|
ref,
|
|
6014
6099
|
width: "22",
|
|
6015
6100
|
height: "22",
|
|
@@ -6017,31 +6102,32 @@ var Warning = forwardRef109((delegated, ref) => {
|
|
|
6017
6102
|
viewBox: "0 0 22 22",
|
|
6018
6103
|
...delegated,
|
|
6019
6104
|
children: [
|
|
6020
|
-
/* @__PURE__ */
|
|
6105
|
+
/* @__PURE__ */ jsx117("path", {
|
|
6021
6106
|
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",
|
|
6022
|
-
fill: "#FFDE99"
|
|
6107
|
+
fill: "#FFDE99",
|
|
6108
|
+
className: "c-icon-fill"
|
|
6023
6109
|
}),
|
|
6024
|
-
/* @__PURE__ */
|
|
6110
|
+
/* @__PURE__ */ jsx117("path", {
|
|
6025
6111
|
fillRule: "evenodd",
|
|
6026
6112
|
clipRule: "evenodd",
|
|
6027
6113
|
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",
|
|
6028
6114
|
fill: "#528693"
|
|
6029
6115
|
}),
|
|
6030
|
-
/* @__PURE__ */
|
|
6116
|
+
/* @__PURE__ */ jsx117("path", {
|
|
6031
6117
|
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",
|
|
6032
6118
|
fill: "white"
|
|
6033
6119
|
}),
|
|
6034
|
-
/* @__PURE__ */
|
|
6120
|
+
/* @__PURE__ */ jsx117("path", {
|
|
6035
6121
|
fillRule: "evenodd",
|
|
6036
6122
|
clipRule: "evenodd",
|
|
6037
6123
|
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",
|
|
6038
6124
|
fill: "#528693"
|
|
6039
6125
|
}),
|
|
6040
|
-
/* @__PURE__ */
|
|
6126
|
+
/* @__PURE__ */ jsx117("path", {
|
|
6041
6127
|
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",
|
|
6042
6128
|
fill: "white"
|
|
6043
6129
|
}),
|
|
6044
|
-
/* @__PURE__ */
|
|
6130
|
+
/* @__PURE__ */ jsx117("path", {
|
|
6045
6131
|
fillRule: "evenodd",
|
|
6046
6132
|
clipRule: "evenodd",
|
|
6047
6133
|
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",
|
|
@@ -6102,6 +6188,7 @@ var Icon = {
|
|
|
6102
6188
|
Mushroom,
|
|
6103
6189
|
NailPolish,
|
|
6104
6190
|
Order,
|
|
6191
|
+
Organization,
|
|
6105
6192
|
Paths,
|
|
6106
6193
|
People,
|
|
6107
6194
|
Percentage,
|
|
@@ -6156,6 +6243,7 @@ var Icon = {
|
|
|
6156
6243
|
Topics,
|
|
6157
6244
|
UsageMeter,
|
|
6158
6245
|
Unpublish,
|
|
6246
|
+
User,
|
|
6159
6247
|
Usage,
|
|
6160
6248
|
UserCard,
|
|
6161
6249
|
Users,
|
|
@@ -6169,7 +6257,7 @@ import { unmountComponentAtNode, render as DOMRender } from "react-dom";
|
|
|
6169
6257
|
// src/dialog/dialog.tsx
|
|
6170
6258
|
import { cva as cva3, cx as cx5 } from "class-variance-authority";
|
|
6171
6259
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
6172
|
-
import { jsx as
|
|
6260
|
+
import { jsx as jsx118, jsxs as jsxs109 } from "react/jsx-runtime";
|
|
6173
6261
|
var IconMap = {
|
|
6174
6262
|
error: Icon.Error,
|
|
6175
6263
|
info: Icon.Info,
|
|
@@ -6185,29 +6273,29 @@ var dialogContentStyles = cva3("c-dialog", {
|
|
|
6185
6273
|
function DialogContent({ children, closable = true, type, className, container, ...delegated }) {
|
|
6186
6274
|
const withIcon = typeof type !== "undefined";
|
|
6187
6275
|
const IconComponent = type && IconMap[type];
|
|
6188
|
-
return /* @__PURE__ */
|
|
6276
|
+
return /* @__PURE__ */ jsxs109(DialogPrimitive.Portal, {
|
|
6189
6277
|
container,
|
|
6190
6278
|
children: [
|
|
6191
|
-
/* @__PURE__ */
|
|
6279
|
+
/* @__PURE__ */ jsx118(DialogPrimitive.Overlay, {
|
|
6192
6280
|
className: "c-dialog-overlay"
|
|
6193
6281
|
}),
|
|
6194
|
-
/* @__PURE__ */
|
|
6282
|
+
/* @__PURE__ */ jsxs109(DialogPrimitive.Content, {
|
|
6195
6283
|
className: dialogContentStyles({ withIcon, class: className }),
|
|
6196
6284
|
...delegated,
|
|
6197
6285
|
children: [
|
|
6198
|
-
IconComponent && /* @__PURE__ */
|
|
6286
|
+
IconComponent && /* @__PURE__ */ jsx118("div", {
|
|
6199
6287
|
className: "c-dialog-icon-wrapper",
|
|
6200
|
-
children: /* @__PURE__ */
|
|
6288
|
+
children: /* @__PURE__ */ jsx118(IconComponent, {
|
|
6201
6289
|
className: "c-dialog-icon",
|
|
6202
6290
|
width: 34,
|
|
6203
6291
|
height: 34
|
|
6204
6292
|
})
|
|
6205
6293
|
}),
|
|
6206
|
-
closable && /* @__PURE__ */
|
|
6294
|
+
closable && /* @__PURE__ */ jsx118(DialogClose, {
|
|
6207
6295
|
asChild: true,
|
|
6208
|
-
children: /* @__PURE__ */
|
|
6296
|
+
children: /* @__PURE__ */ jsx118(Button, {
|
|
6209
6297
|
className: "c-dialog-close-button",
|
|
6210
|
-
children: /* @__PURE__ */
|
|
6298
|
+
children: /* @__PURE__ */ jsx118(Icon.Cancel, {
|
|
6211
6299
|
color: "density",
|
|
6212
6300
|
"aria-label": "Close",
|
|
6213
6301
|
height: 16,
|
|
@@ -6215,7 +6303,7 @@ function DialogContent({ children, closable = true, type, className, container,
|
|
|
6215
6303
|
})
|
|
6216
6304
|
})
|
|
6217
6305
|
}),
|
|
6218
|
-
/* @__PURE__ */
|
|
6306
|
+
/* @__PURE__ */ jsx118("div", {
|
|
6219
6307
|
children
|
|
6220
6308
|
})
|
|
6221
6309
|
]
|
|
@@ -6224,13 +6312,13 @@ function DialogContent({ children, closable = true, type, className, container,
|
|
|
6224
6312
|
});
|
|
6225
6313
|
}
|
|
6226
6314
|
function DialogTitle({ className, ...delegated }) {
|
|
6227
|
-
return /* @__PURE__ */
|
|
6315
|
+
return /* @__PURE__ */ jsx118(DialogPrimitive.Title, {
|
|
6228
6316
|
className: cx5("c-dialog-title", className),
|
|
6229
6317
|
...delegated
|
|
6230
6318
|
});
|
|
6231
6319
|
}
|
|
6232
6320
|
function DialogDescription(delegated) {
|
|
6233
|
-
return /* @__PURE__ */
|
|
6321
|
+
return /* @__PURE__ */ jsx118(DialogPrimitive.Description, {
|
|
6234
6322
|
className: "c-dialog-description",
|
|
6235
6323
|
...delegated
|
|
6236
6324
|
});
|
|
@@ -6239,7 +6327,7 @@ var DialogTrigger = DialogPrimitive.Trigger;
|
|
|
6239
6327
|
var DialogClose = DialogPrimitive.Close;
|
|
6240
6328
|
var DialogRoot = DialogPrimitive.Root;
|
|
6241
6329
|
function DialogBase({ children, ...delegated }) {
|
|
6242
|
-
return /* @__PURE__ */
|
|
6330
|
+
return /* @__PURE__ */ jsx118(DialogRoot, {
|
|
6243
6331
|
...delegated,
|
|
6244
6332
|
children
|
|
6245
6333
|
});
|
|
@@ -6252,7 +6340,7 @@ DialogBase.Overlay = DialogPrimitive.Overlay;
|
|
|
6252
6340
|
DialogBase.Close = DialogPrimitive.Close;
|
|
6253
6341
|
|
|
6254
6342
|
// src/dialog/confirm-dialog.tsx
|
|
6255
|
-
import { jsx as
|
|
6343
|
+
import { jsx as jsx119, jsxs as jsxs110 } from "react/jsx-runtime";
|
|
6256
6344
|
function ConfirmDialog({
|
|
6257
6345
|
open,
|
|
6258
6346
|
close,
|
|
@@ -6273,14 +6361,14 @@ function ConfirmDialog({
|
|
|
6273
6361
|
type,
|
|
6274
6362
|
closable
|
|
6275
6363
|
}) {
|
|
6276
|
-
const cancelButton = (okCancel || displayCancel) && /* @__PURE__ */
|
|
6364
|
+
const cancelButton = (okCancel || displayCancel) && /* @__PURE__ */ jsx119(Button, {
|
|
6277
6365
|
onClick: () => {
|
|
6278
6366
|
onCancel?.();
|
|
6279
6367
|
close();
|
|
6280
6368
|
},
|
|
6281
6369
|
children: cancelText
|
|
6282
6370
|
});
|
|
6283
|
-
const okButton = displayOk && /* @__PURE__ */
|
|
6371
|
+
const okButton = displayOk && /* @__PURE__ */ jsx119(Button, {
|
|
6284
6372
|
intent: okButtonIntent,
|
|
6285
6373
|
onClick: () => {
|
|
6286
6374
|
onOk?.();
|
|
@@ -6288,24 +6376,24 @@ function ConfirmDialog({
|
|
|
6288
6376
|
},
|
|
6289
6377
|
children: okText
|
|
6290
6378
|
});
|
|
6291
|
-
return /* @__PURE__ */
|
|
6379
|
+
return /* @__PURE__ */ jsx119(DialogRoot, {
|
|
6292
6380
|
open,
|
|
6293
6381
|
onOpenChange: () => close(),
|
|
6294
|
-
children: /* @__PURE__ */
|
|
6382
|
+
children: /* @__PURE__ */ jsxs110(Dialog.Content, {
|
|
6295
6383
|
onEscapeKeyDown,
|
|
6296
6384
|
onInteractOutside,
|
|
6297
6385
|
onPointerDownOutside,
|
|
6298
6386
|
type,
|
|
6299
6387
|
closable,
|
|
6300
6388
|
children: [
|
|
6301
|
-
title && /* @__PURE__ */
|
|
6389
|
+
title && /* @__PURE__ */ jsx119(Dialog.Title, {
|
|
6302
6390
|
children: title
|
|
6303
6391
|
}),
|
|
6304
|
-
description && /* @__PURE__ */
|
|
6392
|
+
description && /* @__PURE__ */ jsx119(Dialog.Description, {
|
|
6305
6393
|
children: description
|
|
6306
6394
|
}),
|
|
6307
6395
|
content,
|
|
6308
|
-
(displayOk || okCancel || displayCancel) && /* @__PURE__ */
|
|
6396
|
+
(displayOk || okCancel || displayCancel) && /* @__PURE__ */ jsxs110("div", {
|
|
6309
6397
|
className: "c-dialog-content__buttons",
|
|
6310
6398
|
children: [
|
|
6311
6399
|
cancelButton,
|
|
@@ -6321,7 +6409,7 @@ function ConfirmDialog({
|
|
|
6321
6409
|
var destroyFns = [];
|
|
6322
6410
|
|
|
6323
6411
|
// src/dialog/config.tsx
|
|
6324
|
-
import { jsx as
|
|
6412
|
+
import { jsx as jsx120 } from "react/jsx-runtime";
|
|
6325
6413
|
function confirm(config) {
|
|
6326
6414
|
const container = document.createDocumentFragment();
|
|
6327
6415
|
let currentConfig = { ...config, close, open: true };
|
|
@@ -6353,7 +6441,7 @@ function confirm(config) {
|
|
|
6353
6441
|
function render({ okText, cancelText, ...delegated }) {
|
|
6354
6442
|
clearTimeout(timeoutId);
|
|
6355
6443
|
timeoutId = setTimeout(() => {
|
|
6356
|
-
DOMRender(/* @__PURE__ */
|
|
6444
|
+
DOMRender(/* @__PURE__ */ jsx120(ConfirmDialog, {
|
|
6357
6445
|
...delegated,
|
|
6358
6446
|
okText,
|
|
6359
6447
|
cancelText
|
|
@@ -6461,9 +6549,9 @@ function destroyAll() {
|
|
|
6461
6549
|
}
|
|
6462
6550
|
|
|
6463
6551
|
// src/icon-button/icon-button.tsx
|
|
6464
|
-
import { forwardRef as
|
|
6552
|
+
import { forwardRef as forwardRef112 } from "react";
|
|
6465
6553
|
import { cva as cva4 } from "class-variance-authority";
|
|
6466
|
-
import { jsx as
|
|
6554
|
+
import { jsx as jsx121 } from "react/jsx-runtime";
|
|
6467
6555
|
var buttonStyles3 = cva4(["c-icon-button"], {
|
|
6468
6556
|
variants: {
|
|
6469
6557
|
variant: {
|
|
@@ -6483,9 +6571,9 @@ var buttonStyles3 = cva4(["c-icon-button"], {
|
|
|
6483
6571
|
variant: "default"
|
|
6484
6572
|
}
|
|
6485
6573
|
});
|
|
6486
|
-
var IconButton =
|
|
6574
|
+
var IconButton = forwardRef112(
|
|
6487
6575
|
({ children, className, type = "button", size, variant, ...delegated }, ref) => {
|
|
6488
|
-
return /* @__PURE__ */
|
|
6576
|
+
return /* @__PURE__ */ jsx121("button", {
|
|
6489
6577
|
ref,
|
|
6490
6578
|
type,
|
|
6491
6579
|
className: buttonStyles3({ size, variant, className }),
|
|
@@ -6497,15 +6585,15 @@ var IconButton = forwardRef110(
|
|
|
6497
6585
|
IconButton.displayName = "Button";
|
|
6498
6586
|
|
|
6499
6587
|
// src/input/input.tsx
|
|
6500
|
-
import { forwardRef as
|
|
6588
|
+
import { forwardRef as forwardRef113 } from "react";
|
|
6501
6589
|
import { cva as cva5 } from "class-variance-authority";
|
|
6502
|
-
import { jsx as
|
|
6590
|
+
import { jsx as jsx122 } from "react/jsx-runtime";
|
|
6503
6591
|
var inputStyles = cva5(["c-input"], {
|
|
6504
6592
|
variants: {},
|
|
6505
6593
|
defaultVariants: {}
|
|
6506
6594
|
});
|
|
6507
|
-
var Input =
|
|
6508
|
-
return /* @__PURE__ */
|
|
6595
|
+
var Input = forwardRef113(({ className, ...delegated }, ref) => {
|
|
6596
|
+
return /* @__PURE__ */ jsx122("input", {
|
|
6509
6597
|
ref,
|
|
6510
6598
|
className: inputStyles({ className }),
|
|
6511
6599
|
type: "text",
|
|
@@ -6515,11 +6603,11 @@ var Input = forwardRef111(({ className, ...delegated }, ref) => {
|
|
|
6515
6603
|
Input.displayName = "Input";
|
|
6516
6604
|
|
|
6517
6605
|
// src/label/label.tsx
|
|
6518
|
-
import { forwardRef as
|
|
6606
|
+
import { forwardRef as forwardRef114 } from "react";
|
|
6519
6607
|
import { cx as cx6 } from "class-variance-authority";
|
|
6520
|
-
import { jsx as
|
|
6521
|
-
var Label2 =
|
|
6522
|
-
return /* @__PURE__ */
|
|
6608
|
+
import { jsx as jsx123 } from "react/jsx-runtime";
|
|
6609
|
+
var Label2 = forwardRef114(({ className, ...delegated }, ref) => {
|
|
6610
|
+
return /* @__PURE__ */ jsx123("label", {
|
|
6523
6611
|
ref,
|
|
6524
6612
|
className: cx6("c-label", className),
|
|
6525
6613
|
...delegated
|
|
@@ -6530,7 +6618,7 @@ Label2.displayName = "Label";
|
|
|
6530
6618
|
// src/tooltip/tooltip.tsx
|
|
6531
6619
|
import { cva as cva6 } from "class-variance-authority";
|
|
6532
6620
|
import * as RadixTooltip from "@radix-ui/react-tooltip";
|
|
6533
|
-
import { jsx as
|
|
6621
|
+
import { jsx as jsx124, jsxs as jsxs111 } from "react/jsx-runtime";
|
|
6534
6622
|
var tooltipStyles = cva6(
|
|
6535
6623
|
"c-tooltip-content data-[state=delayed-open]:data-[side=top]:animate-slideDownAndFade data-[state=delayed-open]:data-[side=right]:animate-slideLeftAndFade data-[state=delayed-open]:data-[side=left]:animate-slideRightAndFade data-[state=delayed-open]:data-[side=bottom]:animate-slideUpAndFade",
|
|
6536
6624
|
{
|
|
@@ -6558,25 +6646,25 @@ function Tooltip({
|
|
|
6558
6646
|
onOpenChange,
|
|
6559
6647
|
open
|
|
6560
6648
|
}) {
|
|
6561
|
-
return /* @__PURE__ */
|
|
6649
|
+
return /* @__PURE__ */ jsx124(RadixTooltip.Provider, {
|
|
6562
6650
|
delayDuration,
|
|
6563
|
-
children: /* @__PURE__ */
|
|
6651
|
+
children: /* @__PURE__ */ jsxs111(RadixTooltip.Root, {
|
|
6564
6652
|
defaultOpen,
|
|
6565
6653
|
onOpenChange,
|
|
6566
6654
|
open,
|
|
6567
6655
|
children: [
|
|
6568
|
-
/* @__PURE__ */
|
|
6656
|
+
/* @__PURE__ */ jsx124(RadixTooltip.Trigger, {
|
|
6569
6657
|
asChild: true,
|
|
6570
6658
|
children
|
|
6571
6659
|
}),
|
|
6572
|
-
/* @__PURE__ */
|
|
6573
|
-
children: /* @__PURE__ */
|
|
6660
|
+
/* @__PURE__ */ jsx124(RadixTooltip.Portal, {
|
|
6661
|
+
children: /* @__PURE__ */ jsxs111(RadixTooltip.Content, {
|
|
6574
6662
|
align,
|
|
6575
6663
|
sideOffset: 5,
|
|
6576
6664
|
side,
|
|
6577
6665
|
className: tooltipStyles({ variant }),
|
|
6578
6666
|
children: [
|
|
6579
|
-
/* @__PURE__ */
|
|
6667
|
+
/* @__PURE__ */ jsx124(RadixTooltip.Arrow, {
|
|
6580
6668
|
className: "c-tooltip-arrow"
|
|
6581
6669
|
}),
|
|
6582
6670
|
content
|
|
@@ -6589,9 +6677,9 @@ function Tooltip({
|
|
|
6589
6677
|
}
|
|
6590
6678
|
|
|
6591
6679
|
// src/input-with-label/input-with-label.tsx
|
|
6592
|
-
import { forwardRef as
|
|
6680
|
+
import { forwardRef as forwardRef115 } from "react";
|
|
6593
6681
|
import { cva as cva7, cx as cx7 } from "class-variance-authority";
|
|
6594
|
-
import { Fragment, jsx as
|
|
6682
|
+
import { Fragment, jsx as jsx125, jsxs as jsxs112 } from "react/jsx-runtime";
|
|
6595
6683
|
var inputWithLabelStyles = cva7(["c-input-with-label"], {
|
|
6596
6684
|
variants: {
|
|
6597
6685
|
variant: {
|
|
@@ -6606,40 +6694,40 @@ var inputWithLabelStyles = cva7(["c-input-with-label"], {
|
|
|
6606
6694
|
},
|
|
6607
6695
|
defaultVariants: {}
|
|
6608
6696
|
});
|
|
6609
|
-
var InputWithLabel =
|
|
6697
|
+
var InputWithLabel = forwardRef115(
|
|
6610
6698
|
({ className, label, append, errorMessage, status, statusMessage, variant, id, labelProps, ...delegated }, ref) => {
|
|
6611
6699
|
const { className: labelClassName, ...labelPropsRest } = labelProps ?? {};
|
|
6612
|
-
return /* @__PURE__ */
|
|
6613
|
-
children: /* @__PURE__ */
|
|
6700
|
+
return /* @__PURE__ */ jsx125(Fragment, {
|
|
6701
|
+
children: /* @__PURE__ */ jsxs112(Label2, {
|
|
6614
6702
|
className: inputWithLabelStyles({ status, variant, className: labelClassName }),
|
|
6615
6703
|
htmlFor: id,
|
|
6616
6704
|
...labelPropsRest,
|
|
6617
6705
|
children: [
|
|
6618
6706
|
label,
|
|
6619
|
-
/* @__PURE__ */
|
|
6707
|
+
/* @__PURE__ */ jsxs112("span", {
|
|
6620
6708
|
className: "c-input-with-label-input-wrap",
|
|
6621
6709
|
children: [
|
|
6622
|
-
/* @__PURE__ */
|
|
6710
|
+
/* @__PURE__ */ jsx125(Input, {
|
|
6623
6711
|
className: cx7("c-input-with-label-input", className),
|
|
6624
6712
|
ref,
|
|
6625
6713
|
id,
|
|
6626
6714
|
...delegated
|
|
6627
6715
|
}),
|
|
6628
|
-
!!(errorMessage ?? statusMessage) ? /* @__PURE__ */
|
|
6716
|
+
!!(errorMessage ?? statusMessage) ? /* @__PURE__ */ jsx125(Tooltip, {
|
|
6629
6717
|
content: errorMessage ?? statusMessage,
|
|
6630
6718
|
variant: status,
|
|
6631
|
-
children: /* @__PURE__ */
|
|
6719
|
+
children: /* @__PURE__ */ jsx125("div", {
|
|
6632
6720
|
"data-testid": "input-with-label-status-message",
|
|
6633
6721
|
className: "c-input-with-label-append",
|
|
6634
|
-
children: status === "error" ? /* @__PURE__ */
|
|
6722
|
+
children: status === "error" ? /* @__PURE__ */ jsx125(Icon.Error, {
|
|
6635
6723
|
width: 20,
|
|
6636
6724
|
height: 20
|
|
6637
|
-
}) : /* @__PURE__ */
|
|
6725
|
+
}) : /* @__PURE__ */ jsx125(Icon.Warning, {
|
|
6638
6726
|
width: 20,
|
|
6639
6727
|
height: 20
|
|
6640
6728
|
})
|
|
6641
6729
|
})
|
|
6642
|
-
}) : !!append && /* @__PURE__ */
|
|
6730
|
+
}) : !!append && /* @__PURE__ */ jsx125("div", {
|
|
6643
6731
|
className: "c-input-with-label-append",
|
|
6644
6732
|
children: append
|
|
6645
6733
|
})
|