@xola/ui-kit 2.1.18 → 2.1.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/build/ui-kit.mjs CHANGED
@@ -1152,7 +1152,7 @@ const To = ft({
1152
1152
  generateId: () => (console.warn(
1153
1153
  "Please wrap your app with `<Provider />` component from `@xola/ui-kit`. Otherwise your app will not work with SSR frameworks."
1154
1154
  ), Ri++)
1155
- }), T4 = ({ children: e }) => {
1155
+ }), V4 = ({ children: e }) => {
1156
1156
  const t = me(1), o = ie(() => t.current++, [t]), a = Ne(() => ({ generateId: o }), [o]);
1157
1157
  return /* @__PURE__ */ n.createElement(To.Provider, { value: a }, e);
1158
1158
  }, dn = (e) => {
@@ -6175,17 +6175,17 @@ Za.propTypes = {
6175
6175
  date: c.objectOf(Date),
6176
6176
  getContent: c.func.isRequired
6177
6177
  };
6178
- const ln = R(), Xa = ({ date: e, onChange: t, currentMonth: o }) => {
6179
- const a = [...Array.from({ length: 12 }).keys()].map((s) => ln.month(s).format("MMM")), r = [...Array.from({ length: ln.year() - 2012 + 5 + 1 }).keys()].map(
6180
- (s) => ln.year(2012 + s).format("YYYY")
6181
- ), i = (s) => {
6182
- const { year: u, month: d } = s.target.form;
6183
- t(new Date(u.value, d.value));
6184
- }, l = (s) => {
6185
- const { year: u } = s.target.form;
6186
- t(new Date(u.value, o.getMonth()));
6178
+ const ln = R(), Bc = (e, t) => 12 * (e.getFullYear() - t.getFullYear()) + (e.getMonth() - t.getMonth()), Xa = ({ date: e, onChange: t, currentMonth: o }) => {
6179
+ const a = [...Array.from({ length: 12 }).keys()].map((u) => ln.month(u).format("MMM")), r = [...Array.from({ length: ln.year() - 2012 + 5 + 1 }).keys()].map(
6180
+ (u) => ln.year(2012 + u).format("YYYY")
6181
+ ), i = Bc(e, o), l = (u) => {
6182
+ const { year: d, month: m } = u.target.form;
6183
+ t(new Date(d.value, Number(m.value) - i));
6184
+ }, s = (u) => {
6185
+ const { year: d } = u.target.form;
6186
+ t(new Date(d.value, o.getMonth()));
6187
6187
  };
6188
- return /* @__PURE__ */ n.createElement("form", { className: "DayPicker-Caption space-x-2" }, /* @__PURE__ */ n.createElement("span", { className: "inline-block" }, /* @__PURE__ */ n.createElement(Vt, { name: "month", value: e.getMonth(), className: "month-selector", onChange: i }, a.map((s, u) => /* @__PURE__ */ n.createElement("option", { key: s, value: u }, s)))), /* @__PURE__ */ n.createElement("span", { className: "inline-block" }, /* @__PURE__ */ n.createElement(Vt, { name: "year", value: e.getFullYear(), className: "year-selector", onChange: l }, r.map((s) => /* @__PURE__ */ n.createElement("option", { key: s, value: s }, s)))));
6188
+ return /* @__PURE__ */ n.createElement("form", { className: "DayPicker-Caption space-x-2" }, /* @__PURE__ */ n.createElement("span", { className: "inline-block" }, /* @__PURE__ */ n.createElement(Vt, { name: "month", value: e.getMonth(), className: "month-selector", onChange: l }, a.map((u, d) => /* @__PURE__ */ n.createElement("option", { key: u, value: d }, u)))), /* @__PURE__ */ n.createElement("span", { className: "inline-block" }, /* @__PURE__ */ n.createElement(Vt, { name: "year", value: e.getFullYear(), className: "year-selector", onChange: s }, r.map((u) => /* @__PURE__ */ n.createElement("option", { key: u, value: u }, u)))));
6189
6189
  };
6190
6190
  Xa.propTypes = {
6191
6191
  date: c.objectOf(Date).isRequired,
@@ -6233,7 +6233,7 @@ const q = {
6233
6233
  LAST_YEAR: "P1Y,first day of January last year",
6234
6234
  TRAILING_YEAR: "P1Y,-1 year",
6235
6235
  THIS_YEAR: "P1Y,first day of this year"
6236
- }, Bc = {
6236
+ }, Fc = {
6237
6237
  day: {
6238
6238
  label: "Day",
6239
6239
  options: [
@@ -6315,7 +6315,7 @@ const q = {
6315
6315
  }
6316
6316
  ]
6317
6317
  }
6318
- }, Fc = {
6318
+ }, Sc = {
6319
6319
  [q.YESTERDAY]: () => {
6320
6320
  const e = R().subtract(1, "day");
6321
6321
  return {
@@ -6392,11 +6392,11 @@ const q = {
6392
6392
  onSubmit: r
6393
6393
  }) => {
6394
6394
  const i = (l) => {
6395
- const s = l.target.value, u = Fc[s]();
6395
+ const s = l.target.value, u = Sc[s]();
6396
6396
  a(s, u);
6397
6397
  };
6398
6398
  return /* @__PURE__ */ n.createElement("div", { className: "flex space-x-2" }, /* @__PURE__ */ n.createElement(Vt, { size: "medium", value: t, className: "pr-8 leading-5", onChange: i }, /* @__PURE__ */ n.createElement("option", { value: "" }, "Relative Date Range"), e.map((l) => {
6399
- const s = Bc[l];
6399
+ const s = Fc[l];
6400
6400
  return /* @__PURE__ */ n.createElement("optgroup", { key: l, label: s.label }, s.options.map((u) => /* @__PURE__ */ n.createElement("option", { key: u.value, value: u.value }, u.label)));
6401
6401
  })), o && /* @__PURE__ */ n.createElement(xe, { onClick: r }, "Apply"));
6402
6402
  };
@@ -6497,7 +6497,7 @@ const Bt = {
6497
6497
  })) : /* @__PURE__ */ n.createElement("div", { className: "mx-6 mt-7 max-w-40 items-center justify-center rounded bg-yellow-lighter p-3" }, "There is no future availability for this product.")) : null, /* @__PURE__ */ n.createElement(
6498
6498
  d1,
6499
6499
  {
6500
- showOutsideDays: !0,
6500
+ showOutsideDays: !E,
6501
6501
  className: I(
6502
6502
  "ui-date-picker rounded-lg pt-3",
6503
6503
  z ? "date-range-picker" : null,
@@ -6567,7 +6567,7 @@ var Qa = { exports: {} };
6567
6567
  };
6568
6568
  });
6569
6569
  })(Qa);
6570
- const Sc = Qa.exports;
6570
+ const Tc = Qa.exports;
6571
6571
  var qa = { exports: {} };
6572
6572
  (function(e, t) {
6573
6573
  (function(o, a) {
@@ -6698,7 +6698,7 @@ var qa = { exports: {} };
6698
6698
  };
6699
6699
  });
6700
6700
  })(qa);
6701
- const Tc = qa.exports;
6701
+ const Vc = qa.exports;
6702
6702
  var Ka = { exports: {} };
6703
6703
  (function(e, t) {
6704
6704
  (function(o, a) {
@@ -6726,83 +6726,85 @@ var Ka = { exports: {} };
6726
6726
  };
6727
6727
  });
6728
6728
  })(Ka);
6729
- const Vc = Ka.exports;
6730
- R.extend(Tc);
6731
- R.extend(Sc);
6729
+ const Rc = Ka.exports;
6732
6730
  R.extend(Vc);
6733
- const Rc = (e, t = "YYYY-MM-DD") => R(e).format(t), V4 = (e, t = "h:mm a") => {
6731
+ R.extend(Tc);
6732
+ R.extend(Rc);
6733
+ const Gc = (e, t = "YYYY-MM-DD") => R(e).format(t), R4 = (e, t = "h:mm a") => {
6734
6734
  const o = String(e).padStart(4, 0);
6735
6735
  return R(o, "hhmm").format(t);
6736
- }, R4 = (e) => R(new Date(Number.parseInt(e.slice(0, 8), 16) * 1e3)), Gc = ({
6736
+ }, G4 = (e) => R(new Date(Number.parseInt(e.slice(0, 8), 16) * 1e3)), Dc = ({
6737
6737
  value: e,
6738
6738
  variant: t = "single",
6739
6739
  dateFormat: o = "ddd, LL",
6740
- onChange: a,
6741
- children: r,
6742
- classNames: i = {},
6743
- components: l = {},
6744
- popoverProps: s,
6745
- getDayContent: u,
6746
- ...d
6740
+ placeholder: a = "Select Date",
6741
+ onChange: r,
6742
+ children: i,
6743
+ classNames: l = {},
6744
+ components: s = {},
6745
+ popoverProps: u,
6746
+ getDayContent: d,
6747
+ ...m
6747
6748
  }) => {
6748
- const [m, g] = ne(e), [w, x] = ne(!1), b = () => {
6749
- x(!w);
6750
- }, h = (y, C, A) => {
6751
- t === "single" ? (a == null || a(y, C, A), b()) : a == null || a(y, m, C, A);
6752
- }, v = () => {
6753
- g(e), a == null || a(e), x(!1);
6749
+ const [g, w] = ne(e), [x, b] = ne(!1), h = () => {
6750
+ b(!x);
6751
+ }, v = (C, A, E) => {
6752
+ t === "single" ? (r == null || r(C, A, E), h()) : r == null || r(C, g, A, E);
6754
6753
  }, f = () => {
6755
- b();
6754
+ w(e), r == null || r(e), b(!1);
6755
+ }, y = () => {
6756
+ h();
6756
6757
  };
6757
6758
  return Te(() => {
6758
- g(e);
6759
+ w(e);
6759
6760
  }, [e]), /* @__PURE__ */ n.createElement(
6760
6761
  Ae,
6761
6762
  {
6762
- visible: w,
6763
+ visible: x,
6763
6764
  maxWidth: 900,
6764
6765
  distance: 18,
6765
6766
  placement: "bottom",
6766
- className: I("ui-date-picker-input", i.popover),
6767
- onClickOutside: f,
6768
- ...s
6767
+ className: I("ui-date-picker-input", l.popover),
6768
+ onClickOutside: y,
6769
+ ...u
6769
6770
  },
6770
- r ? ht(r, { onClick: b }) : /* @__PURE__ */ n.createElement(
6771
+ i ? ht(i, { onClick: h }) : /* @__PURE__ */ n.createElement(
6771
6772
  _a,
6772
6773
  {
6773
6774
  readOnly: !0,
6774
6775
  size: "medium",
6775
- value: e ? Rc(e, o) : "",
6776
- className: i == null ? void 0 : i.input,
6777
- onClick: b
6776
+ value: e ? Gc(e, o) : "",
6777
+ placeholder: a,
6778
+ className: l == null ? void 0 : l.input,
6779
+ onClick: h
6778
6780
  }
6779
6781
  ),
6780
- /* @__PURE__ */ n.createElement(Ae.Content, { className: "pr-1" }, w && /* @__PURE__ */ n.createElement(
6782
+ /* @__PURE__ */ n.createElement(Ae.Content, { className: "pr-1" }, x && /* @__PURE__ */ n.createElement(
6781
6783
  lr,
6782
6784
  {
6783
6785
  variant: t,
6784
- getDayContent: u,
6786
+ getDayContent: d,
6785
6787
  value: e,
6786
- components: l,
6787
- onChange: h,
6788
- onSubmitDateRange: v,
6789
- ...d
6788
+ components: s,
6789
+ onChange: v,
6790
+ onSubmitDateRange: f,
6791
+ ...m
6790
6792
  }
6791
6793
  ))
6792
6794
  );
6793
6795
  };
6794
- Gc.propTypes = {
6796
+ Dc.propTypes = {
6795
6797
  ...lr.propTypes,
6796
6798
  dateFormat: c.string,
6797
6799
  classNames: c.object,
6798
6800
  popoverProps: c.object,
6799
6801
  children: c.node
6800
6802
  };
6801
- const _a = An(({ className: e, ...t }, o) => /* @__PURE__ */ n.createElement("div", { ref: o, className: "relative flex bg-gray-lighter" }, /* @__PURE__ */ n.createElement("div", { className: "pointer-events-none absolute inset-0 flex items-center pl-3" }, /* @__PURE__ */ n.createElement(e1, { className: "z-10 inline-block" })), /* @__PURE__ */ n.createElement(Tt, { className: I("cursor-pointer px-8", e), placeholder: "Select Date", ...t }), /* @__PURE__ */ n.createElement("div", { className: "pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3" }, /* @__PURE__ */ n.createElement(cr, { className: "inline-block" }))));
6803
+ const _a = An(({ className: e, ...t }, o) => /* @__PURE__ */ n.createElement("div", { ref: o, className: "relative flex bg-gray-lighter" }, /* @__PURE__ */ n.createElement("div", { className: "pointer-events-none absolute inset-0 flex items-center pl-3" }, /* @__PURE__ */ n.createElement(e1, { className: "z-10 inline-block" })), /* @__PURE__ */ n.createElement(Tt, { className: I("cursor-pointer px-8", e), ...t }), /* @__PURE__ */ n.createElement("div", { className: "pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3" }, /* @__PURE__ */ n.createElement(cr, { className: "inline-block" }))));
6802
6804
  _a.propTypes = {
6803
6805
  className: c.string
6804
6806
  };
6805
- const Dc = ({ value: e, error: t }) => /* @__PURE__ */ n.createElement("span", null, t ? /* @__PURE__ */ n.createElement(Gn, { content: t }, /* @__PURE__ */ n.createElement("span", null, /* @__PURE__ */ n.createElement(r1, { className: "mr-1 text-danger" }))) : null, e), G4 = ({
6807
+ const zc = ({ value: e, error: t }) => /* @__PURE__ */ n.createElement("span", null, t ? /* @__PURE__ */ n.createElement(Gn, { content: t }, /* @__PURE__ */ n.createElement("span", null, /* @__PURE__ */ n.createElement(r1, { className: "mr-1 text-danger" }))) : null, e), D4 = ({
6806
6808
  text: e,
6807
6809
  isOpen: t = !1,
6808
6810
  showArrow: o = !0,
@@ -6829,10 +6831,10 @@ const Dc = ({ value: e, error: t }) => /* @__PURE__ */ n.createElement("span", n
6829
6831
  ),
6830
6832
  onClick: m
6831
6833
  },
6832
- /* @__PURE__ */ n.createElement("span", { className: I("border-b border-b-black font-bold text-black", i == null ? void 0 : i.textField) }, /* @__PURE__ */ n.createElement(Dc, { value: e, error: s })),
6834
+ /* @__PURE__ */ n.createElement("span", { className: I("border-b border-b-black font-bold text-black", i == null ? void 0 : i.textField) }, /* @__PURE__ */ n.createElement(zc, { value: e, error: s })),
6833
6835
  o && /* @__PURE__ */ n.createElement(cr, { size: "medium" })
6834
6836
  ), /* @__PURE__ */ n.createElement(Ae.Content, null, /* @__PURE__ */ n.createElement("div", { ref: d, className: I("p-2", i == null ? void 0 : i.children) }, l)));
6835
- }, zc = ({
6837
+ }, Hc = ({
6836
6838
  src: e,
6837
6839
  size: t = "large",
6838
6840
  onChange: o,
@@ -6880,7 +6882,7 @@ const Dc = ({ value: e, error: t }) => /* @__PURE__ */ n.createElement("span", n
6880
6882
  }
6881
6883
  ), /* @__PURE__ */ n.createElement("div", { className: "text-xs text-gray-darker" }, u != null ? u : /* @__PURE__ */ n.createElement("div", null, "Check that the image is in PNG or JPG format", l ? ` and does not exceed ${l}MB` : ""))));
6882
6884
  };
6883
- zc.propTypes = {
6885
+ Hc.propTypes = {
6884
6886
  src: c.string,
6885
6887
  size: c.oneOf(["small", "medium", "large"]),
6886
6888
  onChange: c.func.isRequired,
@@ -6891,7 +6893,7 @@ zc.propTypes = {
6891
6893
  hasDelete: c.bool,
6892
6894
  requirements: c.oneOf([c.string, c.node])
6893
6895
  };
6894
- const so = mo.PhoneNumberFormat, Ct = mo.PhoneNumberUtil.getInstance(), Hc = ({ countryCode: e = "US", className: t, children: o }) => {
6896
+ const so = mo.PhoneNumberFormat, Ct = mo.PhoneNumberUtil.getInstance(), Oc = ({ countryCode: e = "US", className: t, children: o }) => {
6895
6897
  const a = o;
6896
6898
  try {
6897
6899
  let r = Ct.parseAndKeepRawInput(a, e);
@@ -6917,22 +6919,22 @@ const so = mo.PhoneNumberFormat, Ct = mo.PhoneNumberUtil.getInstance(), Hc = ({
6917
6919
  }
6918
6920
  return /* @__PURE__ */ n.createElement("span", { className: I("ui-phone", t), "data-country-code": e }, a);
6919
6921
  };
6920
- Hc.propTypes = {
6922
+ Oc.propTypes = {
6921
6923
  countryCode: c.string,
6922
6924
  className: c.string,
6923
6925
  children: c.node.isRequired
6924
6926
  };
6925
- const Oc = Pt(), Wc = ({ locale: e = Oc, maximumFractionDigits: t = 2, isCompact: o = !1, children: a }) => {
6927
+ const Wc = Pt(), jc = ({ locale: e = Wc, maximumFractionDigits: t = 2, isCompact: o = !1, children: a }) => {
6926
6928
  const r = Yn(a, null, e, t, o);
6927
6929
  return /* @__PURE__ */ n.createElement("span", { className: "ui-number" }, r);
6928
6930
  };
6929
- Wc.propTypes = {
6931
+ jc.propTypes = {
6930
6932
  locale: c.string,
6931
6933
  maximumFractionDigits: c.number,
6932
6934
  isCompact: c.bool,
6933
6935
  children: c.node.isRequired
6934
6936
  };
6935
- const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "192", height: "192", fill: "none", viewBox: "0 0 192 192", ...e }, /* @__PURE__ */ n.createElement(
6937
+ const z4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "192", height: "192", fill: "none", viewBox: "0 0 192 192", ...e }, /* @__PURE__ */ n.createElement(
6936
6938
  "path",
6937
6939
  {
6938
6940
  fill: "#1B5EA8",
@@ -7035,7 +7037,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7035
7037
  },
7036
7038
  /* @__PURE__ */ n.createElement("stop", { stopColor: "#fff" }),
7037
7039
  /* @__PURE__ */ n.createElement("stop", { offset: "1", stopColor: "#626262" })
7038
- ))), z4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "150", height: "48", fill: "none", viewBox: "0 0 150 48", ...e }, /* @__PURE__ */ n.createElement(
7040
+ ))), H4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "150", height: "48", fill: "none", viewBox: "0 0 150 48", ...e }, /* @__PURE__ */ n.createElement(
7039
7041
  "path",
7040
7042
  {
7041
7043
  fill: "#1B5EA8",
@@ -7138,24 +7140,24 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7138
7140
  },
7139
7141
  /* @__PURE__ */ n.createElement("stop", { stopColor: "#fff" }),
7140
7142
  /* @__PURE__ */ n.createElement("stop", { offset: "1", stopColor: "#626262" })
7141
- ))), jc = {
7143
+ ))), Pc = {
7142
7144
  primary: "bg-primary",
7143
7145
  secondary: "bg-secondary",
7144
7146
  success: "bg-success",
7145
7147
  warning: "bg-warning",
7146
7148
  danger: "bg-danger",
7147
7149
  caution: "bg-caution"
7148
- }, Pc = {
7150
+ }, Zc = {
7149
7151
  small: "px-3 py-2 text-sm leading-3.5 shadow max-w-50",
7150
7152
  medium: "px-4 py-3.5 text-base leading-4 shadow max-w-100",
7151
7153
  large: "px-4.5 py-4 text-md leading-4.5 shadow max-w-xl"
7152
- }, Zc = {
7154
+ }, Xc = {
7153
7155
  duration: 3e3,
7154
7156
  position: "top-center",
7155
7157
  reverseOrder: !1
7156
7158
  }, lo = {
7157
7159
  show({ text: e, size: t = "medium", color: o = "success", className: a, canClose: r = !0, onClose: i, ...l }) {
7158
- const s = { ...Zc, ...l };
7160
+ const s = { ...Xc, ...l };
7159
7161
  r || (s.duration = Number.POSITIVE_INFINITY);
7160
7162
  const u = lo.getStyles(o, t, a, r);
7161
7163
  pr.custom(lo.container.bind(this, e, u, r ? i : null), s);
@@ -7179,7 +7181,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7179
7181
  this.show({ color: "danger", text: e, ...t });
7180
7182
  },
7181
7183
  getStyles(e, t, o) {
7182
- return I("flex text-white rounded pointer-events-auto", jc[e], Pc[t], o);
7184
+ return I("flex text-white rounded pointer-events-auto", Pc[e], Zc[t], o);
7183
7185
  },
7184
7186
  container(e, t, o, a) {
7185
7187
  const r = (i) => o(i, a);
@@ -7636,7 +7638,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7636
7638
  credits: {
7637
7639
  enabled: !1
7638
7640
  }
7639
- }, H4 = Qe({}, $a, {
7641
+ }, O4 = Qe({}, $a, {
7640
7642
  chart: {
7641
7643
  type: "line"
7642
7644
  },
@@ -7691,7 +7693,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7691
7693
  layout: "vertical",
7692
7694
  borderWidth: 0
7693
7695
  }
7694
- }), O4 = Qe({}, $a, {
7696
+ }), W4 = Qe({}, $a, {
7695
7697
  chart: {
7696
7698
  type: "pie"
7697
7699
  },
@@ -7734,7 +7736,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7734
7736
  credits: {
7735
7737
  enabled: !1
7736
7738
  }
7737
- }), W4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7739
+ }), j4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7738
7740
  "path",
7739
7741
  {
7740
7742
  d: "M12.37 9.667A5.993 5.993 0 017 13a5.993 5.993 0 01-5.368-3.333M12.37 4.333A5.993 5.993 0 007 1a5.993 5.993 0 00-5.368 3.333M5.667 7H1M4.335 5.667L5.668 7 4.335 8.333M8.334 7h4.667M9.667 8.333L8.334 7l1.333-1.333",
@@ -7742,7 +7744,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7742
7744
  strokeLinecap: "round",
7743
7745
  strokeLinejoin: "round"
7744
7746
  }
7745
- ))), j4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7747
+ ))), P4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7746
7748
  "path",
