@kolking/react-ui 1.0.0 → 1.2.0

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.
Files changed (36) hide show
  1. package/dist/{Input-Lz3ft8Tp.js → Input-DE1QkW7S.js} +1 -1
  2. package/dist/components/Badge/Badge.d.ts +9 -0
  3. package/dist/components/Badge/Badge.js +56 -0
  4. package/dist/components/Badge/index.d.ts +1 -0
  5. package/dist/components/Badge/index.js +4 -0
  6. package/dist/components/Button/Button.d.ts +1 -1
  7. package/dist/components/Button/Button.js +5 -5
  8. package/dist/components/Dialog/Dialog.js +1 -1
  9. package/dist/components/Dialog/DialogFocusTrap.js +9 -757
  10. package/dist/components/Fields/Checkbox.js +7 -7
  11. package/dist/components/Fields/Field.js +10 -10
  12. package/dist/components/Fields/Input.js +2 -2
  13. package/dist/components/Fields/Quantity.js +18 -18
  14. package/dist/components/Fields/Radio.js +5 -5
  15. package/dist/components/Fields/Select.js +6 -6
  16. package/dist/components/Fields/Textarea.js +18 -177
  17. package/dist/components/Fields/index.js +1 -1
  18. package/dist/components/Flex/Flex.js +7 -7
  19. package/dist/components/Heading/Heading.js +1 -1
  20. package/dist/components/Icon/Icon.js +1 -1
  21. package/dist/components/Menu/Menu.js +41 -40
  22. package/dist/components/Menu/MenuItem.js +10 -10
  23. package/dist/components/Notice/Notice.js +1 -1
  24. package/dist/components/Progress/ProgressBar.js +5 -5
  25. package/dist/components/Progress/ProgressCircular.js +1 -1
  26. package/dist/components/Segmented/Segmented.js +10 -10
  27. package/dist/components/Spinner/Spinner.js +4 -4
  28. package/dist/components/Tooltip/Tooltip.js +37 -37
  29. package/dist/index.d.ts +1 -0
  30. package/dist/index.js +54 -52
  31. package/dist/styles/style.css +1 -1
  32. package/package.json +1 -1
  33. package/dist/_commonjsHelpers-B52_cu2H.js +0 -26
  34. package/dist/floating-ui.react-KLg1MUz0.js +0 -22334
  35. package/dist/index-DyIdU--j.js +0 -45
  36. package/dist/index.esm-Dkuk1b-q.js +0 -211
@@ -1,10 +1,10 @@
1
- import { jsxs as i, jsx as a } from "react/jsx-runtime";
2
- import { c as p } from "../../index-DyIdU--j.js";
1
+ import { jsxs as i, jsx as l } from "react/jsx-runtime";
2
+ import p from "classnames";
3
3
  import h, { useRef as x, useImperativeHandle as k, useEffect as b } from "react";
4
4
  import { cssProps as R } from "../../utils/helpers.js";
