@arcblock/ux 3.3.10 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/lib/Dialog/dialog.d.ts +0 -27
  2. package/lib/Img/index.d.ts +0 -6
  3. package/lib/NFTDisplay/preview.js +1 -1
  4. package/lib/NavMenu/images/OCAP.svg.js +2 -2
  5. package/lib/NavMenu/images/abt-network.svg.js +3 -3
  6. package/lib/NavMenu/images/aigne-image-smith.svg.js +20 -27
  7. package/lib/NavMenu/images/aigne.svg.js +1 -1
  8. package/lib/NavMenu/images/arcsphere.svg.js +3 -3
  9. package/lib/NavMenu/images/blocklet-framework.svg.js +3 -3
  10. package/lib/NavMenu/images/blocklet-launcher.svg.js +3 -3
  11. package/lib/NavMenu/images/blocklet-server.svg.js +3 -3
  12. package/lib/NavMenu/images/blocklet-store.svg.js +2 -2
  13. package/lib/NavMenu/images/creator-studio.svg.js +2 -2
  14. package/lib/NavMenu/images/did-wallet.svg.js +2 -2
  15. package/lib/NavMenu/images/did.svg.js +2 -2
  16. package/lib/NavMenu/images/nft-studio.svg.js +2 -2
  17. package/lib/NavMenu/images/vc.svg.js +2 -2
  18. package/lib/NavMenu/images/web3-kit.svg.js +2 -2
  19. package/lib/OrgTransfer/selector.js +33 -32
  20. package/lib/UserCard/use-follow.js +6 -6
  21. package/lib/UserCard/utils.js +12 -8
  22. package/lib/Util/client.d.ts +0 -2
  23. package/lib/Util/client.js +2 -5
  24. package/lib/Util/constant.d.ts +9 -1
  25. package/lib/package.json.js +1 -1
  26. package/package.json +9 -9
  27. package/src/NFTDisplay/preview.tsx +1 -1
  28. package/src/NavMenu/images/OCAP.svg +1 -16
  29. package/src/NavMenu/images/abt-network.svg +1 -18
  30. package/src/NavMenu/images/ai-kit.svg +1 -46
  31. package/src/NavMenu/images/aigne-image-smith.svg +1 -26
  32. package/src/NavMenu/images/aigne.svg +1 -6
  33. package/src/NavMenu/images/arcsphere.svg +1 -13
  34. package/src/NavMenu/images/blocklet-framework.svg +1 -25
  35. package/src/NavMenu/images/blocklet-launcher.svg +1 -9
  36. package/src/NavMenu/images/blocklet-server.svg +1 -19
  37. package/src/NavMenu/images/blocklet-store.svg +1 -11
  38. package/src/NavMenu/images/creator-studio.svg +1 -42
  39. package/src/NavMenu/images/did-wallet.svg +1 -33
  40. package/src/NavMenu/images/did.svg +1 -5
  41. package/src/NavMenu/images/nft-studio.svg +1 -19
  42. package/src/NavMenu/images/vc.svg +1 -7
  43. package/src/NavMenu/images/web3-kit.svg +1 -56
  44. package/src/OrgTransfer/selector.tsx +4 -1
  45. package/src/UserCard/use-follow.tsx +3 -2
  46. package/src/UserCard/utils.ts +13 -7
  47. package/src/Util/client.ts +0 -5
@@ -6,58 +6,34 @@ export type PaperStyle = import('@mui/material').PaperProps & {
6
6
  minHeight?: number | string;
7
7
  };