7747
7749
  {
7748
7750
  d: "M4.014 4.642H9.04M4.014 7.155h3.141M11.083 9.167V13M9.167 11.083H13M11.553 6.976v-4.22c0-.694-.562-1.256-1.257-1.256h-7.54c-.694 0-1.256.562-1.256 1.257v8.168c0 .694.562 1.256 1.257 1.256h4.22",
@@ -7750,7 +7752,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7750
7752
  strokeLinecap: "round",
7751
7753
  strokeLinejoin: "round"
7752
7754
  }
7753
- ))), P4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7755
+ ))), Z4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7754
7756
  "path",
7755
7757
  {
7756
7758
  d: "M13.065 2.356a.455.455 0 00-.456-.456H4.391c-.255 0-.456.2-.456.456v8.214c0 .25.2.451.456.451h8.213-.004a.458.458 0 00.456-.456l.01-8.209zM8.515 3.212v6.125M11.578 6.275H5.453",
@@ -7766,7 +7768,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7766
7768
  strokeLinecap: "round",
7767
7769
  strokeLinejoin: "round"
7768
7770
  }
7769
- ))), Z4 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "34", height: "24", fill: "#1F72CD", rx: "4" }), /* @__PURE__ */ n.createElement(
7771
+ ))), X4 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "34", height: "24", fill: "#1F72CD", rx: "4" }), /* @__PURE__ */ n.createElement(
7770
7772
  "path",
7771
7773
  {
7772
7774
  fill: "#fff",
@@ -7774,7 +7776,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7774
7776
  d: "M6.095 8.5l-3.18 7.247h3.807l.472-1.156h1.08l.472 1.156h4.191v-.882l.374.882h2.168l.374-.9v.9h8.718l1.06-1.126.992 1.126 4.478.01-3.191-3.613L31.1 8.5h-4.407L25.66 9.605 24.699 8.5h-9.483l-.815 1.87-.833-1.87h-3.8v.852L9.345 8.5h-3.25zm.737 1.029h1.856l2.11 4.914V9.53h2.034l1.63 3.523 1.502-3.523h2.023v5.2h-1.231l-.01-4.075-1.795 4.075H13.85l-1.805-4.075v4.075H9.512l-.48-1.166H6.437l-.479 1.165H4.601l2.231-5.199zm17.288 0h-5.007v5.197h4.93l1.588-1.722 1.53 1.722h1.601l-2.326-2.583 2.326-2.614h-1.53l-1.581 1.703-1.531-1.703zm-16.385.88l-.855 2.077H8.59l-.854-2.077zm12.615 1.146v-.95h3.123l1.363 1.518-1.423 1.526H20.35v-1.036h2.73v-1.058h-2.73z",
7775
7777
  clipRule: "evenodd"
7776
7778
  }
7777
- ))), X4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7779
+ ))), Y4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7778
7780
  "path",
7779
7781
  {
7780
7782
  d: "M9 5.25H3.75c-.825 0-1.5.675-1.5 1.5v7.5c0 .825.675 1.5 1.5 1.5h7.5c.825 0 1.5-.675 1.5-1.5V9",
@@ -7792,7 +7794,7 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7792
7794
  strokeLinecap: "round",
7793
7795
  strokeLinejoin: "round"
7794
7796
  }
7795
- ))), Y4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ n.createElement("path", { d: "M12.916 4.083h-10.5a.584.584 0 01-.583-.583V2.333c0-.322.261-.583.583-.583h10.5c.322 0 .583.261.583.583V3.5a.584.584 0 01-.583.583zM5.916 6.417h3.5M12.722 4.083v7c0 .645-.522 1.167-1.167 1.167H3.777a1.166 1.166 0 01-1.167-1.167v-7" })), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", transform: "translate(.666)", d: "M0 0h14v14H0z" }))))), Xc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7797
+ ))), J4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("g", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ n.createElement("path", { d: "M12.916 4.083h-10.5a.584.584 0 01-.583-.583V2.333c0-.322.261-.583.583-.583h10.5c.322 0 .583.261.583.583V3.5a.584.584 0 01-.583.583zM5.916 6.417h3.5M12.722 4.083v7c0 .645-.522 1.167-1.167 1.167H3.777a1.166 1.166 0 01-1.167-1.167v-7" })), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", transform: "translate(.666)", d: "M0 0h14v14H0z" }))))), Yc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7796
7798
  "path",
7797
7799
  {
7798
7800
  d: "M7 11.667A4.667 4.667 0 102.333 7v.359",
@@ -7809,8 +7811,8 @@ const D4 = (e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3
7809
7811
  strokeLinejoin: "round"
7810
7812
  }
7811
7813
  )));
7812
- Xc.tags = ["counter clockwise", "load more", "left", "revert", "undo", "rotate"];
7813
- const Yc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7814
+ Yc.tags = ["counter clockwise", "load more", "left", "revert", "undo", "rotate"];
7815
+ const Jc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7814
7816
  "path",
7815
7817
  {
7816
7818
  d: "M7 11.667A4.667 4.667 0 1111.667 7v.359",
@@ -7827,8 +7829,8 @@ const Yc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7827
7829
  strokeLinejoin: "round"
7828
7830
  }
7829
7831
  )));
7830
- Yc.tags = ["clockwise", "right", "rotate"];
7831
- const J4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7832
+ Jc.tags = ["clockwise", "right", "rotate"];
7833
+ const U4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7832
7834
  "path",
7833
7835
  {
7834
7836
  d: "M8.714 2.714L13 7l-4.286 4.286M13 7.003H1",
@@ -7837,7 +7839,7 @@ const J4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7837
7839
  strokeLinecap: "round",
7838
7840
  strokeLinejoin: "round"
7839
7841
  }
7840
- ))), U4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7842
+ ))), Q4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7841
7843
  "g",
7842
7844
  {
7843
7845
  clipPath: "url(#prefix__clip0_1467_0)",
@@ -7847,7 +7849,7 @@ const J4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7847
7849
  strokeLinejoin: "round"
7848
7850
  },
7849
7851
  /* @__PURE__ */ n.createElement("path", { d: "M5.182 2.757h6.06v6.061M11.244 2.76L2.76 11.244" })
7850
- ), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0_1467_0" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" }))))), Q4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7852
+ ), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0_1467_0" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" }))))), q4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7851
7853
  "path",
7852
7854
  {
7853
7855
  d: "M2.715 5.286L7 1l4.285 4.286M7.003 1v12",
@@ -7856,7 +7858,7 @@ const J4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7856
7858
  strokeLinecap: "round",
7857
7859
  strokeLinejoin: "round"
7858
7860
  }
7859
- ))), q4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7861
+ ))), K4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7860
7862
  "path",
7861
7863
  {
7862
7864
  d: "M11.286 8.714L7 13 2.715 8.714M6.998 13V1",
@@ -7865,7 +7867,7 @@ const J4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7865
7867
  strokeLinecap: "round",
7866
7868
  strokeLinejoin: "round"
7867
7869
  }
7868
- ))), Jc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7870
+ ))), Uc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7869
7871
  "path",
7870
7872
  {
7871
7873
  d: "M9.655 6.9a2.754 2.754 0 11-5.508 0 2.754 2.754 0 015.508 0z",
@@ -7882,8 +7884,8 @@ const J4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7882
7884
  strokeLinejoin: "round"
7883
7885
  }
7884
7886
  )));
7885
- Jc.tags = ["email"];
7886
- const Uc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7887
+ Uc.tags = ["email"];
7888
+ const Qc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7887
7889
  "path",
7888
7890
  {
7889
7891
  d: "M10.792 5.196c0 2.152-1.744 4.87-3.896 4.87S3 7.348 3 5.196v0a3.896 3.896 0 117.792 0v0zM6.833 10.062s-.55 1.941.548 2.738",
@@ -7892,8 +7894,8 @@ const Uc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7892
7894
  strokeLinejoin: "round"
7893
7895
  }
7894
7896
  )));
7895
- Uc.tags = ["child", "demographic"];
7896
- const Qc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7897
+ Qc.tags = ["child", "demographic"];
7898
+ const qc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7897
7899
  "path",
7898
7900
  {
7899
7901
  d: "M9.483 1.308a1.051 1.051 0 111.488 1.488L6.22 7.543a.613.613 0 01-.433.18H4.557V6.49a.61.61 0 01.179-.432l4.747-4.75zM8.833 7.722h1.222M3.945 10.167h6.111",
@@ -7912,8 +7914,8 @@ const Qc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7912
7914
  strokeLinejoin: "round"
7913
7915
  }
7914
7916
  )));
7915
- Qc.tags = ["cheque", "payment"];
7916
- const qc = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", fill: "none", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
7917
+ qc.tags = ["cheque", "payment"];
7918
+ const Kc = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", fill: "none", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
7917
7919
  "path",
7918
7920
  {
7919
7921
  clipRule: "evenodd",
@@ -7923,8 +7925,8 @@ const qc = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.
7923
7925
  strokeLinejoin: "round"
7924
7926
  }
7925
7927
  )));
7926
- qc.tags = ["stats", "reports", "analytics"];
7927
- const Kc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7928
+ Kc.tags = ["stats", "reports", "analytics"];
7929
+ const _c = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7928
7930
  "path",
7929
7931
  {
7930
7932
  d: "M8.518 5.498a.22.22 0 01-.217.217.204.204 0 01-.113-.035l-1.084-.65-1.31.68v-.004a.222.222 0 01-.321-.2V2H8.51l.008 3.498z",
@@ -7941,8 +7943,8 @@ const Kc = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7941
7943
  strokeLinejoin: "round"
7942
7944
  }
7943
7945
  )));
7944
- Kc.tags = ["favourite", "favorite"];
7945
- const _c = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7946
+ _c.tags = ["favourite", "favorite"];
7947
+ const $c = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7946
7948
  "path",
7947
7949
  {
7948
7950
  d: "M11.679 3.947a.428.428 0 01.321.417V9.8a.429.429 0 01-.3.408l-4.771 1.59h-.005a.461.461 0 01-.286-.005l-4.351-1.585A.435.435 0 012 9.8V4.347a.424.424 0 01.321-.422l4.56-1.185v-.004a.37.37 0 01.217 0l4.58 1.211zM6.794 5.345v6.513",
@@ -7959,8 +7961,8 @@ const _c = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7959
7961
  strokeLinejoin: "round"
7960
7962
  }
7961
7963
  )));
7962
- _c.tags = ["add-ons", "addons", "merchandise", "other", "payment"];
7963
- const $c = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7964
+ $c.tags = ["add-ons", "addons", "merchandise", "other", "payment"];
7965
+ const eu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7964
7966
  "path",
7965
7967
  {
7966
7968
  d: "M11.01 3.719H2.99c-.806 0-1.459.653-1.459 1.458v5.833c0 .806.653 1.459 1.459 1.459h8.02c.806 0 1.459-.653 1.459-1.459V5.177c0-.805-.653-1.458-1.459-1.458z",
@@ -7977,8 +7979,8 @@ const $c = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
7977
7979
  strokeLinejoin: "round"
7978
7980
  }
7979
7981
  )));
7980
- $c.tags = ["back office", "work", "business"];
7981
- const eu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7982
+ eu.tags = ["back office", "work", "business"];
7983
+ const tu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
7982
7984
  "path",
7983
7985
  {
7984
7986
  d: "M2.119 7.82v4.032l-.007-.006c0 .683.552 1.235 1.235 1.24h7.302a1.245 1.245 0 001.235-1.247V7.807",
@@ -8001,8 +8003,8 @@ const eu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8001
8003
  strokeLinejoin: "round"
8002
8004
  }
8003
8005
  )));
8004
- eu.tags = ["birthday", "date of birth"];
8005
- const K4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8006
+ tu.tags = ["birthday", "date of birth"];
8007
+ const _4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8006
8008
  "path",
8007
8009
  {
8008
8010
  d: "M10.365 14.881h2.844a.643.643 0 00.452-1.1L8.519 8.705a.643.643 0 00-1.094.457v7.069a.643.643 0 001.092.46l1.848-1.81z",
@@ -8029,7 +8031,7 @@ const K4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
8029
8031
  strokeLinecap: "round",
8030
8032
  strokeLinejoin: "round"
8031
8033
  }
8032
- ))), tu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8034
+ ))), nu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8033
8035
  "path",
8034
8036
  {
8035
8037
  d: "M10.333 12.5H3.667C2.747 12.5 2 11.754 2 10.833V4.167c0-.92.746-1.667 1.667-1.667h6.666c.92 0 1.667.746 1.667 1.667v6.666c0 .92-.746 1.667-1.667 1.667zM4.5 1.5v2.174M9.5 1.5v2.174",
@@ -8046,7 +8048,7 @@ const K4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
8046
8048
  strokeWidth: 0.2
8047
8049
  }
8048
8050
  )));
8049
- tu.tags = ["date"];
8051
+ nu.tags = ["date"];
8050
8052
  const e1 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
8051
8053
  "path",
8052
8054
  {
@@ -8057,7 +8059,7 @@ const e1 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height:
8057
8059
  }
8058
8060
  )));
8059
8061
  e1.tags = ["date"];
8060
- const nu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8062
+ const ru = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8061
8063
  "path",
8062
8064
  {
8063
8065
  d: "M10.333 12.5H3.667C2.747 12.5 2 11.754 2 10.833V4.167c0-.92.746-1.667 1.667-1.667h6.666c.92 0 1.667.746 1.667 1.667v6.666c0 .92-.746 1.667-1.667 1.667zM4.5 1.5v2.174M9.5 1.5v2.174",
@@ -8074,8 +8076,8 @@ const nu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8074
8076
  strokeWidth: 0.2
8075
8077
  }
8076
8078
  )));
8077
- nu.tags = ["date"];
8078
- const ru = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8079
+ ru.tags = ["date"];
8080
+ const ou = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8079
8081
  "path",
8080
8082
  {
8081
8083
  d: "M10.333 12.5H3.667C2.747 12.5 2 11.754 2 10.833V4.167c0-.92.746-1.667 1.667-1.667h6.666c.92 0 1.667.746 1.667 1.667v6.666c0 .92-.746 1.667-1.667 1.667zM4.5 1.5v2.174M9.5 1.5v2.174",
@@ -8092,14 +8094,14 @@ const ru = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8092
8094
  strokeWidth: 0.2
8093
8095
  }
8094
8096
  )));
8095
- ru.tags = ["date"];
8096
- const _4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("circle", { cx: 3.5, cy: 3.5, r: 1.444, stroke: "currentColor" }), /* @__PURE__ */ n.createElement(
8097
+ ou.tags = ["date"];
8098
+ const $4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("circle", { cx: 3.5, cy: 3.5, r: 1.444, stroke: "currentColor" }), /* @__PURE__ */ n.createElement(
8097
8099
  "path",
8098
8100
  {
8099
8101
  d: "M11.945 3.5a1.444 1.444 0 11-2.89 0 1.444 1.444 0 012.89 0zM11.945 10.5a1.444 1.444 0 11-2.89 0 1.444 1.444 0 012.89 0zM4.945 10.5a1.444 1.444 0 11-2.89 0 1.444 1.444 0 012.89 0z",
8100
8102
  stroke: "currentColor"
8101
8103
  }
8102
- ))), ou = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8104
+ ))), au = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8103
8105
  "path",
8104
8106
  {
8105
8107
  d: "M1.3 5.055h11.5M5.497 7.611H3.855M10.883 11.444H3.216A1.917 1.917 0 011.3 9.528V4.417c0-1.059.858-1.917 1.916-1.917h7.667c1.059 0 1.917.858 1.917 1.917v5.11a1.917 1.917 0 01-1.917 1.917z",
@@ -8108,8 +8110,8 @@ const _4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8108
8110
  strokeLinejoin: "round"
8109
8111
  }
8110
8112
  )));
8111
- ou.tags = ["credit card", "cc"];
8112
- const au = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8113
+ au.tags = ["credit card", "cc"];
8114
+ const iu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8113
8115
  "path",
8114
8116
  {
8115
8117
  d: "M11.5 3H2a1 1 0 00-1 1v6a1 1 0 001 1h9.5a1 1 0 001-1V4a1 1 0 00-1-1z",
@@ -8118,8 +8120,8 @@ const au = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8118
8120
  strokeLinejoin: "round"
8119
8121
  }
8120
8122
  ), /* @__PURE__ */ n.createElement("path", { fill: "currentColor", d: "M1.232 4.532h11.234v1.532H1.232z" })));
8121
- au.tags = ["credit card", "cc"];
8122
- const iu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8123
+ iu.tags = ["credit card", "cc"];
8124
+ const su = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8123
8125
  "path",
8124
8126
  {
8125
8127
  d: "M2 2.031l2.494 6.86h.014a.678.678 0 00.623.424h4.764c.265 0 .504-.159.61-.41l1.433-3.981c.159-.345 0-.73-.332-.876a.604.604 0 00-.265-.066H2.776M8.965 11.318h.013c-.172-.013-.331.146-.331.319 0 .172.159.331.331.331.186 0 .332-.159.345-.331a.33.33 0 00-.318-.345M5.648 11.318h.013c-.172-.013-.332.146-.332.319 0 .172.16.331.332.331.186 0 .332-.159.345-.331a.33.33 0 00-.318-.345",
@@ -8128,8 +8130,8 @@ const iu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8128
8130
  strokeLinejoin: "round"
8129
8131
  }
8130
8132
  )));
8131
- iu.tags = ["checkout"];
8132
- const su = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8133
+ su.tags = ["checkout"];
8134
+ const lu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8133
8135
  "path",
8134
8136
  {
8135
8137
  d: "M2.798 4.6h-.006a.194.194 0 01.198.197c0 .107-.091.198-.203.198a.203.203 0 01-.203-.203.195.195 0 01.198-.203s0 0 0 0M9.6 7.4h-.005a.194.194 0 01.197.197.203.203 0 01-.405-.005.195.195 0 01.197-.203",
@@ -8154,8 +8156,8 @@ const su = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8154
8156
  strokeLinejoin: "round"
8155
8157
  }
8156
8158
  )));
8157
- su.tags = ["payment"];
8158
- const lu = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
8159
+ lu.tags = ["payment"];
8160
+ const cu = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
8159
8161
  "path",
8160
8162
  {
8161
8163
  d: "M2 4.638l.983.983L5.603 3M2 10.638l.983.983L5.603 9M7.57 4h3.93M7.57 10h3.93",
@@ -8164,8 +8166,8 @@ const lu = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height:
8164
8166
  strokeLinejoin: "round"
8165
8167
  }
8166
8168
  )));
8167
- lu.tags = ["reserved"];
8168
- const cu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8169
+ cu.tags = ["reserved"];
8170
+ const uu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8169
8171
  "path",
8170
8172
  {
8171
8173
  d: "M4.556 1.5h4.888A3.055 3.055 0 0112.5 4.556v4.888A3.055 3.055 0 019.444 12.5H4.556A3.055 3.055 0 011.5 9.444V4.556A3.056 3.056 0 014.556 1.5v0zM6.541 8.375L5.166 7M8.833 6.083L6.54 8.375",
@@ -8174,12 +8176,12 @@ const cu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8174
8176
  strokeLinejoin: "round"
8175
8177
  }
8176
8178
  )));
8177
- cu.tags = ["checkbox", "forms", "questionnaire"];
8178
- const uu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M12.75 4.25l-5.5 5.5-5.5-5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
8179
- uu.tags = ["arrow"];
8180
- const du = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M1.75 9.75l5.5-5.5 5.5 5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
8179
+ uu.tags = ["checkbox", "forms", "questionnaire"];
8180
+ const du = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M12.75 4.25l-5.5 5.5-5.5-5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
8181
8181
  du.tags = ["arrow"];
8182
- const $4 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8182
+ const mu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M1.75 9.75l5.5-5.5 5.5 5.5", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
8183
+ mu.tags = ["arrow"];
8184
+ const e3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8183
8185
  "svg",
8184
8186
  {
8185
8187
  xmlns: "http://www.w3.org/2000/svg",
@@ -8201,7 +8203,7 @@ const $4 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8201
8203
  d: "M44.863 8.965l7.071 7.07M51.934 8.964l-7.07 7.071"
8202
8204
  }
8203
8205
  )
8204
- )), e3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8206
+ )), t3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8205
8207
  "path",
8206
8208
  {
8207
8209
  d: "M14.368 3.633c2.958 2.958 2.958 7.776 0 10.734s-7.776 2.958-10.734 0C.675 11.41.675 6.591 3.634 3.633c2.958-2.958 7.691-2.958 10.734 0z",
@@ -8219,7 +8221,7 @@ const $4 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8219
8221
  strokeLinecap: "round",
8220
8222
  strokeLinejoin: "round"
8221
8223
  }
