@arcblock/ux 3.3.9 → 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.
- package/lib/Dialog/dialog.d.ts +0 -27
- package/lib/Img/index.d.ts +0 -6
- package/lib/NFTDisplay/preview.js +1 -1
- package/lib/NavMenu/images/OCAP.svg.js +2 -2
- package/lib/NavMenu/images/abt-network.svg.js +3 -3
- package/lib/NavMenu/images/aigne-image-smith.svg.js +20 -27
- package/lib/NavMenu/images/aigne.svg.js +1 -1
- package/lib/NavMenu/images/arcsphere.svg.js +3 -3
- package/lib/NavMenu/images/blocklet-framework.svg.js +3 -3
- package/lib/NavMenu/images/blocklet-launcher.svg.js +3 -3
- package/lib/NavMenu/images/blocklet-server.svg.js +3 -3
- package/lib/NavMenu/images/blocklet-store.svg.js +2 -2
- package/lib/NavMenu/images/creator-studio.svg.js +2 -2
- package/lib/NavMenu/images/did-wallet.svg.js +2 -2
- package/lib/NavMenu/images/did.svg.js +2 -2
- package/lib/NavMenu/images/nft-studio.svg.js +2 -2
- package/lib/NavMenu/images/vc.svg.js +2 -2
- package/lib/NavMenu/images/web3-kit.svg.js +2 -2
- package/lib/OrgTransfer/selector.js +33 -32
- package/lib/UserCard/use-follow.js +6 -6
- package/lib/UserCard/utils.js +12 -8
- package/lib/Util/client.d.ts +0 -2
- package/lib/Util/client.js +2 -5
- package/lib/Util/constant.d.ts +9 -1
- package/lib/package.json.js +1 -1
- package/package.json +9 -9
- package/src/NFTDisplay/preview.tsx +1 -1
- package/src/NavMenu/images/OCAP.svg +1 -16
- package/src/NavMenu/images/abt-network.svg +1 -18
- package/src/NavMenu/images/ai-kit.svg +1 -46
- package/src/NavMenu/images/aigne-image-smith.svg +1 -26
- package/src/NavMenu/images/aigne.svg +1 -6
- package/src/NavMenu/images/arcsphere.svg +1 -13
- package/src/NavMenu/images/blocklet-framework.svg +1 -25
- package/src/NavMenu/images/blocklet-launcher.svg +1 -9
- package/src/NavMenu/images/blocklet-server.svg +1 -19
- package/src/NavMenu/images/blocklet-store.svg +1 -11
- package/src/NavMenu/images/creator-studio.svg +1 -42
- package/src/NavMenu/images/did-wallet.svg +1 -33
- package/src/NavMenu/images/did.svg +1 -5
- package/src/NavMenu/images/nft-studio.svg +1 -19
- package/src/NavMenu/images/vc.svg +1 -7
- package/src/NavMenu/images/web3-kit.svg +1 -56
- package/src/OrgTransfer/selector.tsx +4 -1
- package/src/UserCard/use-follow.tsx +3 -2
- package/src/UserCard/utils.ts +13 -7
- package/src/Util/client.ts +0 -5
package/lib/Dialog/dialog.d.ts
CHANGED
|
@@ -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
|
*/
|
package/lib/Img/index.d.ts
CHANGED
|
@@ -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 * as e from "react";
|
|
2
|
-
const
|
|
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
|
-
|
|
4
|
+
l as default
|
|
5
5
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as e from "react";
|
|
2
|
-
const
|
|
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
|
|
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
|
-
|
|
6
|
+
t as default
|
|
7
7
|
};
|
|
@@ -1,42 +1,35 @@
|
|
|
1
1
|
import * as t from "react";
|
|
2
|
-
const
|
|
3
|
-
stroke: "
|
|
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: "
|
|
6
|
-
fill: "
|
|
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: "
|
|
9
|
-
fill: "
|
|
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: "
|
|
12
|
-
stopColor: "
|
|
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.
|
|
16
|
-
stopColor: "
|
|
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.
|
|
20
|
-
stopColor: "
|
|
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.
|
|
24
|
-
stopColor: "
|
|
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.
|
|
28
|
-
stopColor: "
|
|
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.
|
|
32
|
-
stopColor: "
|
|
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: "
|
|
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
|
-
|
|
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.
|
|
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 = (
|
|
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(#
|
|
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.
|
|
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
|
|
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.
|
|
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
|
-
|
|
6
|
+
l as default
|
|
7
7
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
const
|
|
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
|
-
|
|
4
|
+
l as default
|
|
5
5
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as e from "react";
|
|
2
|
-
const
|
|
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
|
|
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
|
-
|
|
6
|
+
a as default
|
|
7
7
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as e from "react";
|
|
2
|
-
const
|
|
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
|
-
|
|
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(#
|
|
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("
|
|
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(#
|
|
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: "
|
|
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
|
|
2
|
-
const e = (
|
|
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
|
|
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
|
-
|
|
4
|
+
l as default
|
|
5
5
|
};
|