8
8
  export type UxDialogProps = {
9
- /**
10
- * - The content of the dialog.
11
- */
12
9
  /**
13
10
  * - The content of the dialog.
14
11
  */
15
12
  children: React.ReactNode;
16
- /**
17
- * - The title of the dialog.
18
- */
19
13
  /**
20
14
  * - The title of the dialog.
21
15
  */
22
16
  title?: React.ReactNode;
23
- /**
24
- * - Content to be displayed before the dialog title.
25
- */
26
17
  /**
27
18
  * - Content to be displayed before the dialog title.
28
19
  */
29
20
  prepend?: React.ReactNode;
30
- /**
31
- * - Content to be displayed in the top toolbar of the dialog.
32
- */
33
21
  /**
34
22
  * - Content to be displayed in the top toolbar of the dialog.
35
23
  */
36
24
  toolbar?: React.ReactNode;
37
- /**
38
- * - Content to be displayed in the bottom actions toolbar of the dialog.
39
- */
40
25
  /**
41
26
  * - Content to be displayed in the bottom actions toolbar of the dialog.
42
27
  */
43
28
  actions?: React.ReactNode;
44
- /**
45
- * - Whether or not to show the close button.
46
- */
47
29
  /**
48
30
  * - Whether or not to show the close button.
49
31
  */
50
32
  showCloseButton?: boolean | undefined;
51
- /**
52
- * - The position of the actions toolbar.
53
- */
54
33
  /**
55
34
  * - The position of the actions toolbar.
56
35
  */
57
36
  actionsPosition?: "left" | "right" | "center" | undefined;
58
- /**
59
- * - Props to be passed down to the dialog paper.
60
- */
61
37
  /**
62
38
  * - Props to be passed down to the dialog paper.
63
39
  */
@@ -65,9 +41,6 @@ export type UxDialogProps = {
65
41
  slotProps?: {
66
42
  content: object;
67
43
  } | undefined;
68
- /**
69
- * - Callback function fired when the dialog is closed.
70
- */
71
44
  /**
72
45
  * - Callback function fired when the dialog is closed.
73
46
  */
@@ -1,9 +1,6 @@
1
1
  import { default as PropTypes } from 'prop-types';
2
2
  export default Img;
3
3
  export type ImgExProps = {
4
- /**
5
- * - required
6
- */
7
4
  /**
8
5
  * - required
9
6
  */
@@ -19,9 +16,6 @@ export type ImgExProps = {
19
16
  lazy?: boolean | undefined;
20
17
  placeholder?: string | undefined;
21
18
  fallback?: string | undefined;
22
- /**
23
- * - 是否使用代理 fallback, 用于解决 CSP 的问题
24
- */
25
19
  /**
26
20
  * - 是否使用代理 fallback, 用于解决 CSP 的问题
27
21
  */
@@ -1,5 +1,5 @@
1
1
  import { jsx as t } from "react/jsx-runtime";
2
- import n from "@mui/material/Modal";
2
+ import { Modal as n } from "@mui/material";
3
3
  import r from "@emotion/styled";
4
4
  import a, { getNFTData as s } from "./index.js";
5
5
  function f({
@@ -1,5 +1,5 @@
1
1
  import * as e from "react";
2
- const L = (t) => /* @__PURE__ */ e.createElement("svg", { width: 420, height: 420, viewBox: "0 0 420 420", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M210.205 17.1428V113.571V210M210.205 210L376.872 306.19M210.205 210L44.9668 305.238", stroke: "url(#paint0_linear_3296_9216)", strokeOpacity: 0.6, strokeWidth: 18 }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M247.638 178.49L210.205 200.103L172.921 178.576L200.337 130.776L201.634 128.516L210.205 113.571L218.776 128.437L220.113 130.753L247.638 178.49ZM262.484 169.919L225.056 105.008L210.166 79.1841L195.334 105.042L158.074 170.005L62.7143 114.949L210.205 29.7949L357.695 114.949L262.484 169.919ZM256.201 193.342L218.776 214.949V301.244L284.965 263.044L293.538 258.095L284.986 243.263L256.201 193.342ZM218.776 321.036L302.108 272.943L316.949 264.377L308.389 249.532L271.047 184.77L366.267 129.795V300.103L218.776 385.256V321.036ZM201.634 301.151V214.949L164.392 193.448L136.062 242.84L127.586 257.619L136.083 262.614L201.634 301.151ZM149.546 184.876L112.715 249.09L104.277 263.802L118.898 272.397L201.517 320.969L201.634 321.037V385.256L54.1429 300.103V129.795L149.546 184.876ZM210.205 10L45.5714 105.051L37 110V119.897V310L201.634 405.051L210.205 410L218.776 405.051L383.41 310V119.897V110L374.838 105.051L210.205 10Z", fill: "url(#paint1_linear_3296_9216)" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_3296_9216", x1: 632.433, y1: 166.456, x2: 334.741, y2: -292.388, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.501904, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint1_linear_3296_9216", x1: 210.205, y1: -190, x2: -189.795, y2: 210, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.501904, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" }))));
2
+ const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 420, height: 420, viewBox: "0 0 420 420", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M210.205 17.143V210m0 0 166.667 96.19M210.205 210 44.967 305.238", stroke: "url(#a)", strokeOpacity: 0.6, strokeWidth: 18 }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m247.638 178.49-37.433 21.613-37.284-21.527 27.416-47.8 1.297-2.26 8.571-14.945 8.571 14.866 1.337 2.316 27.525 47.737zm14.846-8.571-37.428-64.911-14.89-25.824-14.832 25.858-37.26 64.963-95.36-55.056 147.491-85.154 147.49 85.154-95.211 54.97zm-6.283 23.423-37.425 21.607v86.295l66.189-38.2 8.573-4.949-8.552-14.832-28.785-49.921zm-37.425 127.694 83.332-48.093 14.841-8.566-8.56-14.845-37.342-64.762 95.22-54.975v170.308l-147.491 85.153v-64.22zm-17.142-19.885v-86.202l-37.242-21.501-28.33 49.392-8.476 14.779 8.497 4.995 65.551 38.537zm-52.088-116.275-36.831 64.214-8.438 14.712 14.621 8.595 82.619 48.572.117.068v64.219L54.143 300.103V129.795l95.403 55.081zM210.205 10 45.571 105.051 37 110v200l164.634 95.051 8.571 4.949 8.571-4.949L383.41 310V110l-8.572-4.949L210.205 10z", fill: "url(#b)" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "a", x1: 632.433, y1: 166.456, x2: 334.741, y2: -292.388, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.502, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "b", x1: 210.205, y1: -190, x2: -189.795, y2: 210, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.502, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" }))));
3
3
  export {
4
- L as default
4
+ l as default
5
5
  };
@@ -1,7 +1,7 @@
1
1
  import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 200, height: 200, viewBox: "0 0 200 200", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("mask", { id: "mask0_3296_9227", style: {
2
+ const t = (l) => /* @__PURE__ */ e.createElement("svg", { width: 200, height: 200, viewBox: "0 0 200 200", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...l }, /* @__PURE__ */ e.createElement("mask", { id: "a", style: {
3
3
  maskType: "luminance"
4
- }, maskUnits: "userSpaceOnUse", x: 8, y: 8, width: 184, height: 184 }, /* @__PURE__ */ e.createElement("path", { d: "M192 100C192 49.1898 150.81 8 100 8C49.1898 8 8 49.1898 8 100C8 150.81 49.1898 192 100 192C150.81 192 192 150.81 192 100Z", fill: "white" })), /* @__PURE__ */ e.createElement("g", { mask: "url(#mask0_3296_9227)" }, /* @__PURE__ */ e.createElement("path", { d: "M192 100C192 49.1898 150.81 8 100 8C49.1898 8 8 49.1898 8 100C8 150.81 49.1898 192 100 192C150.81 192 192 150.81 192 100Z", fill: "white" }), /* @__PURE__ */ e.createElement("path", { d: "M192 8H8V192H192V8Z", fill: "url(#paint0_linear_3296_9227)" }), /* @__PURE__ */ e.createElement("path", { opacity: 0.6, fillRule: "evenodd", clipRule: "evenodd", d: "M98.0594 97.0743V99.3038L96.1184 100.419L40.2002 132.536L42.141 135.88L100 102.648L157.859 135.88L159.8 132.536L103.882 100.419L101.941 99.3038V97.0743V32.84H98.0594V97.0743Z", fill: "white" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M100.404 28.6202L162.56 64.5058V136.277L100.404 172.163L38.2485 136.277V64.5058L100.404 28.6202ZM44.0759 65.6272L82.729 87.9437L100.405 57.3287L118.08 87.9435L156.733 65.6272L100.404 33.1061L44.0759 65.6272ZM158.675 68.9914L120.022 91.3078L137.698 121.923L102.347 142.333V166.556L158.675 134.034V68.9914ZM98.4619 166.556V142.333L63.1111 121.923L80.7866 91.3079L42.1332 68.9914V134.034L98.4619 166.556ZM84.1505 93.2501L68.4172 120.501L98.4619 137.847V103.755V101.512L96.5196 100.391L84.1505 93.2501ZM102.347 137.847L132.39 120.501L116.657 93.2503L104.289 100.391L102.347 101.512V103.755V137.847ZM114.715 89.8861L100.404 65.0982L86.0929 89.8858L100.404 98.1485L114.715 89.8861Z", fill: "white" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_3296_9227", x1: 100, y1: -84, x2: -84, y2: 100, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.501904, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" }))));
4
+ }, maskUnits: "userSpaceOnUse", x: 8, y: 8, width: 184, height: 184 }, /* @__PURE__ */ e.createElement("path", { d: "M192 100c0-50.81-41.19-92-92-92S8 49.19 8 100s41.19 92 92 92 92-41.19 92-92z", fill: "#fff" })), /* @__PURE__ */ e.createElement("g", { mask: "url(#a)" }, /* @__PURE__ */ e.createElement("path", { d: "M192 100c0-50.81-41.19-92-92-92S8 49.19 8 100s41.19 92 92 92 92-41.19 92-92z", fill: "#fff" }), /* @__PURE__ */ e.createElement("path", { d: "M192 8H8v184h184V8z", fill: "url(#b)" }), /* @__PURE__ */ e.createElement("path", { opacity: 0.6, fillRule: "evenodd", clipRule: "evenodd", d: "M98.06 97.074v2.23l-1.942 1.115L40.2 132.536l1.941 3.344L100 102.648l57.859 33.232 1.941-3.344-55.918-32.117-1.941-1.115V32.84h-3.882v64.234z", fill: "#fff" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m100.404 28.62 62.156 35.886v71.771l-62.156 35.886-62.155-35.886V64.506l62.155-35.886zM44.076 65.627l38.653 22.317 17.676-30.615 17.675 30.614 38.653-22.316-56.329-32.52-56.328 32.52zm114.599 3.364-38.653 22.317 17.676 30.615-35.351 20.41v24.223l56.328-32.522V68.991zm-60.213 97.565v-24.223l-35.35-20.41 17.675-30.615L42.133 68.99v65.043l56.329 32.522zM84.15 93.25l-15.733 27.251 30.045 17.346v-36.335l-1.942-1.121-12.37-7.14zm18.197 44.597 30.043-17.346-15.733-27.25-12.368 7.14-1.942 1.121v36.335zm12.368-47.96-14.311-24.789-14.311 24.788 14.311 8.263 14.311-8.263z", fill: "#fff" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "b", x1: 100, y1: -84, x2: -84, y2: 100, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.502, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" }))));
5
5
  export {
6
- l as default
6
+ t as default
7
7
  };
@@ -1,42 +1,35 @@
1
1
  import * as t from "react";
2
- const e = (o) => /* @__PURE__ */ t.createElement("svg", { viewBox: "0 0 902 902", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...o }, /* @__PURE__ */ t.createElement("rect", { width: 902, height: 902, rx: 212, fill: "url(#paint0_linear_3783_1258)", style: {} }), /* @__PURE__ */ t.createElement("rect", { x: 166, y: 247, width: 569, height: 409, rx: 80, stroke: "white", style: {
3
- stroke: "white",
2
+ const o = (e) => /* @__PURE__ */ t.createElement("svg", { viewBox: "0 0 902 902", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("rect", { width: 902, height: 902, rx: 212, fill: "url(#a)" }), /* @__PURE__ */ t.createElement("rect", { x: 166, y: 247, width: 569, height: 409, rx: 80, stroke: "#fff", style: {
3
+ stroke: "#fff",
4
4
  strokeOpacity: 1
5
- }, strokeWidth: 40 }), /* @__PURE__ */ t.createElement("ellipse", { cx: 371, cy: 452, rx: 37, ry: 65, fill: "white", style: {
6
- fill: "white",
5
+ }, strokeWidth: 40 }), /* @__PURE__ */ t.createElement("ellipse", { cx: 371, cy: 452, rx: 37, ry: 65, fill: "#fff", style: {
6
+ fill: "#fff",
7
7
  fillOpacity: 1
8
- } }), /* @__PURE__ */ t.createElement("ellipse", { cx: 531, cy: 452, rx: 37, ry: 65, fill: "white", style: {
9
- fill: "white",
8
+ } }), /* @__PURE__ */ t.createElement("ellipse", { cx: 531, cy: 452, rx: 37, ry: 65, fill: "#fff", style: {
9
+ fill: "#fff",
10
10
  fillOpacity: 1
11
- } }), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("linearGradient", { id: "paint0_linear_3783_1258", x1: 84, y1: 78.5, x2: 811.5, y2: 850.5, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ t.createElement("stop", { stopColor: "#AAF4EF", style: {
12
- stopColor: "#AAF4EF",
13
- stopColor: "color(display-p3 0.6667 0.9569 0.9373)",
11
+ } }), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("linearGradient", { id: "a", x1: 84, y1: 78.5, x2: 811.5, y2: 850.5, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ t.createElement("stop", { stopColor: "#AAF4EF", style: {
12
+ stopColor: "color(display-p3 .6667 .9569 .9373)",
14
13
  stopOpacity: 1
15
- } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.180804, stopColor: "#C7F37F", style: {
16
- stopColor: "#C7F37F",
17
- stopColor: "color(display-p3 0.7798 0.9512 0.4996)",
14
+ } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.181, stopColor: "#C7F37F", style: {
15
+ stopColor: "color(display-p3 .7798 .9512 .4996)",
18
16
  stopOpacity: 1
19
- } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.361299, stopColor: "#FFD071", style: {
20
- stopColor: "#FFD071",
21
- stopColor: "color(display-p3 1.0000 0.8141 0.4422)",
17
+ } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.361, stopColor: "#FFD071", style: {
18
+ stopColor: "color(display-p3 1 .8141 .4422)",
22
19
  stopOpacity: 1
23
- } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.546216, stopColor: "#FF9898", style: {
24
- stopColor: "#FF9898",
25
- stopColor: "color(display-p3 1.0000 0.5960 0.5960)",
20
+ } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.546, stopColor: "#FF9898", style: {
21
+ stopColor: "color(display-p3 1 .596 .596)",
26
22
  stopOpacity: 1
27
- } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.72214, stopColor: "#FF89E0", style: {
28
- stopColor: "#FF89E0",
29
- stopColor: "color(display-p3 1.0000 0.5360 0.8769)",
23
+ } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.722, stopColor: "#FF89E0", style: {
24
+ stopColor: "color(display-p3 1 .536 .8769)",
30
25
  stopOpacity: 1
31
- } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.898804, stopColor: "#B695FE", style: {
32
- stopColor: "#B695FE",
33
- stopColor: "color(display-p3 0.7137 0.5843 0.9961)",
26
+ } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.899, stopColor: "#B695FE", style: {
27
+ stopColor: "color(display-p3 .7137 .5843 .9961)",
34
28
  stopOpacity: 1
35
29
  } }), /* @__PURE__ */ t.createElement("stop", { offset: 1, stopColor: "#7C8EED", style: {
36
- stopColor: "#7C8EED",
37
- stopColor: "color(display-p3 0.4863 0.5569 0.9294)",
30
+ stopColor: "color(display-p3 .4863 .5569 .9294)",
38
31
  stopOpacity: 1
39
32
  } }))));
40
33
  export {
41
- e as default
34
+ o as default
42
35
  };
@@ -1,5 +1,5 @@
1
1
  import * as e from "react";
2
- const t = (r) => /* @__PURE__ */ e.createElement("svg", { viewBox: "0 0 400 400", xmlns: "http://www.w3.org/2000/svg", ...r }, /* @__PURE__ */ e.createElement("rect", { x: 73.1603, y: 109.16, width: 253.435, height: 181.679, rx: 36.6412, fill: "none", stroke: "currentColor", strokeWidth: 18.3206 }), /* @__PURE__ */ e.createElement("ellipse", { cx: 164, cy: 199.618, rx: 16.0305, ry: 28.626, fill: "currentColor" }), /* @__PURE__ */ e.createElement("ellipse", { cx: 234.991, cy: 199.618, rx: 16.0305, ry: 28.626, fill: "currentColor" }));
2
+ const t = (r) => /* @__PURE__ */ e.createElement("svg", { viewBox: "0 0 400 400", xmlns: "http://www.w3.org/2000/svg", ...r }, /* @__PURE__ */ e.createElement("rect", { x: 73.16, y: 109.16, width: 253.435, height: 181.679, rx: 36.641, fill: "none", stroke: "currentColor", strokeWidth: 18.321 }), /* @__PURE__ */ e.createElement("ellipse", { cx: 164, cy: 199.618, rx: 16.03, ry: 28.626, fill: "currentColor" }), /* @__PURE__ */ e.createElement("ellipse", { cx: 234.991, cy: 199.618, rx: 16.03, ry: 28.626, fill: "currentColor" }));
3
3
  export {
4
4
  t as default
5
5
  };
@@ -1,10 +1,10 @@
1
1
  import * as e from "react";
2
- const t = (C) => /* @__PURE__ */ e.createElement("svg", { width: 1024, height: 1024, viewBox: "0 0 1024 1024", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...C }, /* @__PURE__ */ e.createElement("rect", { width: 1024, height: 1024, rx: 250, fill: "url(#paint0_linear_1780_6)" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M283.163 232.966C273.829 238.355 273.829 251.826 283.163 257.215C287.494 259.715 292.831 259.715 297.163 257.215L402 196.687C406.332 194.186 409 189.564 409 184.562C409 173.785 397.334 167.049 388 172.438L283.163 232.966ZM184.299 448.397C184.299 443.395 181.631 438.773 177.299 436.272C167.966 430.884 156.299 437.619 156.299 448.397V571.604C156.299 582.381 167.966 589.117 177.299 583.728C181.631 581.227 184.299 576.605 184.299 571.604V448.397ZM732.038 764.634C736.37 762.133 741.707 762.133 746.038 764.634C755.372 770.022 755.372 783.494 746.038 788.883L638 851.258C628.667 856.647 617 849.911 617 839.134C617 834.132 619.669 829.511 624 827.01L732.038 764.634ZM869.175 571.301C869.175 582.078 857.508 588.813 848.175 583.425C843.844 580.924 841.175 576.302 841.175 571.301V448.7C841.175 443.698 843.844 439.076 848.175 436.576C857.508 431.187 869.175 437.923 869.175 448.7V571.301ZM409 839.438C409 850.215 397.334 856.951 388 851.562L279.699 789.034C270.365 783.646 270.365 770.174 279.699 764.786C284.03 762.285 289.367 762.285 293.699 764.786L402 827.313C406.332 829.814 409 834.436 409 839.438ZM617 184.866C617 174.089 628.667 167.353 638 172.742L742.575 233.118C751.908 238.506 751.908 251.978 742.575 257.366C738.243 259.867 732.906 259.867 728.575 257.366L624 196.99C619.669 194.489 617 189.868 617 184.866Z", fill: "white", fillOpacity: 0.12 }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M513.689 175.068C496.273 175.068 482.155 160.95 482.155 143.534C482.155 126.118 496.273 112 513.689 112C531.105 112 545.223 126.118 545.223 143.534C545.223 160.95 531.105 175.068 513.689 175.068ZM560.723 321.5C560.723 348.358 538.95 370.131 512.092 370.131C485.234 370.131 463.461 348.358 463.461 321.5C463.461 294.641 485.234 272.868 512.092 272.868C538.95 272.868 560.723 294.641 560.723 321.5ZM691.649 676.886C664.791 676.886 643.018 655.113 643.018 628.255C643.018 601.396 664.791 579.623 691.649 579.623C718.508 579.623 740.281 601.396 740.281 628.255C740.281 655.113 718.508 676.886 691.649 676.886ZM280.151 628.255C280.151 655.113 301.924 676.886 328.783 676.886C355.641 676.886 377.414 655.113 377.414 628.255C377.414 601.396 355.641 579.623 328.783 579.623C301.924 579.623 280.151 601.396 280.151 628.255ZM512.086 583.358C472.831 583.358 441.009 551.536 441.009 512.281C441.009 473.027 472.831 441.204 512.086 441.204C551.341 441.204 583.163 473.027 583.163 512.281C583.163 551.536 551.341 583.358 512.086 583.358ZM822.574 719.623C822.574 737.039 836.692 751.157 854.108 751.157C871.523 751.157 885.642 737.039 885.642 719.623C885.642 702.208 871.523 688.089 854.108 688.089C836.692 688.089 822.574 702.208 822.574 719.623ZM138.009 719.623C138.009 737.039 152.128 751.157 169.543 751.157C186.959 751.157 201.077 737.039 201.077 719.623C201.077 702.208 186.959 688.089 169.543 688.089C152.128 688.089 138.009 702.208 138.009 719.623Z", fill: "white" }), /* @__PURE__ */ e.createElement("foreignObject", { x: 118, y: 252.842, width: 787.643, height: 679.157 }, /* @__PURE__ */ e.createElement("div", { xmlns: "http://www.w3.org/1999/xhtml", style: {
2
+ const t = (l) => /* @__PURE__ */ e.createElement("svg", { width: 1024, height: 1024, viewBox: "0 0 1024 1024", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...l }, /* @__PURE__ */ e.createElement("rect", { width: 1024, height: 1024, rx: 250, fill: "url(#a)" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M283.163 232.966c-9.334 5.389-9.334 18.86 0 24.249 4.331 2.5 9.668 2.5 14 0L402 196.687a14 14 0 0 0 7-12.125c0-10.777-11.666-17.513-21-12.124l-104.837 60.528zm-98.864 215.431a14 14 0 0 0-7-12.125c-9.333-5.388-21 1.347-21 12.125v123.207c0 10.777 11.667 17.513 21 12.124a14 14 0 0 0 7-12.124V448.397zm547.739 316.237a14 14 0 0 1 14 0c9.334 5.388 9.334 18.86 0 24.249L638 851.258c-9.333 5.389-21-1.347-21-12.124a14 14 0 0 1 7-12.124l108.038-62.376zm137.137-193.333c0 10.777-11.667 17.512-21 12.124a14.002 14.002 0 0 1-7-12.124V448.7a14 14 0 0 1 7-12.124c9.333-5.389 21 1.347 21 12.124v122.601zM409 839.438c0 10.777-11.666 17.513-21 12.124l-108.301-62.528c-9.334-5.388-9.334-18.86 0-24.248a14 14 0 0 1 14 0L402 827.313a14 14 0 0 1 7 12.125zm208-654.572c0-10.777 11.667-17.513 21-12.124l104.575 60.376c9.333 5.388 9.333 18.86 0 24.248a14 14 0 0 1-14 0L624 196.99a14 14 0 0 1-7-12.124z", fill: "#fff", fillOpacity: 0.12 }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M513.689 175.068c-17.416 0-31.534-14.118-31.534-31.534 0-17.416 14.118-31.534 31.534-31.534 17.416 0 31.534 14.118 31.534 31.534 0 17.416-14.118 31.534-31.534 31.534zM560.723 321.5c0 26.858-21.773 48.631-48.631 48.631s-48.631-21.773-48.631-48.631c0-26.859 21.773-48.632 48.631-48.632s48.631 21.773 48.631 48.632zm130.926 355.386c-26.858 0-48.631-21.773-48.631-48.631 0-26.859 21.773-48.632 48.631-48.632 26.859 0 48.632 21.773 48.632 48.632 0 26.858-21.773 48.631-48.632 48.631zm-411.498-48.631c0 26.858 21.773 48.631 48.632 48.631 26.858 0 48.631-21.773 48.631-48.631 0-26.859-21.773-48.632-48.631-48.632-26.859 0-48.632 21.773-48.632 48.632zm231.935-44.897c-39.255 0-71.077-31.822-71.077-71.077 0-39.254 31.822-71.077 71.077-71.077 39.255 0 71.077 31.823 71.077 71.077 0 39.255-31.822 71.077-71.077 71.077zm310.488 136.265c0 17.416 14.118 31.534 31.534 31.534 17.415 0 31.534-14.118 31.534-31.534 0-17.415-14.119-31.534-31.534-31.534-17.416 0-31.534 14.119-31.534 31.534zm-684.565 0c0 17.416 14.119 31.534 31.534 31.534 17.416 0 31.534-14.118 31.534-31.534 0-17.415-14.118-31.534-31.534-31.534-17.415 0-31.534 14.119-31.534 31.534z", fill: "#fff" }), /* @__PURE__ */ e.createElement("foreignObject", { x: 118, y: 252.842, width: 787.643, height: 679.157 }, /* @__PURE__ */ e.createElement("div", { xmlns: "http://www.w3.org/1999/xhtml", style: {
3
3
  backdropFilter: "blur(10px)",
4
- clipPath: "url(#bgblur_0_1780_6_clip_path)",
4
+ clipPath: "url(#b)",
5
5
  height: "100%",
6
6
  width: "100%"
7
- } })), /* @__PURE__ */ e.createElement("path", { "data-figma-bg-blur-radius": 20, fillRule: "evenodd", clipRule: "evenodd", d: "M541.484 880.466C541.484 863.05 527.365 848.932 509.95 848.932C492.534 848.932 478.416 863.05 478.416 880.466C478.416 897.881 492.534 912 509.95 912C527.365 912 541.484 897.881 541.484 880.466ZM201.068 304.376C201.068 286.961 186.95 272.842 169.534 272.842C152.118 272.842 138 286.961 138 304.376C138 321.792 152.118 335.91 169.534 335.91C186.95 335.91 201.068 321.792 201.068 304.376ZM854.109 272.842C871.525 272.842 885.643 286.961 885.643 304.376C885.643 321.792 871.525 335.91 854.109 335.91C836.693 335.91 822.575 321.792 822.575 304.376C822.575 286.961 836.693 272.842 854.109 272.842ZM380.626 395.762C380.626 368.904 358.853 347.131 331.995 347.131C305.136 347.131 283.363 368.904 283.363 395.762C283.363 422.621 305.136 444.394 331.995 444.394C358.853 444.394 380.626 422.621 380.626 395.762ZM694.862 347.131C721.72 347.131 743.493 368.904 743.493 395.762C743.493 422.621 721.72 444.394 694.862 444.394C668.003 444.394 646.23 422.621 646.23 395.762C646.23 368.904 668.003 347.131 694.862 347.131ZM512.092 785.352C538.95 785.352 560.723 763.578 560.723 736.72C560.723 709.862 538.95 688.089 512.092 688.089C485.233 688.089 463.46 709.862 463.46 736.72C463.46 763.578 485.233 785.352 512.092 785.352Z", fill: "white", fillOpacity: 0.56 }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("clipPath", { id: "bgblur_0_1780_6_clip_path", transform: "translate(-118 -252.842)" }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M541.484 880.466C541.484 863.05 527.365 848.932 509.95 848.932C492.534 848.932 478.416 863.05 478.416 880.466C478.416 897.881 492.534 912 509.95 912C527.365 912 541.484 897.881 541.484 880.466ZM201.068 304.376C201.068 286.961 186.95 272.842 169.534 272.842C152.118 272.842 138 286.961 138 304.376C138 321.792 152.118 335.91 169.534 335.91C186.95 335.91 201.068 321.792 201.068 304.376ZM854.109 272.842C871.525 272.842 885.643 286.961 885.643 304.376C885.643 321.792 871.525 335.91 854.109 335.91C836.693 335.91 822.575 321.792 822.575 304.376C822.575 286.961 836.693 272.842 854.109 272.842ZM380.626 395.762C380.626 368.904 358.853 347.131 331.995 347.131C305.136 347.131 283.363 368.904 283.363 395.762C283.363 422.621 305.136 444.394 331.995 444.394C358.853 444.394 380.626 422.621 380.626 395.762ZM694.862 347.131C721.72 347.131 743.493 368.904 743.493 395.762C743.493 422.621 721.72 444.394 694.862 444.394C668.003 444.394 646.23 422.621 646.23 395.762C646.23 368.904 668.003 347.131 694.862 347.131ZM512.092 785.352C538.95 785.352 560.723 763.578 560.723 736.72C560.723 709.862 538.95 688.089 512.092 688.089C485.233 688.089 463.46 709.862 463.46 736.72C463.46 763.578 485.233 785.352 512.092 785.352Z" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_1780_6", x1: 956, y1: 962, x2: 70, y2: 65.4999, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#060E13" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#313434" }))));
7
+ } })), /* @__PURE__ */ e.createElement("path", { "data-figma-bg-blur-radius": 20, fillRule: "evenodd", clipRule: "evenodd", d: "M541.484 880.466c0-17.416-14.119-31.534-31.534-31.534-17.416 0-31.534 14.118-31.534 31.534 0 17.415 14.118 31.534 31.534 31.534 17.415 0 31.534-14.119 31.534-31.534zm-340.416-576.09c0-17.415-14.118-31.534-31.534-31.534-17.416 0-31.534 14.119-31.534 31.534 0 17.416 14.118 31.534 31.534 31.534 17.416 0 31.534-14.118 31.534-31.534zm653.041-31.534c17.416 0 31.534 14.119 31.534 31.534 0 17.416-14.118 31.534-31.534 31.534-17.416 0-31.534-14.118-31.534-31.534 0-17.415 14.118-31.534 31.534-31.534zm-473.483 122.92c0-26.858-21.773-48.631-48.631-48.631-26.859 0-48.632 21.773-48.632 48.631 0 26.859 21.773 48.632 48.632 48.632 26.858 0 48.631-21.773 48.631-48.632zm314.236-48.631c26.858 0 48.631 21.773 48.631 48.631 0 26.859-21.773 48.632-48.631 48.632-26.859 0-48.632-21.773-48.632-48.632 0-26.858 21.773-48.631 48.632-48.631zm-182.77 438.221c26.858 0 48.631-21.774 48.631-48.632 0-26.858-21.773-48.631-48.631-48.631-26.859 0-48.632 21.773-48.632 48.631s21.773 48.632 48.632 48.632z", fill: "#fff", fillOpacity: 0.56 }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "a", x1: 956, y1: 962, x2: 70, y2: 65.5, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#060E13" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#313434" })), /* @__PURE__ */ e.createElement("clipPath", { id: "b", transform: "translate(-118 -252.842)" }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M541.484 880.466c0-17.416-14.119-31.534-31.534-31.534-17.416 0-31.534 14.118-31.534 31.534 0 17.415 14.118 31.534 31.534 31.534 17.415 0 31.534-14.119 31.534-31.534zm-340.416-576.09c0-17.415-14.118-31.534-31.534-31.534-17.416 0-31.534 14.119-31.534 31.534 0 17.416 14.118 31.534 31.534 31.534 17.416 0 31.534-14.118 31.534-31.534zm653.041-31.534c17.416 0 31.534 14.119 31.534 31.534 0 17.416-14.118 31.534-31.534 31.534-17.416 0-31.534-14.118-31.534-31.534 0-17.415 14.118-31.534 31.534-31.534zm-473.483 122.92c0-26.858-21.773-48.631-48.631-48.631-26.859 0-48.632 21.773-48.632 48.631 0 26.859 21.773 48.632 48.632 48.632 26.858 0 48.631-21.773 48.631-48.632zm314.236-48.631c26.858 0 48.631 21.773 48.631 48.631 0 26.859-21.773 48.632-48.631 48.632-26.859 0-48.632-21.773-48.632-48.632 0-26.858 21.773-48.631 48.632-48.631zm-182.77 438.221c26.858 0 48.631-21.774 48.631-48.632 0-26.858-21.773-48.631-48.631-48.631-26.859 0-48.632 21.773-48.632 48.631s21.773 48.632 48.632 48.632z" }))));
8
8
  export {
9
9
  t as default
10
10
  };
@@ -1,7 +1,7 @@
1
1
  import * as e from "react";
2
- const a = (t) => /* @__PURE__ */ e.createElement("svg", { width: 68, height: 68, viewBox: "0 0 68 68", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("mask", { id: "mask0_3296_9209", style: {
2
+ const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 68, height: 68, viewBox: "0 0 68 68", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("mask", { id: "c", style: {
3
3
  maskType: "alpha"
4
- }, maskUnits: "userSpaceOnUse", x: 4, y: 3, width: 59, height: 62 }, /* @__PURE__ */ e.createElement("path", { d: "M33.9745 4.06729L33.858 4L33.7414 4.06729L16.5665 13.9832L16.4499 14.0506V14.1851V27.2379L5.11655 33.7811L5 33.8484V33.9831V53.8149V53.9495L5.11655 54.0167L22.2915 63.9327L22.408 64L22.5246 63.9327L33.8284 57.4064L33.8578 57.4234L33.8873 57.4063L45.1913 63.9327L45.3079 64L45.4244 63.9327L62.5994 54.0167L62.7159 53.9495V53.8149V33.9831V33.8484L62.5994 33.7811L51.266 27.2379V14.1851V14.0506L51.1494 13.9832L33.9745 4.06729ZM49.0108 15.3526V25.9698L33.9743 17.2885L33.8578 17.2213L33.7412 17.2885L18.7052 25.9696V15.3526L33.858 6.60415L49.0108 15.3526ZM45.3079 61.3959L36.1425 56.1042L51.1492 47.4401L51.2658 47.3729V47.2382V29.8419L60.4607 35.1505V52.6474L45.3079 61.3959ZM16.5663 47.4401L31.5732 56.1044L22.408 61.3959L7.25526 52.6474V35.1505L16.4498 29.8421V47.2382V47.3729L16.5663 47.4401ZM32.7301 35.3692L19.8326 27.9228L32.7301 20.4764V35.3692ZM18.7051 44.7687V29.8759L31.6026 37.3223L18.7051 44.7687ZM34.9854 54.1682V39.2754L47.8829 46.7218L34.9854 54.1682ZM49.0106 29.8759V44.7687L36.1131 37.3223L49.0106 29.8759ZM32.7301 39.2754V54.1682L19.8326 46.7218L32.7301 39.2754ZM34.9854 35.3692V20.4764L47.8829 27.9228L34.9854 35.3692Z", fill: "url(#paint0_linear_3296_9209)", stroke: "url(#paint1_linear_3296_9209)", strokeWidth: 0.5 })), /* @__PURE__ */ e.createElement("g", { mask: "url(#mask0_3296_9209)" }, /* @__PURE__ */ e.createElement("path", { d: "M68 0H0V68H68V0Z", fill: "url(#paint2_linear_3296_9209)" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_3296_9209", x1: 36.103, y1: -30.3359, x2: -29.5431, y2: 21.5254, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.501904, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint1_linear_3296_9209", x1: 37.6001, y1: -67.4294, x2: -62.7135, y2: 20.6753, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.501904, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint2_linear_3296_9209", x1: 38.4448, y1: -81.994, x2: -76.7541, y2: 23.0937, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.501904, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" }))));
4
+ }, maskUnits: "userSpaceOnUse", x: 4, y: 3, width: 59, height: 62 }, /* @__PURE__ */ e.createElement("path", { d: "M33.974 4.067 33.858 4l-.117.067-17.174 9.916-.117.068v13.187L5.117 33.78 5 33.848V53.95l.117.067 17.174 9.916.117.067.117-.067 11.303-6.527.03.017.03-.017 11.303 6.527.117.067.116-.067L62.6 54.017l.117-.068v-20.1l-.117-.067-11.333-6.543V14.05l-.117-.068-17.175-9.916zm15.037 11.286V25.97l-15.037-8.681-.116-.068-.117.067-15.036 8.682V15.353l15.153-8.749 15.153 8.749zm-3.703 46.043-9.166-5.292L51.15 47.44l.117-.067V29.842l9.195 5.309v17.496l-15.153 8.749zM16.566 47.44l15.007 8.664-9.165 5.292-15.153-8.749V35.151l9.195-5.309v17.531l.116.067zM32.73 35.37l-12.897-7.447 12.897-7.447V35.37zm-14.025 9.399V29.876l12.898 7.446-12.898 7.447zm16.28 9.4V39.274l12.898 7.447-12.898 7.446zm14.026-24.293v14.893l-12.898-7.447 12.898-7.446zm-16.28 9.4v14.892l-12.898-7.446 12.897-7.447zm2.254-3.907V20.476l12.898 7.447-12.898 7.446z", fill: "url(#a)", stroke: "url(#b)", strokeWidth: 0.5 })), /* @__PURE__ */ e.createElement("g", { mask: "url(#c)" }, /* @__PURE__ */ e.createElement("path", { d: "M68 0H0v68h68V0z", fill: "url(#d)" })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "a", x1: 36.103, y1: -30.336, x2: -29.543, y2: 21.525, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.502, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "b", x1: 37.6, y1: -67.429, x2: -62.714, y2: 20.675, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.502, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "d", x1: 38.445, y1: -81.994, x2: -76.754, y2: 23.094, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4EF1BA" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.502, stopColor: "#16CED1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#3773F2" }))));
5
5
  export {
6
- a as default
6
+ l as default
7
7
  };
@@ -1,5 +1,5 @@
1
- import * as C from "react";
2
- const t = (e) => /* @__PURE__ */ C.createElement("svg", { width: 40, height: 39, viewBox: "0 0 40 39", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ C.createElement("path", { d: "M10.2472 20.6709L6.42292 19.0155C5.87463 18.7948 5.55251 18.3946 5.45656 17.8152C5.36061 17.2358 5.51824 16.7393 5.92945 16.3254L11.1107 11.1106C11.4945 10.7243 11.9469 10.4484 12.4678 10.2828C12.9886 10.1173 13.5232 10.0897 14.0716 10.2001L16.2098 10.6553C14.757 12.3936 13.5987 13.9731 12.7351 15.3941C11.8716 16.8151 11.0423 18.574 10.2472 20.6709ZM34.4268 4.53006C34.646 4.53006 34.8654 4.58523 35.0847 4.6956C35.3041 4.80596 35.496 4.94392 35.6604 5.10947C35.8249 5.27502 35.962 5.46816 36.0717 5.68889C36.1814 5.90962 36.2361 6.13035 36.2361 6.35108C36.3458 8.91707 35.8043 11.5796 34.6118 14.3387C33.4193 17.0979 31.7402 19.5673 29.5744 21.747C28.0941 23.237 26.6685 24.4302 25.2978 25.327C23.9271 26.2237 22.3096 27.0721 20.4454 27.8723C20.0891 28.0103 19.7258 28.0792 19.3557 28.0792C18.9855 28.0792 18.6634 27.9413 18.3893 27.6654L13.2491 22.492C12.975 22.216 12.8378 21.8919 12.8378 21.5194C12.8378 21.1469 12.9064 20.7813 13.0435 20.4226C13.8386 18.574 14.6815 16.9531 15.5725 15.5596C16.4635 14.1663 17.6491 12.7246 19.1296 11.2347C21.2952 9.05503 23.7488 7.36506 26.4903 6.16484C29.2317 4.96462 31.8772 4.41969 34.4268 4.53006ZM23.9819 16.8634C24.6124 17.4979 25.3868 17.8152 26.3052 17.8152C27.2236 17.8152 27.9981 17.4979 28.6286 16.8634C29.2592 16.2287 29.5744 15.4494 29.5744 14.525C29.5744 13.6007 29.2592 12.8212 28.6286 12.1866C27.9981 11.552 27.2236 11.2347 26.3052 11.2347C25.3868 11.2347 24.6124 11.552 23.9819 12.1866C23.3514 12.8212 23.0361 13.6007 23.0361 14.525C23.0361 15.4494 23.3514 16.2287 23.9819 16.8634ZM20.1987 30.6866C22.2822 29.8864 24.0367 29.0518 25.4623 28.1827C26.8878 27.3136 28.4641 26.1478 30.1912 24.6856L30.6025 26.8376C30.7121 27.3895 30.6847 27.9343 30.5202 28.4724C30.3558 29.0104 30.0816 29.4726 29.6978 29.8589L24.5164 35.0736C24.1052 35.4875 23.6118 35.6392 23.0361 35.5289C22.4604 35.4185 22.0628 35.0874 21.8435 34.5356L20.1987 30.6866ZM6.83413 27.1274C7.78898 26.1617 8.95526 25.6719 10.333 25.6581C11.7107 25.6443 12.877 26.1203 13.8318 27.086C14.7867 28.0517 15.2641 29.2242 15.2641 30.6038C15.2641 31.9834 14.7843 33.156 13.8248 34.1217C13.1394 34.8115 11.9949 35.4047 10.3912 35.9013C8.78742 36.398 6.57369 36.8395 3.75 37.2258C4.13381 34.3838 4.57244 32.1614 5.0659 30.5586C5.55936 28.9558 6.14877 27.8121 6.83413 27.1274Z", fill: "url(#paint0_linear_3296_9219)" }), /* @__PURE__ */ C.createElement("defs", null, /* @__PURE__ */ C.createElement("linearGradient", { id: "paint0_linear_3296_9219", x1: 34.187, y1: 7.48682, x2: 7.29238, y2: 34.0822, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ C.createElement("stop", { stopColor: "#74D5D6" }), /* @__PURE__ */ C.createElement("stop", { offset: 1, stopColor: "#56AFBE" }))));
1
+ import * as e from "react";
2
+ const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 40, height: 39, viewBox: "0 0 40 39", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "m10.247 20.67-3.824-1.655c-.548-.22-.87-.62-.966-1.2-.096-.58.061-1.076.472-1.49l5.182-5.214a3.29 3.29 0 0 1 1.357-.828 3.156 3.156 0 0 1 1.604-.083l2.138.455c-1.453 1.739-2.611 3.318-3.475 4.74-.863 1.42-1.693 3.179-2.488 5.276zm24.18-16.14c.219 0 .438.055.658.166a2.174 2.174 0 0 1 .987.993c.11.22.164.441.164.662.11 2.566-.432 5.229-1.624 7.988-1.193 2.759-2.872 5.228-5.038 7.408-1.48 1.49-2.905 2.683-4.276 3.58-1.37.897-2.988 1.745-4.853 2.545-.356.138-.72.207-1.09.207-.37 0-.692-.138-.966-.414l-5.14-5.173a1.336 1.336 0 0 1-.411-.973c0-.372.068-.738.206-1.096.795-1.849 1.637-3.47 2.528-4.863.892-1.394 2.077-2.835 3.558-4.325 2.165-2.18 4.619-3.87 7.36-5.07 2.742-1.2 5.387-1.745 7.937-1.635zM23.982 16.863c.63.635 1.405.952 2.323.952.919 0 1.693-.317 2.324-.952.63-.634.945-1.414.945-2.338 0-.924-.315-1.704-.945-2.338-.63-.635-1.405-.952-2.324-.952-.918 0-1.693.317-2.323.952-.63.634-.946 1.414-.946 2.338 0 .924.315 1.704.946 2.338zm-3.783 13.824c2.083-.8 3.838-1.635 5.263-2.504 1.426-.87 3.002-2.035 4.73-3.497l.41 2.152c.11.552.083 1.096-.082 1.634-.164.538-.438 1-.822 1.387l-5.182 5.215c-.41.413-.904.565-1.48.455-.576-.11-.973-.442-1.193-.993l-1.644-3.85zm-13.365-3.56c.955-.965 2.121-1.455 3.499-1.469 1.378-.014 2.544.462 3.499 1.428.955.966 1.432 2.138 1.432 3.518s-.48 2.552-1.44 3.518c-.685.69-1.83 1.283-3.433 1.78-1.604.496-3.817.938-6.641 1.324.384-2.842.822-5.065 1.316-6.667.493-1.603 1.083-2.747 1.768-3.432z", fill: "url(#a)" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "a", x1: 34.187, y1: 7.487, x2: 7.292, y2: 34.082, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#74D5D6" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#56AFBE" }))));
3
3
  export {
4
- t as default
4
+ l as default
5
5
  };
@@ -1,7 +1,7 @@
1
1
  import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 40, height: 40, viewBox: "0 0 40 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_3296_9260)" }, /* @__PURE__ */ e.createElement("mask", { id: "mask0_3296_9260", style: {
2
+ const a = (t) => /* @__PURE__ */ e.createElement("svg", { width: 40, height: 40, viewBox: "0 0 40 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ e.createElement("mask", { id: "b", style: {
3
3
  maskType: "alpha"
4
- }, maskUnits: "userSpaceOnUse", x: 0, y: 0, width: 40, height: 40 }, /* @__PURE__ */ e.createElement("path", { d: "M40 0H0V40H40V0Z", fill: "#D9D9D9" })), /* @__PURE__ */ e.createElement("g", { mask: "url(#mask0_3296_9260)" }, /* @__PURE__ */ e.createElement("path", { d: "M11.9167 8.27779C11.1837 8.27779 10.5606 8.53434 10.0475 9.04747C9.53434 9.56059 9.27779 10.1837 9.27779 10.9167C9.27779 11.6497 9.53434 12.2728 10.0475 12.7859C10.5606 13.299 11.1837 13.5556 11.9167 13.5556C12.6497 13.5556 13.2728 13.299 13.7859 12.7859C14.299 12.2728 14.5556 11.6497 14.5556 10.9167C14.5556 10.1837 14.299 9.56059 13.7859 9.04747C13.2728 8.53434 12.6497 8.27779 11.9167 8.27779ZM11.9167 25.8704C11.1837 25.8704 10.5606 26.1269 10.0475 26.6401C9.53434 27.1533 9.27779 27.7762 9.27779 28.5093C9.27779 29.2424 9.53434 29.8654 10.0475 30.3785C10.5606 30.8917 11.1837 31.1482 11.9167 31.1482C12.6497 31.1482 13.2728 30.8917 13.7859 30.3785C14.299 29.8654 14.5556 29.2424 14.5556 28.5093C14.5556 27.7762 14.299 27.1533 13.7859 26.6401C13.2728 26.1269 12.6497 25.8704 11.9167 25.8704ZM5.75926 3H33.9075C34.4059 3 34.8237 3.16859 35.161 3.50579C35.4982 3.84299 35.6667 4.26081 35.6667 4.75926V17.0741C35.6667 17.5725 35.4982 17.9903 35.161 18.3276C34.8237 18.6648 34.4059 18.8334 33.9075 18.8334H5.75926C5.26081 18.8334 4.84299 18.6648 4.50579 18.3276C4.16859 17.9903 4 17.5725 4 17.0741V4.75926C4 4.26081 4.16859 3.84299 4.50579 3.50579C4.84299 3.16859 5.26081 3 5.75926 3ZM5.75926 20.5926H33.9075C34.4059 20.5926 34.8237 20.7612 35.161 21.0984C35.4982 21.4357 35.6667 21.8535 35.6667 22.3519V34.6667C35.6667 35.1651 35.4982 35.583 35.161 35.9202C34.8237 36.2575 34.4059 36.426 33.9075 36.426H5.75926C5.26081 36.426 4.84299 36.2575 4.50579 35.9202C4.16859 35.583 4 35.1651 4 34.6667V22.3519C4 21.8535 4.16859 21.4357 4.50579 21.0984C4.84299 20.7612 5.26081 20.5926 5.75926 20.5926Z", fill: "url(#paint0_linear_3296_9260)" }))), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_3296_9260", x1: 4, y1: 19.713, x2: 35.6667, y2: 19.713, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#2FD99C" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#8CE598" })), /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_3296_9260" }, /* @__PURE__ */ e.createElement("rect", { width: 40, height: 40, fill: "white" }))));
4
+ }, maskUnits: "userSpaceOnUse", x: 0, y: 0, width: 40, height: 40 }, /* @__PURE__ */ e.createElement("path", { d: "M40 0H0v40h40V0z", fill: "#D9D9D9" })), /* @__PURE__ */ e.createElement("g", { mask: "url(#b)" }, /* @__PURE__ */ e.createElement("path", { d: "M11.917 8.278c-.733 0-1.356.256-1.87.77a2.545 2.545 0 0 0-.77 1.869c0 .733.257 1.356.77 1.869.514.513 1.137.77 1.87.77.733 0 1.356-.257 1.869-.77.513-.513.77-1.136.77-1.87 0-.732-.257-1.355-.77-1.869a2.545 2.545 0 0 0-1.87-.77zm0 17.592c-.733 0-1.356.257-1.87.77a2.545 2.545 0 0 0-.77 1.87c0 .732.257 1.355.77 1.868.514.514 1.137.77 1.87.77.733 0 1.356-.256 1.869-.77.513-.513.77-1.136.77-1.869 0-.733-.257-1.356-.77-1.869a2.545 2.545 0 0 0-1.87-.77zM5.759 3h28.148c.499 0 .917.169 1.254.506.337.337.506.755.506 1.253v12.315c0 .498-.169.916-.506 1.254a1.703 1.703 0 0 1-1.254.505H5.76c-.498 0-.916-.168-1.253-.505A1.703 1.703 0 0 1 4 17.074V4.76c0-.498.169-.916.506-1.253A1.702 1.702 0 0 1 5.759 3zm0 17.593h28.148c.499 0 .917.168 1.254.505.337.338.506.756.506 1.254v12.315c0 .498-.169.916-.506 1.253a1.702 1.702 0 0 1-1.254.506H5.76c-.498 0-.916-.169-1.253-.506A1.702 1.702 0 0 1 4 34.667V22.352c0-.498.169-.916.506-1.254a1.702 1.702 0 0 1 1.253-.505z", fill: "url(#c)" }))), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "c", x1: 4, y1: 19.713, x2: 35.667, y2: 19.713, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#2FD99C" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#8CE598" })), /* @__PURE__ */ e.createElement("clipPath", { id: "a" }, /* @__PURE__ */ e.createElement("path", { fill: "#fff", d: "M0 0h40v40H0z" }))));
5
5
  export {
6
- l as default
6
+ a as default
7
7
  };
@@ -1,5 +1,5 @@
1
1
  import * as e from "react";
2
- const C = (t) => /* @__PURE__ */ e.createElement("svg", { width: 40, height: 40, viewBox: "0 0 40 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M9.17117 36C8.2991 36 7.55256 35.6923 6.93153 35.0768C6.31051 34.4613 6 33.7214 6 32.8571V14C6 13.1357 6.31051 12.3958 6.93153 11.7804C7.55256 11.1649 8.2991 10.8571 9.17117 10.8571H12.3423C12.3423 8.68334 13.1153 6.83036 14.6613 5.29821C16.2072 3.76607 18.0769 3 20.2703 3C22.4636 3 24.3333 3.76607 25.8793 5.29821C27.4252 6.83036 28.1982 8.68334 28.1982 10.8571H31.3694C32.2414 10.8571 32.9879 11.1649 33.609 11.7804C34.2301 12.3958 34.5405 13.1357 34.5405 14V32.8571C34.5405 33.7214 34.2301 34.4613 33.609 35.0768C32.9879 35.6923 32.2414 36 31.3694 36H9.17117ZM15.5135 10.8571H25.027C25.027 9.54762 24.5645 8.43452 23.6396 7.51786C22.7148 6.6012 21.5915 6.14286 20.2703 6.14286C18.949 6.14286 17.8258 6.6012 16.9009 7.51786C15.976 8.43452 15.5135 9.54762 15.5135 10.8571ZM20.2306 23.4286C22.1861 23.4286 23.9568 22.787 25.5423 21.5036C27.1279 20.2202 27.9076 18.7798 27.8811 17.1821C27.8811 16.7369 27.7357 16.3571 27.445 16.0429C27.1544 15.7286 26.7843 15.5714 26.3351 15.5714C25.9652 15.5714 25.6348 15.6893 25.3441 15.925C25.0535 16.1607 24.842 16.5143 24.7099 16.9857C24.4193 17.9809 23.851 18.7798 23.0054 19.3821C22.1598 19.9845 21.2348 20.2857 20.2306 20.2857C19.2265 20.2857 18.2949 19.9845 17.436 19.3821C16.5772 18.7798 16.0156 17.9809 15.7514 16.9857C15.6192 16.4881 15.421 16.128 15.1568 15.9054C14.8925 15.6827 14.5754 15.5714 14.2054 15.5714C13.7562 15.5714 13.3796 15.7286 13.0757 16.0429C12.7718 16.3571 12.6198 16.7369 12.6198 17.1821C12.6198 18.7798 13.3994 20.2202 14.9586 21.5036C16.5177 22.787 18.2751 23.4286 20.2306 23.4286Z", fill: "url(#paint0_linear_3296_9221)" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_3296_9221", x1: 12.3423, y1: 13.2143, x2: 36.6849, y2: 39.3608, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#FF73B2" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.333419, stopColor: "#E9ED7D" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.556971, stopColor: "#74E583" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#01ACC8" }))));
2
+ const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 40, height: 40, viewBox: "0 0 40 40", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M9.171 36a3.067 3.067 0 0 1-2.24-.923C6.312 34.46 6 33.72 6 32.857V14c0-.864.31-1.604.932-2.22a3.067 3.067 0 0 1 2.24-.923h3.17c0-2.174.773-4.027 2.32-5.559C16.206 3.766 18.076 3 20.27 3c2.194 0 4.063.766 5.61 2.298 1.545 1.532 2.318 3.385 2.318 5.56h3.171a3.07 3.07 0 0 1 2.24.922c.621.616.931 1.356.931 2.22v18.857c0 .864-.31 1.604-.931 2.22a3.067 3.067 0 0 1-2.24.923H9.171zm6.343-25.143h9.513c0-1.31-.463-2.422-1.387-3.34-.925-.916-2.049-1.374-3.37-1.374-1.321 0-2.444.458-3.37 1.375-.924.917-1.386 2.03-1.386 3.34zM20.23 23.43c1.955 0 3.726-.642 5.311-1.925 1.586-1.284 2.366-2.724 2.34-4.322a1.62 1.62 0 0 0-.437-1.14 1.445 1.445 0 0 0-1.11-.47c-.37 0-.7.117-.99.353-.291.236-.503.59-.635 1.06a4.367 4.367 0 0 1-1.705 2.397c-.845.602-1.77.904-2.774.904-1.005 0-1.936-.302-2.795-.904-.859-.602-1.42-1.401-1.685-2.396-.132-.498-.33-.858-.594-1.08a1.428 1.428 0 0 0-.952-.335c-.449 0-.825.158-1.13.472a1.58 1.58 0 0 0-.455 1.14c0 1.597.78 3.037 2.339 4.32 1.559 1.284 3.316 1.926 5.272 1.926z", fill: "url(#a)" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "a", x1: 12.342, y1: 13.214, x2: 36.685, y2: 39.361, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#FF73B2" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.333, stopColor: "#E9ED7D" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.557, stopColor: "#74E583" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#01ACC8" }))));
3
3
  export {
4
- C as default
4
+ o as default
5
5
  };
@@ -1,7 +1,7 @@
1
1
  import * as e from "react";
2
- const r = (t) => /* @__PURE__ */ e.createElement("svg", { width: 120, height: 120, viewBox: "0 0 120 120", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#clip0_3296_9356)" }, /* @__PURE__ */ e.createElement("rect", { width: 98, height: 98, rx: 16, transform: "matrix(1 0 0 -1 11 109)", fill: "url(#paint0_linear_3296_9356)" }), /* @__PURE__ */ e.createElement("g", { filter: "url(#filter0_bdd_3296_9356)" }, /* @__PURE__ */ e.createElement("path", { d: "M60 80V40C48.96 40 40 48.96 40 60C40 71.04 48.96 80 60 80Z", fill: "white", fillOpacity: 0.36, shapeRendering: "crispEdges" })), /* @__PURE__ */ e.createElement("path", { d: "M60 100C37.92 100 20 82.08 20 60C20 37.92 37.92 20 60 20C82.08 20 100 37.92 100 60C100 82.08 82.08 100 60 100ZM60 40C48.96 40 40 48.96 40 60C40 71.04 48.96 80 60 80C71.04 80 80 71.04 80 60C80 48.96 71.04 40 60 40Z", fill: "url(#paint1_linear_3296_9356)", style: {
2
+ const r = (t) => /* @__PURE__ */ e.createElement("svg", { width: 120, height: 120, viewBox: "0 0 120 120", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ e.createElement("rect", { width: 98, height: 98, rx: 16, transform: "matrix(1 0 0 -1 11 109)", fill: "url(#b)" }), /* @__PURE__ */ e.createElement("g", { filter: "url(#c)" }, /* @__PURE__ */ e.createElement("path", { d: "M60 80V40c-11.04 0-20 8.96-20 20s8.96 20 20 20z", fill: "#fff", fillOpacity: 0.36, shapeRendering: "crispEdges" })), /* @__PURE__ */ e.createElement("path", { d: "M60 100c-22.08 0-40-17.92-40-40s17.92-40 40-40 40 17.92 40 40-17.92 40-40 40zm0-60c-11.04 0-20 8.96-20 20s8.96 20 20 20 20-8.96 20-20-8.96-20-20-20z", fill: "url(#d)", style: {
3
3
  mixBlendMode: "plus-lighter"
4
- } })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("filter", { id: "filter0_bdd_3296_9356", x: -20, y: -20, width: 140, height: 160, filterUnits: "userSpaceOnUse", colorInterpolationFilters: "sRGB" }, /* @__PURE__ */ e.createElement("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }), /* @__PURE__ */ e.createElement("feGaussianBlur", { in: "BackgroundImageFix", stdDeviation: 30 }), /* @__PURE__ */ e.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect1_backgroundBlur_3296_9356" }), /* @__PURE__ */ e.createElement("feColorMatrix", { in: "SourceAlpha", type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), /* @__PURE__ */ e.createElement("feOffset", { dx: 20 }), /* @__PURE__ */ e.createElement("feGaussianBlur", { stdDeviation: 20 }), /* @__PURE__ */ e.createElement("feComposite", { in2: "hardAlpha", operator: "out" }), /* @__PURE__ */ e.createElement("feColorMatrix", { type: "matrix", values: "0 0 0 0 0 0 0 0 0 0.404508 0 0 0 0 0.283156 0 0 0 0.2 0" }), /* @__PURE__ */ e.createElement("feBlend", { mode: "normal", in2: "effect1_backgroundBlur_3296_9356", result: "effect2_dropShadow_3296_9356" }), /* @__PURE__ */ e.createElement("feColorMatrix", { in: "SourceAlpha", type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), /* @__PURE__ */ e.createElement("feOffset", { dx: 10 }), /* @__PURE__ */ e.createElement("feGaussianBlur", { stdDeviation: 10 }), /* @__PURE__ */ e.createElement("feComposite", { in2: "hardAlpha", operator: "out" }), /* @__PURE__ */ e.createElement("feColorMatrix", { type: "matrix", values: "0 0 0 0 0 0 0 0 0 0.404508 0 0 0 0 0.283156 0 0 0 0.05 0" }), /* @__PURE__ */ e.createElement("feBlend", { mode: "normal", in2: "effect2_dropShadow_3296_9356", result: "effect3_dropShadow_3296_9356" }), /* @__PURE__ */ e.createElement("feBlend", { mode: "normal", in: "SourceGraphic", in2: "effect3_dropShadow_3296_9356", result: "shape" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_3296_9356", x1: 7.27344, y1: 7.27344, x2: 90.1523, y2: 90.1523, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#2563EB" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.333333, stopColor: "#2998FF" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.666667, stopColor: "#48E0A1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#9BEF2F" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint1_linear_3296_9356", x1: 60, y1: 100, x2: 60, y2: 20, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#C4C4C4" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7D7D7D" })), /* @__PURE__ */ e.createElement("clipPath", { id: "clip0_3296_9356" }, /* @__PURE__ */ e.createElement("rect", { width: 98, height: 98, rx: 16, transform: "matrix(1 0 0 -1 11 109)", fill: "white" }))));
4
+ } })), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "b", x1: 7.273, y1: 7.273, x2: 90.152, y2: 90.152, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#2563EB" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.333, stopColor: "#2998FF" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.667, stopColor: "#48E0A1" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#9BEF2F" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "d", x1: 60, y1: 100, x2: 60, y2: 20, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#C4C4C4" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7D7D7D" })), /* @__PURE__ */ e.createElement("clipPath", { id: "a" }, /* @__PURE__ */ e.createElement("rect", { width: 98, height: 98, rx: 16, transform: "matrix(1 0 0 -1 11 109)", fill: "#fff" })), /* @__PURE__ */ e.createElement("filter", { id: "c", x: -20, y: -20, width: 140, height: 160, filterUnits: "userSpaceOnUse", colorInterpolationFilters: "sRGB" }, /* @__PURE__ */ e.createElement("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }), /* @__PURE__ */ e.createElement("feGaussianBlur", { in: "BackgroundImageFix", stdDeviation: 30 }), /* @__PURE__ */ e.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect1_backgroundBlur_3296_9356" }), /* @__PURE__ */ e.createElement("feColorMatrix", { in: "SourceAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), /* @__PURE__ */ e.createElement("feOffset", { dx: 20 }), /* @__PURE__ */ e.createElement("feGaussianBlur", { stdDeviation: 20 }), /* @__PURE__ */ e.createElement("feComposite", { in2: "hardAlpha", operator: "out" }), /* @__PURE__ */ e.createElement("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0.404508 0 0 0 0 0.283156 0 0 0 0.2 0" }), /* @__PURE__ */ e.createElement("feBlend", { in2: "effect1_backgroundBlur_3296_9356", result: "effect2_dropShadow_3296_9356" }), /* @__PURE__ */ e.createElement("feColorMatrix", { in: "SourceAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), /* @__PURE__ */ e.createElement("feOffset", { dx: 10 }), /* @__PURE__ */ e.createElement("feGaussianBlur", { stdDeviation: 10 }), /* @__PURE__ */ e.createElement("feComposite", { in2: "hardAlpha", operator: "out" }), /* @__PURE__ */ e.createElement("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0.404508 0 0 0 0 0.283156 0 0 0 0.05 0" }), /* @__PURE__ */ e.createElement("feBlend", { in2: "effect2_dropShadow_3296_9356", result: "effect3_dropShadow_3296_9356" }), /* @__PURE__ */ e.createElement("feBlend", { in: "SourceGraphic", in2: "effect3_dropShadow_3296_9356", result: "shape" }))));
5
5
  export {
6
6
  r as default
7
7
  };
@@ -1,7 +1,7 @@
1
1
  import * as e from "react";
2
- const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 120, height: 120, viewBox: "0 0 120 120", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("rect", { x: 9, y: 9, width: 102, height: 102, rx: 12, fill: "url(#paint0_linear_3301_9425)" }), /* @__PURE__ */ e.createElement("mask", { id: "mask0_3301_9425", style: {
2
+ const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 120, height: 120, viewBox: "0 0 120 120", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("rect", { x: 9, y: 9, width: 102, height: 102, rx: 12, fill: "url(#a)" }), /* @__PURE__ */ e.createElement("mask", { id: "b", style: {
3
3
  maskType: "luminance"
4
- }, maskUnits: "userSpaceOnUse", x: 9, y: 9, width: 102, height: 102 }, /* @__PURE__ */ e.createElement("rect", { x: 9, y: 9, width: 102, height: 102, rx: 12, fill: "white" })), /* @__PURE__ */ e.createElement("g", { mask: "url(#mask0_3301_9425)" }, /* @__PURE__ */ e.createElement("rect", { x: 9, y: 9, width: 102, height: 102, rx: 12, fill: "url(#paint1_linear_3301_9425)" }), /* @__PURE__ */ e.createElement("path", { d: "M20.22 32.2688C20.22 27.8678 23.7877 24.3 28.1887 24.3H91.8112C96.2122 24.3 99.78 27.8678 99.78 32.2688V71.4113C99.78 75.8123 96.2122 79.3801 91.8112 79.3801H28.1887C23.7877 79.3801 20.22 75.8123 20.22 71.4113V32.2688Z", fill: "#9FCBFF" }), /* @__PURE__ */ e.createElement("path", { d: "M17.16 38.3888C17.16 33.9878 20.7278 30.42 25.1288 30.42H94.8713C99.2723 30.42 102.84 33.9878 102.84 38.3888V82.1213C102.84 86.5223 99.2723 90.09 94.8713 90.09H25.1288C20.7278 90.09 17.16 86.5223 17.16 82.1213V38.3888Z", fill: "url(#paint2_linear_3301_9425)" }), /* @__PURE__ */ e.createElement("path", { d: "M9 80.145L111 60.51V99C111 105.627 105.627 111 99 111H21C14.3726 111 9 105.627 9 99V80.145Z", fill: "url(#paint3_linear_3301_9425)" })), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M21.8401 54.1526V39.4412H29.6212C31.6012 39.577 33.1488 41.2274 33.1488 43.2234V50.3614C33.1488 52.4552 31.4515 54.1526 29.3576 54.1526H21.8401ZM38.0412 39.4412H36.0209V54.175H38.0412V39.4412ZM23.8604 52.1323V41.4524H29.3576C30.3356 41.4524 31.1285 42.2453 31.1285 43.2233V50.3613C31.1285 51.3394 30.3356 52.1323 29.3576 52.1323H23.8604ZM40.8792 39.4412V54.1526H48.3967C50.4906 54.1526 52.188 52.4552 52.188 50.3614V43.2234C52.188 41.2274 50.6404 39.577 48.6603 39.4412H40.8792ZM54.759 42.8551H57.0177V45.1138H54.759V42.8551ZM57.0177 48.5023H54.759V50.761H57.0177V48.5023ZM42.8995 41.4524V52.1323H48.3967C49.3748 52.1323 50.1676 51.3394 50.1676 50.3613V43.2233C50.1676 42.2453 49.3748 41.4524 48.3967 41.4524H42.8995Z", fill: "#4598FA" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M92.6519 87.2083V96.4742L91.8311 96.9482L93.2804 97.7849L94.1012 97.311V86.3716L87.1559 82.3617H80.6946V101.321H87.1559L88.9331 100.295L87.4838 99.458L86.7676 99.8716H82.1439V83.811H86.7676L92.6519 87.2083ZM93.6127 82.3617L91.8377 83.3865L93.287 84.2232L94.001 83.811H98.6248V99.8716H94.001L88.1167 96.4742V87.2083L88.9398 86.7331L87.4905 85.8964L86.6674 86.3716V97.311L93.3737 101.183C93.5303 101.273 93.7079 101.321 93.8887 101.321H100.074V82.3617H93.6127Z", fill: "white" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_3301_9425", x1: 9, y1: 9, x2: 9, y2: 111, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4F9DF6" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#0A79F8" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint1_linear_3301_9425", x1: 9, y1: 9, x2: 9, y2: 111, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4F9DF6" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#0A79F8" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint2_linear_3301_9425", x1: 17.16, y1: 30.42, x2: 17.16, y2: 90.09, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "white" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ECEFFF" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint3_linear_3301_9425", x1: 20.1562, y1: 77.5313, x2: 26.7305, y2: 110.104, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 694981e-8, stopColor: "#77B2F6" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.206385, stopColor: "#4F9DF6" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#4598FA" }))));
4
+ }, maskUnits: "userSpaceOnUse", x: 9, y: 9, width: 102, height: 102 }, /* @__PURE__ */ e.createElement("rect", { x: 9, y: 9, width: 102, height: 102, rx: 12, fill: "#fff" })), /* @__PURE__ */ e.createElement("g", { mask: "url(#b)" }, /* @__PURE__ */ e.createElement("rect", { x: 9, y: 9, width: 102, height: 102, rx: 12, fill: "url(#c)" }), /* @__PURE__ */ e.createElement("path", { d: "M20.22 32.269a7.969 7.969 0 0 1 7.969-7.969H91.81a7.969 7.969 0 0 1 7.969 7.969V71.41a7.969 7.969 0 0 1-7.969 7.97H28.19a7.969 7.969 0 0 1-7.969-7.97V32.27z", fill: "#9FCBFF" }), /* @__PURE__ */ e.createElement("path", { d: "M17.16 38.389a7.969 7.969 0 0 1 7.969-7.969H94.87a7.969 7.969 0 0 1 7.969 7.969V82.12a7.969 7.969 0 0 1-7.969 7.969H25.13a7.969 7.969 0 0 1-7.969-7.969V38.39z", fill: "url(#d)" }), /* @__PURE__ */ e.createElement("path", { d: "M9 80.145 111 60.51V99c0 6.627-5.373 12-12 12H21c-6.627 0-12-5.373-12-12V80.145z", fill: "url(#e)" })), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M21.84 54.153V39.44h7.781a3.791 3.791 0 0 1 3.528 3.782v7.138a3.791 3.791 0 0 1-3.791 3.792H21.84zM38.041 39.44h-2.02v14.734h2.02V39.441zm-14.18 12.691v-10.68h5.497c.978 0 1.77.793 1.77 1.771v7.138a1.77 1.77 0 0 1-1.77 1.771H23.86zm17.018-12.69v14.71h7.518a3.791 3.791 0 0 0 3.791-3.79v-7.139a3.791 3.791 0 0 0-3.528-3.782h-7.78zm13.88 3.413h2.259v2.259h-2.259v-2.259zm2.259 5.647h-2.259v2.259h2.259v-2.259zM42.9 41.452v10.68h5.497a1.77 1.77 0 0 0 1.77-1.77v-7.139a1.77 1.77 0 0 0-1.77-1.77H42.9z", fill: "#4598FA" }), /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M92.652 87.208v9.266l-.82.474 1.448.837.821-.474v-10.94l-6.945-4.01h-6.461v18.96h6.46l1.778-1.026-1.45-.837-.715.414h-4.624V83.81h4.624l5.884 3.397zm.96-4.846-1.774 1.025 1.449.836.714-.412h4.624v16.06H94l-5.884-3.397v-9.266l.823-.475-1.45-.837-.823.476V97.31l6.707 3.872c.156.09.334.138.515.138h6.185V82.36h-6.461z", fill: "#fff" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "a", x1: 9, y1: 9, x2: 9, y2: 111, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4F9DF6" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#0A79F8" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "c", x1: 9, y1: 9, x2: 9, y2: 111, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#4F9DF6" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#0A79F8" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "d", x1: 17.16, y1: 30.42, x2: 17.16, y2: 90.09, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#fff" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#ECEFFF" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "e", x1: 20.156, y1: 77.531, x2: 26.73, y2: 110.104, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { offset: 7e-3, stopColor: "#77B2F6" }), /* @__PURE__ */ e.createElement("stop", { offset: 0.206, stopColor: "#4F9DF6" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#4598FA" }))));
5
5
  export {
6
6
  l as default
7
7
  };
@@ -1,5 +1,5 @@
1
- import * as C from "react";
2
- const e = (H) => /* @__PURE__ */ C.createElement("svg", { viewBox: "0 0 90 65", xmlns: "http://www.w3.org/2000/svg", ...H }, /* @__PURE__ */ C.createElement("path", { d: "M79.4248 0.700195C85.1132 0.700234 89.7244 5.31169 89.7246 11V54.2344C89.7244 59.9227 85.1132 64.5341 79.4248 64.5342H11.1562C5.46786 64.5342 0.856682 59.9227 0.856445 54.2344V54.0186H5.45605V54.2344C5.45629 57.3822 8.00837 59.9336 11.1562 59.9336H79.4248C82.5726 59.9336 85.1248 57.3822 85.125 54.2344V11C85.1248 7.8522 82.5727 5.29984 79.4248 5.2998H11.1562C8.00837 5.2998 5.45629 7.85217 5.45605 11V11.4893H0.856445V11C0.856676 5.31166 5.46786 0.700195 11.1562 0.700195H79.4248ZM11.293 17.6914C14.2375 17.6914 16.7876 18.3114 18.9434 19.5508C21.1254 20.762 22.8219 22.4798 24.0312 24.7051C25.2406 26.9304 25.8447 29.5504 25.8447 32.5645C25.8447 35.5502 25.2405 38.1418 24.0312 40.3389C22.8219 42.536 21.1255 44.2399 18.9434 45.4512C16.7875 46.6624 14.2375 47.2686 11.293 47.2686H1V17.6914H11.293ZM35.2061 47.2686H29.8818V17.6914H35.2061V47.2686ZM50.8828 17.6914C53.8272 17.6914 56.3774 18.3114 58.5332 19.5508C60.7151 20.7619 62.4108 22.48 63.6201 24.7051C64.8295 26.9304 65.4346 29.5505 65.4346 32.5645C65.4346 35.5503 64.8295 38.1417 63.6201 40.3389C62.4108 42.5359 60.7152 44.2399 58.5332 45.4512C56.3774 46.6624 53.8272 47.2685 50.8828 47.2686H40.5898V17.6914H50.8828ZM73.4785 36.7568C75.1235 36.7568 76.457 38.0913 76.457 39.7363C76.4568 41.3811 75.1234 42.7148 73.4785 42.7148C71.8338 42.7147 70.5003 41.381 70.5 39.7363C70.5 38.0914 71.8336 36.757 73.4785 36.7568ZM6.32422 42.4941H11.1357C14.1064 42.4941 16.3934 41.6204 17.9971 39.874C19.6008 38.0994 20.4023 35.663 20.4023 32.5645C20.4023 29.4378 19.6008 26.9727 17.9971 25.1699C16.3934 23.3674 14.1063 22.4659 11.1357 22.4658H6.32422V42.4941ZM45.9141 42.4941H50.7246C53.6954 42.4941 55.9832 41.6205 57.5869 39.874C59.1905 38.0994 59.9922 35.6628 59.9922 32.5645C59.9922 29.4378 59.1906 26.9727 57.5869 25.1699C55.9832 23.3672 53.6954 22.4658 50.7246 22.4658H45.9141V42.4941ZM73.4785 22.8574C75.1235 22.8574 76.457 24.1909 76.457 25.8359C76.457 27.4809 75.1235 28.8145 73.4785 28.8145C71.8336 28.8143 70.5 27.4808 70.5 25.8359C70.5 24.191 71.8337 22.8576 73.4785 22.8574Z", fill: "currentColor" }));
1
+ import * as a from "react";
2
+ const e = (c) => /* @__PURE__ */ a.createElement("svg", { viewBox: "0 0 90 65", xmlns: "http://www.w3.org/2000/svg", ...c }, /* @__PURE__ */ a.createElement("path", { d: "M79.425.7c5.688 0 10.3 4.612 10.3 10.3v43.234c0 5.689-4.612 10.3-10.3 10.3H11.156c-5.688 0-10.3-4.611-10.3-10.3v-.215h4.6v.215a5.7 5.7 0 0 0 5.7 5.7h68.269a5.7 5.7 0 0 0 5.7-5.7V11a5.7 5.7 0 0 0-5.7-5.7H11.156a5.7 5.7 0 0 0-5.7 5.7v.49h-4.6V11C.856 5.312 5.468.7 11.156.7h68.269zM11.293 17.691c2.945 0 5.495.62 7.65 1.86 2.182 1.211 3.879 2.929 5.088 5.154 1.21 2.225 1.814 4.845 1.814 7.86 0 2.985-.604 5.577-1.814 7.774a12.78 12.78 0 0 1-5.088 5.112c-2.155 1.211-4.706 1.818-7.65 1.818H1V17.69h10.293zM35.206 47.27h-5.324V17.69h5.324v29.58zm15.677-29.58c2.944 0 5.494.62 7.65 1.86 2.182 1.21 3.878 2.929 5.087 5.154 1.21 2.225 1.815 4.846 1.815 7.86 0 2.985-.606 5.577-1.815 7.774a12.78 12.78 0 0 1-5.087 5.112c-2.156 1.211-4.706 1.818-7.65 1.818H40.59V17.69h10.293zm22.595 19.066a2.98 2.98 0 1 1-.001 5.958 2.98 2.98 0 0 1 .001-5.958zM6.325 42.494h4.812c2.97 0 5.257-.874 6.861-2.62 1.604-1.775 2.405-4.211 2.405-7.31 0-3.126-.801-5.591-2.405-7.394-1.604-1.803-3.89-2.704-6.861-2.704H6.324v20.028zm39.59 0h4.81c2.971 0 5.26-.873 6.863-2.62 1.603-1.775 2.405-4.211 2.405-7.31 0-3.126-.801-5.591-2.405-7.394-1.604-1.803-3.892-2.704-6.862-2.704h-4.81v20.028zm27.564-19.637a2.978 2.978 0 1 1 0 5.957 2.978 2.978 0 0 1 0-5.957z", fill: "currentColor" }));
3
3
  export {
4
4
  e as default
5
5
  };
@@ -1,5 +1,5 @@
1
1
  import * as e from "react";
2
- const a = (t) => /* @__PURE__ */ e.createElement("svg", { width: 120, height: 120, viewBox: "0 0 120 120", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { opacity: 0.8, d: "M14.2915 102.867C14.2915 106.298 17.8809 108.047 20.0301 105.663L74.8921 44.8061L59.56 13.3167L14.2915 13.3167L14.2915 102.867Z", fill: "url(#paint0_linear_3296_9308)" }), /* @__PURE__ */ e.createElement("path", { opacity: 0.8, d: "M105.709 17.8485C105.709 14.4202 102.124 12.6709 99.9734 15.0499L45.1025 75.758L60.4403 107.247H105.709V17.8485Z", fill: "url(#paint1_linear_3296_9308)" }), /* @__PURE__ */ e.createElement("path", { opacity: 0.8, d: "M105.709 107.247L59.8421 13.3167L14.2915 13.3167L60.4403 107.247H105.709Z", fill: "url(#paint2_linear_3296_9308)" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "paint0_linear_3296_9308", x1: 58.9505, y1: 13.5628, x2: 1.14816, y2: 99.881, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#FF44B4" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#FFAB48" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint1_linear_3296_9308", x1: 105.788, y1: 13.5629, x2: 48.8613, y2: 100.72, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#44B3FF" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#A448FF" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "paint2_linear_3296_9308", x1: 38.6355, y1: 11.2955, x2: 95.5184, y2: 102.845, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#FF44A9" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7452FA" }))));
2
+ const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 120, height: 120, viewBox: "0 0 120 120", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { opacity: 0.8, d: "M14.291 102.867c0 3.431 3.59 5.18 5.74 2.796l54.861-60.857-15.332-31.49H14.291v89.551z", fill: "url(#a)" }), /* @__PURE__ */ e.createElement("path", { opacity: 0.8, d: "M105.709 17.849c0-3.429-3.585-5.178-5.736-2.8l-54.87 60.709 15.337 31.489h45.269V17.849z", fill: "url(#b)" }), /* @__PURE__ */ e.createElement("path", { opacity: 0.8, d: "m105.709 107.247-45.867-93.93h-45.55l46.148 93.93h45.269z", fill: "url(#c)" }), /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("linearGradient", { id: "a", x1: 58.95, y1: 13.563, x2: 1.148, y2: 99.881, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#FF44B4" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#FFAB48" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "b", x1: 105.788, y1: 13.563, x2: 48.861, y2: 100.72, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#44B3FF" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#A448FF" })), /* @__PURE__ */ e.createElement("linearGradient", { id: "c", x1: 38.636, y1: 11.296, x2: 95.518, y2: 102.845, gradientUnits: "userSpaceOnUse" }, /* @__PURE__ */ e.createElement("stop", { stopColor: "#FF44A9" }), /* @__PURE__ */ e.createElement("stop", { offset: 1, stopColor: "#7452FA" }))));
3
3
  export {
4
- a as default
4
+ l as default
5
5
  };