8222
- ))), t3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8224
+ ))), n3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8223
8225
  "svg",
8224
8226
  {
8225
8227
  xmlns: "http://www.w3.org/2000/svg",
@@ -8233,7 +8235,7 @@ const $4 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8233
8235
  /* @__PURE__ */ n.createElement("path", { stroke: "#BDC0C6", strokeDasharray: "4 4", d: "M0.5 12.5L95.5 12.5" }),
8234
8236
  /* @__PURE__ */ n.createElement("circle", { cx: "48", cy: "12", r: "11.5", fill: "#fff", stroke: "currentColor" }),
8235
8237
  /* @__PURE__ */ n.createElement("path", { stroke: "#1352C6", strokeLinecap: "round", strokeLinejoin: "round", d: "M48.5 7.5v10M53.5 12.5h-10" })
8236
- )), mu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M10 5L5.875 9 4 7.182", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement(
8238
+ )), pu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M10 5L5.875 9 4 7.182", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement(
8237
8239
  "path",
8238
8240
  {
8239
8241
  d: "M7 12.9A5.9 5.9 0 107 1.1a5.9 5.9 0 000 11.8z",
@@ -8242,8 +8244,8 @@ const $4 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8242
8244
  strokeLinejoin: "round"
8243
8245
  }
8244
8246
  )));
8245
- mu.tags = ["tick", "correct"];
8246
- const pu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8247
+ pu.tags = ["tick", "correct"];
8248
+ const gu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8247
8249
  "path",
8248
8250
  {
8249
8251
  d: "M6.9 12.8A5.9 5.9 0 106.9 1a5.9 5.9 0 000 11.8zM4.54 9.26l4.72-4.72M9.26 9.26L4.54 4.54",
@@ -8252,8 +8254,8 @@ const pu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8252
8254
  strokeLinejoin: "round"
8253
8255
  }
8254
8256
  )));
8255
- pu.tags = ["x", "close"];
8256
- const gu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8257
+ gu.tags = ["x", "close"];
8258
+ const hu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8257
8259
  "path",
8258
8260
  {
8259
8261
  d: "M7.001 3.067v.983M11.172 2.828a5.9 5.9 0 11-8.343 8.344 5.9 5.9 0 018.343-8.344M7.001 10.934V9.95",
@@ -8270,8 +8272,8 @@ const gu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8270
8272
  strokeLinejoin: "round"
8271
8273
  }
8272
8274
  )));
8273
- gu.tags = ["money", "currency"];
8274
- const n3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8275
+ hu.tags = ["money", "currency"];
8276
+ const r3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8275
8277
  "path",
8276
8278
  {
8277
8279
  d: "M6.9 13c3.258 0 5.9-2.686 5.9-6s-2.642-6-5.9-6C3.642 1 1 3.686 1 7s2.642 6 5.9 6z",
@@ -8285,7 +8287,7 @@ const n3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8285
8287
  d: "M8.375 7c0-.828-.66-1.5-1.475-1.5-.815 0-1.475.672-1.475 1.5s.66 1.5 1.475 1.5c.815 0 1.475-.672 1.475-1.5z",
8286
8288
  fill: "currentColor"
8287
8289
  }
8288
- ))), r3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8290
+ ))), o3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8289
8291
  "path",
8290
8292
  {
8291
8293
  d: "M6.882 7.125c-.334.367-1.352 1.39-2.296 1.39v0h-.004a1.515 1.515 0 11.001-3.03h.003v0c.944 0 1.962 1.023 2.297 1.39L7 7l-.119.125v0zM7.12 7.125c.334.367 1.352 1.39 2.296 1.39v0h.003a1.515 1.515 0 100-3.03h-.004v0c-.944 0-1.962 1.023-2.296 1.39L7.001 7l.119.125v0z",
@@ -8301,7 +8303,7 @@ const n3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8301
8303
  strokeLinecap: "round",
8302
8304
  strokeLinejoin: "round"
8303
8305
  }
8304
- ))), o3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8306
+ ))), a3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8305
8307
  "path",
8306
8308
  {
8307
8309
  d: "M7 12.9A5.9 5.9 0 117 1.1a5.9 5.9 0 110 11.8z",
@@ -8309,7 +8311,7 @@ const n3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8309
8311
  strokeLinecap: "round",
8310
8312
  strokeLinejoin: "round"
8311
8313
  }
8312
- ), /* @__PURE__ */ n.createElement("path", { d: "M7 10.278V7h-.655", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("circle", { cx: 6.836, cy: 4.542, r: 0.656, fill: "currentColor" }))), a3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8314
+ ), /* @__PURE__ */ n.createElement("path", { d: "M7 10.278V7h-.655", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("circle", { cx: 6.836, cy: 4.542, r: 0.656, fill: "currentColor" }))), i3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8313
8315
  "path",
8314
8316
  {
8315
8317
  d: "M10.278 8.22V7M8.312 8.22V7M5.96 6.073a1.311 1.311 0 11-1.853 1.855A1.311 1.311 0 015.96 6.073",
@@ -8325,7 +8327,7 @@ const n3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8325
8327
  strokeLinecap: "round",
8326
8328
  strokeLinejoin: "round"
8327
8329
  }
8328
- ))), hu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 13", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8330
+ ))), fu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 13", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8329
8331
  "path",
8330
8332
  {
8331
8333
  d: "M8.212 8.867V4.933M5.588 8.867V4.933M12.8 6.9A5.9 5.9 0 111 6.9a5.9 5.9 0 1111.8 0z",
@@ -8334,8 +8336,8 @@ const n3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8334
8336
  strokeLinejoin: "round"
8335
8337
  }
8336
8338
  )));
8337
- hu.tags = ["pending"];
8338
- const i3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8339
+ fu.tags = ["pending"];
8340
+ const s3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8339
8341
  "path",
8340
8342
  {
8341
8343
  d: "M7 12.9A5.9 5.9 0 107 1.1a5.9 5.9 0 000 11.8zM7 10.337V3.662M10.338 7H3.663",
@@ -8343,7 +8345,7 @@ const i3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8343
8345
  strokeLinecap: "round",
8344
8346
  strokeLinejoin: "round"
8345
8347
  }
8346
- ))), fu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8348
+ ))), vu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8347
8349
  "path",
8348
8350
  {
8349
8351
  d: "M7 12.9A5.9 5.9 0 107 1.1a5.9 5.9 0 000 11.8zM4.642 7H9.36",
@@ -8352,8 +8354,8 @@ const i3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8352
8354
  strokeLinejoin: "round"
8353
8355
  }
8354
8356
  )));
8355
- fu.tags = ["no show", "noshow"];
8356
- const vu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8357
+ vu.tags = ["no show", "noshow"];
8358
+ const bu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8357
8359
  "path",
8358
8360
  {
8359
8361
  d: "M4.429 2.714V1M7 2.714V1M9.571 2.714V1M4.429 13v-1.714M7 13v-1.714M9.571 13v-1.714M11.286 4.428H13M11.286 7H13M11.286 9.572H13M1 4.428h1.714M1 7h1.714M1 9.572h1.714M9.571 2.714H4.428c-.947 0-1.714.768-1.714 1.715v5.143c0 .946.767 1.714 1.714 1.714h5.143c.947 0 1.714-.768 1.714-1.714V4.429c0-.947-.767-1.715-1.714-1.715z",
@@ -8370,8 +8372,8 @@ const vu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8370
8372
  strokeLinejoin: "round"
8371
8373
  }
8372
8374
  )));
8373
- vu.tags = ["payment", "custom payment"];
8374
- const bu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8375
+ bu.tags = ["payment", "custom payment"];
8376
+ const wu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8375
8377
  "path",
8376
8378
  {
8377
8379
  d: "M8.874 1.957h1.957c.264 0 .478.214.478.478v9.087a.478.478 0 01-.478.478H3.178a.478.478 0 01-.478-.478V2.435c0-.264.214-.478.478-.478h1.957",
@@ -8388,8 +8390,8 @@ const bu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8388
8390
  strokeLinejoin: "round"
8389
8391
  }
8390
8392
  )));
8391
- bu.tags = ["resources"];
8392
- const s3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8393
+ wu.tags = ["resources"];
8394
+ const l3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8393
8395
  "path",
8394
8396
  {
8395
8397
  d: "M4.743 1.55a5.898 5.898 0 114.515 10.9 5.898 5.898 0 01-4.515-10.9",
@@ -8397,7 +8399,7 @@ const s3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8397
8399
  strokeLinecap: "round",
8398
8400
  strokeLinejoin: "round"
8399
8401
  }
8400
- ), /* @__PURE__ */ n.createElement("path", { d: "M6.815 4.368v3.05l2.397 1.46", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }))), l3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8402
+ ), /* @__PURE__ */ n.createElement("path", { d: "M6.815 4.368v3.05l2.397 1.46", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }))), c3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8401
8403
  "path",
8402
8404
  {
8403
8405
  d: "M7.666 1.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11v0z",
@@ -8413,7 +8415,7 @@ const s3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8413
8415
  strokeLinecap: "round",
8414
8416
  strokeLinejoin: "round"
8415
8417
  }
8416
- ))), wu = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, viewBox: "0 0 14 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8418
+ ))), xu = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, viewBox: "0 0 14 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8417
8419
  "path",
8418
8420
  {
8419
8421
  d: "M6.9 1C5.73309 1 4.59239 1.34603 3.62214 1.99433C2.65189 2.64263 1.89567 3.56408 1.44911 4.64217C1.00256 5.72025 0.885717 6.90654 1.11337 8.05103C1.34102 9.19552 1.90294 10.2468 2.72807 11.0719C3.5532 11.8971 4.60448 12.459 5.74897 12.6866C6.89346 12.9143 8.07975 12.7974 9.15783 12.3509C10.2359 11.9043 11.1574 11.1481 11.8057 10.1779C12.454 9.20761 12.8 8.06691 12.8 6.9",
@@ -8422,8 +8424,8 @@ const s3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8422
8424
  strokeLinejoin: "round"
8423
8425
  }
8424
8426
  ), /* @__PURE__ */ n.createElement("path", { d: "M10.1768 3.62231H12.799", stroke: "#222324", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("path", { d: "M10.1768 1.65576H12.799", stroke: "#222324", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("path", { d: "M9.52324 7.22787H6.57324V3.62231", stroke: "#222324", strokeLinecap: "round", strokeLinejoin: "round" })));
8425
- wu.tags = ["clock", "manual", "watch", "fly", "on the fly"];
8426
- const c3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8427
+ xu.tags = ["clock", "manual", "watch", "fly", "on the fly"];
8428
+ const u3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8427
8429
  "path",
8428
8430
  {
8429
8431
  d: "M11.881 10.107H8.334l-2.796 2.229h-.009a.23.23 0 01-.3-.034.227.227 0 01-.05-.141v-2.07H3.5a.839.839 0 01-.835-.844v0-5.843a.827.827 0 01.827-.843h8.347-.009a.825.825 0 01.835.826V9.23c0 .459-.376.835-.835.835h-.008l.058.042zM5.204 5.103h5.008M5.204 7.607h3.339",
@@ -8431,7 +8433,7 @@ const c3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8431
8433
  strokeLinecap: "round",
8432
8434
  strokeLinejoin: "round"
8433
8435
  }
8434
- ))), u3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8436
+ ))), d3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8435
8437
  "path",
8436
8438
  {
8437
8439
  d: "M8.852 10.448h2.037A1.11 1.11 0 0012 9.338V3.41a1.11 1.11 0 00-1.111-1.11H3.11A1.11 1.11 0 002 3.41v5.926a1.11 1.11 0 001.111 1.111h2.037L7 12.3l1.852-1.852z",
@@ -8439,7 +8441,7 @@ const c3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8439
8441
  strokeLinecap: "round",
8440
8442
  strokeLinejoin: "round"
8441
8443
  }
8442
- ))), xu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8444
+ ))), Eu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8443
8445
  "path",
8444
8446
  {
8445
8447
  d: "M6.9 12.8A5.9 5.9 0 106.9 1a5.9 5.9 0 000 11.8z",
@@ -8464,8 +8466,8 @@ const c3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8464
8466
  strokeLinejoin: "round"
8465
8467
  }
8466
8468
  )));
8467
- xu.tags = ["guide"];
8468
- const d3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8469
+ Eu.tags = ["guide"];
8470
+ const m3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8469
8471
  "svg",
8470
8472
  {
8471
8473
  xmlns: "http://www.w3.org/2000/svg",
@@ -8486,7 +8488,7 @@ const d3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8486
8488
  ),
8487
8489
  /* @__PURE__ */ n.createElement("rect", { width: "55.151", height: "41.758", x: "24", y: "26", fill: "#222324", rx: "4" }),
8488
8490
  /* @__PURE__ */ n.createElement("rect", { width: "50.424", height: "37.03", x: "26.363", y: "28.363", fill: "#28A0E2", rx: "3" })
8489
- )), Eu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8491
+ )), Iu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8490
8492
  "path",
8491
8493
  {
8492
8494
  d: "M3.014 9.333A1.264 1.264 0 011.75 8.07V3.014c0-.698.566-1.264 1.264-1.264H8.07c.697 0 1.263.566 1.263 1.264",
@@ -8503,8 +8505,8 @@ const d3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8503
8505
  strokeLinejoin: "round"
8504
8506
  }
8505
8507
  )));
8506
- Eu.tags = ["duplicate"];
8507
- const m3 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "10", height: "8", fill: "none", viewBox: "0 0 10 8", ...e }, /* @__PURE__ */ n.createElement(
8508
+ Iu.tags = ["duplicate"];
8509
+ const p3 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "10", height: "8", fill: "none", viewBox: "0 0 10 8", ...e }, /* @__PURE__ */ n.createElement(
8508
8510
  "path",
8509
8511
  {
8510
8512
  stroke: "currentColor",
@@ -8512,9 +8514,9 @@ const m3 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.
8512
8514
  strokeLinejoin: "round",
8513
8515
  d: "M1.291 1.236l2.94 2.94v0a.272.272 0 010 .385L1.29 7.5M6.041 1.236l2.94 2.94v0a.272.272 0 010 .385L6.04 7.5"
8514
8516
  }
8515
- ))), Iu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 24 21", width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("g", { stroke: "currentColor", strokeWidth: 1.286, strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ n.createElement("path", { d: "M20.844 11.35l-.906-5.435a2.085 2.085 0 00-1.714-1.714l-5.435-.906a2.085 2.085 0 00-1.816.582l-8.024 8.024a2.085 2.085 0 000 2.95l6.34 6.34a2.085 2.085 0 002.95 0l8.023-8.024a2.083 2.083 0 00.582-1.817v0z" }), /* @__PURE__ */ n.createElement("path", { clipRule: "evenodd", d: "M14.743 11.271a1.877 1.877 0 110-3.753 1.877 1.877 0 010 3.753z" }))));
8516
- Iu.tags = ["voucher", "tags"];
8517
- const yu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 20 15", width: 20, height: 15, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8517
+ ))), yu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 24 21", width: 24, height: 24, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("g", { stroke: "currentColor", strokeWidth: 1.286, strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ n.createElement("path", { d: "M20.844 11.35l-.906-5.435a2.085 2.085 0 00-1.714-1.714l-5.435-.906a2.085 2.085 0 00-1.816.582l-8.024 8.024a2.085 2.085 0 000 2.95l6.34 6.34a2.085 2.085 0 002.95 0l8.023-8.024a2.083 2.083 0 00.582-1.817v0z" }), /* @__PURE__ */ n.createElement("path", { clipRule: "evenodd", d: "M14.743 11.271a1.877 1.877 0 110-3.753 1.877 1.877 0 010 3.753z" }))));
8518
+ yu.tags = ["voucher", "tags"];
8519
+ const Cu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 20 15", width: 20, height: 15, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8518
8520
  "path",
8519
8521
  {
8520
8522
  d: "M14.9804 8.95671C16.0791 8.95671 16.9697 8.0661 16.9697 6.96748C16.9697 5.86886 16.0791 4.97825 14.9804 4.97825C13.8818 4.97825 12.9912 5.86886 12.9912 6.96748C12.9912 8.0661 13.8818 8.95671 14.9804 8.95671Z",
@@ -8547,8 +8549,8 @@ const yu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 20 15
8547
8549
  strokeLinejoin: "round"
8548
8550
  }
8549
8551
  )));
8550
- yu.tags = ["user"];
8551
- const p3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8552
+ Cu.tags = ["user"];
8553
+ const g3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8552
8554
  "path",
8553
8555
  {
8554
8556
  d: "M2.867 11.07c0 .488.418.887.95.887h10.92c.522 0 .95-.399.95-.887V6.28a.47.47 0 00-.485-.443.474.474 0 00-.313.107L11.869 8.4 9.381 5.687a.504.504 0 00-.674-.054.249.249 0 00-.057.045L6.162 8.383l-2.516-2.35v-.001a.503.503 0 00-.674-.01.403.403 0 00-.143.311l.038 4.737z",
@@ -8557,7 +8559,7 @@ const p3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
8557
8559
  strokeLinecap: "round",
8558
8560
  strokeLinejoin: "round"
8559
8561
  }
8560
- ))), g3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8562
+ ))), h3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8561
8563
  "path",
8562
8564
  {
8563
8565
  d: "M8.08 4.525L6.9 8.065M11.846 10.117v0a8.262 8.262 0 00-9.892 0",
@@ -8573,7 +8575,7 @@ const p3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
8573
8575
  strokeLinecap: "round",
8574
8576
  strokeLinejoin: "round"
8575
8577
  }
8576
- ))), Cu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M12.25 10.375v2.25H10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement(
8578
+ ))), ku = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M12.25 10.375v2.25H10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement(
8577
8579
  "path",
8578
8580
  {
8579
8581
  d: "M12.25 12.625L9.725 10.1a1.126 1.126 0 00-1.118-.282l-2.857.763a1.125 1.125 0 01-1.086-.291L1.75 7.373M2.574 5.87A3.75 3.75 0 118.5 8.127",
@@ -8590,8 +8592,8 @@ const p3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
8590
8592
  strokeLinejoin: "round"
8591
8593
  }
8592
8594
  )));
8593
- Cu.tags = ["money", "refund", "return payment", "dollar"];
8594
- const h3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8595
+ ku.tags = ["money", "refund", "return payment", "dollar"];
8596
+ const f3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8595
8597
  "path",
8596
8598
  {
8597
8599
  d: "M1.008 6.006v5.863M12 11.136a2.2 2.2 0 00-2.199-2.198H7.053a2.2 2.2 0 00-2.198-2.199H1v4.397h11zM4.855 8.938h2.749M10.906 1.625V1M11.843 1.625h-1.275a.839.839 0 00-.843.837.84.84 0 00.525.775l1.29.513-.007-.006a.834.834 0 01.463 1.087.852.852 0 01-.781.525H9.937M10.906 6v-.625",
@@ -8599,7 +8601,7 @@ const h3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8599
8601
  strokeLinecap: "round",
8600
8602
  strokeLinejoin: "round"
8601
8603
  }
8602
- ))), ku = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement(
8604
+ ))), Au = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement(
8603
8605
  "path",
8604
8606
  {
8605
8607
  fill: "#0079BE",
@@ -8608,8 +8610,8 @@ const h3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8608
8610
  clipRule: "evenodd"
8609
8611
  }
8610
8612
  )));
8611
- ku.tags = ["cc", "credit card"];
8612
- const Au = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement("path", { fill: "#FD6020", d: "M14 23l19-5.75V20a3 3 0 01-3 3H14z" }), /* @__PURE__ */ n.createElement(
8613
+ Au.tags = ["cc", "credit card"];
8614
+ const Lu = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement("path", { fill: "#FD6020", d: "M14 23l19-5.75V20a3 3 0 01-3 3H14z" }), /* @__PURE__ */ n.createElement(
8613
8615
  "path",
8614
8616
  {
8615
8617
  fill: "#000",
@@ -8626,8 +8628,8 @@ const Au = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.
8626
8628
  clipRule: "evenodd"
8627
8629
  }
8628
8630
  )));
8629
- Au.tags = ["cc", "credit card"];
8630
- const Lu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 13", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8631
+ Lu.tags = ["cc", "credit card"];
8632
+ const Mu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 13", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8631
8633
  "path",
8632
8634
  {
8633
8635
  d: "M7 12A5 5 0 107 2a5 5 0 000 10zM3.465 10.535l7.07-7.07",
@@ -8636,8 +8638,8 @@ const Lu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 13
8636
8638
  strokeLinejoin: "round"
8637
8639
  }
8638
8640
  )));
8639
- Lu.tags = ["stop"];
8640
- const f3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8641
+ Mu.tags = ["stop"];
8642
+ const v3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8641
8643
  "path",
8642
8644
  {
8643
8645
  d: "M13.253 6.614L8.024 1.386a.545.545 0 00-.771 0L2.024 6.614a.545.545 0 000 .772l5.229 5.228a.546.546 0 00.771 0l5.229-5.228a.545.545 0 000-.772zM7.651 4.286v3.06",
@@ -8653,7 +8655,7 @@ const f3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8653
8655
  strokeLinecap: "round",
8654
8656
  strokeLinejoin: "round"
8655
8657
  }
8656
- ))), Mu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 19, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8658
+ ))), Nu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 19, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8657
8659
  "path",