5
- import { I as y, s as l } from "../../Input-Lz3ft8Tp.js";
5
+ import { I as y, s as n } from "../../Input-DE1QkW7S.js";
6
6
  const q = h.forwardRef(
7
- ({ size: c, error: n, label: t, className: f, style: u, required: m, indeterminate: r, ...s }, d) => {
7
+ ({ size: c, error: a, label: t, className: f, style: u, required: m, indeterminate: r, ...s }, d) => {
8
8
  const o = s.checked, e = x(null);
9
9
  return k(d, () => e.current), b(() => {
10
10
  r != null && e.current != null && (e.current.indeterminate = !o && r);
@@ -13,11 +13,11 @@ const q = h.forwardRef(
13
13
  {
14
14
  "data-input": "checkbox",
15
15
  "data-required": m,
16
- className: p(l.checkbox, f),
16
+ className: p(n.checkbox, f),
17
17
  style: { ...u, ...R({ size: c }) },
18
18
  children: [
19
- /* @__PURE__ */ a(y, { ...s, ref: e, type: "checkbox", size: c, error: n }),
20
- t && /* @__PURE__ */ a("div", { className: l.label, children: t })
19
+ /* @__PURE__ */ l(y, { ...s, ref: e, type: "checkbox", size: c, error: a }),
20
+ t && /* @__PURE__ */ l("div", { className: n.label, children: t })
21
21
  ]
22
22
  }
23
23
  );
@@ -1,5 +1,5 @@
1
- import { jsxs as o, jsx as c } from "react/jsx-runtime";
2
- import { c as d } from "../../index-DyIdU--j.js";
1
+ import { jsxs as o, jsx as r } from "react/jsx-runtime";
2
+ import d from "classnames";
3
3
  import h from "react";
4
4
  import { cssProps as _ } from "../../utils/helpers.js";
5
5
  const p = "styles_field_hqzKT", u = "styles_header_Iwsz6", b = "styles_label_zRVTS", N = "styles_accessory_S4ccn", F = "styles_description_fZnNW", a = {
@@ -8,24 +8,24 @@ const p = "styles_field_hqzKT", u = "styles_header_Iwsz6", b = "styles_label_zRV
8
8
  label: b,
9
9
  accessory: N,
10
10
  description: F
11
- }, v = ({ label: e, required: s, className: l, children: t, ...r }) => /* @__PURE__ */ o("div", { "data-field-header": !0, className: a.header, children: [
12
- /* @__PURE__ */ c(
11
+ }, v = ({ label: e, required: s, className: l, children: t, ...c }) => /* @__PURE__ */ o("div", { "data-field-header": !0, className: a.header, children: [
12
+ /* @__PURE__ */ r(
13
13
  "label",
14
14
  {
15
- ...r,
15
+ ...c,
16
16
  "data-field-label": !0,
17
17
  "data-required": s,
18
18
  className: d(a.label, l),
19
19
  children: e
20
20
  }
21
21
  ),
22
- h.Children.toArray(t).length > 0 && /* @__PURE__ */ c("div", { "data-field-accessory": !0, className: a.accessory, children: t })
23
- ] }), x = ({ className: e, children: s, ...l }) => /* @__PURE__ */ c("small", { ...l, "data-field-description": !0, className: d(a.description, e), children: s }), S = ({
22
+ h.Children.toArray(t).length > 0 && /* @__PURE__ */ r("div", { "data-field-accessory": !0, className: a.accessory, children: t })
23
+ ] }), x = ({ className: e, children: s, ...l }) => /* @__PURE__ */ r("small", { ...l, "data-field-description": !0, className: d(a.description, e), children: s }), S = ({
24
24
  id: e,
25
25
  label: s,
26
26
  labelAccessory: l,
27
27
  help: t,
28
- required: r,
28
+ required: c,
29
29
  minWidth: n,
30
30
  maxWidth: f,
31
31
  className: m,
@@ -39,9 +39,9 @@ const p = "styles_field_hqzKT", u = "styles_header_Iwsz6", b = "styles_label_zRV
39
39
  className: d(a.field, m),
40
40
  style: { ...i.style, ..._({ minWidth: n, maxWidth: f }) },
41
41
  children: [
42
- s && /* @__PURE__ */ c(v, { htmlFor: e, label: s, required: r, children: l }),
42
+ s && /* @__PURE__ */ r(v, { htmlFor: e, label: s, required: c, children: l }),
43
43
  y,
44
- t && /* @__PURE__ */ c(x, { children: t })
44
+ t && /* @__PURE__ */ r(x, { children: t })
45
45
  ]
46
46
  }
47
47
  );
@@ -1,9 +1,9 @@
1
1
  import "react/jsx-runtime";
2
- import "../../index-DyIdU--j.js";
2
+ import "classnames";
3
3
  import "react";
4
4
  import "../../utils/helpers.js";
5
5
  import "../../ValidationTooltip-BgSwl0hJ.js";
6
- import { I as a } from "../../Input-Lz3ft8Tp.js";
6
+ import { I as a } from "../../Input-DE1QkW7S.js";
7
7
  export {
8
8
  a as Input
9
9
  };
@@ -1,15 +1,15 @@
1
- import { jsx as a, jsxs as h } from "react/jsx-runtime";
2
- import { c as v } from "../../index-DyIdU--j.js";
3
- import * as i from "react";
1
+ import { jsx as n, jsxs as h } from "react/jsx-runtime";
2
+ import v from "classnames";
3
+ import * as l from "react";
4
4
  import w, { forwardRef as d, useRef as y, useImperativeHandle as R, useCallback as o } from "react";
5
5
  import { cssProps as g } from "../../utils/helpers.js";
6
6
  import { V as E } from "../../ValidationTooltip-BgSwl0hJ.js";
7
- const _ = (n, e) => /* @__PURE__ */ i.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 6 5", ref: e, ...n }, /* @__PURE__ */ i.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M0 0h6L3 5z" })), x = d(_), q = (n, e) => /* @__PURE__ */ i.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 6 5", ref: e, ...n }, /* @__PURE__ */ i.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M0 5h6L3 0z" })), C = d(q), D = "styles_quantity_JqkoZ", k = "styles_increase_MKRaz", S = "styles_decrease_oD7r3", l = {
7
+ const _ = (a, e) => /* @__PURE__ */ l.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 6 5", ref: e, ...a }, /* @__PURE__ */ l.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M0 0h6L3 5z" })), x = d(_), q = (a, e) => /* @__PURE__ */ l.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 6 5", ref: e, ...a }, /* @__PURE__ */ l.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M0 5h6L3 0z" })), C = d(q), D = "styles_quantity_JqkoZ", k = "styles_increase_MKRaz", S = "styles_decrease_oD7r3", c = {
8
8
  quantity: D,
9
9
  increase: k,
10
10
  decrease: S
11
11
  }, j = w.forwardRef(
12
- ({ size: n, error: e, className: u, style: m, ...c }, p) => {
12
+ ({ size: a, error: e, className: u, style: m, ...i }, p) => {
13
13
  const t = y(null);
14
14
  R(p, () => t.current);
15
15
  const b = o(() => {
@@ -19,36 +19,36 @@ const _ = (n, e) => /* @__PURE__ */ i.createElement("svg", { xmlns: "http://www.
19
19
  var r, s;
20
20
  (r = t.current) == null || r.stepDown(), (s = t.current) == null || s.dispatchEvent(new Event("change", { bubbles: !0 }));
21
21
  }, []);
22
- return /* @__PURE__ */ a(E, { content: e, children: /* @__PURE__ */ h(
22
+ return /* @__PURE__ */ n(E, { content: e, children: /* @__PURE__ */ h(
23
23
  "div",
24
24
  {
25
25
  "data-input": "quantity",
26
- "data-disabled": c.disabled,
26
+ "data-disabled": i.disabled,
27
27
  "data-invalid": e ? !0 : void 0,
28
- className: v(l.quantity, u),
29
- style: { ...m, ...g({ size: n }) },
28
+ className: v(c.quantity, u),
29
+ style: { ...m, ...g({ size: a }) },
30
30
  children: [
31
- /* @__PURE__ */ a("input", { ...c, ref: t, type: "number" }),
32
- /* @__PURE__ */ a(
31
+ /* @__PURE__ */ n("input", { ...i, ref: t, type: "number" }),
32
+ /* @__PURE__ */ n(
33
33
  "button",
34
34
  {
35
35
  type: "button",
36
36
  "aria-label": "Increase",
37
- disabled: c.disabled,
38
- className: l.increase,
37
+ disabled: i.disabled,
38
+ className: c.increase,
39
39
  onClick: b,
40
- children: /* @__PURE__ */ a(C, { "aria-hidden": !0 })
40
+ children: /* @__PURE__ */ n(C, { "aria-hidden": !0 })
41
41
  }
42
42
  ),
43
- /* @__PURE__ */ a(
43
+ /* @__PURE__ */ n(
44
44
  "button",
45
45
  {
46
46
  type: "button",
47
47
  "aria-label": "Decrease",
48
- disabled: c.disabled,
49
- className: l.decrease,
48
+ disabled: i.disabled,
49
+ className: c.decrease,
50
50
  onClick: f,
51
- children: /* @__PURE__ */ a(x, { "aria-hidden": !0 })
51
+ children: /* @__PURE__ */ n(x, { "aria-hidden": !0 })
52
52
  }
53
53
  )
54
54
  ]
@@ -1,15 +1,15 @@
1
- import { jsxs as c, jsx as o } from "react/jsx-runtime";
2
- import { c as l } from "../../index-DyIdU--j.js";
1
+ import { jsxs as l, jsx as o } from "react/jsx-runtime";
2
+ import c from "classnames";
3
3
  import f from "react";
4
4
  import { cssProps as n } from "../../utils/helpers.js";
5
- import { I as u, s } from "../../Input-Lz3ft8Tp.js";
5
+ import { I as u, s } from "../../Input-DE1QkW7S.js";
6
6
  const I = f.forwardRef(
7
- ({ size: r, error: t, label: a, className: e, style: i, required: d, ...m }, p) => /* @__PURE__ */ c(
7
+ ({ size: r, error: t, label: a, className: e, style: i, required: d, ...m }, p) => /* @__PURE__ */ l(
8
8
  "label",
9
9
  {
10
10
  "data-input": "radio",
11
11
  "data-required": d,
12
- className: l(s.radio, e),
12
+ className: c(s.radio, e),
13
13
  style: { ...i, ...n({ size: r }) },
14
14
  children: [
15
15
  /* @__PURE__ */ o(u, { ...m, ref: p, type: "radio", size: r, error: t }),
@@ -1,17 +1,17 @@
1
1
  import { jsx as e } from "react/jsx-runtime";
2
- import { c as i } from "../../index-DyIdU--j.js";
3
- import l from "react";
2
+ import l from "classnames";
3
+ import c from "react";
4
4
  import { cssProps as m } from "../../utils/helpers.js";
5
5
  import { V as d, s as f } from "../../ValidationTooltip-BgSwl0hJ.js";
6
- const y = l.forwardRef(
7
- ({ size: o, error: t, className: s, style: a, ...r }, c) => /* @__PURE__ */ e(d, { content: t, children: /* @__PURE__ */ e(
6
+ const y = c.forwardRef(
7
+ ({ size: o, error: t, className: s, style: a, ...r }, i) => /* @__PURE__ */ e(d, { content: t, children: /* @__PURE__ */ e(
8
8
  "select",
9
9
  {
10
10
  ...r,
11
- ref: c,
11
+ ref: i,
12
12
  "data-select": !0,
13
13
  "data-invalid": t ? !0 : void 0,
14
- className: i(f.select, s),
14
+ className: l(f.select, s),
15
15
  style: { ...a, ...m({ size: o }) }
16
16
  }
17
17
  ) })
@@ -1,185 +1,26 @@
1
- import { jsx as C } from "react/jsx-runtime";
2
- import { c as j } from "../../index-DyIdU--j.js";
3
- import * as f from "react";
4
- import x, { useLayoutEffect as I } from "react";
5
- import { cssProps as N } from "../../utils/helpers.js";
6
- import { V as P, s as _ } from "../../ValidationTooltip-BgSwl0hJ.js";
7
- function R() {
8
- return R = Object.assign ? Object.assign.bind() : function(n) {
9
- for (var t = 1; t < arguments.length; t++) {
10
- var r = arguments[t];
11
- for (var e in r) ({}).hasOwnProperty.call(r, e) && (n[e] = r[e]);
12
- }
13
- return n;
14
- }, R.apply(null, arguments);
15
- }
16
- function B(n, t) {
17
- if (n == null) return {};
18
- var r = {};
19
- for (var e in n) if ({}.hasOwnProperty.call(n, e)) {
20
- if (t.indexOf(e) !== -1) continue;
21
- r[e] = n[e];
22
- }
23
- return r;
24
- }
25
- var M = I, $ = function(t) {
26
- var r = x.useRef(t);
27
- return M(function() {
28
- r.current = t;
29
- }), r;
30
- }, E = function(t, r) {
31
- if (typeof t == "function") {
32
- t(r);
33
- return;
34
- }
35
- t.current = r;
36
- }, G = function(t, r) {
37
- var e = x.useRef();
38
- return x.useCallback(function(i) {
39
- t.current = i, e.current && E(e.current, null), e.current = r, r && E(r, i);
40
- }, [r]);
41
- }, T = {
42
- "min-height": "0",
43
- "max-height": "none",
44
- height: "0",
45
- visibility: "hidden",
46
- overflow: "hidden",
47
- position: "absolute",
48
- "z-index": "-1000",
49
- top: "0",
50
- right: "0",
51
- display: "block"
52
- }, V = function(t) {
53
- Object.keys(T).forEach(function(r) {
54
- t.style.setProperty(r, T[r], "important");
55
- });
56
- }, F = V, o = null, W = function(t, r) {
57
- var e = t.scrollHeight;
58
- return r.sizingStyle.boxSizing === "border-box" ? e + r.borderSize : e - r.paddingSize;
59
- };
60
- function Y(n, t, r, e) {
61
- r === void 0 && (r = 1), e === void 0 && (e = 1 / 0), o || (o = document.createElement("textarea"), o.setAttribute("tabindex", "-1"), o.setAttribute("aria-hidden", "true"), F(o)), o.parentNode === null && document.body.appendChild(o);
62
- var i = n.paddingSize, u = n.borderSize, a = n.sizingStyle, l = a.boxSizing;
63
- Object.keys(a).forEach(function(c) {
64
- var m = c;
65
- o.style[m] = a[m];
66
- }), F(o), o.value = t;
67
- var d = W(o, n);
68
- o.value = t, d = W(o, n), o.value = "x";
69
- var v = o.scrollHeight - i, h = v * r;
70
- l === "border-box" && (h = h + i + u), d = Math.max(h, d);
71
- var g = v * e;
72
- return l === "border-box" && (g = g + i + u), d = Math.min(g, d), [d, v];
73
- }
74
- var k = function() {
75
- }, q = function(t, r) {
76
- return t.reduce(function(e, i) {
77
- return e[i] = r[i], e;
78
- }, {});
79
- }, U = [
80
- "borderBottomWidth",
81
- "borderLeftWidth",
82
- "borderRightWidth",
83
- "borderTopWidth",
84
- "boxSizing",
85
- "fontFamily",
86
- "fontSize",
87
- "fontStyle",
88
- "fontWeight",
89
- "letterSpacing",
90
- "lineHeight",
91
- "paddingBottom",
92
- "paddingLeft",
93
- "paddingRight",
94
- "paddingTop",
95
- // non-standard
96
- "tabSize",
97
- "textIndent",
98
- // non-standard
99
- "textRendering",
100
- "textTransform",
101
- "width",
102
- "wordBreak",
103
- "wordSpacing",
104
- "scrollbarGutter"
105
- ], X = !!document.documentElement.currentStyle, Z = function(t) {
106
- var r = window.getComputedStyle(t);
107
- if (r === null)
108
- return null;
109
- var e = q(U, r), i = e.boxSizing;
110
- if (i === "")
111
- return null;
112
- X && i === "border-box" && (e.width = parseFloat(e.width) + parseFloat(e.borderRightWidth) + parseFloat(e.borderLeftWidth) + parseFloat(e.paddingRight) + parseFloat(e.paddingLeft) + "px");
113
- var u = parseFloat(e.paddingBottom) + parseFloat(e.paddingTop), a = parseFloat(e.borderBottomWidth) + parseFloat(e.borderTopWidth);
114
- return {
115
- sizingStyle: e,
116
- paddingSize: u,
117
- borderSize: a
118
- };
119
- }, D = Z;
120
- function L(n, t, r) {
121
- var e = $(r);
122
- f.useLayoutEffect(function() {
123
- var i = function(a) {
124
- return e.current(a);
125
- };
126
- if (n)
127
- return n.addEventListener(t, i), function() {
128
- return n.removeEventListener(t, i);
129
- };
130
- }, []);
131
- }
132
- var J = function(t, r) {
133
- L(document.body, "reset", function(e) {
134
- t.current.form === e.target && r(e);
135
- });
136
- }, K = function(t) {
137
- L(window, "resize", t);
138
- }, Q = function(t) {
139
- L(document.fonts, "loadingdone", t);
140
- }, ee = ["cacheMeasurements", "maxRows", "minRows", "onChange", "onHeightChange"], te = function(t, r) {
141
- var e = t.cacheMeasurements, i = t.maxRows, u = t.minRows, a = t.onChange, l = a === void 0 ? k : a, d = t.onHeightChange, v = d === void 0 ? k : d, h = B(t, ee), g = h.value !== void 0, c = f.useRef(null), m = G(c, r), w = f.useRef(0), S = f.useRef(), p = function() {
142
- var s = c.current, z = e && S.current ? S.current : D(s);
143
- if (z) {
144
- S.current = z;
145
- var H = Y(z, s.value || s.placeholder || "x", u, i), b = H[0], O = H[1];
146
- w.current !== b && (w.current = b, s.style.setProperty("height", b + "px", "important"), v(b, {
147
- rowHeight: O
148
- }));
149
- }
150
- }, A = function(s) {
151
- g || p(), l(s);
152
- };
153
- return f.useLayoutEffect(p), J(c, function() {
154
- if (!g) {
155
- var y = c.current.value;
156
- requestAnimationFrame(function() {
157
- var s = c.current;
158
- s && y !== s.value && p();
159
- });
160
- }
161
- }), K(p), Q(p), /* @__PURE__ */ f.createElement("textarea", R({}, h, {
162
- onChange: A,
163
- ref: m
164
- }));
165
- }, re = /* @__PURE__ */ f.forwardRef(te);
166
- const ue = x.forwardRef(
167
- ({ autosize: n = !0, size: t, error: r, className: e, style: i, ...u }, a) => {
168
- const l = n ? re : "textarea", d = n ? { minRows: 2, ...u } : u;
169
- return /* @__PURE__ */ C(P, { content: r, children: /* @__PURE__ */ C(
170
- l,
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import c from "classnames";
3
+ import d from "react";
4
+ import f from "react-textarea-autosize";
5
+ import { cssProps as l } from "../../utils/helpers.js";
6
+ import { V as x, s as u } from "../../ValidationTooltip-BgSwl0hJ.js";
7
+ const _ = d.forwardRef(
8
+ ({ autosize: t = !0, size: e, error: o, className: s, style: m, ...a }, i) => {
9
+ const n = t ? f : "textarea", p = t ? { minRows: 2, ...a } : a;
10
+ return /* @__PURE__ */ r(x, { content: o, children: /* @__PURE__ */ r(
11
+ n,
171
12
  {
172
- ...d,
173
- ref: a,
13
+ ...p,
14
+ ref: i,
174
15
  "data-textarea": !0,
175
- "data-autosize": n,
176
- "data-invalid": r ? !0 : void 0,
177
- className: j(_.textarea, e),
178
- style: { ...i, ...N({ size: t }) }
16
+ "data-autosize": t,
17
+ "data-invalid": o ? !0 : void 0,
18
+ className: c(u.textarea, s),
19
+ style: { ...m, ...l({ size: e }) }
179
20
  }
180
21
  ) });
181
22
  }
182
23
  );
183
24
  export {
184
- ue as Textarea
25
+ _ as Textarea
185
26
  };
@@ -1,6 +1,6 @@
1
1
  import { Checkbox as r } from "./Checkbox.js";
2
2
  import { Field as p, FieldDescription as i, FieldLabel as x } from "./Field.js";
3
- import { I as f } from "../../Input-Lz3ft8Tp.js";
3
+ import { I as f } from "../../Input-DE1QkW7S.js";
4
4
  import { Quantity as l } from "./Quantity.js";
5
5
  import { Radio as n } from "./Radio.js";
6
6
  import { Select as s } from "./Select.js";
@@ -1,15 +1,15 @@
1
1
  import { jsx as a } from "react/jsx-runtime";
2
- import { c as d } from "../../index-DyIdU--j.js";
2
+ import d from "classnames";
3
3
  import { fixedForwardRef as i, cssProps as p } from "../../utils/helpers.js";
4
4
  const y = "Flex_flex_GBHBA", F = {
5
5
  flex: y
6
6
  };
7
7
  function u({
8
- as: s,
8
+ as: l,
9
9
  direction: e = "row",
10
- gap: l,
11
- align: o,
12
- justify: r,
10
+ gap: o,
11
+ align: r,
12
+ justify: s,
13
13
  wrap: f,
14
14
  marginStart: n,
15
15
  marginEnd: x,
@@ -17,7 +17,7 @@ function u({
17
17
  ...t
18
18
  }, c) {
19
19
  return /* @__PURE__ */ a(
20
- s ?? "div",
20
+ l ?? "div",
21
21
  {
22
22
  ...t,
23
23
  ref: c,
@@ -25,7 +25,7 @@ function u({
25
25
  className: d(F.flex, m),
26
26
  style: {
27
27
  ...t.style,
28
- ...p({ gap: l, align: o, justify: r, direction: e, wrap: f, marginStart: n, marginEnd: x })
28
+ ...p({ gap: o, align: r, justify: s, direction: e, wrap: f, marginStart: n, marginEnd: x })
29
29
  }
30
30
  }
31
31
  );
@@ -1,5 +1,5 @@
1
1
  import { jsx as a, jsxs as f } from "react/jsx-runtime";
2
- import { c as g } from "../../index-DyIdU--j.js";
2
+ import g from "classnames";
3
3
  import { cssProps as H } from "../../utils/helpers.js";
4
4
  const j = "Heading_h1_jZARG", u = "Heading_heading_OG4PS", p = "Heading_h2_juB1Q", x = "Heading_h3_tZEj0", v = "Heading_h4_X927D", z = "Heading_h5_047wq", B = "Heading_h6_52sKy", G = "Heading_accessory_VOBHY", h = {
5
5
  h1: j,
@@ -1,7 +1,7 @@
1
1
  import * as e from "react";
2
2
  import p, { forwardRef as o } from "react";
3
3
  import { jsx as u } from "react/jsx-runtime";
4
- import { c as f } from "../../index-DyIdU--j.js";
4
+ import f from "classnames";
5
5
  import { cssProps as E } from "../../utils/helpers.js";
6
6
  const x = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm0-15.5a1 1 0 0 1 1 1v6.584l2.793-2.791a1 1 0 0 1 1.32-.083l.094.083a1 1 0 0 1 0 1.414L10 15.914l-.707-.707-4.5-4.5a1 1 0 0 1 1.414-1.414L9 12.085V5.5a1 1 0 0 1 .883-.993L10 4.5Z" })), k = o(x), C = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m5.5 10 4.5 4.5 4.5-4.5M10 5.5v9" }))), L = o(C), R = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m3 10 7 7 7-7m-7-7v14" })), Z = o(R), M = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10ZM9.293 4.793a1 1 0 0 1 1.414 1.414L7.914 9H14.5a1 1 0 0 1 .993.883L15.5 10a1 1 0 0 1-1 1H7.915l2.792 2.793a1 1 0 0 1 .083 1.32l-.083.094a1 1 0 0 1-1.414 0l-4.5-4.5L4.086 10l.707-.707 4.5-4.5Z" })), S = o(M), B = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M10 14.5 5.5 10 10 5.5m4.5 4.5h-9" }))), F = o(B), $ = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m10 17-7-7 7-7m7 7H3" })), V = o($), A = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10ZM9.293 4.793a1 1 0 0 1 1.414 0l4.5 4.5.707.707-5.207 5.207a1 1 0 1 1-1.414-1.414L12.084 11H5.5a1 1 0 0 1-.993-.883L4.5 10a1 1 0 0 1 1-1h6.585L9.293 6.207a1 1 0 0 1-.083-1.32l.083-.094Z" })), H = o(A), W = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m10 14.5 4.5-4.5L10 5.5M5.5 10h9" }))), y = o(W), j = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m10 17 7-7-7-7m-7 7h14" })), O = o(j), P = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 20c5.523 0 10-4.477 10-10S15.523 0 10 0 0 4.477 0 10s4.477 10 10 10Zm0-15.914.707.707 4.5 4.5a1 1 0 1 1-1.414 1.414L11 7.915V14.5a1 1 0 0 1-.883.993L10 15.5a1 1 0 0 1-1-1V7.914l-2.793 2.793a1 1 0 0 1-1.32.083l-.094-.083a1 1 0 0 1 0-1.414l4.5-4.5.707-.707Z" })), b = o(P), _ = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M14.5 10 10 5.5 5.5 10m4.5 4.5v-9" }))), D = o(_), z = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m3 10 7-7 7 7m-7 7V3" })), I = o(z), U = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M3.291 15.571c-.405 0-.72-.094-.949-.282A.926.926 0 0 1 2 14.536c0-.285.083-.561.248-.83.165-.267.372-.53.62-.786s.494-.513.74-.77c.188-.193.335-.447.44-.76a5.73 5.73 0 0 0 .235-1c.051-.354.088-.696.111-1.027.017-1.095.134-2.07.35-2.925.218-.855.558-1.573 1.023-2.154C6.23 3.702 6.843 3.274 7.6 3c.16-.559.453-1.032.88-1.42.43-.386.958-.58 1.585-.58.632 0 1.163.194 1.59.581.428.388.721.861.88 1.42.76.274 1.37.701 1.83 1.283.463.581.803 1.3 1.023 2.154.22.856.337 1.83.355 2.925.022.33.06.673.11 1.026.052.354.13.687.236 1 .105.314.252.568.44.762l.74.77c.248.256.455.518.62.786.165.268.248.544.248.83a.926.926 0 0 1-.342.752c-.228.188-.545.282-.95.282H3.292ZM10.064 19c-.48 0-.91-.105-1.292-.316a2.65 2.65 0 0 1-.923-.83 2.288 2.288 0 0 1-.402-1.111h5.242c-.04.399-.175.77-.406 1.111a2.61 2.61 0 0 1-.92.83c-.382.21-.815.316-1.3.316Z" })), T = o(U), N = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 1.5a4 4 0 0 0-4 4h8a4 4 0 0 0-4-4Zm9 9h-3V7.923l2.217-2.216a1 1 0 0 0-1.414-1.414L14.587 6.51h-9.16L3.21 4.293a1 1 0 0 0-1.413 1.414L4 7.92v2.577H1a1 1 0 0 0 0 2h3a5.94 5.94 0 0 0 .427 2.203.94.94 0 0 0-.134.09l-2.83 2.83a1 1 0 0 0 1.414 1.413l2.6-2.6A6 6 0 0 0 9 18.413V8.5h2v9.913a6 6 0 0 0 3.52-1.976l2.6 2.6a1 1 0 0 0 1.413-1.414l-2.83-2.83a.94.94 0 0 0-.133-.09c.282-.7.428-1.448.43-2.203h3a1 1 0 0 0 0-2Z" })), G = o(N), K = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M15 1a1 1 0 0 1 1 1v1h.5A1.5 1.5 0 0 1 18 4.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 2 17.5v-13A1.5 1.5 0 0 1 3.5 3H4V2a1 1 0 1 1 2 0v1h8V2a1 1 0 0 1 1-1Zm1.75 7H3.25v9.25a.5.5 0 0 0 .5.5h12.5a.5.5 0 0 0 .5-.5V8ZM13 12a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z" })), q = o(K), J = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M15 1a1 1 0 0 1 1 1v1h.5A1.5 1.5 0 0 1 18 4.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 2 17.5v-13A1.5 1.5 0 0 1 3.5 3H4V2a1 1 0 1 1 2 0v1h8V2a1 1 0 0 1 1-1Zm1.75 7H3.25v9.25a.5.5 0 0 0 .5.5h12.5a.5.5 0 0 0 .5-.5V8ZM7 14v2H5v-2h2Zm4 0v2H9v-2h2Zm4 0v2h-2v-2h2Zm-8-4v2H5v-2h2Zm4 0v2H9v-2h2Zm4 0v2h-2v-2h2Z" })), Q = o(J), X = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M17.328 18C19.106 18 20 17.115 20 15.36V6.45c0-1.753-.894-2.63-2.672-2.63h-1.983c-.664 0-.877-.136-1.251-.562l-.69-.766c-.425-.468-.86-.723-1.736-.723H8.272c-.876 0-1.31.255-1.736.723l-.68.766c-.375.417-.588.562-1.252.562H2.672C.894 3.821 0 4.698 0 6.451v8.91C0 17.115.894 18 2.672 18h14.656ZM10 15.276a4.631 4.631 0 0 1-4.638-4.655A4.631 4.631 0 0 1 10 5.966a4.633 4.633 0 0 1 4.647 4.655A4.633 4.633 0 0 1 10 15.276Zm0-8.017a3.358 3.358 0 0 1 3.362 3.362 3.358 3.358 0 1 1-6.715 0A3.35 3.35 0 0 1 10 7.26Zm6.12-.817c.578 0 1.054.468 1.054 1.056 0 .578-.476 1.046-1.055 1.046a1.053 1.053 0 0 1-1.055-1.046c0-.588.476-1.056 1.055-1.056Z" })), Y = o(X), e0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M11.352 6.5c-.79 0-4.172.078-6.352 3.36V6.5c0-2.07-1.68-3.75-3.75-3.75C.562 2.75 0 3.313 0 4c0 .688.562 1.25 1.25 1.25S2.5 5.812 2.5 6.5v10C2.5 17.877 3.623 19 5 19h6.875c.347 0 .625-.278.625-.59v-.66c0-.688-.562-1.25-1.25-1.25H10l5-3.75v5.625c0 .347.278.625.625.625h1.25a.623.623 0 0 0 .625-.625v-8.05c-.4.102-.816.175-1.25.175a5.006 5.006 0 0 1-4.898-4ZM17.5 2.75H15L12.5.25V5.5c0 2.07 1.68 3.715 3.75 3.715C18.32 9.215 20 7.57 20 5.5V.25l-2.5 2.5Zm-2.813 3.125a.623.623 0 0 1-.624-.625c0-.347.278-.625.624-.625.347 0 .626.278.626.625a.622.622 0 0 1-.626.625Zm3.126 0a.623.623 0 0 1-.625-.625c0-.347.278-.625.625-.625.346 0 .625.278.625.625a.622.622 0 0 1-.625.625Z" })), t0 = o(e0), r0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm5.207 6.793a1 1 0 0 0-1.414 0L9 11.585 7.207 9.793a1 1 0 1 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.414 0l5.5-5.5a1 1 0 0 0 0-1.414Z" })), o0 = o(r0), s0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M6.5 10.5 9 13l5.5-5.5" }))), n0 = o(s0), l0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M5.5 10 9 13.5 15.5 7" })), c0 = o(l0), a0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m12.5 4-6 6 6 6" })), i0 = o(a0), w0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m8 4 6 6-6 6" })), v0 = o(w0), g0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm0 3.5a1 1 0 0 0-1 1v6.015l.419.299 3.5 2.5a1 1 0 0 0 1.395-.233l.066-.106a1 1 0 0 0-.299-1.289L11 9.485V4.5a1 1 0 0 0-1-1Z" })), m0 = o(g0), d0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M10 4.5V10l3.5 2.5" }))), h0 = o(d0), p0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m15.5 4.5-11 11m0-11 11 11" })), u0 = o(p0), f0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M8 18v-6H2m6 0-6 6M12 2v6h6m-6 0 6-6" })), E0 = o(f0), x0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0ZM7.707 6.293a1 1 0 0 0-1.414 0l-.078.087a1 1 0 0 0 .078 1.327L8.586 10l-2.293 2.294a1 1 0 0 0 0 1.414l.087.078a1 1 0 0 0 1.327-.078L10 11.413l2.293 2.294a1 1 0 0 0 1.414 0l.078-.087a1 1 0 0 0-.078-1.327l-2.293-2.294 2.293-2.292a1 1 0 0 0 0-1.414l-.087-.078a1 1 0 0 0-1.327.078L10 8.585Z" })), k0 = o(x0), C0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m13 7-6 6m0-6 6 6" }))), L0 = o(C0), R0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m13.5 6.5-7 7m0-7 7 7" })), Z0 = o(R0), M0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("path", { strokeWidth: 1.5, d: "m4.5 6.75.458 10.543a1 1 0 0 0 1 .957h8.085a1 1 0 0 0 .999-.957L15.5 6.75h0M2.75 4.25h14.5" }), /* @__PURE__ */ e.createElement("path", { d: "M10 7.5v8.25m2.5-8.25-.25 8.25M7.5 7.5l.25 8.25m-.5-11.5.167-1.84a1 1 0 0 1 .996-.91h3.174a1 1 0 0 1 .996.91l.167 1.84h0" }))), S0 = o(M0), B0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "m16 6-.445 11.558A1.5 1.5 0 0 1 14.057 19H5.943a1.5 1.5 0 0 1-1.498-1.442L4 6h12Zm-6 2a.5.5 0 0 0-.5.5v8a.5.5 0 1 0 1 0v-8A.5.5 0 0 0 10 8Zm3.016 0a.5.5 0 0 0-.516.484l-.25 8a.5.5 0 1 0 1 .032l.25-8A.5.5 0 0 0 13.016 8ZM6.984 8a.5.5 0 0 0-.484.516l.25 8a.5.5 0 1 0 1-.032l-.25-8A.5.5 0 0 0 6.984 8Z" }), /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M2.75 4.25h14.5" }), /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", d: "m7.25 4.25.167-1.84a1 1 0 0 1 .996-.91h3.174a1 1 0 0 1 .996.91l.167 1.84h0" }))), F0 = o(B0), $0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 8, strokeWidth: 2 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2.25, d: "m15.5 4.5-11 11" }))), V0 = o($0), A0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 12 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m4 4 6 6-6 6" })), H0 = o(A0), W0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2 }, /* @__PURE__ */ e.createElement("path", { strokeLinejoin: "round", d: "M2 14v4h16v-4" }), /* @__PURE__ */ e.createElement("path", { d: "m6 10 4 4 4-4m-4-7v11" }))), y0 = o(W0), j0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 12 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m2 9 4 3 4-3" })), O0 = o(j0), P0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "m11.14 2.292 7.216 5.01c.403.28.644.741.644 1.233V17.5a1.5 1.5 0 0 1-1.5 1.5h-15A1.5 1.5 0 0 1 1 17.5V8.535c0-.492.24-.952.644-1.233l7.215-5.01a2 2 0 0 1 2.282 0ZM9.413 12.376l-5.93 5.374h13.035l-5.93-5.374a.875.875 0 0 0-1.175 0Zm8.338-3.274-4.341 4.144 4.341 3.934V9.102Zm-15.5.001v8.076l4.34-3.933-4.34-4.143Zm7.322-5.784L2.874 7.97l4.645 4.434 1.054-.954a2.125 2.125 0 0 1 2.854 0l1.053.954 4.645-4.434-6.697-4.651a.75.75 0 0 0-.856 0Z" })), b0 = o(P0), _0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "m11.14 2.292 7.216 5.01c.403.28.644.741.644 1.233V17.5a1.5 1.5 0 0 1-1.5 1.5h-15A1.5 1.5 0 0 1 1 17.5V8.535c0-.492.24-.952.644-1.233l7.215-5.01a2 2 0 0 1 2.282 0ZM9.573 3.32 2.358 8.33a.25.25 0 0 0-.107.206L7 12.5 2 18l6.683-5.848a2 2 0 0 1 2.634 0L18 18l-5-5.5 4.75-3.965a.25.25 0 0 0-.107-.206l-7.215-5.01a.75.75 0 0 0-.856 0Z" })), D0 = o(_0), z0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm-.001 12.78c-.637 0-1.209.515-1.209 1.209 0 .694.583 1.209 1.209 1.209.615 0 1.209-.504 1.209-1.21 0-.704-.583-1.208-1.21-1.208ZM10 4.8c-.705 0-1.224.504-1.2 1.05l.174 4.9c.025.546.383.85 1.038.85.618 0 .99-.293 1.014-.85l.173-4.9c.025-.546-.507-1.05-1.199-1.05Z" })), I0 = o(z0), U0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M10.012 11.6c-.655 0-1.013-.304-1.038-.85L8.8 5.85c-.024-.546.495-1.05 1.2-1.05.692 0 1.224.504 1.2 1.05l-.174 4.9c-.025.557-.396.85-1.014.85ZM10 15.198a1.218 1.218 0 0 1-1.209-1.21c0-.693.572-1.208 1.209-1.208.626 0 1.209.504 1.209 1.209 0 .705-.594 1.209-1.21 1.209Z" }))), T0 = o(U0), N0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M18 8V2h-6m6 0-6 6M2 12v6h6m-6 0 6-6" })), G0 = o(N0), K0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 2, d: "M2 8V2h6m4 0h6v6M2 12v6h6m4 0h6v-6" })), q0 = o(K0), J0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M19.688 8.746c-.16-.102-1.422-.856-1.922-1.086l-.62-1.5c.184-.496.538-1.886.6-2.128a.668.668 0 0 0-.18-.62l-.978-.972a.664.664 0 0 0-.62-.18c-.184.042-1.6.4-2.128.6l-1.5-.62c-.218-.48-.952-1.71-1.086-1.922A.664.664 0 0 0 10.688 0H9.312a.67.67 0 0 0-.566.312c-.102.16-.856 1.422-1.086 1.922l-1.5.62c-.496-.184-1.886-.538-2.128-.6a.668.668 0 0 0-.62.18l-.972.978a.664.664 0 0 0-.18.62c.042.184.4 1.6.6 2.128l-.62 1.5c-.48.218-1.71.952-1.922 1.086A.664.664 0 0 0 0 9.312v1.374c0 .23.118.443.312.566.16.102 1.422.856 1.922 1.086l.62 1.5c-.184.496-.538 1.886-.6 2.128a.668.668 0 0 0 .18.62l.972.972a.664.664 0 0 0 .62.18c.184-.042 1.6-.4 2.128-.6l1.5.62c.218.48.952 1.71 1.086 1.922.121.2.338.321.572.32h1.374a.67.67 0 0 0 .566-.312c.102-.16.856-1.422 1.086-1.922l1.5-.62c.496.184 1.886.538 2.128.6a.668.668 0 0 0 .62-.18l.972-.972a.664.664 0 0 0 .18-.62c-.042-.184-.4-1.6-.6-2.128l.62-1.5c.48-.218 1.71-.952 1.922-1.086a.664.664 0 0 0 .32-.572V9.312a.66.66 0 0 0-.312-.566ZM9.996 14.8a4.8 4.8 0 1 1 4.804-4.796A4.807 4.807 0 0 1 9.996 14.8Z" })), Q0 = o(J0), X0 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M9.99 0C15.46 0 20 4.54 20 10c0 5.47-4.53 10-10 10-5.46 0-10-4.53-10-10C0 4.54 4.53 0 9.99 0Zm.008 12.937c-.62 0-1.122.476-1.122 1.082 0 .606.503 1.081 1.122 1.081.627 0 1.13-.475 1.13-1.081s-.503-1.082-1.13-1.082ZM10.26 4.9c-1.48 0-2.583.585-3.023 1.495a1.704 1.704 0 0 0-.207.82c0 .523.337.86.882.86.42 0 .73-.193.902-.634.22-.613.675-.943 1.35-.943.757 0 1.28.468 1.28 1.143 0 .634-.268.978-1.156 1.508-.813.476-1.233 1.013-1.233 1.826v.096c0 .565.344.964.93.964.489 0 .757-.268.86-.73.09-.578.297-.875 1.213-1.405.97-.572 1.474-1.28 1.474-2.32 0-1.606-1.316-2.68-3.272-2.68Z" })), Y0 = o(X0), e1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M10 19.5c5.197 0 9.5-4.303 9.5-9.5 0-5.188-4.312-9.5-9.51-9.5C4.804.5.5 4.812.5 10c0 5.197 4.312 9.5 9.5 9.5Z" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M9.985 12.035c.489 0 .757-.268.86-.73.09-.578.297-.875 1.213-1.405.97-.572 1.474-1.28 1.474-2.32 0-1.606-1.316-2.68-3.272-2.68-1.48 0-2.583.585-3.023 1.495a1.704 1.704 0 0 0-.207.82c0 .523.337.86.882.86.42 0 .73-.193.902-.634.22-.613.675-.943 1.35-.943.757 0 1.28.468 1.28 1.143 0 .634-.268.978-1.156 1.508-.813.476-1.233 1.013-1.233 1.826v.096c0 .565.344.964.93.964Zm.013 3.065c.627 0 1.13-.475 1.13-1.081s-.503-1.082-1.13-1.082c-.62 0-1.122.476-1.122 1.082 0 .606.503 1.081 1.122 1.081Z" }))), t1 = o(e1), r1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm0 8.5a1 1 0 0 0-1 1V14a1 1 0 0 0 2 0V9.5a1 1 0 0 0-1-1Zm0-3.7a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4Z" })), o1 = o(r1), s1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M10 19.5c5.197 0 9.5-4.303 9.5-9.5 0-5.188-4.312-9.5-9.51-9.5C4.804.5.5 4.812.5 10c0 5.197 4.312 9.5 9.5 9.5Z" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M10 8.5a1 1 0 0 1 1 1V14a1 1 0 0 1-2 0V9.5a1 1 0 0 1 1-1Zm0-1.3a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Z" }))), n1 = o(s1), l1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 19c4-4.667 6-8.667 6-12A6 6 0 1 0 4 7c0 3.333 2 7.333 6 12ZM6.97 3.97a.75.75 0 0 1 1.06 0L10 5.939l1.97-1.97a.75.75 0 0 1 .976-.072l.084.073a.75.75 0 0 1 0 1.06L11.06 7l1.97 1.97a.75.75 0 0 1 .073.976l-.073.084a.75.75 0 0 1-1.06 0L10 8.06l-1.97 1.97a.75.75 0 0 1-.976.073l-.084-.073a.75.75 0 0 1 0-1.06L8.939 7l-1.97-1.97a.75.75 0 0 1-.072-.976l.073-.084Z" })), c1 = o(l1), a1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 1a6 6 0 0 1 6 6c0 3.333-2 7.333-6 12-4-4.667-6-8.667-6-12a6 6 0 0 1 6-6Zm0 3.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z" })), i1 = o(a1), w1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("rect", { width: 14, height: 10, x: 3, y: 9, fill: "currentColor", fillRule: "nonzero", rx: 1.5 }), /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeWidth: 2, d: "M6 9V5a4 4 0 1 1 8 0" }))), v1 = o(w1), g1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("rect", { width: 14, height: 10, x: 3, y: 9, fill: "currentColor", fillRule: "nonzero", rx: 1.5 }), /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeWidth: 2, d: "M6 9V6a4 4 0 1 1 8 0v3" }))), m1 = o(g1), d1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M1.978 18.207c-.312 0-.553-.087-.723-.26-.17-.173-.255-.421-.255-.744V5.563c0-.294.06-.546.182-.757.12-.21.308-.388.562-.532l4.5-2.562a1.71 1.71 0 0 1 .892-.242c.317 0 .608.08.874.242l4.699 2.882 4.586-2.553a2.63 2.63 0 0 1 .39-.169c.115-.037.228-.056.337-.056.312 0 .553.087.723.26.17.173.255.418.255.735v11.657c0 .289-.06.538-.182.749-.12.21-.311.388-.57.532l-4.527 2.57c-.26.15-.548.225-.865.225a1.97 1.97 0 0 1-.97-.26l-4.785-2.682-4.405 2.37c-.138.082-.265.14-.38.178a1.089 1.089 0 0 1-.338.057Zm4.56-3.981V3.175a7.085 7.085 0 0 0-.151.086 2.68 2.68 0 0 1-.16.087L2.679 5.425a.544.544 0 0 0-.22.203.552.552 0 0 0-.066.273v10.376c0 .092.038.138.113.138a.332.332 0 0 0 .13-.043l3.902-2.146Zm1.394.138 3.755 2.12c.064.035.127.068.19.1.064.032.128.065.191.1V5.865l-3.86-2.354a3.485 3.485 0 0 0-.276-.155v11.007Zm5.53 2.475.194-.104a2.62 2.62 0 0 0 .195-.112l3.47-2.016a.533.533 0 0 0 .22-.208.577.577 0 0 0 .066-.277V3.746c0-.046-.01-.08-.03-.104-.02-.023-.051-.034-.091-.034a.337.337 0 0 0-.122.043L13.462 5.78v11.06Z" })), h1 = o(d1), p1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M1 17.21V5.564c0-.289.062-.538.186-.749.124-.21.316-.388.576-.532l4.101-2.354a3.4 3.4 0 0 1 .243-.134c.086-.043.167-.082.242-.117v14.34L2.713 17.98c-.27.15-.513.225-.726.225-.312 0-.554-.087-.727-.26-.173-.173-.26-.418-.26-.735Zm6.534-1.358V1.53a1.676 1.676 0 0 1 .485.199l4.274 2.614v14.123a1.438 1.438 0 0 1-.194-.07 4.199 4.199 0 0 1-.204-.095l-4.361-2.449Zm5.936 2.588V4.178l3.817-2.12c.27-.15.513-.225.726-.225.312 0 .554.086.727.26.173.173.26.418.26.735v11.657c0 .288-.062.538-.186.748-.124.21-.316.388-.576.533l-4.508 2.561a1.49 1.49 0 0 1-.126.065.742.742 0 0 1-.134.048Z" })), u1 = o(p1), f1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeWidth: 2, d: "M3 10h14M3 15h14M3 5h14" })), E1 = o(f1), x1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm4.5 9h-9a1 1 0 1 0 0 2h9a1 1 0 0 0 0-2Z" })), k1 = o(x1), C1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M5.5 10h9" }))), L1 = o(C1), R1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4.5 10h11" })), Z1 = o(R1), M1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M11.695 19c.725 0 1.216-.533 1.524-1.333L18.8 3.057c.133-.341.2-.65.2-.916C19 1.441 18.559 1 17.859 1c-.275 0-.583.067-.925.2L2.291 6.797C1.541 7.081 1 7.572 1 8.305c0 .841.608 1.216 1.458 1.474l3.964 1.225c.684.208 1.1.208 1.608-.25l9.537-8.704c.134-.125.3-.109.392-.017.1.1.116.266-.009.4l-8.695 9.529c-.417.458-.459.966-.267 1.607l1.216 3.923c.267.875.641 1.508 1.491 1.508Z" })), S1 = o(M1), B1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M1.349 13.562c.29 1.592 1.223 2.243 2.847 1.969l.165-.031v.07c0 1.624.815 2.432 2.462 2.432h10.714c1.632 0 2.463-.816 2.463-2.432V8.174c0-1.616-.831-2.431-2.463-2.431h-1.686l-.384-2.18c-.29-1.593-1.232-2.252-2.847-1.97L2.063 3.454c-1.608.29-2.283 1.23-2 2.823l1.286 7.286Zm1.231-.282L1.317 6.127c-.14-.808.212-1.302.989-1.435l10.51-1.851c.76-.126 1.278.204 1.42 1.004l.336 1.898H6.823c-1.647 0-2.462.815-2.462 2.431v6.047L4 14.284c-.777.133-1.279-.204-1.42-1.004Zm3.043-5.035c0-.816.432-1.24 1.216-1.24h10.675c.776 0 1.223.424 1.223 1.24v6.11l-2.933-2.77a1.542 1.542 0 0 0-2.118-.007l-3.168 2.808-1.255-1.137c-.306-.275-.628-.4-.965-.4-.306 0-.596.125-.902.384l-1.773 1.545V8.245Zm4.33 3.513c.918 0 1.663-.76 1.663-1.678 0-.902-.745-1.663-1.663-1.663s-1.663.76-1.663 1.663c0 .918.745 1.678 1.663 1.678Z" })), F1 = o(B1), $1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M11.017 15.4a.986.986 0 0 1-.727-.313c-.205-.209-.308-.513-.308-.912v-8.35c0-.399.103-.703.308-.912a.984.984 0 0 1 .726-.313c.144 0 .28.022.41.065.128.043.263.107.407.191l6.936 4.082c.252.149.437.31.555.484.117.174.176.365.176.574 0 .212-.06.407-.18.585-.12.177-.304.338-.55.481l-6.937 4.083a2.231 2.231 0 0 1-.407.19 1.264 1.264 0 0 1-.409.066Zm-9.476 0a.993.993 0 0 1-.733-.313C.603 14.878.5 14.574.5 14.175v-8.35c0-.399.102-.703.307-.912A.991.991 0 0 1 1.54 4.6c.14 0 .275.022.403.065.128.043.264.107.407.191l6.937 4.082c.252.149.437.31.555.484a1.035 1.035 0 0 1-.001 1.159c-.119.177-.303.338-.554.481L2.35 15.145a2.027 2.027 0 0 1-.403.19 1.26 1.26 0 0 1-.406.066Z" })), V1 = o($1), A1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M7.086 19c1.03 0 1.55-.531 1.55-1.55V2.55c0-1.052-.52-1.54-1.55-1.55H4.55C3.53 1 3 1.531 3 2.55v14.9C2.99 18.47 3.52 19 4.55 19h2.536Zm8.36 0c1.018 0 1.55-.531 1.55-1.55V2.55c0-1.052-.532-1.55-1.55-1.55H12.91c-1.03 0-1.55.531-1.55 1.55v14.9c0 1.019.52 1.55 1.55 1.55h2.535Z" })), H1 = o(A1), W1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M4.921 19c.443 0 .814-.154 1.287-.422l12.13-7.033c.897-.515 1.247-.907 1.247-1.545 0-.638-.35-1.03-1.246-1.545L6.209 1.432C5.734 1.154 5.363 1 4.92 1c-.833 0-1.42.638-1.42 1.658v14.684c0 1.02.587 1.658 1.421 1.658Z" })), y1 = o(W1), j1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M8.983 15.4a.987.987 0 0 0 .727-.313c.205-.209.308-.513.308-.912v-8.35c0-.399-.103-.703-.308-.912a.984.984 0 0 0-.726-.313c-.144 0-.28.022-.41.065a2.204 2.204 0 0 0-.407.191L1.231 8.938c-.252.149-.437.31-.555.484a1.004 1.004 0 0 0-.176.574c0 .212.06.407.18.585.12.177.304.338.55.481l6.937 4.083c.143.083.279.147.407.19.128.044.264.066.409.066Zm9.476 0a.993.993 0 0 0 .733-.313c.205-.209.308-.513.308-.912v-8.35c0-.399-.102-.703-.307-.912a.991.991 0 0 0-.733-.313c-.14 0-.275.022-.403.065a2.211 2.211 0 0 0-.407.191l-6.937 4.082c-.252.149-.437.31-.555.484a1.035 1.035 0 0 0 .001 1.159c.119.177.303.338.554.481l6.937 4.083c.138.083.273.147.403.19.13.044.266.066.406.066Z" })), O1 = o(j1), P1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M2.923 1h14.154c.669 0 .911.07 1.156.2.244.131.436.323.567.567.13.245.2.487.2 1.156v14.154c0 .669-.07.911-.2 1.156a1.371 1.371 0 0 1-.567.567c-.245.13-.487.2-1.156.2H2.923c-.669 0-.911-.07-1.156-.2a1.363 1.363 0 0 1-.567-.567c-.13-.245-.2-.487-.2-1.156V2.923c0-.669.07-.911.2-1.156.131-.244.323-.436.567-.567.245-.13.487-.2 1.156-.2Z" })), b1 = o(P1), _1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm0 5-.117.007A1 1 0 0 0 9 6v2.999L6 9a1 1 0 0 0-1 1l.007.117A1 1 0 0 0 6 11l3-.001V14a1 1 0 0 0 1 1l.117-.007A1 1 0 0 0 11 14v-3.001L14 11a1 1 0 0 0 1-1l-.007-.117A1 1 0 0 0 14 9l-3-.001V6a1 1 0 0 0-1-1Z" })), D1 = o(_1), z1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5 }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "M10 6v8m-4-4h8" }))), I1 = o(z1), U1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M10 5.05v9.9M5.05 10h9.9" })), T1 = o(U1), N1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M16.5 4A2.5 2.5 0 0 1 19 6.5v8a.5.5 0 0 1-.5.5H16v4H4v-4H1.5a.5.5 0 0 1-.5-.5v-8A2.5 2.5 0 0 1 3.5 4h13ZM15 11H5v7h10v-7Zm1.482-5.048a1.15 1.15 0 1 0-.965 2.088 1.15 1.15 0 0 0 .965-2.088ZM4.5 1h11a.5.5 0 0 1 .5.5V3H4V1.5a.5.5 0 0 1 .5-.5Z" })), G1 = o(N1), K1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M10 13.333c3.58 0 6.5 1.411 6.66 3.181l.007.174A9.408 9.408 0 0 1 10 19.444a9.415 9.415 0 0 1-6.667-2.755v-.022c0-1.841 2.985-3.334 6.667-3.334Zm0-1.657c1.882.02 3.363-1.588 3.363-3.696 0-1.98-1.48-3.627-3.363-3.627C8.118 4.353 6.627 6 6.637 7.98c.01 2.108 1.48 3.677 3.363 3.696Z" }))), q1 = o(K1), J1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm0 13.333c-3.321 0-6.075 1.215-6.583 2.804A8.975 8.975 0 0 0 10 19a8.974 8.974 0 0 0 6.583-2.863c-.508-1.59-3.262-2.804-6.583-2.804Zm0-8.98C8.118 4.353 6.627 6 6.637 7.98c.01 2.108 1.48 3.677 3.363 3.696 1.882.02 3.363-1.588 3.363-3.696 0-1.98-1.48-3.627-3.363-3.627Z" })), Q1 = o(J1), X1 = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm.793 4.293a1 1 0 0 0 0 1.414L12.086 7H9a4 4 0 0 0-3.995 3.8L5 11a4.541 4.541 0 0 0 3.795 4.48l.04.006a1 1 0 1 0 .33-1.972l-.041-.007A2.541 2.541 0 0 1 7 11a2 2 0 0 1 2-2h3.085l-1.292 1.293a1 1 0 0 0 1.414 1.414L15.914 8l-.707-.707-3-3a1 1 0 0 0-1.414 0Z" })), Y1 = o(X1), ee = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeLinejoin: "round", strokeWidth: 2, d: "M14.5 8H9a3 3 0 0 0-3 3 3.541 3.541 0 0 0 2.96 3.493L9 14.5h0" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m11.5 11 3-3-3-3" }))), te = o(ee), re = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M5.808 15.607a7.002 7.002 0 0 0 11.117-4.582m-2.718-6.62a7.001 7.001 0 0 0-11.14 4.62" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "m17.248 7.702-6.187-.884 5.303-5.303.884 6.187ZM2.752 12.298l.884 6.187 5.303-5.303-6.187-.884Z" }))), oe = o(re), se = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "m2 7 4-4 4 4m-4 7V3m4 10 4 4 4-4m-4-7v11" })), ne = o(se), le = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor" }, /* @__PURE__ */ e.createElement("circle", { cx: 8.5, cy: 8.5, r: 6.5, strokeWidth: 2 }), /* @__PURE__ */ e.createElement("path", { strokeLinecap: "round", strokeWidth: 3, d: "m18 18-4.5-4.5" }))), ce = o(le), ae = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10.005 1a2.525 2.525 0 0 1 .841.159 57.1 57.1 0 0 1 1.12.38c.495.172 1.024.36 1.588.563.564.203 1.093.396 1.588.577.494.181.868.325 1.12.431.416.176.726.374.93.596.206.222.308.583.308 1.083v6.754c0 .807-.121 1.512-.364 2.115-.242.604-.63 1.165-1.162 1.684-.533.519-1.239 1.052-2.118 1.6a68.453 68.453 0 0 1-3.237 1.87c-.113.063-.225.11-.335.141a1.07 1.07 0 0 1-.28.047c-.075 0-.168-.016-.278-.047a1.602 1.602 0 0 1-.336-.14 73.498 73.498 0 0 1-3.237-1.881c-.879-.547-1.586-1.08-2.122-1.6-.535-.519-.925-1.078-1.167-1.679-.243-.6-.364-1.303-.364-2.11V4.789c0-.5.106-.862.317-1.088.21-.225.518-.422.921-.59.259-.107.633-.252 1.125-.437.491-.184 1.02-.381 1.588-.59.567-.21 1.096-.4 1.588-.568a18.128 18.128 0 0 1 1.53-.464c.146-.035.29-.052.436-.052Zm0 1.25a.628.628 0 0 0-.146.018 17.157 17.157 0 0 0-1.414.43c-.482.166-1.003.352-1.561.558a324.9 324.9 0 0 0-1.582.589c-.48.18-.844.321-1.081.419-.252.105-.414.209-.493.292.035-.036.026.006.023.152l-.001 6.835c0 .654.094 1.2.273 1.642.175.432.463.848.878 1.25.466.451 1.104.932 1.913 1.436.858.534 1.92 1.15 3.18 1.847l.01.005.015-.007a71.34 71.34 0 0 0 2.883-1.655l.294-.181c.807-.503 1.443-.983 1.905-1.433.412-.402.7-.819.875-1.255.18-.446.274-.994.274-1.649V4.789c0-.184-.014-.26.01-.248l-.028-.027a1.895 1.895 0 0 0-.456-.252 27.88 27.88 0 0 0-1.064-.41l-1.167-.424-.828-.298a141.022 141.022 0 0 0-1.99-.694l-.323-.107a1.297 1.297 0 0 0-.4-.079Zm0 2.75c.675 0 1.223.233 1.643.7.42.466.63 1.078.63 1.836v.953c.481.04.722.34.722.9v3.262c0 .606-.288.909-.863.909H7.863c-.575 0-.863-.303-.863-.91V9.39c0-.56.24-.86.722-.901v-.953c0-.758.209-1.37.626-1.837.417-.466.97-.699 1.656-.699Zm0 .883c-.412 0-.74.143-.987.429-.247.285-.37.664-.37 1.136v1.023h2.713V7.448c0-.472-.125-.85-.374-1.136-.25-.286-.577-.429-.983-.429Z" })), ie = o(ae), we = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M6.5 15a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm8 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM3.75 2c.38 0 .7.284.745.661L4.653 4H17.25c.42 0 .75.342.75.748l-.007.103-.632 4.635A1.75 1.75 0 0 1 15.627 11l-10.14-.001.153 1.28a.25.25 0 0 0 .187.213l.061.008H15.5a.75.75 0 1 1 0 1.5H5.888a1.75 1.75 0 0 1-1.738-1.543L3.084 3.5H.75a.75.75 0 0 1-.743-.648L0 2.75A.75.75 0 0 1 .75 2h3Zm12.64 3.499H4.832l.476 4 10.32.001a.25.25 0 0 0 .231-.157l.016-.06.515-3.784Z" })), ve = o(we), ge = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M5 6h10l-5 8z" })), me = o(ge), de = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M14 5v10l-8-5z" })), he = o(de), pe = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M6 5v10l8-5z" })), ue = o(pe), fe = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M5 14h10l-5-8z" })), Ee = o(fe), xe = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0Zm-.793 4.293a1 1 0 0 0-1.414 0l-3 3L4.086 8l3.707 3.707a1 1 0 1 0 1.414-1.414L7.915 9H11a2 2 0 0 1 2 2 2.541 2.541 0 0 1-2.124 2.507l-.04.007a1 1 0 1 0 .328 1.972l.041-.006A4.541 4.541 0 0 0 15 11l-.005-.2A4 4 0 0 0 11 7H7.914l1.293-1.293a1 1 0 0 0 0-1.414Z" })), ke = o(xe), Ce = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round" }, /* @__PURE__ */ e.createElement("circle", { cx: 10, cy: 10, r: 9.5, strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { strokeLinejoin: "round", strokeWidth: 2, d: "M5.5 8H11a3 3 0 0 1 3 3 3.541 3.541 0 0 1-2.96 3.493L11 14.5h0" }), /* @__PURE__ */ e.createElement("path", { strokeWidth: 2, d: "m8.5 11-3-3 3-3" }))), Le = o(Ce), Re = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd", stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2 }, /* @__PURE__ */ e.createElement("path", { strokeLinejoin: "round", d: "M2 14v4h16v-4" }), /* @__PURE__ */ e.createElement("path", { d: "m6 7 4-4 4 4m-4 7V3" }))), Ze = o(Re), Me = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("g", { fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ e.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M17.248 18.5c1.385 0 2.252-.969 2.252-2.189a2.08 2.08 0 0 0-.295-1.076L11.942 2.603A2.22 2.22 0 0 0 10.005 1.5c-.766 0-1.532.377-1.947 1.103L.805 15.243c-.203.341-.305.7-.305 1.068 0 1.22.867 2.189 2.252 2.189h14.496Z" }), /* @__PURE__ */ e.createElement("path", { fill: "currentColor", fillRule: "nonzero", d: "M10.01 12.4c-.492 0-.761-.277-.78-.775L9.1 7.067c-.018-.498.372-.867.9-.867.52 0 .918.378.9.876l-.13 4.549c-.019.507-.297.775-.76.775ZM10 15.6c-.57 0-1.1-.469-1.1-1.1 0-.631.52-1.1 1.1-1.1.57 0 1.1.458 1.1 1.1 0 .642-.54 1.1-1.1 1.1Z" }))), Se = o(Me), Be = (t, r) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", ref: r, ...t }, /* @__PURE__ */ e.createElement("path", { fill: "currentColor", d: "M10.005 1c.796 0 1.603.399 2.04 1.168l7.644 13.374c.214.361.311.75.311 1.14C20 17.974 19.087 19 17.63 19H2.37C.913 19 0 17.974 0 16.682c0-.39.107-.77.32-1.13L7.956 2.168C8.392 1.398 9.2 1 10.005 1ZM10 13.4c-.58 0-1.1.469-1.1 1.1 0 .631.53 1.1 1.1 1.1.56 0 1.1-.458 1.1-1.1 0-.642-.53-1.1-1.1-1.1Zm0-7.2c-.528 0-.918.369-.9.867l.13 4.558c.019.498.288.775.78.775.463 0 .741-.268.76-.775l.13-4.549c.018-.498-.38-.876-.9-.876Z" })), Fe = o(Be), $e = "Icon_info_jKe8j", Ve = "Icon_error_Spa1M", Ae = "Icon_success_EnsSL", He = "Icon_warning_ZdPHu", We = "Icon_neutral_AfPjh", ye = "Icon_icon_FVr27", a = {
7
7
  info: $e,