8658
8660
  {
8659
8661
  d: "M12.166 3.5l-7.333 7.333L1.5 7.5M18.167 3.5l-7.333 7.333-1.667-1.666",
@@ -8662,8 +8664,8 @@ const f3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8662
8664
  strokeLinejoin: "round"
8663
8665
  }
8664
8666
  )));
8665
- Mu.tags = ["doublecheck", "forms", "questionnaire"];
8666
- const Nu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8667
+ Nu.tags = ["doublecheck", "forms", "questionnaire"];
8668
+ const Bu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8667
8669
  "path",
8668
8670
  {
8669
8671
  d: "M7.04 9.36V1.1M10.58 5.82L7.04 9.36 3.5 5.82M3.5 12.9h7.08",
@@ -8672,7 +8674,7 @@ const Nu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8672
8674
  strokeLinejoin: "round"
8673
8675
  }
8674
8676
  )));
8675
- Nu.tags = ["arrow"];
8677
+ Bu.tags = ["arrow"];
8676
8678
  const cr = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", fill: "none", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
8677
8679
  "path",
8678
8680
  {
@@ -8683,7 +8685,7 @@ const cr = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.
8683
8685
  }
8684
8686
  )));
8685
8687
  cr.tags = ["collapse", "fold"];
8686
- const Bu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M8.358 6.66L7 8.02 5.643 6.66", fill: "currentColor" }), /* @__PURE__ */ n.createElement(
8688
+ const Fu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M8.358 6.66L7 8.02 5.643 6.66", fill: "currentColor" }), /* @__PURE__ */ n.createElement(
8687
8689
  "path",
8688
8690
  {
8689
8691
  d: "M8.358 6.66L7 8.02 5.643 6.66h2.715z",
@@ -8700,8 +8702,8 @@ const Bu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8700
8702
  strokeLinejoin: "round"
8701
8703
  }
8702
8704
  )));
8703
- Bu.tags = ["dropdown", "forms", "questionnaire"];
8704
- const Fu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8705
+ Fu.tags = ["dropdown", "forms", "questionnaire"];
8706
+ const Su = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8705
8707
  "path",
8706
8708
  {
8707
8709
  d: "M3.111 9.222h-.309A.803.803 0 012 8.42V2.802C2 2.36 2.36 2 2.802 2H8.42c.444 0 .803.36.803.802v.31",
@@ -8727,8 +8729,8 @@ const Fu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8727
8729
  strokeLinejoin: "round"
8728
8730
  }
8729
8731
  )));
8730
- Fu.tags = ["copy"];
8731
- const Su = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8732
+ Su.tags = ["copy"];
8733
+ const Tu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8732
8734
  "path",
8733
8735
  {
8734
8736
  stroke: "currentColor",
@@ -8765,8 +8767,8 @@ const Su = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8765
8767
  d: "M9.289 4.663L5.27 8.68l.973.972 4.017-4.017-.972-.972z"
8766
8768
  }
8767
8769
  )));
8768
- Su.tags = ["weight", "exercise", "gym"];
8769
- const Tu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8770
+ Tu.tags = ["weight", "exercise", "gym"];
8771
+ const Vu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8770
8772
  "path",
8771
8773
  {
8772
8774
  d: "M3.398 3.044C3.734 4.983 4.915 6.311 7 6.984c2.086-.673 3.266-2.001 3.602-3.94A.906.906 0 009.702 2H4.298a.906.906 0 00-.9 1.044v0zM4.299 11.969a.905.905 0 01-.9-1.044C3.733 8.987 4.914 7.66 7 6.985c2.086.674 3.266 2.002 3.602 3.94a.905.905 0 01-.9 1.044H4.298z",
@@ -8775,8 +8777,8 @@ const Tu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8775
8777
  strokeLinejoin: "round"
8776
8778
  }
8777
8779
  )));
8778
- Tu.tags = ["hour glass", "time"];
8779
- const Vu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8780
+ Vu.tags = ["hour glass", "time"];
8781
+ const Ru = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8780
8782
  "path",
8781
8783
  {
8782
8784
  d: "M10.268 5.813l-2.081-2.08M3.849 12H2v-1.849c0-.15.06-.295.167-.402l7.582-7.582a.568.568 0 01.804 0l1.28 1.28a.568.568 0 010 .804L4.25 11.833a.567.567 0 01-.402.167v0z",
@@ -8785,8 +8787,8 @@ const Vu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8785
8787
  strokeLinejoin: "round"
8786
8788
  }
8787
8789
  )));
8788
- Vu.tags = ["pencil"];
8789
- const Ru = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8790
+ Ru.tags = ["pencil"];
8791
+ const Gu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8790
8792
  "path",
8791
8793
  {
8792
8794
  d: "M11.214 6.88a.987.987 0 111.396 1.395l-3.312 3.31a.573.573 0 01-.405.168H7.737v-1.156c0-.152.06-.298.168-.406l3.31-3.312v0zM4.295 4.868h4.59M4.295 7.163h2.868M11.879 9.01l-1.4-1.4M11.179 4.868v-1.72c0-.635-.514-1.148-1.148-1.148H3.147C2.513 2 2 2.513 2 3.147v7.458c0 .634.513 1.147 1.147 1.147h2.295",
@@ -8795,16 +8797,16 @@ const Ru = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8795
8797
  strokeLinejoin: "round"
8796
8798
  }
8797
8799
  )));
8798
- Ru.tags = ["pencil"];
8799
- const Gu = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
8800
+ Gu.tags = ["pencil"];
8801
+ const Du = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
8800
8802
  "path",
8801
8803
  {
8802
8804
  d: "M13.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM3.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0zM8.5 7a1.5 1.5 0 10-3 0 1.5 1.5 0 003 0z",
8803
8805
  fill: "#222324"
8804
8806
  }
8805
8807
  )));
8806
- Gu.tags = ["three", "dots"];
8807
- const Du = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8808
+ Du.tags = ["three", "dots"];
8809
+ const zu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8808
8810
  "path",
8809
8811
  {
8810
8812
  d: "M11.8 8.4V3.767M7.617 10.946H2.8a1.8 1.8 0 01-1.8-1.8v-5.38",
@@ -8829,8 +8831,8 @@ const Du = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8829
8831
  strokeLinejoin: "round"
8830
8832
  }
8831
8833
  )));
8832
- Du.tags = ["opt-in", "optin", "forms", "questionnaire"];
8833
- const v3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8834
+ zu.tags = ["opt-in", "optin", "forms", "questionnaire"];
8835
+ const b3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8834
8836
  "path",
8835
8837
  {
8836
8838
  d: "M2.295 3h9.41c.577 0 1.045.468 1.045 1.046v6.795c0 .578-.468 1.045-1.045 1.045h-9.41a1.045 1.045 0 01-1.045-1.045V4.046C1.25 3.468 1.718 3 2.295 3v0z",
@@ -8846,7 +8848,7 @@ const v3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8846
8848
  strokeLinecap: "round",
8847
8849
  strokeLinejoin: "round"
8848
8850
  }
8849
- ))), zu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8851
+ ))), Hu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8850
8852
  "path",
8851
8853
  {
8852
8854
  d: "M15.441 4.094v5.292M16.2 13.928h-4.543M14.685 12.414l1.515 1.514-1.514 1.514M8.628 12.414H4.085A1.514 1.514 0 012.571 10.9V4.094",
@@ -8865,8 +8867,8 @@ const v3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
8865
8867
  strokeLinejoin: "round"
8866
8868
  }
8867
8869
  )));
8868
- zu.tags = ["email", "resend", "confirmation", "waiver", "receipt", "reciept"];
8869
- const Hu = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
8870
+ Hu.tags = ["email", "resend", "confirmation", "waiver", "receipt", "reciept"];
8871
+ const Ou = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
8870
8872
  "rect",
8871
8873
  {
8872
8874
  x: 2,
@@ -8891,8 +8893,8 @@ const Hu = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height:
8891
8893
  strokeLinejoin: "round"
8892
8894
  }
8893
8895
  ), /* @__PURE__ */ n.createElement("path", { d: "M7.667 4h4M7.667 10h4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
8894
- Hu.tags = ["available"];
8895
- const b3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8896
+ Ou.tags = ["available"];
8897
+ const w3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8896
8898
  "svg",
8897
8899
  {
8898
8900
  xmlns: "http://www.w3.org/2000/svg",
@@ -8951,7 +8953,7 @@ const b3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8951
8953
  clipRule: "evenodd"
8952
8954
  }
8953
8955
  )
8954
- )), Ou = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 12", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8956
+ )), Wu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 12", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8955
8957
  "path",
8956
8958
  {
8957
8959
  d: "M7.834 9.98a1.557 1.557 0 112.55-1.67.39.39 0 00.64.133l1.215-1.215a.779.779 0 000-1.101L10.993 4.88a1.557 1.557 0 10-1.91-1.907L7.836 1.728a.779.779 0 00-1.101 0L5.607 2.856a.39.39 0 00.06.6A1.557 1.557 0 113.51 5.614a.39.39 0 00-.6-.06L1.777 6.677a.779.779 0 000 1.1l4.404 4.405a.779.779 0 001.101 0L8.5 10.966a.39.39 0 00-.134-.638 1.54 1.54 0 01-.531-.348z",
@@ -8960,10 +8962,10 @@ const b3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
8960
8962
  strokeLinejoin: "round"
8961
8963
  }
8962
8964
  )));
8963
- Ou.tags = ["inventory"];
8964
- const Wu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("g", { clipPath: "url(#prefix__clip0_196_67)", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ n.createElement("path", { d: "M5.14 12.48h-.006c3.017 1.217 6.455-.248 7.68-3.272A5.9 5.9 0 009.55 1.53a5.915 5.915 0 00-7.695 7.687" }), /* @__PURE__ */ n.createElement("path", { d: "M8.987 8.272l.003-2.903-2.903.003M8.989 5.37l-5.81 5.81" })), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0_196_67" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" })))));
8965
- Wu.tags = ["arrow"];
8966
- const w3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8965
+ Wu.tags = ["inventory"];
8966
+ const ju = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("g", { clipPath: "url(#prefix__clip0_196_67)", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }, /* @__PURE__ */ n.createElement("path", { d: "M5.14 12.48h-.006c3.017 1.217 6.455-.248 7.68-3.272A5.9 5.9 0 009.55 1.53a5.915 5.915 0 00-7.695 7.687" }), /* @__PURE__ */ n.createElement("path", { d: "M8.987 8.272l.003-2.903-2.903.003M8.989 5.37l-5.81 5.81" })), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0_196_67" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" })))));
8967
+ ju.tags = ["arrow"];
8968
+ const x3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8967
8969
  "path",
8968
8970
  {
8969
8971
  d: "M8.188 6.37l-.282-.797L5.515 2.38l.43-.106 4.122 3.562 2.426-.694c.285-.074.609-.09.856-.088a6.998 6.998 0 00-12.941.598 6.962 6.962 0 00-.329 3.394l5.812-2.019 2.297-.655zM13.604 5.683a3.74 3.74 0 01-.836.419l-2.432.693-1.622 5.206-.421.137.342-3.976-.191-.826-2.279.65L.144 9.403a6.998 6.998 0 1013.46-3.72z",
@@ -8975,7 +8977,7 @@ const w3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
8975
8977
  d: "M8.444 7.337l.192.825-.343 3.975.42-.136 1.623-5.205 2.431-.694c.31-.1.624-.282.837-.419a7.071 7.071 0 00-.255-.63 3.556 3.556 0 00-.856.088l-2.426.695-4.123-3.564-.43.107 2.391 3.194.283.797-2.297.657L.08 9.044c.018.12.039.24.063.36l6.023-1.417 2.278-.65z",
8976
8978
  fill: "#FBC108"
8977
8979
  }
8978
- ))), ju = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8980
+ ))), Pu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8979
8981
  "path",
8980
8982
  {
8981
8983
  d: "M8.393 5.6a1.97 1.97 0 010 2.782 1.97 1.97 0 01-2.783 0 1.967 1.967 0 112.783-2.783z",
@@ -8992,16 +8994,16 @@ const w3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
8992
8994
  strokeLinejoin: "round"
8993
8995
  }
8994
8996
  )));
8995
- ju.tags = ["view", "visible"];
8996
- const Pu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8997
+ Pu.tags = ["view", "visible"];
8998
+ const Zu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
8997
8999
  "path",
8998
9000
  {
8999
9001
  d: "M7.3 15.75V9.415H5.625v-2.28H7.3V5.187c0-1.531.99-2.937 3.27-2.937.922 0 1.605.088 1.605.088l-.054 2.13s-.696-.006-1.456-.006c-.822 0-.953.378-.953 1.007v1.666h2.475l-.108 2.28H9.712v6.335H7.3z",
9000
9002
  fill: "#000"
9001
9003
  }
9002
9004
  )));
9003
- Pu.tags = ["logo", "social media"];
9004
- const Zu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9005
+ Zu.tags = ["logo", "social media"];
9006
+ const Xu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9005
9007
  "path",
9006
9008
  {
9007
9009
  d: "M6.9 1a5.9 5.9 0 100 11.8A5.9 5.9 0 006.9 1v0z",
@@ -9018,8 +9020,8 @@ const Zu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9018
9020
  strokeLinejoin: "round"
9019
9021
  }
9020
9022
  )));
9021
- Zu.tags = ["smiley", "emoji"];
9022
- const Xu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9023
+ Xu.tags = ["smiley", "emoji"];
9024
+ const Yu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9023
9025
  "path",
9024
9026
  {
9025
9027
  d: "M6.9 1a5.9 5.9 0 100 11.8A5.9 5.9 0 006.9 1v0z",
@@ -9036,8 +9038,8 @@ const Xu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9036
9038
  strokeLinejoin: "round"
9037
9039
  }
9038
9040
  )));
9039
- Xu.tags = ["smiley", "emoji"];
9040
- const Yu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9041
+ Yu.tags = ["smiley", "emoji"];
9042
+ const Ju = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9041
9043
  "path",
9042
9044
  {
9043
9045
  d: "M4.077 5.843h-.005c.067-.005.128.058.128.126s-.061.13-.128.13c-.072 0-.128-.062-.133-.13a.129.129 0 01.123-.136M9.722 5.843h-.005a.128.128 0 00-.128.13c0 .069.056.132.128.127.067-.006.128-.063.123-.137a.132.132 0 00-.128-.13M3.822 8.853l-.006-.005c.708 1.733 2.658 2.555 4.361 1.833a3.38 3.38 0 001.796-1.833",
@@ -9054,8 +9056,8 @@ const Yu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9054
9056
  strokeLinejoin: "round"
9055
9057
  }
9056
9058
  )));
9057
- Yu.tags = ["smiley", "emoji"];
9058
- const Ju = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9059
+ Ju.tags = ["smiley", "emoji"];
9060
+ const Uu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9059
9061
  "path",
9060
9062
  {
9061
9063
  d: "M6.107 13.5h5.786M4.662 9h8.679M3.215 4.5h11.571",
@@ -9065,8 +9067,8 @@ const Ju = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
9065
9067
  strokeLinejoin: "round"
9066
9068
  }
9067
9069
  )));
9068
- Ju.tags = ["filter", "custom reports"];
9069
- const Uu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9070
+ Uu.tags = ["filter", "custom reports"];
9071
+ const Qu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9070
9072
  "path",
9071
9073
  {
9072
9074
  d: "M3.1 12V2.517M10.878 8.122V2.556M3.1 8.111s.487-.404 1.945-.404c1.458 0 2.43.96 3.889.96 1.458 0 1.944-.543 1.944-.543M3.1 2.518S3.588 2 5.046 2c1.458 0 2.43.96 3.889.96 1.458 0 1.944-.404 1.944-.404",
@@ -9075,8 +9077,8 @@ const Uu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9075
9077
  strokeLinejoin: "round"
9076
9078
  }
9077
9079
  )));
9078
- Uu.tags = ["organizer"];
9079
- const Qu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("circle", { cx: 10.6, cy: 9, r: 2.4, fill: "currentColor" }), /* @__PURE__ */ n.createElement(
9080
+ Qu.tags = ["organizer"];
9081
+ const qu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("circle", { cx: 10.6, cy: 9, r: 2.4, fill: "currentColor" }), /* @__PURE__ */ n.createElement(
9080
9082
  "path",
9081
9083
  {
9082
9084
  fillRule: "evenodd",
@@ -9094,8 +9096,8 @@ const Qu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
9094
9096
  strokeLinejoin: "round"
9095
9097
  }
9096
9098
  )));
9097
- Qu.tags = ["flex", "fee", "partnerfee", "partner"];
9098
- const qu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9099
+ qu.tags = ["flex", "fee", "partnerfee", "partner"];
9100
+ const Ku = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9099
9101
  "path",
9100
9102
  {
9101
9103
  d: "M7.245.869a1 1 0 011.51 0l.933 1.074a1 1 0 00.912.332l1.406-.223a1 1 0 011.156.97l.025 1.423a1 1 0 00.485.84l1.22.733a1 1 0 01.262 1.487l-.896 1.106a1 1 0 00-.168.955l.463 1.346a1 1 0 01-.755 1.307l-1.397.272a1 1 0 00-.743.623l-.51 1.329a1 1 0 01-1.418.516l-1.245-.69a1 1 0 00-.97 0l-1.245.69a1 1 0 01-1.418-.516l-.51-1.329a1 1 0 00-.743-.623l-1.397-.272a1 1 0 01-.755-1.307l.463-1.346a1 1 0 00-.168-.955L.846 7.505a1 1 0 01.262-1.487l1.22-.732a1 1 0 00.485-.84l.025-1.424a1 1 0 011.156-.97l1.406.223a1 1 0 00.912-.332L7.245.87z",
@@ -9110,8 +9112,8 @@ const qu = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
9110
9112
  strokeWidth: 1.529
9111
9113
  }
9112
9114
  )));
9113
- qu.tags = ["flex", "fee", "partnerfee", "partner"];
9114
- const Ku = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9115
+ Ku.tags = ["flex", "fee", "partnerfee", "partner"];
9116
+ const _u = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9115
9117
  "path",
9116
9118
  {
9117
9119
  d: "M2 7.86h.277a.85.85 0 00.59-.235.86.86 0 011.18 0 .86.86 0 001.18 0 .86.86 0 011.18 0 .86.86 0 001.18 0 .86.86 0 011.18 0 .86.86 0 001.18 0 .86.86 0 011.18 0 .85.85 0 00.59.234h.278M7.022 5.75H3.02a.897.897 0 01-.633-.263 1.25 1.25 0 01.102-1.86l.09-.071a7.09 7.09 0 018.862 0l.09.071a1.25 1.25 0 01.103 1.86.895.895 0 01-.634.263H6.998M2 10.125c0-.345.28-.625.625-.625h8.747c.345 0 .625.28.625.625 0 .41-.096.816-.28 1.184A1.251 1.251 0 0110.6 12H3.397a1.25 1.25 0 01-1.118-.69A2.65 2.65 0 012 10.124v0z",
@@ -9120,8 +9122,8 @@ const Ku = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9120
9122
  strokeLinejoin: "round"
9121
9123
  }
9122
9124
  )));
9123
- Ku.tags = ["burger"];
9124
- const _u = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9125
+ _u.tags = ["burger"];
9126
+ const $u = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9125
9127
  "path",
9126
9128
  {
9127
9129
  d: "M4.7 2.023v3.465a2.3 2.3 0 002.31 2.298A2.317 2.317 0 009.31 5.465V2M7.01 2.028V13",
@@ -9130,8 +9132,8 @@ const _u = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9130
9132
  strokeLinejoin: "round"
9131
9133
  }
9132
9134
  )));
9133
- _u.tags = ["trident"];
9134
- const x3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9135
+ $u.tags = ["trident"];
9136
+ const E3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9135
9137
  "path",
9136
9138
  {
9137
9139
  clipRule: "evenodd",
@@ -9156,7 +9158,7 @@ const x3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9156
9158
  strokeLinecap: "round",
9157
9159
  strokeLinejoin: "round"
9158
9160
  }
9159
- ))), E3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9161
+ ))), I3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9160
9162
  "path",
9161
9163
  {
9162
9164
  d: "M7.001 1.1a5.89 5.89 0 015.9 5.9 5.89 5.89 0 01-5.9 5.9M7 12.9A5.89 5.89 0 011.1 7 5.89 5.89 0 017 1.1",
@@ -9172,7 +9174,7 @@ const x3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9172
9174
  strokeLinecap: "round",
9173
9175
  strokeLinejoin: "round"
9174
9176
  }
9175
- ))), $u = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9177
+ ))), e2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9176
9178
  "path",
9177
9179
  {
9178
9180
  d: "M5.825 3.297V2.273a.766.766 0 111.53-.01v1.023",
@@ -9197,8 +9199,8 @@ const x3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9197
9199
  strokeLinejoin: "round"
9198
9200
  }
9199
9201
  )));
9200
- $u.tags = ["cap"];
9201
- const e2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9202
+ e2.tags = ["cap"];
9203
+ const t2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9202
9204
  "path",
9203
9205
  {
9204
9206
  d: "M.5 9.994h1.066a1.066 1.066 0 001.066-1.066V4.665a1.065 1.065 0 00-1.066-1.066H.506M13.284 3.6h-1.06a1.066 1.066 0 00-1.066 1.065v4.263a1.065 1.065 0 001.066 1.066h1.06",
@@ -9223,8 +9225,8 @@ const e2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9223
9225
  strokeLinejoin: "round"
9224
9226
  }
9225
9227
  )));
9226
- e2.tags = ["partner", "package", "cas", "cross account"];
9227
- const t2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9228
+ t2.tags = ["partner", "package", "cas", "cross account"];
9229
+ const n2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9228
9230
  "path",
9229
9231
  {
9230
9232
  d: "M1.949 5.634L7 1.5l5.051 4.134c.284.231.448.579.448.945v4.699c0 .675-.547 1.222-1.222 1.222H2.722A1.222 1.222 0 011.5 11.278V6.58c0-.367.164-.715.449-.946v0z",
@@ -9241,7 +9243,7 @@ const t2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9241
9243
  strokeLinejoin: "round"
9242
9244
  }
9243
9245
  )));
9244
- t2.tags = ["house", "pick-up", "pickup", "location"];
9246
+ n2.tags = ["house", "pick-up", "pickup", "location"];
9245
9247
  const t1 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9246
9248
  "path",
9247
9249
  {
@@ -9260,7 +9262,7 @@ const t1 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9260
9262
  }
9261
9263
  )));
9262
9264
  t1.tags = ["photo"];
9263
- const I3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9265
+ const y3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9264
9266
  "path",
9265
9267
  {
9266
9268
  d: "M7.667 7.068S5.201 9.33 3.93 9.33a2.263 2.263 0 010-4.526c1.272 0 3.738 2.263 3.738 2.263zM7.667 7.068s2.467 2.263 3.736 2.263a2.263 2.263 0 000-4.526c-1.27 0-3.736 2.263-3.736 2.263z",
@@ -9268,15 +9270,15 @@ const I3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9268
9270
  strokeLinecap: "round",
9269
9271
  strokeLinejoin: "round"
9270
9272
  }
9271
- ))), n2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9273
+ ))), r2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9272
9274
  "path",
9273
9275
  {
9274
9276
  d: "M8.998 5.537A3.458 3.458 0 005.535 9a3.458 3.458 0 003.463 3.463A3.458 3.458 0 0012.461 9a3.458 3.458 0 00-3.463-3.463zm0 5.714A2.256 2.256 0 016.748 9c0-1.24 1.01-2.251 2.25-2.251s2.251 1.011 2.251 2.25c0 1.24-1.011 2.252-2.25 2.252zm3.605-6.663a.808.808 0 100 1.617.807.807 0 00.573-1.38.807.807 0 00-.573-.237zM15.75 9c0-.932.009-1.856-.044-2.786-.052-1.081-.299-2.04-1.089-2.83-.792-.792-1.75-1.037-2.83-1.09-.932-.052-1.856-.043-2.786-.043-.932 0-1.856-.009-2.786.043-1.081.053-2.04.3-2.83 1.09-.792.792-1.037 1.749-1.09 2.83-.052.932-.043 1.855-.043 2.786 0 .93-.009 1.856.043 2.786.053 1.08.3 2.04 1.09 2.83.792.792 1.749 1.037 2.83 1.09.932.052 1.855.043 2.786.043.932 0 1.856.009 2.786-.044 1.08-.052 2.04-.299 2.83-1.089.792-.792 1.037-1.75 1.09-2.83.053-.93.043-1.854.043-2.786zm-1.486 3.982a2.146 2.146 0 01-.51.773 2.159 2.159 0 01-.773.51c-.888.353-2.997.274-3.982.274-.984 0-3.095.079-3.983-.272a2.145 2.145 0 01-.774-.51 2.16 2.16 0 01-.51-.774c-.35-.89-.271-2.999-.271-3.983 0-.985-.08-3.095.271-3.984.124-.307.272-.537.51-.773s.466-.387.774-.51c.888-.351 2.999-.272 3.983-.272.985 0 3.095-.08 3.984.272.307.123.537.272.773.51.238.238.387.466.51.773.351.889.272 3 .272 3.984s.08 3.093-.274 3.982z",
9275
9277
  fill: "#000"
9276
9278
  }
9277
9279
  )));
9278
- n2.tags = ["logo", "social media"];
9279
- const r2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9280
+ r2.tags = ["logo", "social media"];
9281
+ const o2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9280
9282
  "path",
9281
9283
  {
9282
9284
  d: "M11.124 12.022a.479.479 0 01-.477.478H3.478A.48.48 0 013 12.018v0V1.986a.474.474 0 01.473-.487h4.58-.004a.461.461 0 01.339.139l2.584 2.589-.005-.005c.086.086.138.21.138.334l.02 7.465z",
@@ -9303,8 +9305,8 @@ const r2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9303
9305
  strokeLinejoin: "round"
9304
9306
  }
9305
9307
  )));
9306
- r2.tags = ["money"];
9307
- const y3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9308
+ o2.tags = ["money"];
9309
+ const C3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9308
9310
  "path",
9309
9311
  {
9310
9312
  d: "M10.886 7.317L9.695 6.125l1.107-1.109 1.187 1.186a.789.789 0 001.108-.02.79.79 0 000-1.093l-1.192-1.191.552-.553a.795.795 0 000-1.113.79.79 0 00-1.113-.005L5.718 7.85v0a2.745 2.745 0 00-3.721 1.107 2.74 2.74 0 104.823 2.602 2.742 2.742 0 00-.005-2.612L8.561 7.2l1.186 1.192c.303.303.8.303 1.108-.006a.79.79 0 00-.005-1.113l.036.043z",
@@ -9320,7 +9322,7 @@ const y3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9320
9322
  strokeLinecap: "round",
9321
9323
  strokeLinejoin: "round"
9322
9324
  }
9323
- ))), C3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9325
+ ))), k3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9324
9326
  "path",
9325
9327
  {
9326
9328
  d: "M11.167 2H2.833A.833.833 0 002 2.833v5.278c0 .46.373.833.833.833h8.334c.46 0 .833-.373.833-.833V2.833A.833.833 0 0011.167 2zM5.75 12.278L7 10.61M8.25 12.278L7 10.61M7 10.611V8.945",
@@ -9328,7 +9330,7 @@ const y3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9328
9330
  strokeLinecap: "round",
9329
9331
  strokeLinejoin: "round"
9330
9332
  }
9331
- ))), o2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9333
+ ))), a2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9332
9334
  "path",
9333
9335
  {
9334
9336
  d: "M7 9.042A4.083 4.083 0 107 .875a4.083 4.083 0 000 8.167zM5.367 10.675h3.267M5.367 12.308h3.267M7 13.125v-.817",
@@ -9345,8 +9347,8 @@ const y3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9345
9347
  strokeLinejoin: "round"
9346
9348
  }
9347
9349
  )));
9348
- o2.tags = ["bulb", "idea"];
9349
- const k3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9350
+ a2.tags = ["bulb", "idea"];
9351
+ const A3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9350
9352
  "path",
9351
9353
  {
9352
9354
  d: "M6.764 9.467L4.731 11.5h-.005a1.92 1.92 0 01-2.711-.005l-.452-.451a1.916 1.916 0 01-.005-2.709L4.49 5.397v-.005a1.909 1.909 0 012.707 0l.447.452",
@@ -9364,7 +9366,7 @@ const k3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9364
9366
  strokeLinecap: "round",
9365
9367
  strokeLinejoin: "round"
9366
9368
  }
9367
- ))), A3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9369
+ ))), L3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9368
9370
  "path",
9369
9371
  {
9370
9372
  clipRule: "evenodd",
@@ -9374,7 +9376,7 @@ const k3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9374
9376
  strokeLinecap: "round",
9375
9377
  strokeLinejoin: "round"
9376
9378
  }
9377
- ))), a2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
9379
+ ))), i2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
9378
9380
  "path",
9379
9381
  {
9380
9382
  d: "M11.445 3.111V2M10.89 2.555H12",
@@ -9402,8 +9404,8 @@ const k3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9402
9404
  strokeLinejoin: "round"
9403
9405
  }
9404
9406
  )));
9405
- a2.tags = ["view", "custom"];
9406
- const i2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement(
9407
+ i2.tags = ["view", "custom"];
9408
+ const s2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement(
9407
9409
  "path",
9408
9410
  {
9409
9411
  fill: "#ED0006",
@@ -9428,8 +9430,8 @@ const i2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.
9428
9430
  clipRule: "evenodd"
9429
9431
  }
9430
9432
  )));
9431
- i2.tags = ["cc", "credit card"];
9432
- const s2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement(
9433
+ s2.tags = ["cc", "credit card"];
9434
+ const l2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement(
9433
9435
  "path",
9434
9436
  {
9435
9437
  fill: "#ED0006",
@@ -9450,8 +9452,8 @@ const s2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.
9450
9452
  clipRule: "evenodd"
9451
9453
  }
9452
9454
  )));
9453
- s2.tags = ["cc", "credit card"];
9454
- const l2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9455
+ l2.tags = ["cc", "credit card"];
9456
+ const c2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9455
9457
  "path",
9456
9458
  {
9457
9459
  d: "M14.657 6.429h-3.086V3.343c0-.78-.633-1.415-1.414-1.415H7.843c-.78 0-1.414.634-1.414 1.415v3.086H3.343c-.78 0-1.414.633-1.414 1.414v2.314c0 .78.633 1.414 1.414 1.414h3.086v3.086c0 .78.634 1.414 1.414 1.414h2.314c.78 0 1.414-.633 1.414-1.414v-3.086h3.086c.781 0 1.415-.633 1.415-1.414V7.843c0-.78-.634-1.414-1.415-1.414z",
@@ -9461,10 +9463,10 @@ const l2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
9461
9463
  strokeLinejoin: "round"
9462
9464
  }
9463
9465
  )));
9464
- l2.tags = ["health", "medical", "doctor", "nurse", "plus"];
9465
- const c2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M2 4h10M2 7h10M2 10h10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
9466
- c2.tags = ["hamburger", "sidebar"];
9467
- const u2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9466
+ c2.tags = ["health", "medical", "doctor", "nurse", "plus"];
9467
+ const u2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M2 4h10M2 7h10M2 10h10", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
9468
+ u2.tags = ["hamburger", "sidebar"];
9469
+ const d2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9468
9470
  "path",
9469
9471
  {
9470
9472
  d: "M2 9.904l1.18 1.776M8.521 2l4.48 6.746M12.765 8.39l-9.82 2.934-.71-1.067L8.75 2.345l4.008 6.038.007.006z",
@@ -9481,8 +9483,8 @@ const u2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9481
9483
  strokeLinejoin: "round"
9482
9484
  }
9483
9485
  )));
9484
- u2.tags = ["marketing", "loud speaker"];
9485
- const L3 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M2 4.638l.983.983L5.603 3", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement(
9486
+ d2.tags = ["marketing", "loud speaker"];
9487
+ const M3 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M2 4.638l.983.983L5.603 3", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement(
9486
9488
  "rect",
9487
9489
  {
9488
9490
  x: 2,
@@ -9494,7 +9496,7 @@ const L3 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height:
9494
9496
  strokeLinecap: "round",
9495
9497
  strokeLinejoin: "round"
9496
9498
  }
9497
- ), /* @__PURE__ */ n.createElement("path", { d: "M7.667 4h4M7.667 10h4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }))), d2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "3", fill: "none", viewBox: "0 0 14 3", ...e }, /* @__PURE__ */ n.createElement(
9499
+ ), /* @__PURE__ */ n.createElement("path", { d: "M7.667 4h4M7.667 10h4", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }))), m2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "3", fill: "none", viewBox: "0 0 14 3", ...e }, /* @__PURE__ */ n.createElement(
9498
9500
  "path",
9499
9501
  {
9500
9502
  stroke: "currentColor",
@@ -9504,8 +9506,8 @@ const L3 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height:
9504
9506
  d: "M13.93 1.447H1.071"
9505
9507
  }
9506
9508
  )));
9507
- d2.tags = ["subtract", "hyphen"];
9508
- const m2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 18, height: 18, viewBox: "0 0 18 18", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9509
+ m2.tags = ["subtract", "hyphen"];
9510
+ const p2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 18, height: 18, viewBox: "0 0 18 18", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9509
9511
  "g",
9510
9512
  {
9511
9513
  stroke: "currentColor",
@@ -9517,8 +9519,8 @@ const m2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 18, height:
9517
9519
  /* @__PURE__ */ n.createElement("path", { d: "M13.5 14.25a1.5 1.5 0 01-1.5 1.5H6a1.5 1.5 0 01-1.5-1.5V3.75A1.5 1.5 0 016 2.25h6a1.5 1.5 0 011.5 1.5v10.5z" }),
9518
9520
  /* @__PURE__ */ n.createElement("path", { d: "M10.877 2.25v1.5a.375.375 0 01-.375.375h-3a.375.375 0 01-.375-.375v-1.5" })
9519
9521
  ), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "clip0_9896_373783" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", d: "M0 0H18V18H0z" })))));
9520
- m2.tags = ["mobile", "phone", "iphone", "android", "ios"];
9521
- const p2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9522
+ p2.tags = ["mobile", "phone", "iphone", "android", "ios"];
9523
+ const g2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9522
9524
  "path",
9523
9525
  {
9524
9526
  d: "M2.867 10.153L7.403 2.95v-.006a.667.667 0 011.061-.005L13 10.142l-10.133.011z",
@@ -9535,8 +9537,8 @@ const p2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9535
9537
  strokeLinejoin: "round"
9536
9538
  }
9537
9539
  )));
9538
- p2.tags = ["product", "listing", "experience"];
9539
- const g2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9540
+ g2.tags = ["product", "listing", "experience"];
9541
+ const h2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9540
9542
  "path",
9541
9543
  {
9542
9544
  d: "M6.03 3H3.88v-.001c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02H2M3.53 11v1.5M4.53 1.5V3M9.917 9.833a2.917 2.917 0 100-5.833 2.917 2.917 0 000 5.833zM9.917 5.167v3.5M8.167 6.917h3.5",
@@ -9545,8 +9547,8 @@ const g2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9545
9547
  strokeLinejoin: "round"
9546
9548
  }
9547
9549
  )));
9548
- g2.tags = ["plus", "dollar"];
9549
- const h2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 15 15", width: 15, height: 15, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9550
+ h2.tags = ["plus", "dollar"];
9551
+ const f2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 15 15", width: 15, height: 15, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9550
9552
  "path",
9551
9553
  {
9552
9554
  d: "M6.674 9.972A.972.972 0 107.647 9a.972.972 0 11.972-.972M7.647 6.083v.973M7.647 10.944v.973",
@@ -9571,8 +9573,8 @@ const h2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 15 15
9571
9573
  strokeLinejoin: "round"
9572
9574
  }
9573
9575
  )));
9574
- h2.tags = ["refund", "return", "money", "payment"];
9575
- const f2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9576
+ f2.tags = ["refund", "return", "money", "payment"];
9577
+ const v2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9576
9578
  "path",
9577
9579
  {
9578
9580
  d: "M9.696 3h-2.15v-.001c-1.03 0-1.86.83-1.86 1.85 0 .7.39 1.34 1.02 1.65l1.95.97c.91.45 1.28 1.57.82 2.48-.32.62-.96 1.02-1.66 1.02h-2.15M7.196 11v1.5M8.196 1.5V3",
@@ -9581,8 +9583,8 @@ const f2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9581
9583
  strokeLinejoin: "round"
9582
9584
  }
9583
9585
  )));
9584
- f2.tags = ["dollar"];
9585
- const v2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9586
+ v2.tags = ["dollar"];
9587
+ const b2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9586
9588
  "path",
9587
9589
  {
9588
9590
  d: "M9 8.5a1 1 0 01-1-1v-2a1 1 0 012 0v2a1 1 0 01-1 1z",
@@ -9601,8 +9603,8 @@ const v2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
9601
9603
  strokeLinejoin: "round"
9602
9604
  }
9603
9605
  )));
9604
- v2.tags = ["pointer", "cursor"];
9605
- const b2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9606
+ b2.tags = ["pointer", "cursor"];
9607
+ const w2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9606
9608
  "path",
9607
9609
  {
9608
9610
  d: "M7.742 6.176a1.617 1.617 0 11-2.286 2.286 1.617 1.617 0 012.286-2.286z",
@@ -9630,8 +9632,8 @@ const b2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
9630
9632
  strokeLinejoin: "round"
9631
9633
  }
9632
9634
  )));
9633
- b2.tags = ["membership", "pass"];
9634
- const w2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9635
+ w2.tags = ["membership", "pass"];
9636
+ const x2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9635
9637
  "path",
9636
9638
  {
9637
9639
  d: "M11.892 2.773a1.509 1.509 0 00-2.144.015L3.734 8.802l-.735 2.864 2.864-.735 6.015-6.014a1.509 1.509 0 00.014-2.144v0zM9.577 2.96l2.129 2.13M3.734 8.802l2.132 2.128",
@@ -9640,8 +9642,8 @@ const w2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9640
9642
  strokeLinejoin: "round"
9641
9643
  }
9642
9644
  )));
9643
- w2.tags = ["write"];
9644
- const x2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9645
+ x2.tags = ["write"];
9646
+ const E2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9645
9647
  "path",
9646
9648
  {
9647
9649
  d: "M8.986 11.573l.006.004a2.705 2.705 0 003.366-.37l.378-.378a.902.902 0 000-1.275l-1.594-1.593a.903.903 0 00-1.276 0v0a.9.9 0 01-1.275 0L6.041 5.41a.902.902 0 010-1.276v0a.9.9 0 000-1.275L4.445 1.264a.903.903 0 00-1.275 0l-.379.378a2.706 2.706 0 00-.37 3.365l.005.006a24.411 24.411 0 006.56 6.56v0z",
@@ -9650,8 +9652,8 @@ const x2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9650
9652
  strokeLinejoin: "round"
9651
9653
  }
9652
9654
  )));
9653
- x2.tags = ["call", "sms", "communication"];
9654
- const E2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9655
+ E2.tags = ["call", "sms", "communication"];
9656
+ const I2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9655
9657
  "path",
9656
9658
  {
9657
9659
  d: "M12 9.222L9.615 6.837a.555.555 0 00-.786 0L6.444 9.222",
@@ -9676,8 +9678,8 @@ const E2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9676
9678
  strokeLinejoin: "round"
9677
9679
  }
9678
9680
  ), /* @__PURE__ */ n.createElement("circle", { cx: 5.333, cy: 5.326, r: 0.556, fill: "currentColor" })));
9679
- E2.tags = ["image", "background"];
9680
- const I2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9681
+ I2.tags = ["image", "background"];
9682
+ const y2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9681
9683
  "path",
9682
9684
  {
9683
9685
  clipRule: "evenodd",
@@ -9695,8 +9697,8 @@ const I2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9695
9697
  strokeLinejoin: "round"
9696
9698
  }
9697
9699
  )));
9698
- I2.tags = ["purchase", "gift", "store credit"];
9699
- const y2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9700
+ y2.tags = ["purchase", "gift", "store credit"];
9701
+ const C2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9700
9702
  "path",
9701
9703
  {
9702
9704
  d: "M7.089 7.656a1.967 1.967 0 110-3.933 1.967 1.967 0 010 3.933z",
@@ -9713,12 +9715,12 @@ const y2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9713
9715
  strokeLinejoin: "round"
9714
9716
  }
9715
9717
  )));
9716
- y2.tags = ["location", "city", "state", "country"];
9717
- const C2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M7.666 12V2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
9718
- C2.tags = ["line"];
9719
- const k2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M7 2v10M12 7H2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
9720
- k2.tags = ["add"];
9721
- const M3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9718
+ C2.tags = ["location", "city", "state", "country"];
9719
+ const k2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M7.666 12V2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
9720
+ k2.tags = ["line"];
9721
+ const A2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M7 2v10M12 7H2", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" })));
9722
+ A2.tags = ["add"];
9723
+ const N3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9722
9724
  "path",
9723
9725
  {
9724
9726
  d: "M9.674 4.778V2.556A.556.556 0 009.12 2H4.88a.556.556 0 00-.556.556v2.222M9.777 6.444h.556M4.222 9.778H2.556A.556.556 0 012 9.222V5.333c0-.306.249-.555.556-.555h8.888c.307 0 .556.249.556.555v3.89a.556.556 0 01-.556.555H9.778",
@@ -9734,7 +9736,7 @@ const M3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9734
9736
  strokeLinecap: "round",
9735
9737
  strokeLinejoin: "round"
9736
9738
  }
9737
- ))), A2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9739
+ ))), L2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9738
9740
  "path",
9739
9741
  {
9740
9742
  d: "M12.25 4.083H1.75a.584.584 0 01-.583-.583V2.333c0-.322.261-.583.583-.583h10.5c.322 0 .584.261.584.583V3.5a.584.584 0 01-.584.583zM12.056 4.083v7c0 .645-.522 1.167-1.167 1.167H3.111a1.166 1.166 0 01-1.167-1.167v-7",
@@ -9743,8 +9745,8 @@ const M3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9743
9745
  strokeLinejoin: "round"
9744
9746
  }
9745
9747
  )));
9746
- A2.tags = ["experience", "listing"];
9747
- const N3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9748
+ L2.tags = ["experience", "listing"];
9749
+ const B3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9748
9750
  "path",
9749
9751
  {
9750
9752
  d: "M11.13 1.875H2.87a.87.87 0 00-.87.87v8.26c0 .48.39.87.87.87h8.26c.48 0 .87-.39.87-.87v-8.26a.87.87 0 00-.87-.87z",
@@ -9762,7 +9764,7 @@ const N3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9762
9764
  strokeLinecap: "round",
9763
9765
  strokeLinejoin: "round"
9764
9766
  }
9765
- ))), L2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9767
+ ))), M2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9766
9768
  "path",
9767
9769
  {
9768
9770
  d: "M5.777 5.778A1.222 1.222 0 117 7M7 7.917V7",
@@ -9787,8 +9789,8 @@ const N3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9787
9789
  strokeLinejoin: "round"
9788
9790
  }
9789
9791
  )));
9790
- L2.tags = ["short text", "forms", "questionnaire"];
9791
- const B3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9792
+ M2.tags = ["short text", "forms", "questionnaire"];
9793
+ const F3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9792
9794
  "path",
9793
9795
  {
9794
9796
  d: "M11.703 12.176c0 .167-.143.31-.31.31a.314.314 0 01-.204-.081L9.53 10.98l-2.29 1.715v-.006a.316.316 0 01-.371 0l-2.29-1.721-1.66 1.417v-.006a.32.32 0 01-.52-.241V1.875a.613.613 0 01.613-.625h8.047-.006a.612.612 0 01.619.613l.03 10.313zM4.015 4.287H7.05M4.015 6.311h5.06M4.015 8.335h5.06",
@@ -9796,7 +9798,7 @@ const B3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9796
9798
  strokeLinecap: "round",
9797
9799
  strokeLinejoin: "round"
9798
9800
  }
9799
- ))), M2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 16, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9801
+ ))), N2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 16, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9800
9802
  "path",
9801
9803
  {
9802
9804
  d: "M4.289 4.083a4.813 4.813 0 018.523 3.061v1.314M11.5 10.446a4.813 4.813 0 01-8.313-3.302v-.875",
@@ -9813,8 +9815,8 @@ const B3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9813
9815
  strokeLinejoin: "round"
9814
9816
  }
9815
9817
  )));
9816
- M2.tags = ["switch"];
9817
- const N2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", fill: "none", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
9818
+ N2.tags = ["switch"];
9819
+ const B2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", fill: "none", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
9818
9820
  "path",
9819
9821
  {
9820
9822
  d: "M7.071 2.5v2.714M6.093 2.5h1.956M2.37 10.642a.68.68 0 01-.672-.775 5.428 5.428 0 0110.745 0 .68.68 0 01-.67.776l-9.403-.001z",
@@ -9823,8 +9825,8 @@ const N2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.
9823
9825
  strokeLinejoin: "round"
9824
9826
  }
9825
9827
  )));
9826
- N2.tags = ["affiliate", "partner"];
9827
- const B2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", fill: "none", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
9828
+ B2.tags = ["affiliate", "partner"];
9829
+ const F2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", fill: "none", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
9828
9830
  "path",
9829
9831
  {
9830
9832
  d: "M6.38 3.5v2.714M5.401 3.5h1.957M1.679 11.642a.68.68 0 01-.672-.774 5.428 5.428 0 0110.745 0 .68.68 0 01-.671.775l-9.402-.001zM10.906 1.925V1.3M11.843 1.925h-1.275a.839.839 0 00-.843.838.84.84 0 00.525.775l1.29.512-.007-.006a.834.834 0 01.463 1.087.852.852 0 01-.781.525H9.937M10.906 6.3v-.625",
@@ -9833,8 +9835,8 @@ const B2 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.
9833
9835
  strokeLinejoin: "round"
9834
9836
  }
9835
9837
  )));
9836
- B2.tags = ["partner", "affiliate", "money", "dollar"];
9837
- const F3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9838
+ F2.tags = ["partner", "affiliate", "money", "dollar"];
9839
+ const S3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9838
9840
  "path",
9839
9841
  {
9840
9842
  d: "M5.865 3.887h3.837M3.947 6.765h5.755M3.947 9.642h5.755M2.029 1.969A.95.95 0 012.979 1h7.672-.01c.528-.01.96.422.96.95v9.59c0 .528-.432.96-.96.96H2.96A.964.964 0 012 11.531v0l.029-9.562z",
@@ -9842,7 +9844,7 @@ const F3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9842
9844
  strokeLinecap: "round",
9843
9845
  strokeLinejoin: "round"
9844
9846
  }
9845
- ))), S3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9847
+ ))), T3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9846
9848
  "rect",
9847
9849
  {
9848
9850
  x: 2.579,
@@ -9853,7 +9855,7 @@ const F3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9853
9855
  stroke: "currentColor",
9854
9856
  strokeWidth: 1.3
9855
9857
  }
9856
- ))), F2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9858
+ ))), S2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9857
9859
  "path",
9858
9860
  {
9859
9861
  d: "M8.927 1.313L1.813 8.427c-.173.172-.125.5.106.731l2.423 2.423c.231.231.559.279.731.106l7.114-7.114c.173-.172.125-.5-.106-.731L9.658 1.419c-.231-.231-.559-.279-.731-.106zM4.042 6.774l1.482 1.482M5.233 5.588l1.038 1.038M6.556 4.26l1.482 1.482M7.741 3.075l1.192 1.18",
@@ -9862,8 +9864,8 @@ const F3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9862
9864
  strokeLinejoin: "round"
9863
9865
  }
9864
9866
  )));
9865
- F2.tags = ["measure", "scale", "size"];
9866
- const S2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9867
+ S2.tags = ["measure", "scale", "size"];
9868
+ const T2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9867
9869
  "path",
9868
9870
  {
9869
9871
  d: "M7 4.083H2.917A1.17 1.17 0 001.75 5.25v5.833a1.17 1.17 0 001.167 1.167H8.75a1.17 1.17 0 001.167-1.167V7",
@@ -9880,8 +9882,8 @@ const S2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9880
9882
  strokeLinejoin: "round"
9881
9883
  }
9882
9884
  )));
9883
- S2.tags = ["magnifying glass"];
9884
- const T2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9885
+ T2.tags = ["magnifying glass"];
9886
+ const V2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9885
9887
  "path",
9886
9888
  {
9887
9889
  d: "M1.682 6.815a.707.707 0 01-.032-1.35l9.549-3.114a.358.358 0 01.451.448l-3.112 9.55a.707.707 0 01-1.352-.032L6.118 7.879 1.682 6.815zM11.563 2.437L6.117 7.879",
@@ -9890,8 +9892,8 @@ const T2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9890
9892
  strokeLinejoin: "round"
9891
9893
  }
9892
9894
  )));
9893
- T2.tags = ["message", "email"];
9894
- const V2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9895
+ V2.tags = ["message", "email"];
9896
+ const R2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9895
9897
  "path",
9896
9898
  {
9897
9899
  d: "M7.816 3.733a1.43 1.43 0 100-2.858 1.43 1.43 0 000 2.858zM7.815 9.45v2.858M9.45 8.633V7M4.55 9.45a.817.817 0 10-1.634 0v3.675M6.182 8.633v3.675a.817.817 0 101.633 0 .817.817 0 101.634 0V8.633a.817.817 0 101.633 0V7a2.45 2.45 0 00-2.45-2.45H7A2.45 2.45 0 004.549 7",
@@ -9900,8 +9902,8 @@ const V2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9900
9902
  strokeLinejoin: "round"
9901
9903
  }
9902
9904
  )));
9903
- V2.tags = ["old", "demographic"];
9904
- const R2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9905
+ R2.tags = ["old", "demographic"];
9906
+ const G2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9905
9907
  "path",
9906
9908
  {
9907
9909
  d: "M4.8 5.8a.8.8 0 00.8-.8V3.8a1.2 1.2 0 012.4 0v7.6h1.6V3.8a2.8 2.8 0 10-5.6 0V5a.8.8 0 00.8.8zM10 13H7.6l.4-1.6h1.6L10 13z",
@@ -9910,8 +9912,8 @@ const R2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9910
9912
  strokeLinejoin: "round"
9911
9913
  }
9912
9914
  )));
9913
- R2.tags = ["old"];
9914
- const G2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9915
+ G2.tags = ["old"];
9916
+ const D2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9915
9917
  "path",
9916
9918
  {
9917
9919
  d: "M5.098 2.74a1.864 1.864 0 113.728 0v9.32M8.56 13.125h.532",
@@ -9920,8 +9922,8 @@ const G2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9920
9922
  strokeLinejoin: "round"
9921
9923
  }
9922
9924
  )));
9923
- G2.tags = ["old"];
9924
- const T3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9925
+ D2.tags = ["old"];
9926
+ const V3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9925
9927
  "path",
9926
9928
  {
9927
9929
  d: "M2.008 4v5.863M13 9.13a2.2 2.2 0 00-2.198-2.199H8.053a2.2 2.2 0 00-2.198-2.198H2V9.13h11zM5.855 6.931h2.749",
@@ -9929,7 +9931,7 @@ const T3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9929
9931
  strokeLinecap: "round",
9930
9932
  strokeLinejoin: "round"
9931
9933
  }
9932
- ))), V3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9934
+ ))), R3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9933
9935
  "path",
9934
9936
  {
9935
9937
  d: "M7 7.233V1M7 12v-1.833M7 7.233a1.467 1.467 0 100 2.934 1.467 1.467 0 000-2.934zM2.967 6.5V12M2.967 1v2.567M2.967 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0zM11.033 6.5V12M11.033 1v2.567M11.033 3.567a1.467 1.467 0 100 2.933 1.467 1.467 0 000-2.933v0z",
@@ -9937,7 +9939,7 @@ const T3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9937
9939
  strokeLinecap: "round",
9938
9940
  strokeLinejoin: "round"
9939
9941
  }
9940
- ))), R3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9942
+ ))), G3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9941
9943
  "g",
9942
9944
  {
9943
9945
  clipPath: "url(#prefix__clip0_887_27435)",
@@ -9946,7 +9948,7 @@ const T3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9946
9948
  strokeLinejoin: "round"
9947
9949
  },
9948
9950
  /* @__PURE__ */ n.createElement("path", { d: "M11.635 8.902a1.961 1.961 0 11-2.774 2.774 1.961 1.961 0 012.774-2.774M12.397 4.173l-1.69 1.69a.653.653 0 01-.925 0l-1.69-1.69a.654.654 0 010-.924l1.69-1.691a.653.653 0 01.925 0l1.69 1.69a.655.655 0 010 .925v0zM2.52 5.56h2.39a.654.654 0 00.654-.655v-2.39a.654.654 0 00-.654-.654H2.52a.654.654 0 00-.655.654v2.39c0 .361.293.654.654.654v0zM3.13 8.841l-1.45 2.32a.69.69 0 00.585 1.054h2.898a.69.69 0 00.585-1.055l-1.45-2.318A.69.69 0 003.13 8.84v0z" })
9949
- ), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0_887_27435" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" }))))), G3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9951
+ ), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0_887_27435" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", d: "M0 0h14v14H0z" }))))), D3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9950
9952
  "path",
9951
9953
  {
9952
9954
  d: "M6.833 8.044v-6.04M4.743 4.09L6.833 2l2.091 2.09M10.55 7.043v4.324a.466.466 0 01-.465.464H3.582a.463.463 0 01-.465-.464V7.043",
@@ -9954,7 +9956,7 @@ const T3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9954
9956
  strokeLinecap: "round",
9955
9957
  strokeLinejoin: "round"
9956
9958
  }
9957
- ))), D3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9959
+ ))), z3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9958
9960
  "path",
9959
9961
  {
9960
9962
  d: "M12.984 5.302L10.943 3.34l-.005-.005a2.624 2.624 0 00-1.816-.733H4.94c-.68 0-1.33.262-1.816.733l-2.04 1.962h-.006a.257.257 0 00-.005.366l1.214 1.214-.005-.005c.094.094.246.1.35.016l1.492-1.162v6.018c0 .14.115.256.261.256H9.62h-.005c.141 0 .261-.12.261-.262V5.721l1.492 1.155c.1.084.256.079.35-.02l1.214-1.22h-.005c.1-.105.1-.272-.005-.372l-.005-.005.068.043zM5.473 2.613a1.567 1.567 0 103.134-.01",
@@ -9962,7 +9964,7 @@ const T3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9962
9964
  strokeLinecap: "round",
9963
9965
  strokeLinejoin: "round"
9964
9966
  }
9965
- ))), D2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9967
+ ))), z2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9966
9968
  "path",
9967
9969
  {
9968
9970
  d: "M13.249 5.5h-8.49a.7.7 0 00-.699.653l-.557 8.354A1.4 1.4 0 004.9 16h8.207a1.4 1.4 0 001.397-1.493l-.557-8.354a.7.7 0 00-.698-.653v0z",
@@ -9981,16 +9983,16 @@ const T3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
9981
9983
  strokeLinejoin: "round"
9982
9984
  }
9983
9985
  )));
9984
- D2.tags = ["cart", "shopping", "bag", "store"];
9985
- const z2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9986
+ z2.tags = ["cart", "shopping", "bag", "store"];
9987
+ const H2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9986
9988
  "path",
9987
9989
  {
9988
9990
  d: "M5.529 4.406c-.338.756-.204 2.11-.15 3.058-.365.202-.833-.153-1.098-.153-.276 0-.605.182-.656.452-.037.194.05.478.675.725.242.095.818.208.95.522.188.44-.961 2.476-2.766 2.773a.28.28 0 00-.234.292c.032.549 1.262.764 1.807.848.055.075.1.394.172.636a.313.313 0 00.327.239c.277 0 .738-.214 1.54-.081.787.13 1.526 1.246 2.945 1.246 1.32 0 2.106-1.12 2.863-1.246a3.31 3.31 0 011.236.032c.29.057.55.089.632-.196.072-.246.117-.558.171-.632.54-.083 1.776-.298 1.807-.846a.28.28 0 00-.234-.292c-1.775-.293-2.959-2.322-2.767-2.774.133-.313.704-.425.95-.522.459-.18.688-.403.683-.66-.006-.329-.402-.525-.694-.525-.296 0-.722.35-1.067.16.054-.954.187-2.303-.15-3.058-.638-1.43-2.059-2.154-3.478-2.154-1.411 0-2.82.713-3.464 2.156z",
9989
9991
  fill: "#000"
9990
9992
  }
9991
9993
  )));
9992
- z2.tags = ["logo", "social media"];
9993
- const z3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9994
+ H2.tags = ["logo", "social media"];
9995
+ const H3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
9994
9996
  "path",
9995
9997
  {
9996
9998
  d: "M10.5 7.5L8.746 9.003A5 5 0 007 12.8v.125",
@@ -10006,7 +10008,7 @@ const z3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10006
10008
  strokeLinecap: "round",
10007
10009
  strokeLinejoin: "round"
10008
10010
  }
10009
- ))), H2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10011
+ ))), O2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10010
10012
  "path",
10011
10013
  {
10012
10014
  d: "M10.851 8.4H3.25A.249.249 0 003 8.65v2.203c0 .137.111.248.249.248h7.602a.248.248 0 00.249-.248V8.649a.249.249 0 00-.248-.249z",
@@ -10023,8 +10025,8 @@ const z3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10023
10025
  strokeLinejoin: "round"
10024
10026
  }
10025
10027
  )));
10026
- H2.tags = ["balance", "collect", "money"];
10027
- const O2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10028
+ O2.tags = ["balance", "collect", "money"];
10029
+ const W2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10028
10030
  "path",
10029
10031
  {
10030
10032
  d: "M7.324 2.199l1.488 2.946 2.861.283a.364.364 0 01.306.236.356.356 0 01-.085.375L9.536 8.373l.874 3.172a.356.356 0 01-.12.372.364.364 0 01-.392.044L7 10.525l-2.898 1.437a.364.364 0 01-.507-.212.355.355 0 01-.004-.203l.873-3.174-2.358-2.336a.357.357 0 01.22-.61l2.862-.284 1.488-2.945A.36.36 0 017 2a.365.365 0 01.324.2z",
@@ -10033,8 +10035,8 @@ const O2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10033
10035
  strokeLinejoin: "round"
10034
10036
  }
10035
10037
  )));
10036
- O2.tags = ["favourite", "favorite"];
10037
- const W2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10038
+ W2.tags = ["favourite", "favorite"];
10039
+ const j2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10038
10040
  "path",
10039
10041
  {
10040
10042
  d: "M7.389 1.239l1.785 3.535 3.434.34a.437.437 0 01.367.283.426.426 0 01-.102.45l-2.83 2.8 1.049 3.807a.427.427 0 01-.144.446.438.438 0 01-.47.053L7 11.23l-3.478 1.725a.438.438 0 01-.608-.255.426.426 0 01-.005-.244l1.048-3.808-2.83-2.804a.429.429 0 01.265-.732l3.434-.34 1.785-3.535A.432.432 0 017.001 1a.438.438 0 01.388.239z",
@@ -10044,8 +10046,8 @@ const W2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10044
10046
  strokeLinejoin: "round"
10045
10047
  }
10046
10048
  )));
10047
- W2.tags = ["favourite", "favorite"];
10048
- const H3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10049
+ j2.tags = ["favourite", "favorite"];
10050
+ const O3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10049
10051
  "path",
10050
10052
  {
10051
10053
  d: "M2.462 6.353v5.833M11.538 6.353v5.833M8.296 12.185V9.593a1.296 1.296 0 00-2.592 0v2.592M1.167 12.186h11.667M2.509 6.352c-.99-.007-1.636-.988-1.207-1.833l1-1.97c.229-.449.708-.734 1.234-.734h6.928c.526 0 1.006.285 1.234.734l1 1.97c.43.845-.216 1.826-1.206 1.833-.827 0-1.497-.565-1.497-1.262v-.028c0 .712-.67 1.29-1.497 1.29-.826 0-1.497-.578-1.497-1.29 0 .712-.67 1.29-1.497 1.29-.826 0-1.496-.578-1.496-1.29v.028c-.002.697-.672 1.262-1.499 1.262v0z",
@@ -10053,7 +10055,7 @@ const H3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10053
10055
  strokeLinecap: "round",
10054
10056
  strokeLinejoin: "round"
10055
10057
  }
10056
- ))), j2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10058
+ ))), P2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10057
10059
  "path",
10058
10060
  {
10059
10061
  d: "M5.786 15.52h-2.5c-.2 0-.413-.034-.542-.187a.751.751 0 01-.173-.477V3.686a.744.744 0 01.41-.665l.737-.37a.744.744 0 01.665-.002l1.17.579L6.7 2.652a.744.744 0 01.666-.002l1.16.578 1.16-.578a.744.744 0 01.666.002l1.147.576 1.17-.58a.744.744 0 01.665.003l.737.37a.745.745 0 01.41.665v1.897",
@@ -10081,8 +10083,8 @@ const H3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10081
10083
  strokeLinejoin: "round"
10082
10084
  }
10083
10085
  )));
10084
- j2.tags = ["tax", "money", "finance", "fees"];
10085
- const P2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10086
+ P2.tags = ["tax", "money", "finance", "fees"];
10087
+ const Z2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10086
10088
  "path",
10087
10089
  {
10088
10090
  d: "M12.79 3.857h1.416c.437 0 .792.355.792.792v5.541a.792.792 0 01-.792.792H12.79a.792.792 0 01-.792-.792V4.65c0-.438.355-.793.792-.793v0z",
@@ -10101,8 +10103,8 @@ const P2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
10101
10103
  strokeLinejoin: "round"
10102
10104
  }
10103
10105
  )));
10104
- P2.tags = ["feedback", "thumb", "down", "dislike"];
10105
- const Z2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10106
+ Z2.tags = ["feedback", "thumb", "down", "dislike"];
10107
+ const X2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10106
10108
  "path",
10107
10109
  {
10108
10110
  d: "M5.208 14.25H3.792A.792.792 0 013 13.458V7.917c0-.437.355-.792.792-.792h1.416c.437 0 .792.355.792.792v5.541a.792.792 0 01-.792.792v0zM6 7.929l2.737-3.563a1.3 1.3 0 012.035-.035c.199.24.307.544.307.856V7.64h2.322c.45 0 .872.225 1.122.6l.247.368c.221.33.286.742.175 1.124l-1.019 3.541a1.35 1.35 0 01-1.297.977H7.913a1.35 1.35 0 01-.989-.43L6 12.824",
@@ -10112,8 +10114,8 @@ const Z2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
10112
10114
  strokeLinejoin: "round"
10113
10115
  }
10114
10116
  )));
10115
- Z2.tags = ["feedback", "thumb", "up", "like"];
10116
- const X2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10117
+ X2.tags = ["feedback", "thumb", "up", "like"];
10118
+ const Y2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10117
10119
  "path",
10118
10120
  {
10119
10121
  d: "M11.693 4.31a1.354 1.354 0 11-1.915-1.915L8.66 1.278a.451.451 0 00-.639 0L1.32 7.98a.451.451 0 000 .638l1.117 1.117a1.354 1.354 0 011.916 1.916l1.117 1.117a.451.451 0 00.638 0l6.703-6.703a.451.451 0 000-.639L11.693 4.31z",
@@ -10122,16 +10124,16 @@ const X2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10122
10124
  strokeLinejoin: "round"
10123
10125
  }
10124
10126
  )));
10125
- X2.tags = ["partner", "affiliate"];
10126
- const Y2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10127
+ Y2.tags = ["partner", "affiliate"];
10128
+ const J2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10127
10129
  "path",
10128
10130
  {
10129
10131
  d: "M15.187 7.786a5.54 5.54 0 01-3.238-1.035v4.713a4.286 4.286 0 11-3.698-4.248v2.371a1.968 1.968 0 101.377 1.877V2.25h2.321c-.002.196.015.392.05.585A3.221 3.221 0 0013.42 4.95a3.203 3.203 0 001.767.532v2.304z",
10130
10132
  fill: "#000"
10131
10133
  }
10132
10134
  )));
10133
- Y2.tags = ["logo", "social media"];
10134
- const J2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10135
+ J2.tags = ["logo", "social media"];
10136
+ const U2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10135
10137
  "path",
10136
10138
  {
10137
10139
  d: "M9.5 7L12 9.5 9.5 12M12 9.502H2M4.5 7L2 4.5 4.5 2M12 4.502H2",
@@ -10140,7 +10142,7 @@ const J2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10140
10142
  strokeLinejoin: "round"
10141
10143
  }
10142
10144
  )));
10143
- J2.tags = ["store credit", "refund", "return", "payment"];
10145
+ U2.tags = ["store credit", "refund", "return", "payment"];
10144
10146
  const n1 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10145
10147
  "g",
10146
10148
  {
@@ -10152,23 +10154,23 @@ const n1 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10152
10154
  /* @__PURE__ */ n.createElement("path", { d: "M1.828 3.324H12.15M8.095 1.85H5.883v0a.737.737 0 00-.737.737v.737h3.686v-.737 0a.737.737 0 00-.737-.737v0zM5.883 9.591V5.905M8.095 9.591V5.905M10.363 11.495v0a.737.737 0 01-.735.677H4.35v0a.737.737 0 01-.735-.677l-.681-8.17h8.11l-.681 8.17z" })
10153
10155
  ), /* @__PURE__ */ n.createElement("defs", null, /* @__PURE__ */ n.createElement("clipPath", { id: "prefix__clip0_141_9201" }, /* @__PURE__ */ n.createElement("path", { fill: "#fff", transform: "translate(1.09 1.113)", d: "M0 0h11.796v11.796H0z" })))));
10154
10156
  n1.tags = ["delete", "remove", "bin"];
10155
- const U2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10157
+ const Q2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10156
10158
  "path",
10157
10159
  {
10158
10160
  d: "M14.646 7.026l1.104-1.201h-2.445a7.643 7.643 0 00-8.602 0H2.25l1.104 1.2a3.373 3.373 0 004.565 4.967L9 13.17l1.08-1.176a3.373 3.373 0 005.667-2.474 3.364 3.364 0 00-1.1-2.493zM5.626 11.8a2.283 2.283 0 110-4.565 2.283 2.283 0 010 4.565zM9 9.453C9 7.95 7.907 6.662 6.467 6.11a6.586 6.586 0 015.066 0C10.093 6.662 9 7.95 9 9.453zm3.372 2.348a2.283 2.283 0 110-4.566 2.283 2.283 0 010 4.566zm-6.746-3.48A1.197 1.197 0 106.823 9.52v-.003a1.195 1.195 0 00-1.197-1.194zm6.746 0a1.197 1.197 0 100 2.394 1.197 1.197 0 000-2.393z",
10159
10161
  fill: "#000"
10160
10162
  }
10161
10163
  )));
10162
- U2.tags = ["logo", "trip advisor review express", "tare"];
10163
- const Q2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10164
+ Q2.tags = ["logo", "trip advisor review express", "tare"];
10165
+ const q2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10164
10166
  "path",
10165
10167
  {
10166
10168
  d: "M15.75 4.677c-.496.22-1.03.368-1.59.436a2.776 2.776 0 001.217-1.533 5.53 5.53 0 01-1.759.672 2.77 2.77 0 00-4.72 2.527A7.865 7.865 0 013.19 3.884a2.768 2.768 0 00-.048 2.7c.215.402.526.745.905.998a2.763 2.763 0 01-1.254-.346v.035a2.77 2.77 0 002.222 2.716c-.408.11-.836.127-1.251.048a2.771 2.771 0 002.587 1.923 5.558 5.558 0 01-4.101 1.147 7.833 7.833 0 004.245 1.245c5.096 0 7.881-4.22 7.881-7.88 0-.12-.003-.24-.008-.359a5.63 5.63 0 001.38-1.432l.002-.002z",
10167
10169
  fill: "#000"
10168
10170
  }
10169
10171
  )));
10170
- Q2.tags = ["logo", "social media", "tweet"];
10171
- const O3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10172
+ q2.tags = ["logo", "social media", "tweet"];
10173
+ const W3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10172
10174
  "path",
10173
10175
  {
10174
10176
  d: "M5.056 3.5L3.5 1.943M4.278 5.055H3.5M6.611 2.722v-.778M8.167 4.277H10.5a2.333 2.333 0 110 4.667H8.167M3.226 6.697L1.85 8.072a2.333 2.333 0 003.3 3.3l1.375-1.376",
@@ -10176,7 +10178,7 @@ const O3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10176
10178
  strokeLinecap: "round",
10177
10179
  strokeLinejoin: "round"
10178
10180
  }
10179
- ))), q2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
10181
+ ))), K2 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
10180
10182
  "path",
10181
10183
  {
10182
10184
  d: "M2.3 12.3a2.87 2.87 0 012.887-2.887h3.347a2.87 2.87 0 012.888 2.887M8.862 2.588c1.116 1.115 1.116 2.887 0 3.937-1.116 1.05-2.887 1.116-3.937 0-1.05-1.116-1.116-2.887 0-3.937a2.855 2.855 0 013.937 0z",
@@ -10185,8 +10187,8 @@ const O3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10185
10187
  strokeLinejoin: "round"
10186
10188
  }
10187
10189
  )));
10188
- q2.tags = ["adult", "demographic"];
10189
- const K2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10190
+ K2.tags = ["adult", "demographic"];
10191
+ const _2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10190
10192
  "path",
10191
10193
  {
10192
10194
  d: "M2.6 12c0-1.563 1.25-2.75 2.75-2.75h3.188c1.563 0 2.75 1.25 2.75 2.75M8.85 2.75c1.063 1.063 1.063 2.75 0 3.75-1.062 1-2.75 1.063-3.75 0s-1.062-2.75 0-3.75c1.063-1 2.688-1 3.75 0zM1 7h2.5M2.249 8.25v-2.5",
@@ -10195,8 +10197,8 @@ const K2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10195
10197
  strokeLinejoin: "round"
10196
10198
  }
10197
10199
  )));
10198
- K2.tags = ["plus", "change quantity"];
10199
- const _2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 15, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10200
+ _2.tags = ["plus", "change quantity"];
10201
+ const $2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 15, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10200
10202
  "path",
10201
10203
  {
10202
10204
  d: "M9.917 13.333a2.917 2.917 0 100-5.833 2.917 2.917 0 000 5.833zM8.167 10.417h3.5M1.167 9.833c0-.578.138-1.148.4-1.658.263-.51.643-.943 1.105-1.262a3.224 3.224 0 013.162-.3",
@@ -10213,8 +10215,8 @@ const _2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10213
10215
  strokeLinejoin: "round"
10214
10216
  }
10215
10217
  )));
10216
- _2.tags = ["minus", "remove"];
10217
- const $2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10218
+ $2.tags = ["minus", "remove"];
10219
+ const e4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10218
10220
  "path",
10219
10221
  {
10220
10222
  d: "M6.956 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM2.25 11.412a2.647 2.647 0 012.647-2.647h1.52M11.417 9.217h.832v-.832M9.556 11.018h-.831v.832",
@@ -10231,8 +10233,8 @@ const $2 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10231
10233
  strokeLinejoin: "round"
10232
10234
  }
10233
10235
  )));
10234
- $2.tags = ["guest", "change quantity"];
10235
- const e4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10236
+ e4.tags = ["guest", "change quantity"];
10237
+ const t4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10236
10238
  "path",
10237
10239
  {
10238
10240
  d: "M2.5 7.642a.6.6 0 01.933-.499L6.667 9.3a.6.6 0 00.666 0l3.234-2.157a.6.6 0 01.933.5V9.93a.6.6 0 01-.267.5l-3.9 2.599a.6.6 0 01-.666 0l-3.9-2.602a.6.6 0 01-.267-.5V7.642zM7.283 1.172L7.9 2.5h1.2a.293.293 0 01.207.513L8.265 4.04l.577 1.324a.314.314 0 01-.448.393L7 4.973l-1.394.784a.314.314 0 01-.448-.393l.577-1.324-1.041-1.026A.293.293 0 014.9 2.5h1.2l.617-1.328a.318.318 0 01.566 0z",
@@ -10241,8 +10243,8 @@ const e4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10241
10243
  strokeLinejoin: "round"
10242
10244
  }
10243
10245
  )));
10244
- e4.tags = ["military", "soldier"];
10245
- const W3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
10246
+ t4.tags = ["military", "soldier"];
10247
+ const j3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
10246
10248
  "svg",
10247
10249
  {
10248
10250
  xmlns: "http://www.w3.org/2000/svg",
@@ -10264,7 +10266,7 @@ const W3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
10264
10266
  xlinkHref: "data:image/png;base64,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"
10265
10267
  }
10266
10268
  ))
10267
- )), j3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10269
+ )), P3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10268
10270
  "path",
10269
10271
  {
10270
10272
  d: "M3.9 4.499h4.797M3.9 6.898h2.998M11.096 6.205V2.7a1.2 1.2 0 00-1.2-1.2H2.7a1.2 1.2 0 00-1.2 1.2v7.796a1.2 1.2 0 001.2 1.2h1.936",
@@ -10280,7 +10282,7 @@ const W3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
10280
10282
  strokeLinecap: "round",
10281
10283
  strokeLinejoin: "round"
10282
10284
  }
10283
- ))), t4 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement(
10285
+ ))), n4 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "34", height: "24", fill: "none", viewBox: "0 0 34 24", ...e }, /* @__PURE__ */ n.createElement("rect", { width: "33", height: "23", x: "0.5", y: "0.5", fill: "#fff", stroke: "#D9D9D9", rx: "3.5" }), /* @__PURE__ */ n.createElement(
10284
10286
  "path",
10285
10287
  {
10286
10288
  fill: "#172B85",
@@ -10289,8 +10291,8 @@ const W3 = p(({ className: e, ...t }) => /* @__PURE__ */ n.createElement(
10289
10291
  clipRule: "evenodd"
10290
10292
  }
10291
10293
  )));
10292
- t4.tags = ["cc", "credit card"];
10293
- const n4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10294
+ n4.tags = ["cc", "credit card"];
10295
+ const r4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10294
10296
  "path",
10295
10297
  {
10296
10298
  d: "M11.693 4.31a1.354 1.354 0 11-1.915-1.915L8.66 1.278a.451.451 0 00-.639 0L1.32 7.98a.451.451 0 000 .638l1.117 1.117a1.354 1.354 0 011.916 1.916l1.117 1.117a.451.451 0 00.638 0l6.703-6.703a.451.451 0 000-.639L11.693 4.31z",
@@ -10305,8 +10307,8 @@ const n4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10305
10307
  fill: "currentColor"
10306
10308
  }
10307
10309
  )));
10308
- n4.tags = ["coupon"];
10309
- const r4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
10310
+ r4.tags = ["coupon"];
10311
+ const o4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ n.createElement(
10310
10312
  "rect",
10311
10313
  {
10312
10314
  x: 2,
@@ -10339,8 +10341,8 @@ const r4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height:
10339
10341
  strokeLinejoin: "round"
10340
10342
  }
10341
10343
  )));
10342
- r4.tags = ["checklist"];
10343
- const o4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10344
+ o4.tags = ["checklist"];
10345
+ const a4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10344
10346
  "path",
10345
10347
  {
10346
10348
  d: "M12.798 6.815a5.972 5.972 0 01-5.893 5.984h-.006a5.805 5.805 0 01-5.888-5.717c-.006-.026-.006-.053-.006-.075L1 7.002a5.974 5.974 0 015.888-5.996v-.005a5.795 5.795 0 015.883 5.711v.07l.027.033zM6.91 7.475v-3.23",
@@ -10357,7 +10359,7 @@ const o4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10357
10359
  strokeLinejoin: "round"
10358
10360
  }
10359
10361
  )));
10360
- o4.tags = ["exclamation"];
10362
+ a4.tags = ["exclamation"];
10361
10363
  const r1 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10362
10364
  "path",
10363
10365
  {
@@ -10376,7 +10378,7 @@ const r1 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10376
10378
  }
10377
10379
  )));
10378
10380
  r1.tags = ["exclamation"];
10379
- const a4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M7 8.04V6.17", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("circle", { cx: 7, cy: 9.7, r: 0.5, fill: "currentColor" }), /* @__PURE__ */ n.createElement(
10381
+ const i4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M7 8.04V6.17", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("circle", { cx: 7, cy: 9.7, r: 0.5, fill: "currentColor" }), /* @__PURE__ */ n.createElement(
10380
10382
  "path",
10381
10383
  {
10382
10384
  d: "M8.015 3.55l3.83 6.702a1.169 1.169 0 01-1.015 1.749H3.17c-.897 0-1.46-.97-1.014-1.749l3.83-6.702a1.168 1.168 0 012.029 0z",
@@ -10385,8 +10387,8 @@ const a4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10385
10387
  strokeLinejoin: "round"
10386
10388
  }
10387
10389
  )));
10388
- a4.tags = ["exclamation"];
10389
- const i4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10390
+ i4.tags = ["exclamation"];
10391
+ const s4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10390
10392
  "path",
10391
10393
  {
10392
10394
  d: "M1.5 4.556v4.888A3.056 3.056 0 004.556 12.5h4.888A3.056 3.056 0 0012.5 9.444V4.556A3.056 3.056 0 009.444 1.5H4.556A3.056 3.056 0 001.5 4.556z",
@@ -10403,8 +10405,8 @@ const i4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10403
10405
  strokeLinejoin: "round"
10404
10406
  }
10405
10407
  )));
10406
- i4.tags = ["weight", "forms", "questionnaire"];
10407
- const s4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10408
+ s4.tags = ["weight", "forms", "questionnaire"];
10409
+ const l4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10408
10410
  "path",
10409
10411
  {
10410
10412
  d: "M6.998 9.363a1.443 1.443 0 100 2.887 1.443 1.443 0 000-2.887zM10.198 7.554a5.284 5.284 0 00-6.409 0M12.771 4.552a9.614 9.614 0 00-11.546-.001",
@@ -10413,8 +10415,8 @@ const s4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10413
10415
  strokeLinejoin: "round"
10414
10416
  }
10415
10417
  )));
10416
- s4.tags = ["private booking"];
10417
- const l4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10418
+ l4.tags = ["private booking"];
10419
+ const c4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 15, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10418
10420
  "path",
10419
10421
  {
10420
10422
  stroke: "currentColor",
@@ -10423,8 +10425,8 @@ const l4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10423
10425
  d: "M3.166 11h9M11.697 4.746l-5.709 5.708v0a.379.379 0 01-.193.104l-2.176.435v0a.38.38 0 01-.446-.447l.435-2.174v0a.383.383 0 01.104-.194L9.421 2.47v0a1.605 1.605 0 012.269 0l.007.007v0a1.606 1.606 0 010 2.27v0z"
10424
10426
  }
10425
10427
  )));
10426
- l4.tags = ["pen", "waiver"];
10427
- const P3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M9 16.882a5.5 5.5 0 100-11 5.5 5.5 0 000 11z", stroke: "currentColor" }), /* @__PURE__ */ n.createElement(
10428
+ c4.tags = ["pen", "waiver"];
10429
+ const Z3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement("path", { d: "M9 16.882a5.5 5.5 0 100-11 5.5 5.5 0 000 11z", stroke: "currentColor" }), /* @__PURE__ */ n.createElement(
10428
10430
  "mask",
10429
10431
  {
10430
10432
  id: "prefix__a",
@@ -10438,7 +10440,7 @@ const P3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
10438
10440
  height: 13
10439
10441
  },
10440
10442
  /* @__PURE__ */ n.createElement("path", { d: "M9 16.882a5.5 5.5 0 100-11 5.5 5.5 0 000 11z", fill: "#fff", stroke: "#fff" })
10441
- ), /* @__PURE__ */ n.createElement("g", { mask: "url(#prefix__a)", stroke: "currentColor" }, /* @__PURE__ */ n.createElement("path", { d: "M4 13l1.5-2 2 2M14 13.5l-3.5-4-5 6.5" })), /* @__PURE__ */ n.createElement("rect", { x: 4.5, y: 1.5, width: 9, height: 3, rx: 0.5, stroke: "currentColor" }), /* @__PURE__ */ n.createElement("circle", { cx: 7.5, cy: 3, r: 0.5, fill: "currentColor" }), /* @__PURE__ */ n.createElement("circle", { cx: 10.5, cy: 3, r: 0.5, fill: "currentColor" }))), c4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10443
+ ), /* @__PURE__ */ n.createElement("g", { mask: "url(#prefix__a)", stroke: "currentColor" }, /* @__PURE__ */ n.createElement("path", { d: "M4 13l1.5-2 2 2M14 13.5l-3.5-4-5 6.5" })), /* @__PURE__ */ n.createElement("rect", { x: 4.5, y: 1.5, width: 9, height: 3, rx: 0.5, stroke: "currentColor" }), /* @__PURE__ */ n.createElement("circle", { cx: 7.5, cy: 3, r: 0.5, fill: "currentColor" }), /* @__PURE__ */ n.createElement("circle", { cx: 10.5, cy: 3, r: 0.5, fill: "currentColor" }))), u4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10442
10444
  "path",
10443
10445
  {
10444
10446
  d: "M5.769 11.865h2.498M7.019 12v.5M5.768 10.268c0 .135.11.244.25.244h2-.006c.135 0 .25-.114.25-.25v-.424a4.29 4.29 0 003.244-4.083L11.5 5.75a4.377 4.377 0 00-4.503-4.248A4.369 4.369 0 002.5 5.745a4.288 4.288 0 003.248 4.078l.02.445z",
@@ -10447,16 +10449,16 @@ const P3 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18
10447
10449
  strokeLinejoin: "round"
10448
10450
  }
10449
10451
  )));
10450
- c4.tags = ["nps", "net promoter score"];
10451
- const u4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10452
+ u4.tags = ["nps", "net promoter score"];
10453
+ const d4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 18 18", width: 18, height: 18, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10452
10454
  "path",
10453
10455
  {
10454
10456
  d: "M10.575 10.738l3.18 1.03s.455.084.45.389c-.003.214-.138.458-.138.458l-1.344 1.938s-.24.201-.482.201-.52-.377-.52-.377l-1.7-2.864s-.192-.418.035-.648c.207-.211.519-.127.519-.127zm-.681-1.316c.162.279.612.198.612.198l3.173-.936s.433-.178.494-.414c.06-.237-.071-.523-.071-.523l-1.517-1.803s-.132-.228-.404-.25c-.301-.027-.486.34-.486.34L9.902 8.884c0-.001-.158.282-.008.54zm-1.5-1.11c.374-.093.434-.64.434-.64l-.025-4.56s-.057-.563-.307-.716c-.393-.24-.51-.115-.622-.098l-2.634.987s-.258.087-.393.304c-.192.308.195.759.195.759L7.78 8.116s.27.282.615.196zm-.65 1.845c.01-.352-.418-.563-.418-.563L4.494 8.15s-.42-.174-.624-.053c-.156.093-.294.262-.307.41L3.378 10.8s-.027.397.075.578c.144.256.62.078.62.078l3.306-.738c.128-.087.353-.095.365-.56zm.822 1.237c-.284-.147-.623.157-.623.157l-2.214 2.46s-.276.376-.206.607a.595.595 0 00.33.4l2.224.708s.27.056.474-.004c.29-.085.236-.542.236-.542l.05-3.33s-.011-.32-.27-.456z",
10455
10457
  fill: "#000"
10456
10458
  }
10457
10459
  )));
10458
- u4.tags = ["logo", "social media", "review"];
10459
- const d4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10460
+ d4.tags = ["logo", "social media", "review"];
10461
+ const m4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14", width: 14, height: 14, fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10460
10462
  "path",
10461
10463
  {
10462
10464
  d: "M1.41699 8.05382H1.41699C2.55128 10.7214 5.63333 11.9644 8.30094 10.8301C10.9685 9.69584 12.2115 6.61379 11.0772 3.94618C9.94295 1.27858 6.86091 0.0355801 4.1933 1.16987C2.94354 1.70128 1.94841 2.69642 1.41699 3.94618",
@@ -10473,8 +10475,8 @@ const d4 = p((e) => /* @__PURE__ */ n.createElement("svg", { viewBox: "0 0 14 14
10473
10475
  strokeLinejoin: "round"
10474
10476
  }
10475
10477
  ), /* @__PURE__ */ n.createElement("path", { d: "M8.30247 6H1", stroke: "white", strokeLinecap: "round", strokeLinejoin: "round" })));
10476
- d4.tags = ["logout"];
10477
- const m4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, viewBox: "0 0 14 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10478
+ m4.tags = ["logout"];
10479
+ const p4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height: 14, viewBox: "0 0 14 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10478
10480
  "path",
10479
10481
  {
10480
10482
  d: "M6.25 11.25C9.1495 11.25 11.5 8.8995 11.5 6C11.5 3.1005 9.1495 0.75 6.25 0.75C3.3505 0.75 1 3.1005 1 6C1 8.8995 3.3505 11.25 6.25 11.25Z",
@@ -10491,8 +10493,8 @@ const m4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 14, height:
10491
10493
  strokeLinejoin: "round"
10492
10494
  }
10493
10495
  ), /* @__PURE__ */ n.createElement("path", { d: "M7.69238 4.55626L9.96055 2.28809", stroke: "white", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("path", { d: "M2.54004 9.71156L4.80811 7.44348", stroke: "white", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("path", { d: "M4.80821 4.55626L2.54004 2.28809", stroke: "white", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ n.createElement("path", { d: "M9.96046 9.71156L7.69238 7.44348", stroke: "white", strokeLinecap: "round", strokeLinejoin: "round" })));
10494
- m4.tags = ["help", "center"];
10495
- const p4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 13, height: 14, viewBox: "0 0 13 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10496
+ p4.tags = ["help", "center"];
10497
+ const g4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 13, height: 14, viewBox: "0 0 13 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ n.createElement(
10496
10498
  "path",
10497
10499
  {
10498
10500
  d: "M11.5029 6.46253C11.5029 9.44339 9.26252 12.2313 6.25146 12.908C3.24041 12.2313 1 9.44339 1 6.46253V3.87815C1 3.34447 1.32297 2.86462 1.81595 2.66309L5.09811 1.31937C5.83726 1.0161 6.66633 1.0161 7.40416 1.31937L10.6863 2.66309C11.1806 2.86593 11.5023 3.34447 11.5023 3.87815V6.46253H11.5029Z",
@@ -10501,275 +10503,275 @@ const p4 = p((e) => /* @__PURE__ */ n.createElement("svg", { width: 13, height:
10501
10503
  strokeLinejoin: "round"
10502
10504
  }
10503
10505
  )));
10504
- p4.tags = ["privacy", "policy", "shield"];
10505
- const g4 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 18, height: 18, viewBox: "0 0 30 30", ...e }, /* @__PURE__ */ n.createElement(
10506
+ g4.tags = ["privacy", "policy", "shield"];
10507
+ const h4 = p((e) => /* @__PURE__ */ n.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 18, height: 18, viewBox: "0 0 30 30", ...e }, /* @__PURE__ */ n.createElement(
10506
10508
  "path",
10507
10509
  {
10508
10510
  d: "M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z",
10509
10511
  fill: "#000"
10510
10512
  }
10511
10513
  )));
10512
- g4.tags = ["logo", "social media", "x"];
10514
+ h4.tags = ["logo", "social media", "x"];
10513
10515
  export {
10514
- W4 as AccountIcon,
10515
- j4 as AddNoteIcon,
10516
- P4 as AddSquareIcon,
10516
+ j4 as AccountIcon,
10517
+ P4 as AddNoteIcon,
10518
+ Z4 as AddSquareIcon,
10517
10519
  Eo as Alert,
10518
- Z4 as AmexIcon,
10520
+ X4 as AmexIcon,
10519
10521
  k1 as AnnounceIcon,
10520
- X4 as AppIcon,
10521
- Y4 as ArchiveIcon,
10522
- Xc as ArrowCcwIcon,
10523
- Yc as ArrowCwIcon,
10524
- q4 as ArrowDownIcon,
10525
- J4 as ArrowRightIcon,
10526
- U4 as ArrowTopRightIcon,
10527
- Q4 as ArrowUpIcon,
10528
- Jc as AtIcon,
10522
+ Y4 as AppIcon,
10523
+ J4 as ArchiveIcon,
10524
+ Yc as ArrowCcwIcon,
10525
+ Jc as ArrowCwIcon,
10526
+ K4 as ArrowDownIcon,
10527
+ U4 as ArrowRightIcon,
10528
+ Q4 as ArrowTopRightIcon,
10529
+ q4 as ArrowUpIcon,
10530
+ Uc as AtIcon,
10529
10531
  ko as Avatar,
10530
10532
  y1 as Badge,
10531
- Uc as BalloonIcon,
10532
- Qc as BankCheckIcon,
10533
- qc as BarGraphIcon,
10533
+ Qc as BalloonIcon,
10534
+ qc as BankCheckIcon,
10535
+ Kc as BarGraphIcon,
10534
10536
  $a as BaseChartOptions,
10535
10537
  Io as BellIcon,
10536
- Kc as BookmarkIcon,
10537
- _c as BoxIcon,
10538
+ _c as BookmarkIcon,
10539
+ $c as BoxIcon,
10538
10540
  bt as Breadcrumb,
10539
10541
  Pe as Breakdown,
10540
- $c as BriefcaseIcon,
10542
+ eu as BriefcaseIcon,
10541
10543
  xe as Button,
10542
- K4 as ButtonCodeIcon,
10544
+ _4 as ButtonCodeIcon,
10543
10545
  Lo as ButtonGroup,
10544
- eu as CakeIcon,
10545
- tu as CalendarDayIcon,
10546
+ tu as CakeIcon,
10547
+ nu as CalendarDayIcon,
10546
10548
  e1 as CalendarIcon,
10547
- nu as CalendarMonthIcon,
10548
- ru as CalendarWeekIcon,
10549
- _4 as CapacityIcon,
10550
- ou as CardAltIcon,
10551
- au as CardIcon,
10552
- iu as CartIcon,
10553
- su as CashIcon,
10549
+ ru as CalendarMonthIcon,
10550
+ ou as CalendarWeekIcon,
10551
+ $4 as CapacityIcon,
10552
+ au as CardAltIcon,
10553
+ iu as CardIcon,
10554
+ su as CartIcon,
10555
+ lu as CashIcon,
10554
10556
  go as CheckIcon,
10555
10557
  Wa as Checkbox,
10556
- cu as CheckboxIcon,
10557
- lu as ChecklistIcon,
10558
- uu as ChevronDownIcon,
10558
+ uu as CheckboxIcon,
10559
+ cu as ChecklistIcon,
10560
+ du as ChevronDownIcon,
10559
10561
  Ya as ChevronLeftIcon,
10560
10562
  Zt as ChevronRightIcon,
10561
- du as ChevronUpIcon,
10562
- vu as ChipIcon,
10563
- mu as CircleCheckIcon,
10564
- pu as CircleCrossIcon,
10565
- $4 as CircleCrossImage,
10566
- e3 as CircleCrownIcon,
10567
- gu as CircleDollarIcon,
10568
- n3 as CircleDotIcon,
10569
- r3 as CircleInfinityIcon,
10570
- o3 as CircleInfoIcon,
10571
- a3 as CircleKeyIcon,
10572
- hu as CirclePauseIcon,
10573
- i3 as CirclePlusIcon,
10574
- t3 as CirclePlusImage,
10575
- fu as CircleSubtractIcon,
10576
- bu as ClipboardIcon,
10577
- s3 as ClockAltIcon,
10578
- l3 as ClockIcon,
10579
- wu as ClockManualIcon,
10563
+ mu as ChevronUpIcon,
10564
+ bu as ChipIcon,
10565
+ pu as CircleCheckIcon,
10566
+ gu as CircleCrossIcon,
10567
+ e3 as CircleCrossImage,
10568
+ t3 as CircleCrownIcon,
10569
+ hu as CircleDollarIcon,
10570
+ r3 as CircleDotIcon,
10571
+ o3 as CircleInfinityIcon,
10572
+ a3 as CircleInfoIcon,
10573
+ i3 as CircleKeyIcon,
10574
+ fu as CirclePauseIcon,
10575
+ s3 as CirclePlusIcon,
10576
+ n3 as CirclePlusImage,
10577
+ vu as CircleSubtractIcon,
10578
+ wu as ClipboardIcon,
10579
+ l3 as ClockAltIcon,
10580
+ c3 as ClockIcon,
10581
+ xu as ClockManualIcon,
10580
10582
  $e as CloseIcon,
10581
- m3 as CollapseIcon,
10583
+ p3 as CollapseIcon,
10582
10584
  Ic as ComboBox,
10583
- u3 as CommentAltIcon,
10584
- c3 as CommentIcon,
10585
- xu as CompassIcon,
10586
- d3 as ComputerImage,
10587
- Eu as CopyIcon,
10585
+ d3 as CommentAltIcon,
10586
+ u3 as CommentIcon,
10587
+ Eu as CompassIcon,
10588
+ m3 as ComputerImage,
10589
+ Iu as CopyIcon,
10588
10590
  cn as Counter,
10589
- Iu as CouponIcon,
10590
- yu as CrmIcon,
10591
- p3 as CrownIcon,
10591
+ yu as CouponIcon,
10592
+ Cu as CrmIcon,
10593
+ g3 as CrownIcon,
10592
10594
  je as Currency,
10593
- g3 as DashboardIcon,
10595
+ h3 as DashboardIcon,
10594
10596
  lr as DatePicker,
10595
- Gc as DatePickerPopover,
10596
- Cu as DecreaseIcon,
10597
- h3 as DepositIcon,
10598
- ku as DinersClubIcon,
10599
- Lu as DisabledIcon,
10600
- Au as DiscoverIcon,
10601
- f3 as DisputeIcon,
10597
+ Dc as DatePickerPopover,
10598
+ ku as DecreaseIcon,
10599
+ f3 as DepositIcon,
10600
+ Au as DinersClubIcon,
10601
+ Mu as DisabledIcon,
10602
+ Lu as DiscoverIcon,
10603
+ v3 as DisputeIcon,
10602
10604
  Mn as Dot,
10603
- Mu as DoubleCheckIcon,
10605
+ Nu as DoubleCheckIcon,
10604
10606
  cr as DownArrowIcon,
10605
- Nu as DownloadIcon,
10607
+ Bu as DownloadIcon,
10606
10608
  un as Drawer,
10607
- Bu as DropdownIcon,
10608
- Su as DumbbellIcon,
10609
- Fu as DuplicateIcon,
10610
- Tu as DurationIcon,
10611
- Vu as EditIcon,
10612
- Ru as EditNoteIcon,
10613
- Gu as EllipsisIcon,
10614
- Du as EmailCheckedIcon,
10615
- v3 as EmailIcon,
10616
- zu as EmailResendIcon,
10617
- Hu as EmptyChecklistIcon,
10618
- b3 as EmvImage,
10619
- Ou as EquipmentIcon,
10620
- w3 as ExpediaImage,
10621
- Wu as ExportIcon,
10622
- ju as EyeIcon,
10623
- Zu as FaceNeutralIcon,
10624
- Xu as FaceSadIcon,
10625
- Yu as FaceSmileIcon,
10626
- Pu as FacebookIcon,
10609
+ Fu as DropdownIcon,
10610
+ Tu as DumbbellIcon,
10611
+ Su as DuplicateIcon,
10612
+ Vu as DurationIcon,
10613
+ Ru as EditIcon,
10614
+ Gu as EditNoteIcon,
10615
+ Du as EllipsisIcon,
10616
+ zu as EmailCheckedIcon,
10617
+ b3 as EmailIcon,
10618
+ Hu as EmailResendIcon,
10619
+ Ou as EmptyChecklistIcon,
10620
+ w3 as EmvImage,
10621
+ Wu as EquipmentIcon,
10622
+ x3 as ExpediaImage,
10623
+ ju as ExportIcon,
10624
+ Pu as EyeIcon,
10625
+ Xu as FaceNeutralIcon,
10626
+ Yu as FaceSadIcon,
10627
+ Ju as FaceSmileIcon,
10628
+ Zu as FacebookIcon,
10627
10629
  p1 as FadeIn,
10628
- Ju as FilterIcon,
10629
- Uu as FlagIcon,
10630
- qu as FlexFee2Icon,
10631
- Qu as FlexFeeIcon,
10632
- Ku as FoodIcon,
10633
- _u as ForkIcon,
10630
+ Uu as FilterIcon,
10631
+ Qu as FlagIcon,
10632
+ Ku as FlexFee2Icon,
10633
+ qu as FlexFeeIcon,
10634
+ _u as FoodIcon,
10635
+ $u as ForkIcon,
10634
10636
  mn as FormGroup,
10635
- x3 as GiftIcon,
10636
- E3 as GlobeIcon,
10637
- $u as HandIcon,
10638
- e2 as HandshakeIcon,
10637
+ E3 as GiftIcon,
10638
+ I3 as GlobeIcon,
10639
+ e2 as HandIcon,
10640
+ t2 as HandshakeIcon,
10639
10641
  tt as HeaderToolbar,
10640
- m4 as HelpCenterIcon,
10641
- H4 as HistogramOptions,
10642
- t2 as HouseIcon,
10642
+ p4 as HelpCenterIcon,
10643
+ O4 as HistogramOptions,
10644
+ n2 as HouseIcon,
10643
10645
  t1 as ImageIcon,
10644
- zc as ImageUpload,
10645
- I3 as InfinityIcon,
10646
- G4 as InlineValuePopover,
10646
+ Hc as ImageUpload,
10647
+ y3 as InfinityIcon,
10648
+ D4 as InlineValuePopover,
10647
10649
  Tt as Input,
10648
- n2 as InstagramIcon,
10649
- r2 as InvoiceIcon,
10650
+ r2 as InstagramIcon,
10651
+ o2 as InvoiceIcon,
10650
10652
  ze as Key,
10651
- y3 as KeyIcon,
10652
- C3 as KioskIcon,
10653
+ C3 as KeyIcon,
10654
+ k3 as KioskIcon,
10653
10655
  In as Label,
10654
- o2 as LightIcon,
10655
- k3 as LinkIcon,
10656
- A3 as LockIcon,
10656
+ a2 as LightIcon,
10657
+ A3 as LinkIcon,
10658
+ L3 as LockIcon,
10657
10659
  Nc as Login,
10658
10660
  St as Logo,
10659
- d4 as LogoutIcon,
10660
- s2 as MaestroIcon,
10661
- a2 as MagicIcon,
10662
- i2 as MasterCardIcon,
10663
- l2 as MedicalIcon,
10664
- u2 as MegaphoneIcon,
10665
- c2 as MenuIcon,
10666
- d2 as MinusIcon,
10667
- L3 as MixedChecklistIcon,
10668
- m2 as MobileIcon,
10661
+ m4 as LogoutIcon,
10662
+ l2 as MaestroIcon,
10663
+ i2 as MagicIcon,
10664
+ s2 as MasterCardIcon,
10665
+ c2 as MedicalIcon,
10666
+ d2 as MegaphoneIcon,
10667
+ u2 as MenuIcon,
10668
+ m2 as MinusIcon,
10669
+ M3 as MixedChecklistIcon,
10670
+ p2 as MobileIcon,
10669
10671
  Hn as Modal,
10670
- g2 as MoneyAddIcon,
10671
- h2 as MoneyBackIcon,
10672
- f2 as MoneyIcon,
10673
- p2 as MountainIcon,
10674
- v2 as MouseIcon,
10675
- Wc as Number,
10676
- b2 as PassIcon,
10677
- w2 as PenIcon,
10678
- Hc as Phone,
10679
- x2 as PhoneIcon,
10680
- E2 as PhotosIcon,
10681
- O4 as PieOptions,
10682
- I2 as PiggyBankIcon,
10683
- y2 as PinIcon,
10684
- C2 as PipeIcon,
10685
- k2 as PlusIcon,
10686
- p4 as PolicyIcon,
10672
+ h2 as MoneyAddIcon,
10673
+ f2 as MoneyBackIcon,
10674
+ v2 as MoneyIcon,
10675
+ g2 as MountainIcon,
10676
+ b2 as MouseIcon,
10677
+ jc as Number,
10678
+ w2 as PassIcon,
10679
+ x2 as PenIcon,
10680
+ Oc as Phone,
10681
+ E2 as PhoneIcon,
10682
+ I2 as PhotosIcon,
10683
+ W4 as PieOptions,
10684
+ y2 as PiggyBankIcon,
10685
+ C2 as PinIcon,
10686
+ k2 as PipeIcon,
10687
+ A2 as PlusIcon,
10688
+ g4 as PolicyIcon,
10687
10689
  Ae as Popover,
10688
10690
  Ft as PopoverList,
10689
- M3 as PrintIcon,
10690
- A2 as ProductsIcon,
10691
- T4 as Provider,
10692
- L2 as QuestionIcon,
10693
- N3 as QuestionnaireIcon,
10691
+ N3 as PrintIcon,
10692
+ L2 as ProductsIcon,
10693
+ V4 as Provider,
10694
+ M2 as QuestionIcon,
10695
+ B3 as QuestionnaireIcon,
10694
10696
  kc as RangeSlider,
10695
- B3 as ReceiptIcon,
10696
- N2 as ReceptionBellIcon,
10697
- B2 as ReceptionBellMoneyIcon,
10698
- M2 as RefreshIcon,
10697
+ F3 as ReceiptIcon,
10698
+ B2 as ReceptionBellIcon,
10699
+ F2 as ReceptionBellMoneyIcon,
10700
+ N2 as RefreshIcon,
10699
10701
  Ua as RelativeDateRange,
10700
- F3 as RosterIcon,
10701
- S3 as RoundedSquareIcon,
10702
- F2 as RulerIcon,
10702
+ S3 as RosterIcon,
10703
+ T3 as RoundedSquareIcon,
10704
+ S2 as RulerIcon,
10703
10705
  Ro as Search,
10704
- S2 as SearchAltIcon,
10706
+ T2 as SearchAltIcon,
10705
10707
  Vo as SearchIcon,
10706
10708
  Vt as Select,
10707
- T2 as SendIcon,
10708
- V2 as SeniorIcon,
10709
- R2 as SeniorV2Icon,
10710
- G2 as SeniorV3Icon,
10711
- T3 as ServiceIcon,
10712
- V3 as SettingsIcon,
10713
- R3 as ShapesIcon,
10714
- G3 as ShareIcon,
10715
- D3 as ShirtIcon,
10716
- D2 as ShoppingBagIcon,
10709
+ V2 as SendIcon,
10710
+ R2 as SeniorIcon,
10711
+ G2 as SeniorV2Icon,
10712
+ D2 as SeniorV3Icon,
10713
+ V3 as ServiceIcon,
10714
+ R3 as SettingsIcon,
10715
+ G3 as ShapesIcon,
10716
+ D3 as ShareIcon,
10717
+ z3 as ShirtIcon,
10718
+ z2 as ShoppingBagIcon,
10717
10719
  Re as Sidebar,
10718
10720
  Mc as Skeleton,
10719
10721
  g1 as SlideDown,
10720
- z2 as SnapchatIcon,
10722
+ H2 as SnapchatIcon,
10721
10723
  vt as Spinner,
10722
- z3 as SplitPaymentIcon,
10723
- H2 as StackIcon,
10724
- W2 as StarFilledIcon,
10725
- O2 as StarIcon,
10726
- H3 as StoreCreditIcon,
10724
+ H3 as SplitPaymentIcon,
10725
+ O2 as StackIcon,
10726
+ j2 as StarFilledIcon,
10727
+ W2 as StarIcon,
10728
+ O3 as StoreCreditIcon,
10727
10729
  w1 as SubmitButton,
10728
10730
  Je as Switch,
10729
10731
  ce as Table,
10730
10732
  gt as Tabs,
10731
10733
  C1 as Tag,
10732
- j2 as TaxIcon,
10734
+ P2 as TaxIcon,
10733
10735
  Pi as Textarea,
10734
- P2 as ThumbsDownIcon,
10735
- Z2 as ThumbsUpIcon,
10736
- X2 as TicketIcon,
10737
- Y2 as TikTokIcon,
10736
+ Z2 as ThumbsDownIcon,
10737
+ X2 as ThumbsUpIcon,
10738
+ Y2 as TicketIcon,
10739
+ J2 as TikTokIcon,
10738
10740
  E1 as ToggleButton,
10739
10741
  Gn as Tooltip,
10740
- J2 as TransferArrowIcon,
10742
+ U2 as TransferArrowIcon,
10741
10743
  n1 as TrashIcon,
10742
- U2 as TripadvisorIcon,
10743
- Q2 as TwitterIcon,
10744
- O3 as UnlinkIcon,
10745
- K2 as UserAddIcon,
10746
- $2 as UserChangedIcon,
10747
- q2 as UserIcon,
10748
- _2 as UserSubtractIcon,
10749
- W3 as VerifoneImage,
10750
- e4 as VeteranIcon,
10751
- j3 as ViewNotesIcon,
10752
- t4 as VisaIcon,
10753
- n4 as VoucherIcon,
10754
- r4 as WaitlistIcon,
10744
+ Q2 as TripadvisorIcon,
10745
+ q2 as TwitterIcon,
10746
+ W3 as UnlinkIcon,
10747
+ _2 as UserAddIcon,
10748
+ e4 as UserChangedIcon,
10749
+ K2 as UserIcon,
10750
+ $2 as UserSubtractIcon,
10751
+ j3 as VerifoneImage,
10752
+ t4 as VeteranIcon,
10753
+ P3 as ViewNotesIcon,
10754
+ n4 as VisaIcon,
10755
+ r4 as VoucherIcon,
10756
+ o4 as WaitlistIcon,
10755
10757
  r1 as WarningDiamondIcon,
10756
- o4 as WarningIcon,
10757
- a4 as WarningTriangleIcon,
10758
- i4 as WeightIcon,
10759
- s4 as WifiIcon,
10760
- l4 as WriteIcon,
10761
- g4 as XIcon,
10762
- P3 as XolaBotIcon,
10763
- z4 as XolaLogo,
10764
- D4 as XolaLogoCircle,
10758
+ a4 as WarningIcon,
10759
+ i4 as WarningTriangleIcon,
10760
+ s4 as WeightIcon,
10761
+ l4 as WifiIcon,
10762
+ c4 as WriteIcon,
10763
+ h4 as XIcon,
10764
+ Z3 as XolaBotIcon,
10765
+ H4 as XolaLogo,
10766
+ z4 as XolaLogoCircle,
10765
10767
  yo as XolaLogoSimple,
10766
- c4 as XrayIcon,
10767
- u4 as YelpIcon,
10768
+ u4 as XrayIcon,
10769
+ d4 as YelpIcon,
10768
10770
  Do as almostZero,
10769
- R4 as dateFromObjectId,
10771
+ G4 as dateFromObjectId,
10770
10772
  lo as flash,
10771
- Rc as formatDate,
10772
- V4 as formatTime,
10773
+ Gc as formatDate,
10774
+ R4 as formatTime,
10773
10775
  Wi as getSymbol,
10774
10776
  kt as isOSX,
10775
10777
  Xn as isZeroDecimal,