@douyinfe/semi-illustrations 2.15.0 → 2.15.1
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/dist/umd/semi-illustrations.js +1726 -5251
- package/dist/umd/semi-illustrations.js.map +1 -1
- package/dist/umd/semi-illustrations.min.js +1 -1
- package/dist/umd/semi-illustrations.min.js.map +1 -1
- package/lib/cjs/illustrations/IllustrationConstruction.js +67 -53
- package/lib/cjs/illustrations/IllustrationConstructionDark.js +66 -52
- package/lib/cjs/illustrations/IllustrationFailure.js +111 -97
- package/lib/cjs/illustrations/IllustrationFailureDark.js +110 -96
- package/lib/cjs/illustrations/IllustrationIdle.js +69 -55
- package/lib/cjs/illustrations/IllustrationIdleDark.js +66 -52
- package/lib/cjs/illustrations/IllustrationNoAccess.js +60 -46
- package/lib/cjs/illustrations/IllustrationNoAccessDark.js +58 -44
- package/lib/cjs/illustrations/IllustrationNoContent.js +62 -48
- package/lib/cjs/illustrations/IllustrationNoContentDark.js +62 -48
- package/lib/cjs/illustrations/IllustrationNoResult.js +60 -46
- package/lib/cjs/illustrations/IllustrationNoResultDark.js +59 -45
- package/lib/cjs/illustrations/IllustrationNotFound.js +58 -44
- package/lib/cjs/illustrations/IllustrationNotFoundDark.js +57 -43
- package/lib/cjs/illustrations/IllustrationSuccess.js +58 -44
- package/lib/cjs/illustrations/IllustrationSuccessDark.js +58 -44
- package/lib/cjs/illustrations/index.js +56 -153
- package/lib/cjs/index.js +56 -153
- package/lib/es/illustrations/IllustrationConstruction.js +48 -54
- package/lib/es/illustrations/IllustrationConstructionDark.js +47 -53
- package/lib/es/illustrations/IllustrationFailure.js +92 -98
- package/lib/es/illustrations/IllustrationFailureDark.js +91 -97
- package/lib/es/illustrations/IllustrationIdle.js +50 -56
- package/lib/es/illustrations/IllustrationIdleDark.js +47 -53
- package/lib/es/illustrations/IllustrationNoAccess.js +41 -47
- package/lib/es/illustrations/IllustrationNoAccessDark.js +39 -45
- package/lib/es/illustrations/IllustrationNoContent.js +43 -49
- package/lib/es/illustrations/IllustrationNoContentDark.js +43 -49
- package/lib/es/illustrations/IllustrationNoResult.js +41 -47
- package/lib/es/illustrations/IllustrationNoResultDark.js +40 -46
- package/lib/es/illustrations/IllustrationNotFound.js +39 -45
- package/lib/es/illustrations/IllustrationNotFoundDark.js +38 -44
- package/lib/es/illustrations/IllustrationSuccess.js +39 -45
- package/lib/es/illustrations/IllustrationSuccessDark.js +39 -45
- package/lib/es/illustrations/index.js +34 -153
- package/lib/es/index.js +34 -153
- package/package.json +3 -14
|
@@ -1,29 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
var
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
9
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
10
|
+
var __spreadValues = (a, b) => {
|
|
11
|
+
for (var prop in b || (b = {}))
|
|
12
|
+
if (__hasOwnProp.call(b, prop))
|
|
13
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14
|
+
if (__getOwnPropSymbols)
|
|
15
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
16
|
+
if (__propIsEnum.call(b, prop))
|
|
17
|
+
__defNormalProp(a, prop, b[prop]);
|
|
18
|
+
}
|
|
19
|
+
return a;
|
|
20
|
+
};
|
|
21
|
+
var __export = (target, all) => {
|
|
22
|
+
for (var name in all)
|
|
23
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
24
|
+
};
|
|
25
|
+
var __copyProps = (to, from, except, desc) => {
|
|
26
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
27
|
+
for (let key of __getOwnPropNames(from))
|
|
28
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
29
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
30
|
+
}
|
|
31
|
+
return to;
|
|
32
|
+
};
|
|
33
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
34
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
35
|
+
var IllustrationNoAccess_exports = {};
|
|
36
|
+
__export(IllustrationNoAccess_exports, {
|
|
37
|
+
default: () => IllustrationNoAccess_default
|
|
13
38
|
});
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
var _assign = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/assign"));
|
|
18
|
-
|
|
19
|
-
var React = _interopRequireWildcard(require("react"));
|
|
20
|
-
|
|
21
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "function") return null; var cacheBabelInterop = new _WeakMap(); var cacheNodeInterop = new _WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
22
|
-
|
|
23
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = _Object$defineProperty && _Object$getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? _Object$getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { _Object$defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
24
|
-
|
|
39
|
+
module.exports = __toCommonJS(IllustrationNoAccess_exports);
|
|
40
|
+
var React = __toESM(require("react"));
|
|
25
41
|
function SvgComponent(props) {
|
|
26
|
-
return
|
|
42
|
+
return /* @__PURE__ */ React.createElement("svg", __spreadValues({
|
|
27
43
|
width: 200,
|
|
28
44
|
height: 200,
|
|
29
45
|
viewBox: "0 0 200 200",
|
|
@@ -31,93 +47,91 @@ function SvgComponent(props) {
|
|
|
31
47
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32
48
|
focusable: false,
|
|
33
49
|
"aria-hidden": true
|
|
34
|
-
}, props),
|
|
50
|
+
}, props), /* @__PURE__ */ React.createElement("rect", {
|
|
35
51
|
width: 200,
|
|
36
52
|
height: 200,
|
|
37
53
|
fill: "transparent"
|
|
38
|
-
}),
|
|
54
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
39
55
|
d: "M109.534 54.9131C109.534 32.6038 127.619 14.5186 149.928 14.5186C172.238 14.5186 190.323 32.6038 190.323 54.9131V168.615H109.534V54.9131Z",
|
|
40
56
|
fill: "white",
|
|
41
57
|
stroke: "#515151"
|
|
42
|
-
}),
|
|
58
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
43
59
|
fillRule: "evenodd",
|
|
44
60
|
clipRule: "evenodd",
|
|
45
61
|
d: "M145.492 92.6188C150.671 93.2902 155.418 89.6419 156.099 84.4622L160.46 51.3185C161.142 46.1335 157.493 41.3772 152.308 40.6938C147.129 40.0225 142.383 43.6708 141.701 48.8504L137.341 81.9941C136.659 87.179 140.308 91.9353 145.492 92.6188ZM153.022 35.2306C153.03 35.2316 153.037 35.2326 153.045 35.2336C161.248 36.3128 167.022 43.8372 165.943 52.0399L161.582 85.1836C160.503 93.3855 152.98 99.1599 144.778 98.0819C144.771 98.0809 144.763 98.08 144.756 98.079C136.553 96.9998 130.778 89.4754 131.858 81.2728L136.218 48.129C137.297 39.9272 144.82 34.1529 153.022 35.2306Z",
|
|
46
62
|
fill: "var(--semi-color-primary)"
|
|
47
|
-
}),
|
|
63
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
48
64
|
fillRule: "evenodd",
|
|
49
65
|
clipRule: "evenodd",
|
|
50
66
|
d: "M135.906 60.0818C129.955 59.3983 124.596 63.5005 123.936 69.2442L121.551 90.0125C120.891 95.7562 125.181 100.966 131.133 101.65L156.978 104.618C162.93 105.302 168.289 101.199 168.949 95.4556L171.334 74.6874C171.993 68.9436 167.704 63.7333 161.752 63.0499L135.906 60.0818Z",
|
|
51
67
|
fill: "var(--semi-color-primary-light-default)"
|
|
52
|
-
}),
|
|
68
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
53
69
|
fillRule: "evenodd",
|
|
54
70
|
clipRule: "evenodd",
|
|
55
71
|
d: "M148.616 80.9032C150.45 80.4704 151.914 78.9446 152.175 76.9651C152.512 74.4072 150.712 72.0604 148.154 71.7234C145.596 71.3864 143.249 73.1869 142.912 75.7448C142.651 77.7253 143.671 79.5792 145.333 80.4717L141.162 88.1012C140.825 88.7177 141.212 89.4805 141.909 89.5723L149.563 90.5806C150.26 90.6724 150.831 90.0362 150.666 89.3534L148.616 80.9032Z",
|
|
56
72
|
fill: "var(--semi-color-primary)"
|
|
57
|
-
}),
|
|
73
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
58
74
|
fillRule: "evenodd",
|
|
59
75
|
clipRule: "evenodd",
|
|
60
76
|
d: "M180.372 95.2357C183.132 95.2357 185.37 92.9979 185.37 90.2375C185.37 87.477 183.132 85.2393 180.372 85.2393C177.612 85.2393 175.374 87.477 175.374 90.2375C175.374 92.9979 177.612 95.2357 180.372 95.2357Z",
|
|
61
77
|
fill: "#E6E8EA"
|
|
62
|
-
}),
|
|
78
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
63
79
|
fillRule: "evenodd",
|
|
64
80
|
clipRule: "evenodd",
|
|
65
81
|
d: "M88.4704 52.8722L88.4267 52.8696L88.3895 52.8928C88.0205 53.1225 87.5573 53.3585 87.0318 53.6263C86.7071 53.7918 86.3587 53.9694 85.9939 54.1651C85.0471 54.6731 84.0099 55.2942 83.0619 56.1163C81.18 57.7482 79.6573 60.166 79.8599 64.0394C77.6673 64.3905 74.4401 65.3836 71.7176 67.2552C68.9412 69.1639 66.6768 71.9968 66.5941 76.0005L66.593 76.0528L66.6269 76.0926C70.8899 81.1043 84.7331 88.5135 106.134 78.4341L106.212 78.3972L106.213 78.3107C106.228 76.6092 105.804 73.9825 104.484 71.6179C103.177 69.2789 100.991 67.1937 97.4881 66.5237C97.8638 64.3459 97.8718 61.1194 96.6913 58.345C96.0878 56.9267 95.1724 55.6237 93.8343 54.6421C92.4957 53.6601 90.7416 53.0053 88.4704 52.8722Z",
|
|
66
82
|
fill: "#515151"
|
|
67
|
-
}),
|
|
83
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
68
84
|
d: "M33.2207 38.7285C46.5985 47.7468 67.2765 61.6803 75.2776 66.8092",
|
|
69
85
|
stroke: "#EE2F2F",
|
|
70
86
|
strokeWidth: 3
|
|
71
|
-
}),
|
|
87
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
72
88
|
d: "M112.098 185.603C104.384 187.432 92.2605 187.991 83.0406 187.136C79.915 186.901 73.3872 186.102 72.2808 184.783C70.8978 183.136 68.6026 178.016 68.3378 172.866C68.073 167.717 70.3705 149.793 72.1037 145.358C69.6844 144.681 64.0181 142.245 59.9843 140.114C58.0393 139.086 53.7803 136.829 48.6566 133.826C48.9148 140.543 48.7045 146.782 47.583 151.969C46.2915 157.942 43.8288 163.271 41.7626 168.031C40.0081 172.073 41.4132 174.516 45.0339 177.62C47.6002 179.82 51.9179 180.575 54.2491 182.025C54.7703 182.375 55.7616 183.25 55.7843 184.171C55.7971 184.689 54.9071 185.169 53.66 185.572C52.1342 186.065 50.0737 186.442 48.478 186.629C39.1071 187.732 18.9323 188.269 12.5069 184.9C11.8583 184.56 10.828 183.888 11.7326 178.399C13.4413 168.031 19.3713 151.181 20.1907 146.339C21.215 140.286 19.0267 134.419 17.7696 129.624C16.5125 124.828 14.1774 106.949 17.7696 96.7953C18.258 95.4147 18.8614 93.9343 19.581 92.3831C22.9275 85.1701 28.7893 76.4272 37.3091 69.0802C26.9833 61.7063 14.1652 50.7967 13.2098 41.0836C12.2544 31.3705 21.0649 20.4647 29.5159 20.9159C38.1542 21.3771 58.8365 33.8045 72.7303 49.7472C77.5435 42.8535 87.3632 41.1114 93.4271 44.4682C97.0126 46.4531 94.1467 48.9634 92.9302 49.7317C91.957 50.3463 81.1563 62.1788 76.1487 67.3783C81.6466 70.8392 93.9054 77.3717 97.6225 87.3151C98.9134 90.7683 99.0029 92.2695 99.2507 95.4284C99.7868 102.264 101.818 116.974 101.818 119.371C104.143 116.094 106.511 113.541 111.2 108.712C115.889 103.884 119.689 96.3226 121.135 91.7678C122.47 87.5617 123.136 83.6816 125.603 84.2982C127.98 84.8925 127.646 94.796 127.043 99.6395C131.292 99.3055 142.645 99.3557 149.728 101.265C156.811 103.174 157.967 105.635 157.866 106.238C157.766 106.841 156.51 108.749 147.669 108.448C147.976 109.461 147.631 111.627 143.787 112.187C145.824 113.428 145.983 114.128 145.951 114.86C145.919 115.591 145.505 116.864 141.019 117.437C141.644 118.383 142.467 119.811 138.586 121.071C134.704 122.332 128.975 121.441 128.622 121.408C126.749 127.675 121.395 140.136 112.82 146.241C107.463 150.054 100.908 150.19 98.5968 150.19C99.2637 163.803 98.8517 171.042 100.823 174.661C103.575 179.714 121.168 183.453 112.098 185.603Z",
|
|
73
89
|
fill: "white"
|
|
74
|
-
}),
|
|
90
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
75
91
|
fillRule: "evenodd",
|
|
76
92
|
clipRule: "evenodd",
|
|
77
93
|
d: "M78.1515 68.6103C77.4176 68.1634 76.7434 67.7529 76.1485 67.3784C69.4573 63.1664 58.558 55.8057 48.4886 49.0055C45.3868 46.9108 42.3638 44.8692 39.5667 42.9893C32.4627 48.6333 31.1369 57.7898 30.6816 64.0709C32.9125 65.865 35.1644 67.5489 37.3089 69.0803C28.789 76.4272 22.9273 85.1701 19.5809 92.3831C17.336 97.2218 16.7819 99.363 16.146 104.389C16.146 112.188 41.462 118.915 66.2588 105.569C66.2758 105.971 72.5106 109.376 72.5106 109.376C72.5106 109.376 72.7258 114.526 72.7433 114.86C84.585 114.86 96.8317 109.041 100.139 103.741C100.094 103.34 100.043 102.89 99.9894 102.411C99.7182 100.01 99.3634 96.869 99.2504 95.4284C99.2438 95.3444 99.2374 95.2616 99.231 95.1799C98.997 92.1883 98.8788 90.6766 97.6222 87.3151C94.3074 78.4478 84.1996 72.293 78.1515 68.6103ZM72.3665 96.9888L66.2625 105.557L72.5106 109.376C72.369 105.386 72.3679 101.726 72.3667 97.7022C72.3666 97.4657 72.3666 97.2279 72.3665 96.9888Z",
|
|
78
94
|
fill: "#E6E8EA"
|
|
79
|
-
}),
|
|
95
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
80
96
|
d: "M98.5968 150.19C99.2637 163.803 98.8517 171.042 100.823 174.661C103.575 179.714 121.168 183.453 112.098 185.603C104.384 187.432 92.2605 187.991 83.0406 187.136C79.915 186.901 73.3872 186.102 72.2808 184.783C70.8978 183.136 68.6026 178.016 68.3378 172.866C68.073 167.717 70.3705 149.793 72.1037 145.358M98.5968 150.19C100.908 150.19 107.463 150.054 112.82 146.241C121.395 140.136 126.749 127.675 128.622 121.408C128.975 121.441 134.704 122.332 138.586 121.071C142.467 119.811 141.644 118.383 141.019 117.437M98.5968 150.19C95.9574 150.19 86.385 149.775 79.2444 140.114C77.4987 137.752 75.7143 134.262 74.8336 131.159C73.375 126.019 72.7692 117.673 72.5235 109.437M72.1037 145.358C73.8369 140.923 75.9768 142.02 76.7085 142.723C77.4145 143.401 78.2813 145.344 76.7085 145.783C75.0167 146.255 72.6171 145.502 72.1037 145.358ZM72.1037 145.358C69.6844 144.681 64.0181 142.245 59.9843 140.114C58.0393 139.086 53.7803 136.829 48.6566 133.826M28.3367 120.097C34.5918 125.21 42.2914 130.094 48.6566 133.826M48.6566 133.826C48.9148 140.543 48.7045 146.782 47.583 151.969C46.2915 157.942 43.8288 163.271 41.7626 168.031C40.0081 172.073 41.4132 174.516 45.0339 177.62C47.6002 179.82 51.9179 180.575 54.2491 182.025C54.7703 182.375 55.7616 183.25 55.7843 184.171C55.7971 184.689 54.9071 185.169 53.66 185.572M47.7593 61.7063C43.9139 63.8805 40.4329 66.3865 37.3091 69.0802M53.66 185.572C52.1342 186.065 50.0737 186.442 48.478 186.629C39.1071 187.732 18.9323 188.269 12.5069 184.9C11.8583 184.56 10.828 183.888 11.7326 178.399C13.4413 168.031 19.3713 151.181 20.1907 146.339C21.215 140.286 19.0267 134.419 17.7696 129.624C16.5125 124.828 14.1774 106.949 17.7696 96.7953C18.258 95.4147 18.8614 93.9343 19.581 92.3831C22.9275 85.1701 28.7893 76.4272 37.3091 69.0802M53.66 185.572C53.8247 183.677 52.2875 181.475 48.9291 181.762M37.3091 69.0802C26.9833 61.7063 14.1652 50.7967 13.2098 41.0836C12.2544 31.3705 21.0649 20.4647 29.5159 20.9159C38.1542 21.3771 58.8365 33.8045 72.7303 49.7472C77.5435 42.8535 87.3632 41.1114 93.4271 44.4682C97.0126 46.4531 94.1467 48.9634 92.9302 49.7317C91.957 50.3463 81.1563 62.1788 76.1487 67.3783M76.1487 67.3783C65.698 60.7998 44.9824 46.5407 33.1958 38.732M76.1487 67.3783C81.6466 70.8392 93.9054 77.3717 97.6225 87.3151C98.9134 90.7683 99.0029 92.2695 99.2507 95.4284C99.7868 102.264 101.818 116.974 101.818 119.371M101.818 119.371C101.818 121.222 102.586 127.403 99.9515 127.403C97.5078 127.403 99.5529 122.47 101.818 119.371ZM101.818 119.371C104.143 116.094 106.511 113.541 111.2 108.712C115.889 103.884 119.689 96.3226 121.135 91.7678C122.47 87.5617 123.136 83.6816 125.603 84.2982C127.98 84.8925 127.646 94.796 127.043 99.6395M127.043 99.6395L124.385 99.901M127.043 99.6395C131.292 99.3055 142.645 99.3557 149.728 101.265C156.811 103.174 157.966 105.635 157.866 106.238C157.766 106.841 156.51 108.749 147.669 108.448M147.669 108.448C140.053 108.188 137.009 106.882 136.908 106.329C136.808 105.777 139.732 105.233 142.294 105.735C144.855 106.238 147.317 107.092 147.669 108.448ZM147.669 108.448C147.976 109.461 147.631 111.627 143.787 112.187M143.787 112.187C138.983 112.887 138.156 112.473 138.124 112.187C138.092 111.901 142.101 111.36 143.787 112.187ZM143.787 112.187C145.824 113.428 145.983 114.128 145.951 114.86C145.919 115.591 145.505 116.864 141.019 117.437M141.019 117.437C136.533 118.01 136.435 116.806 137.694 116.565C138.953 116.323 140.658 116.974 141.019 117.437ZM72.3762 89.579C72.3762 91.6318 72.3618 94.1726 72.363 97.0003M72.363 97.0003L66.259 105.569L72.5235 109.437M72.363 97.0003C72.3646 100.792 72.3941 105.099 72.5235 109.437",
|
|
81
97
|
stroke: "#515151"
|
|
82
|
-
}),
|
|
98
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
83
99
|
fillRule: "evenodd",
|
|
84
100
|
clipRule: "evenodd",
|
|
85
101
|
d: "M72.2279 97.1124V90.1133L71.9294 90.4405C70.5487 92.0486 68.1708 95.6239 68.9486 100.681L69.0886 101.548L72.2279 97.1124Z",
|
|
86
102
|
fill: "#515151"
|
|
87
|
-
}),
|
|
103
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
88
104
|
d: "M48.6198 148.139C47.7501 138.438 37.4658 133.323 29.9426 121.894C37.3904 127.026 43.7888 130.498 49.1525 133.62C49.1525 133.62 49.0743 143.108 48.6198 148.139Z",
|
|
89
105
|
fill: "#515151"
|
|
90
|
-
}),
|
|
106
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
91
107
|
d: "M97.1004 56.0021C97.5061 60.6984 93.9732 64.874 89.1628 65.2896C84.3523 65.7053 80.1555 62.1976 79.7497 57.5013C79.3439 52.8051 82.8768 48.6295 87.6873 48.2138C92.4978 47.7982 96.6946 51.3059 97.1004 56.0021Z",
|
|
92
108
|
fill: "white",
|
|
93
109
|
stroke: "#515151",
|
|
94
110
|
strokeWidth: 3
|
|
95
|
-
}),
|
|
111
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
96
112
|
fillRule: "evenodd",
|
|
97
113
|
clipRule: "evenodd",
|
|
98
114
|
d: "M91.2997 54.1506C91.1589 53.9709 90.8991 53.9395 90.7195 54.0803C89.5785 54.9746 88.2255 55.4157 87.7156 55.5197C87.492 55.5653 87.3477 55.7835 87.3933 56.0072C87.4389 56.2308 87.6571 56.3751 87.8808 56.3295C88.4865 56.206 89.9659 55.721 91.2293 54.7307C91.409 54.5899 91.4404 54.3302 91.2997 54.1506ZM89.5237 57.8263C89.4025 57.3947 89.6542 56.9465 90.0858 56.8254C90.5174 56.7042 90.9655 56.9559 91.0867 57.3875C91.2078 57.8191 90.9562 58.2672 90.5246 58.3884C90.093 58.5096 89.6449 58.2579 89.5237 57.8263ZM95.7528 55.6694C95.3212 55.7906 95.0695 56.2387 95.1907 56.6703C95.3119 57.102 95.76 57.3536 96.1916 57.2324C96.6232 57.1113 96.8748 56.6632 96.7537 56.2316C96.6325 55.7999 96.1844 55.5483 95.7528 55.6694Z",
|
|
99
115
|
fill: "#515151"
|
|
100
|
-
}),
|
|
116
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
101
117
|
fillRule: "evenodd",
|
|
102
118
|
clipRule: "evenodd",
|
|
103
119
|
d: "M76.8173 48.0547C79.7313 48.4344 82.4014 46.38 82.7811 43.466C83.1608 40.552 81.1064 37.8819 78.1924 37.5022C75.2784 37.1225 72.6083 39.1769 72.2286 42.0909C71.8489 45.0049 73.9033 47.675 76.8173 48.0547ZM87.496 46.6494C84.1101 46.942 81.2437 48.8129 79.5796 51.4638C79.2599 51.4343 78.9072 51.3901 78.5248 51.3422C78.1632 51.297 77.7751 51.2484 77.3634 51.2057C76.2946 51.0948 75.0876 51.0268 73.8416 51.1752C71.3681 51.4698 68.7508 52.6166 66.7448 55.9365C62.6927 54.0777 56.212 55.0327 51.6573 61.4605L51.6114 61.5252L51.6444 61.5974C55.6836 70.4275 63.5735 80.4008 80.4169 82.5956L80.5002 82.6064L80.548 82.5373C81.5151 81.1374 82.6387 78.7256 82.8727 76.0274C83.1041 73.3584 82.4647 70.4055 79.9414 67.8852C81.4745 66.2935 83.2919 63.6275 83.8717 60.6686C84.1682 59.156 84.1417 57.5638 83.5851 56.0004C83.5721 55.9641 83.5589 55.9279 83.5454 55.8916C85.0066 55.8789 86.765 55.1412 88.2933 53.9872C89.7807 52.8642 91.0701 51.3321 91.6648 49.6504C93.5641 51.1709 95.4809 51.674 97.084 51.6826L97.3334 51.6839L97.2018 51.4721C95.2213 48.2859 91.5302 46.3008 87.496 46.6494Z",
|
|
104
120
|
fill: "#515151"
|
|
105
|
-
}),
|
|
121
|
+
}), /* @__PURE__ */ React.createElement("circle", {
|
|
106
122
|
cx: 80.6886,
|
|
107
123
|
cy: 61.9548,
|
|
108
124
|
r: 6.1823,
|
|
109
125
|
transform: "rotate(-4.93845 80.6886 61.9548)",
|
|
110
126
|
stroke: "#C6CACD"
|
|
111
|
-
}),
|
|
127
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
112
128
|
d: "M174.024 106.001C173.518 107.8 171.317 111.728 166.554 113.051",
|
|
113
129
|
stroke: "var(--semi-color-primary)",
|
|
114
130
|
strokeLinecap: "round"
|
|
115
|
-
}),
|
|
131
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
116
132
|
d: "M181.214 110.236C180.341 113.119 176.666 119.383 168.942 121.374",
|
|
117
133
|
stroke: "var(--semi-color-primary)",
|
|
118
134
|
strokeLinecap: "round"
|
|
119
135
|
}));
|
|
120
136
|
}
|
|
121
|
-
|
|
122
|
-
var _default = SvgComponent;
|
|
123
|
-
exports.default = _default;
|
|
137
|
+
var IllustrationNoAccess_default = SvgComponent;
|
|
@@ -1,29 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
var
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
9
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
10
|
+
var __spreadValues = (a, b) => {
|
|
11
|
+
for (var prop in b || (b = {}))
|
|
12
|
+
if (__hasOwnProp.call(b, prop))
|
|
13
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14
|
+
if (__getOwnPropSymbols)
|
|
15
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
16
|
+
if (__propIsEnum.call(b, prop))
|
|
17
|
+
__defNormalProp(a, prop, b[prop]);
|
|
18
|
+
}
|
|
19
|
+
return a;
|
|
20
|
+
};
|
|
21
|
+
var __export = (target, all) => {
|
|
22
|
+
for (var name in all)
|
|
23
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
24
|
+
};
|
|
25
|
+
var __copyProps = (to, from, except, desc) => {
|
|
26
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
27
|
+
for (let key of __getOwnPropNames(from))
|
|
28
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
29
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
30
|
+
}
|
|
31
|
+
return to;
|
|
32
|
+
};
|
|
33
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
34
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
35
|
+
var IllustrationNoAccessDark_exports = {};
|
|
36
|
+
__export(IllustrationNoAccessDark_exports, {
|
|
37
|
+
default: () => IllustrationNoAccessDark_default
|
|
13
38
|
});
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
var _assign = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/assign"));
|
|
18
|
-
|
|
19
|
-
var React = _interopRequireWildcard(require("react"));
|
|
20
|
-
|
|
21
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "function") return null; var cacheBabelInterop = new _WeakMap(); var cacheNodeInterop = new _WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
22
|
-
|
|
23
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = _Object$defineProperty && _Object$getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? _Object$getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { _Object$defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
24
|
-
|
|
39
|
+
module.exports = __toCommonJS(IllustrationNoAccessDark_exports);
|
|
40
|
+
var React = __toESM(require("react"));
|
|
25
41
|
function SvgComponent(props) {
|
|
26
|
-
return
|
|
42
|
+
return /* @__PURE__ */ React.createElement("svg", __spreadValues({
|
|
27
43
|
width: 200,
|
|
28
44
|
height: 200,
|
|
29
45
|
viewBox: "0 0 200 200",
|
|
@@ -31,86 +47,84 @@ function SvgComponent(props) {
|
|
|
31
47
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32
48
|
focusable: false,
|
|
33
49
|
"aria-hidden": true
|
|
34
|
-
}, props),
|
|
50
|
+
}, props), /* @__PURE__ */ React.createElement("path", {
|
|
35
51
|
d: "M109.534 54.9131C109.534 32.6038 127.619 14.5186 149.928 14.5186C172.238 14.5186 190.323 32.6038 190.323 54.9131V168.615H109.534V54.9131Z",
|
|
36
52
|
fill: "#2E3238",
|
|
37
53
|
stroke: "#1C1F23"
|
|
38
|
-
}),
|
|
54
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
39
55
|
fillRule: "evenodd",
|
|
40
56
|
clipRule: "evenodd",
|
|
41
57
|
d: "M135.907 60.0822C129.955 59.3988 124.596 63.501 123.936 69.2447L121.551 90.0129C120.892 95.7567 125.182 100.967 131.133 101.65L156.979 104.619C162.93 105.302 168.289 101.2 168.949 95.4561L171.334 74.6879C171.994 68.9441 167.704 63.7338 161.752 63.0504L135.907 60.0822Z",
|
|
42
58
|
fill: "var(--semi-color-primary)",
|
|
43
59
|
fillOpacity: 0.2
|
|
44
|
-
}),
|
|
60
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
45
61
|
fillRule: "evenodd",
|
|
46
62
|
clipRule: "evenodd",
|
|
47
63
|
d: "M158.959 62.7296L160.461 51.3189C161.143 46.134 157.493 41.3777 152.309 40.6943C147.13 40.023 142.383 43.6713 141.702 48.8509L140.16 60.5707L135.907 60.0822C135.486 60.034 135.069 60.0096 134.656 60.0079L136.219 48.1295C137.298 39.9277 144.821 34.1533 153.023 35.2311L153.046 35.2341C161.248 36.3133 167.023 43.8377 165.944 52.0403L164.411 63.6882C163.574 63.375 162.684 63.1573 161.753 63.0504L158.959 62.7296Z",
|
|
48
64
|
fill: "var(--semi-color-primary)"
|
|
49
|
-
}),
|
|
65
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
50
66
|
fillRule: "evenodd",
|
|
51
67
|
clipRule: "evenodd",
|
|
52
68
|
d: "M148.616 80.9032C150.45 80.4704 151.915 78.9446 152.175 76.9651C152.512 74.4072 150.712 72.0604 148.154 71.7234C145.596 71.3864 143.249 73.1869 142.912 75.7448C142.651 77.7253 143.672 79.5792 145.333 80.4717L141.162 88.1012C140.825 88.7177 141.212 89.4805 141.909 89.5723L149.564 90.5806C150.26 90.6724 150.832 90.0362 150.666 89.3534L148.616 80.9032Z",
|
|
53
69
|
fill: "var(--semi-color-primary)"
|
|
54
|
-
}),
|
|
70
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
55
71
|
fillRule: "evenodd",
|
|
56
72
|
clipRule: "evenodd",
|
|
57
73
|
d: "M180.372 95.2357C183.133 95.2357 185.37 92.9979 185.37 90.2375C185.37 87.477 183.133 85.2393 180.372 85.2393C177.612 85.2393 175.374 87.477 175.374 90.2375C175.374 92.9979 177.612 95.2357 180.372 95.2357Z",
|
|
58
74
|
fill: "#6B7075"
|
|
59
|
-
}),
|
|
75
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
60
76
|
fillRule: "evenodd",
|
|
61
77
|
clipRule: "evenodd",
|
|
62
78
|
d: "M88.4705 52.8727L88.4268 52.8701L88.3896 52.8933C88.0207 53.123 87.5575 53.359 87.0319 53.6268C86.7073 53.7923 86.3588 53.9699 85.994 54.1656C85.0472 54.6736 84.01 55.2947 83.062 56.1168C81.1801 57.7487 79.6574 60.1665 79.8601 64.0399C77.6674 64.3909 74.4402 65.3841 71.7178 67.2557C68.9413 69.1644 66.6769 71.9973 66.5942 76.001L66.5931 76.0533L66.627 76.0931C70.8901 81.1048 84.7332 88.514 106.134 78.4345L106.212 78.3977L106.213 78.3111C106.228 76.6097 105.804 73.983 104.484 71.6184C103.177 69.2794 100.991 67.1942 97.4882 66.5242C97.8639 64.3464 97.872 61.1199 96.6914 58.3455C96.0879 56.9272 95.1725 55.6242 93.8344 54.6426C92.4958 53.6606 90.7418 53.0058 88.4705 52.8727Z",
|
|
63
79
|
fill: "#1C1F23"
|
|
64
|
-
}),
|
|
80
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
65
81
|
d: "M112.098 185.603C104.384 187.432 92.2606 187.991 83.0407 187.136C79.9151 186.901 73.3873 186.102 72.2809 184.783C70.8979 183.136 68.6028 178.016 68.3379 172.866C68.0731 167.717 70.3706 149.793 72.1038 145.358C69.6845 144.681 64.0182 142.245 59.9844 140.114C58.0395 139.086 53.7804 136.829 48.6567 133.826C48.915 140.543 48.7047 146.782 47.5831 151.969C46.2916 157.942 43.829 163.271 41.7627 168.031C40.0083 172.073 41.4133 174.516 45.034 177.62C47.6004 179.82 51.918 180.575 54.2492 182.025C54.7704 182.375 55.7617 183.25 55.7844 184.171C55.7972 184.689 54.9072 185.169 53.6601 185.572C52.1343 186.065 50.0738 186.442 48.4781 186.629C39.1072 187.732 18.9324 188.269 12.507 184.9C11.8584 184.56 10.8281 183.888 11.7327 178.399C13.4414 168.031 19.3714 151.181 20.1908 146.339C21.2151 140.286 19.0268 134.419 17.7697 129.624C16.5126 124.828 14.1775 106.949 17.7697 96.7953C18.2582 95.4147 18.8615 93.9343 19.5812 92.3831C22.9276 85.1701 28.7894 76.4272 37.3093 69.0802C26.9834 61.7063 14.1653 50.7967 13.2099 41.0836C12.2545 31.3705 21.065 20.4647 29.516 20.9159C38.1543 21.3771 58.8366 33.8045 72.7305 49.7472C77.5436 42.8535 87.3633 41.1114 93.4272 44.4682C97.0127 46.4531 94.1469 48.9634 92.9304 49.7317C91.9571 50.3463 81.1564 62.1788 76.1488 67.3783C81.6467 70.8392 93.9055 77.3717 97.6226 87.3151C98.9136 90.7683 99.0031 92.2695 99.2508 95.4284C99.7869 102.264 101.818 116.974 101.818 119.371C104.144 116.094 106.511 113.541 111.2 108.712C115.889 103.884 119.689 96.3226 121.135 91.7678C122.47 87.5617 123.137 83.6816 125.603 84.2982C127.98 84.8925 127.646 94.796 127.043 99.6395C131.292 99.3055 142.645 99.3557 149.728 101.265C156.811 103.174 157.967 105.635 157.866 106.238C157.766 106.841 156.51 108.749 147.669 108.448C147.976 109.461 147.631 111.627 143.787 112.187C145.824 113.428 145.983 114.128 145.951 114.86C145.919 115.591 145.506 116.864 141.019 117.437C141.644 118.383 142.467 119.811 138.586 121.071C134.705 122.332 128.975 121.441 128.622 121.408C126.749 127.675 121.395 140.136 112.82 146.241C107.463 150.054 100.908 150.19 98.597 150.19C99.2638 163.803 98.8518 171.042 100.823 174.661C103.576 179.714 121.168 183.453 112.098 185.603Z",
|
|
66
82
|
fill: "#C6CACD"
|
|
67
|
-
}),
|
|
83
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
68
84
|
fillRule: "evenodd",
|
|
69
85
|
clipRule: "evenodd",
|
|
70
86
|
d: "M78.1517 68.6103C77.4177 68.1634 76.7436 67.7529 76.1486 67.3784C69.4574 63.1664 58.5581 55.8057 48.4887 49.0055C45.3869 46.9108 42.3639 44.8692 39.5668 42.9893C32.4629 48.6333 31.137 57.7898 30.6818 64.0709C32.9126 65.865 35.1646 67.5489 37.309 69.0803C28.7892 76.4272 22.9274 85.1701 19.581 92.3831C17.3361 97.2218 16.782 99.363 16.1461 104.389C16.1461 112.188 41.4622 118.915 66.2589 105.569C66.276 105.971 72.5107 109.376 72.5107 109.376C72.5107 109.376 72.7259 114.526 72.7435 114.86C84.5851 114.86 96.8319 109.041 100.139 103.741C100.094 103.34 100.044 102.89 99.9895 102.411C99.7183 100.01 99.3635 96.869 99.2505 95.4284C99.2439 95.3444 99.2375 95.2616 99.2311 95.1799C98.9972 92.1883 98.879 90.6766 97.6224 87.3151C94.3075 78.4478 84.1997 72.293 78.1517 68.6103ZM72.3666 96.9888L66.2626 105.557L72.5107 109.376C72.3691 105.386 72.368 101.726 72.3668 97.7022C72.3667 97.4657 72.3667 97.2279 72.3666 96.9888Z",
|
|
71
87
|
fill: "#6B7075"
|
|
72
|
-
}),
|
|
88
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
73
89
|
d: "M98.597 150.19C99.2638 163.803 98.8518 171.042 100.823 174.661C103.576 179.714 121.168 183.453 112.098 185.603C104.384 187.432 92.2606 187.991 83.0407 187.136C79.9151 186.901 73.3873 186.102 72.2809 184.783C70.8979 183.136 68.6028 178.016 68.3379 172.866C68.0731 167.717 70.3706 149.793 72.1038 145.358M98.597 150.19C100.908 150.19 107.463 150.054 112.82 146.241C121.395 140.136 126.749 127.675 128.622 121.408C128.975 121.441 134.705 122.332 138.586 121.071C142.467 119.811 141.644 118.383 141.019 117.437M98.597 150.19C95.9575 150.19 86.3851 149.775 79.2445 140.114C77.4988 137.752 75.7144 134.262 74.8337 131.159C73.3751 126.019 72.7693 117.673 72.5236 109.437M72.1038 145.358C73.837 140.923 75.9769 142.02 76.7087 142.723C77.4146 143.401 78.2815 145.344 76.7087 145.783C75.0168 146.255 72.6172 145.502 72.1038 145.358ZM72.1038 145.358C69.6845 144.681 64.0182 142.245 59.9844 140.114C58.0395 139.086 53.7804 136.829 48.6567 133.826M28.3368 120.097C34.5919 125.21 42.2916 130.094 48.6567 133.826M48.6567 133.826C48.915 140.543 48.7047 146.782 47.5831 151.969C46.2916 157.942 43.829 163.271 41.7627 168.031C40.0083 172.073 41.4133 174.516 45.034 177.62C47.6004 179.82 51.918 180.575 54.2492 182.025C54.7704 182.375 55.7617 183.25 55.7844 184.171C55.7972 184.689 54.9072 185.169 53.6601 185.572M47.7594 61.7063C43.914 63.8805 40.433 66.3865 37.3093 69.0802M53.6601 185.572C52.1343 186.065 50.0738 186.442 48.4781 186.629C39.1072 187.732 18.9324 188.269 12.507 184.9C11.8584 184.56 10.8281 183.888 11.7327 178.399C13.4414 168.031 19.3714 151.181 20.1908 146.339C21.2151 140.286 19.0268 134.419 17.7697 129.624C16.5126 124.828 14.1775 106.949 17.7697 96.7953C18.2582 95.4147 18.8615 93.9343 19.5812 92.3831C22.9276 85.1701 28.7894 76.4272 37.3093 69.0802M53.6601 185.572C53.8249 183.677 52.2876 181.475 48.9292 181.762M37.3093 69.0802C26.9834 61.7063 14.1653 50.7967 13.2099 41.0836C12.2545 31.3705 21.065 20.4647 29.516 20.9159C38.1543 21.3771 58.8366 33.8045 72.7305 49.7472C77.5436 42.8535 87.3633 41.1114 93.4272 44.4682C97.0127 46.4531 94.1469 48.9634 92.9303 49.7317C91.9571 50.3463 81.1564 62.1788 76.1488 67.3783M76.1488 67.3783C65.6982 60.7998 44.9826 46.5407 33.1959 38.732M76.1488 67.3783C81.6467 70.8392 93.9055 77.3717 97.6226 87.3151C98.9136 90.7683 99.003 92.2695 99.2508 95.4284C99.7869 102.264 101.818 116.974 101.818 119.371M101.818 119.371C101.818 121.222 102.586 127.403 99.9516 127.403C97.508 127.403 99.553 122.47 101.818 119.371ZM101.818 119.371C104.144 116.094 106.511 113.541 111.2 108.712C115.889 103.884 119.689 96.3226 121.135 91.7678C122.47 87.5617 123.137 83.6816 125.603 84.2982C127.98 84.8925 127.646 94.796 127.043 99.6395M127.043 99.6395L124.385 99.901M127.043 99.6395C131.292 99.3055 142.645 99.3557 149.728 101.265C156.811 103.174 157.967 105.635 157.866 106.238C157.766 106.841 156.51 108.749 147.669 108.448M147.669 108.448C140.053 108.188 137.009 106.882 136.908 106.329C136.808 105.777 139.732 105.233 142.294 105.735C144.856 106.238 147.317 107.092 147.669 108.448ZM147.669 108.448C147.976 109.461 147.631 111.627 143.787 112.187M143.787 112.187C138.983 112.887 138.156 112.473 138.124 112.187C138.092 111.901 142.101 111.36 143.787 112.187ZM143.787 112.187C145.824 113.428 145.983 114.128 145.951 114.86C145.919 115.591 145.506 116.864 141.019 117.437M141.019 117.437C136.533 118.01 136.435 116.806 137.694 116.565C138.953 116.323 140.658 116.974 141.019 117.437ZM72.3763 89.579C72.3763 91.6318 72.362 94.1726 72.3631 97.0003M72.3631 97.0003L66.2591 105.569L72.5236 109.437M72.3631 97.0003C72.3647 100.792 72.3942 105.099 72.5236 109.437",
|
|
74
90
|
stroke: "#1C1F23"
|
|
75
|
-
}),
|
|
91
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
76
92
|
fillRule: "evenodd",
|
|
77
93
|
clipRule: "evenodd",
|
|
78
94
|
d: "M72.2282 97.1124V90.1133L71.9296 90.4405C70.5489 92.0486 68.171 95.6239 68.9488 100.681L69.0888 101.548L72.2282 97.1124Z",
|
|
79
95
|
fill: "#1C1F23"
|
|
80
|
-
}),
|
|
96
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
81
97
|
d: "M48.6199 148.139C47.7502 138.438 37.4659 133.323 29.9427 121.894C37.3905 127.026 43.7889 130.498 49.1526 133.62C49.1526 133.62 49.0744 143.108 48.6199 148.139Z",
|
|
82
98
|
fill: "#1C1F23"
|
|
83
|
-
}),
|
|
99
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
84
100
|
d: "M97.1005 56.0026C97.5063 60.6989 93.9734 64.8745 89.1629 65.2901C84.3524 65.7058 80.1556 62.1981 79.7498 57.5018C79.3441 52.8056 82.8769 48.63 87.6874 48.2143C92.4979 47.7987 96.6947 51.3064 97.1005 56.0026Z",
|
|
85
101
|
fill: "#C6CACD",
|
|
86
102
|
stroke: "#1C1F23",
|
|
87
103
|
strokeWidth: 3
|
|
88
|
-
}),
|
|
104
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
89
105
|
fillRule: "evenodd",
|
|
90
106
|
clipRule: "evenodd",
|
|
91
107
|
d: "M91.2999 54.1511C91.1591 53.9714 90.8994 53.94 90.7198 54.0807C89.5787 54.9751 88.2257 55.4162 87.7159 55.5202C87.4923 55.5658 87.348 55.784 87.3935 56.0076C87.4391 56.2313 87.6574 56.3756 87.881 56.33C88.4868 56.2065 89.9661 55.7215 91.2296 54.7312C91.4092 54.5904 91.4407 54.3307 91.2999 54.1511ZM89.5239 57.8268C89.4028 57.3952 89.6544 56.947 90.086 56.8259C90.5176 56.7047 90.9658 56.9564 91.0869 57.388C91.2081 57.8196 90.9564 58.2677 90.5248 58.3889C90.0932 58.51 89.6451 58.2584 89.5239 57.8268ZM95.753 55.6699C95.3214 55.7911 95.0698 56.2392 95.1909 56.6708C95.3121 57.1024 95.7602 57.3541 96.1918 57.2329C96.6234 57.1118 96.8751 56.6637 96.7539 56.232C96.6328 55.8004 96.1846 55.5488 95.753 55.6699Z",
|
|
92
108
|
fill: "#1C1F23"
|
|
93
|
-
}),
|
|
109
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
94
110
|
fillRule: "evenodd",
|
|
95
111
|
clipRule: "evenodd",
|
|
96
112
|
d: "M76.8173 48.0547C79.7313 48.4344 82.4014 46.38 82.7811 43.466C83.1608 40.552 81.1064 37.8819 78.1924 37.5022C75.2784 37.1225 72.6083 39.1769 72.2286 42.0909C71.8489 45.0049 73.9033 47.675 76.8173 48.0547ZM87.496 46.6494C84.1101 46.942 81.2437 48.8129 79.5796 51.4638C79.2599 51.4343 78.9072 51.3901 78.5248 51.3422C78.1632 51.297 77.7751 51.2484 77.3634 51.2057C76.2946 51.0948 75.0876 51.0268 73.8416 51.1752C71.3681 51.4698 68.7508 52.6166 66.7448 55.9365C62.6927 54.0777 56.212 55.0327 51.6573 61.4605L51.6114 61.5252L51.6444 61.5974C55.6836 70.4275 63.5735 80.4008 80.4169 82.5956L80.5002 82.6064L80.548 82.5373C81.5151 81.1374 82.6387 78.7256 82.8727 76.0274C83.1041 73.3584 82.4647 70.4055 79.9414 67.8852C81.4745 66.2935 83.2919 63.6275 83.8717 60.6686C84.1682 59.156 84.1417 57.5638 83.5851 56.0004C83.5721 55.9641 83.5589 55.9279 83.5454 55.8916C85.0066 55.8789 86.765 55.1412 88.2933 53.9872C89.7807 52.8642 91.0701 51.3321 91.6648 49.6504C93.5641 51.1709 95.4809 51.674 97.084 51.6826L97.3334 51.6839L97.2018 51.4721C95.2213 48.2859 91.5302 46.3008 87.496 46.6494Z",
|
|
97
113
|
fill: "#1C1F23"
|
|
98
|
-
}),
|
|
114
|
+
}), /* @__PURE__ */ React.createElement("circle", {
|
|
99
115
|
cx: 80.6887,
|
|
100
116
|
cy: 61.9553,
|
|
101
117
|
r: 6.1823,
|
|
102
118
|
transform: "rotate(-4.93845 80.6887 61.9553)",
|
|
103
119
|
stroke: "#6B7075"
|
|
104
|
-
}),
|
|
120
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
105
121
|
d: "M174.024 106.001C173.519 107.8 171.317 111.728 166.554 113.051",
|
|
106
122
|
stroke: "var(--semi-color-primary)",
|
|
107
123
|
strokeLinecap: "round"
|
|
108
|
-
}),
|
|
124
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
109
125
|
d: "M181.214 110.236C180.342 113.119 176.666 119.383 168.942 121.374",
|
|
110
126
|
stroke: "var(--semi-color-primary)",
|
|
111
127
|
strokeLinecap: "round"
|
|
112
128
|
}));
|
|
113
129
|
}
|
|
114
|
-
|
|
115
|
-
var _default = SvgComponent;
|
|
116
|
-
exports.default = _default;
|
|
130
|
+
var IllustrationNoAccessDark_default = SvgComponent;
|
|
@@ -1,29 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
var
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
9
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
10
|
+
var __spreadValues = (a, b) => {
|
|
11
|
+
for (var prop in b || (b = {}))
|
|
12
|
+
if (__hasOwnProp.call(b, prop))
|
|
13
|
+
__defNormalProp(a, prop, b[prop]);
|
|
14
|
+
if (__getOwnPropSymbols)
|
|
15
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
16
|
+
if (__propIsEnum.call(b, prop))
|
|
17
|
+
__defNormalProp(a, prop, b[prop]);
|
|
18
|
+
}
|
|
19
|
+
return a;
|
|
20
|
+
};
|
|
21
|
+
var __export = (target, all) => {
|
|
22
|
+
for (var name in all)
|
|
23
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
24
|
+
};
|
|
25
|
+
var __copyProps = (to, from, except, desc) => {
|
|
26
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
27
|
+
for (let key of __getOwnPropNames(from))
|
|
28
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
29
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
30
|
+
}
|
|
31
|
+
return to;
|
|
32
|
+
};
|
|
33
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
34
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
35
|
+
var IllustrationNoContent_exports = {};
|
|
36
|
+
__export(IllustrationNoContent_exports, {
|
|
37
|
+
default: () => IllustrationNoContent_default
|
|
13
38
|
});
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
var _assign = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/assign"));
|
|
18
|
-
|
|
19
|
-
var React = _interopRequireWildcard(require("react"));
|
|
20
|
-
|
|
21
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "function") return null; var cacheBabelInterop = new _WeakMap(); var cacheNodeInterop = new _WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
22
|
-
|
|
23
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = _Object$defineProperty && _Object$getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? _Object$getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { _Object$defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
24
|
-
|
|
39
|
+
module.exports = __toCommonJS(IllustrationNoContent_exports);
|
|
40
|
+
var React = __toESM(require("react"));
|
|
25
41
|
function SvgComponent(props) {
|
|
26
|
-
return
|
|
42
|
+
return /* @__PURE__ */ React.createElement("svg", __spreadValues({
|
|
27
43
|
width: 200,
|
|
28
44
|
height: 200,
|
|
29
45
|
viewBox: "0 0 200 200",
|
|
@@ -31,94 +47,92 @@ function SvgComponent(props) {
|
|
|
31
47
|
xmlns: "http://www.w3.org/2000/svg",
|
|
32
48
|
focusable: false,
|
|
33
49
|
"aria-hidden": true
|
|
34
|
-
}, props),
|
|
50
|
+
}, props), /* @__PURE__ */ React.createElement("rect", {
|
|
35
51
|
width: 200,
|
|
36
52
|
height: 200,
|
|
37
53
|
fill: "transparent"
|
|
38
|
-
}),
|
|
54
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
39
55
|
fillRule: "evenodd",
|
|
40
56
|
clipRule: "evenodd",
|
|
41
57
|
d: "M123.171 114.655L122.967 114.478L88.3608 141.586L88.8257 141.544C98.8613 140.631 105.543 141.164 107.62 141.542L107.715 141.559L123.171 114.655Z",
|
|
42
58
|
fill: "#515151"
|
|
43
|
-
}),
|
|
59
|
+
}), /* @__PURE__ */ React.createElement("rect", {
|
|
44
60
|
x: 67.706,
|
|
45
61
|
y: 73.871,
|
|
46
62
|
width: 55.6333,
|
|
47
63
|
height: 39.8004,
|
|
48
64
|
fill: "white",
|
|
49
65
|
stroke: "#515151"
|
|
50
|
-
}),
|
|
66
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
51
67
|
d: "M49.9682 136.507L67.6729 114.062H123.112L105.408 136.507H49.9682Z",
|
|
52
68
|
fill: "#E6E8EA",
|
|
53
69
|
stroke: "#515151"
|
|
54
|
-
}),
|
|
70
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
55
71
|
fillRule: "evenodd",
|
|
56
72
|
clipRule: "evenodd",
|
|
57
73
|
d: "M101.667 78.5669H75.749V100.017H94.5175V106.273H109.115V92.5687H101.667V78.5669Z",
|
|
58
74
|
fill: "#C6CACD"
|
|
59
|
-
}),
|
|
75
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
60
76
|
fillRule: "evenodd",
|
|
61
77
|
clipRule: "evenodd",
|
|
62
78
|
d: "M76.6583 79.427H100.924V92.5689H94.5173V99.2238H76.6583V79.427ZM94.5173 100.05H75.7402V78.6006H101.75V92.5689H109.115V106.273H94.5173V100.05ZM101.75 93.3953H108.288V105.446H95.3437V100.05H101.75V93.3953ZM100.924 93.3953V99.2238H95.3437V93.3953H100.924Z",
|
|
63
79
|
fill: "white"
|
|
64
|
-
}),
|
|
80
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
65
81
|
d: "M43.2894 174.887H33.5098C37.6971 173.674 37.5502 162.903 36.9533 157.669C37.8348 163.399 41.5447 171.535 43.2894 174.887Z",
|
|
66
82
|
fill: "#515151",
|
|
67
83
|
stroke: "black"
|
|
68
|
-
}),
|
|
84
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
69
85
|
d: "M75.9344 40.589C75.9344 58.6942 61.2572 73.3714 43.152 73.3714C25.0468 73.3714 10.3696 58.6942 10.3696 40.589C10.3696 22.4838 25.0468 7.80664 43.152 7.80664C61.2572 7.80664 75.9344 22.4838 75.9344 40.589Z",
|
|
70
86
|
fill: "var(--semi-color-primary-light-default)"
|
|
71
|
-
}),
|
|
87
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
72
88
|
fillRule: "evenodd",
|
|
73
89
|
clipRule: "evenodd",
|
|
74
90
|
d: "M47.56 25.1162C47.56 22.6819 45.5866 20.7085 43.1523 20.7085C40.718 20.7085 38.7446 22.6819 38.7446 25.1162V36.1811H27.6797C25.2454 36.1811 23.272 38.1545 23.272 40.5888C23.272 43.0231 25.2454 44.9965 27.6797 44.9965H38.7446V56.0614C38.7446 58.4957 40.718 60.4691 43.1523 60.4691C45.5866 60.4691 47.56 58.4957 47.56 56.0614V44.9965H58.6249C61.0592 44.9965 63.0326 43.0231 63.0326 40.5888C63.0326 38.1545 61.0592 36.1811 58.6249 36.1811H47.56V25.1162Z",
|
|
75
91
|
fill: "var(--semi-color-primary)"
|
|
76
|
-
}),
|
|
92
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
77
93
|
d: "M63.8232 83.3276C59.299 81.4946 50.2893 75.371 50.444 65.5405",
|
|
78
94
|
stroke: "#515151"
|
|
79
|
-
}),
|
|
95
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
80
96
|
d: "M52.5875 110.23C55.4741 110.324 59.095 111.144 62.5611 115.113C65.043 117.955 67.2268 122.321 70.0129 129.61C70.8414 122.952 73.0863 116.354 74.2836 113.287C75.4809 110.221 79.5694 103.037 83.6286 102.774C87.6879 102.512 88.0967 106.337 86.1985 107.418C84.3003 108.498 83.1906 108.381 81.4092 110.834C79.6278 113.287 78.4516 115.776 79.3907 122.165C80.1164 119.227 81.1561 117.583 82.1661 116.46C83.1761 115.338 90.9642 108.403 96.5303 108.111C100.387 107.909 101.722 108.817 101.313 109.841C102.762 109.449 104.18 109.279 105.389 109.515C107.473 109.923 108.165 111.412 107.216 112.695C109.406 112.53 111.496 112.92 112.578 114.53C112.906 115.019 112.82 116.168 112.021 117.115C111.247 118.034 109.774 118.755 109.189 119.064C107.999 119.692 103.255 122.779 101.841 127.169C100.427 131.558 99.1098 134.63 105.304 147.994C110.01 158.147 110.937 169.316 107.168 177.598C116.131 177.316 124.055 175.447 129.189 172.551C133.58 170.074 137.464 167.054 139.578 162.043C137.251 142.389 137.314 104.786 140.493 104.621C144.985 104.388 142.222 152.627 140.493 159.322C140.243 160.291 139.936 161.195 139.578 162.043C140.249 167.71 141.119 171.885 142.17 173.24C143.868 175.428 182.608 177.997 192.377 174.829C193.654 174.415 194.436 173.903 194.575 173.279C195.587 168.736 179.782 165.016 173.696 159.322C169.51 155.405 170.929 126.896 168.734 108.865C166.538 90.8332 160.821 72.3923 143.471 68.1568C129.848 64.8309 118.485 69.8923 113.325 73.7972H85.6167C88.3315 68.2027 96.0759 57.7429 112.021 54.6164C131.282 50.8399 148.198 59.8092 158.976 72.0829C163.931 77.3247 166.725 80.7918 168.206 80.7918C169.687 80.7918 177.431 76.1108 185.814 75.567C188.309 75.413 188.266 78.2111 186.996 82.3737C186.477 84.0771 185.906 85.4371 184.914 87.4391C182.467 92.3785 177.075 101.741 168.734 108.865C170.929 126.896 169.51 155.405 173.696 159.322C179.782 165.016 195.587 168.736 194.575 173.279C194.436 173.903 193.654 174.415 192.377 174.829C182.608 177.997 143.868 175.428 142.17 173.24C141.119 171.885 140.249 167.71 139.578 162.043C137.464 167.054 133.58 170.074 129.189 172.551C124.055 175.447 116.131 177.316 107.168 177.598C105.977 180.217 104.316 182.547 102.156 184.465C93.1654 192.449 73.1717 196.139 54.3858 186.142C44.8247 181.054 39.6677 168.523 36.8881 155.972L36.8932 156.026C37.7389 164.953 38.2316 170.155 34.7066 174.548C27.6355 175.167 21.319 174.548 15.1313 172.633C9.90792 171.016 2.21849 164.317 6.75439 150.018C11.2903 135.718 34.7324 117.24 36.8881 115.806C39.0438 114.373 44.8455 110.23 52.5875 110.23Z",
|
|
81
97
|
fill: "white"
|
|
82
|
-
}),
|
|
98
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
83
99
|
d: "M70.0129 129.61C68.2344 140.315 70.1452 157.678 73.3401 156.899C74.3429 156.654 74.9144 155.317 75.0122 153.003C82.1661 153.336 102.782 160.986 109.48 164.796C109.634 169.418 108.892 173.81 107.168 177.598C105.977 180.217 104.316 182.547 102.156 184.465C93.1654 192.449 73.1717 196.139 54.3858 186.142C44.8247 181.054 39.6677 168.523 36.8881 155.972L36.8932 156.026C37.7389 164.953 38.2316 170.155 34.7066 174.548C27.6355 175.167 21.319 174.548 15.1313 172.633C9.90792 171.016 2.21849 164.317 6.75439 150.018C11.2903 135.718 34.7324 117.24 36.8881 115.806C39.0438 114.373 44.8455 110.229 52.5875 110.229C55.4741 110.324 59.095 111.144 62.5611 115.113C65.043 117.955 67.2268 122.321 70.0129 129.61Z",
|
|
84
100
|
fill: "#E6E8EA"
|
|
85
|
-
}),
|
|
101
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
86
102
|
d: "M70.0129 129.61C75.5169 146.124 76.2725 156.184 73.3401 156.899C70.1452 157.678 68.2344 140.315 70.0129 129.61ZM70.0129 129.61C67.2268 122.321 65.043 117.955 62.5611 115.113C59.095 111.144 55.4741 110.324 52.5875 110.23C44.8455 110.23 39.0438 114.373 36.8881 115.806C34.7324 117.24 11.2903 135.718 6.75439 150.018C2.21849 164.317 9.90792 171.016 15.1313 172.633C21.319 174.548 27.6355 175.167 34.7066 174.548C38.2386 170.146 37.7369 164.932 36.8881 155.972M70.0129 129.61C70.8414 122.952 73.0863 116.354 74.2836 113.287C75.4809 110.221 79.5694 103.037 83.6286 102.774C87.6879 102.512 88.0967 106.337 86.1985 107.418C84.3003 108.498 83.1906 108.381 81.4092 110.834C79.6278 113.287 78.4516 115.776 79.3907 122.165C80.1164 119.227 81.1561 117.583 82.1661 116.46C83.1761 115.338 90.9642 108.403 96.5303 108.111C102.096 107.82 102.411 109.839 99.8072 111.186C97.2037 112.533 92.1938 113.79 85.4654 123.351C85.4654 123.351 84.8687 118.107 95.4755 112.308C98.3462 110.739 102.474 108.946 105.389 109.515C108.535 110.13 108.51 113.21 104.453 114.324C103.242 114.656 101.081 115.791 99.364 117.24C96.5097 119.647 94.1005 122.809 93.582 123.776C94.0084 120.252 97.8901 115.264 102.542 113.702C105.752 112.625 110.693 111.725 112.578 114.53C112.906 115.019 112.82 116.168 112.021 117.115C111.247 118.034 109.774 118.755 109.189 119.064C107.999 119.692 103.255 122.779 101.841 127.169C100.427 131.558 99.1098 134.63 105.304 147.994C110.01 158.147 110.937 169.316 107.168 177.598M33.6622 126.262C33.7378 131.737 34.2063 143.863 36.8881 155.972M36.8881 155.972C39.6677 168.523 44.8247 181.054 54.3858 186.142C73.1717 196.139 93.1654 192.449 102.156 184.465C104.316 182.547 105.977 180.217 107.168 177.598M107.168 177.598C116.131 177.316 124.055 175.447 129.189 172.551C134.323 169.655 138.764 166.017 140.493 159.322C142.222 152.627 144.985 104.388 140.493 104.621C136.398 104.834 137.474 167.185 142.17 173.24C143.868 175.428 182.608 177.997 192.377 174.829M168.734 108.865C170.929 126.896 169.51 155.405 173.696 159.322C179.782 165.016 195.587 168.736 194.575 173.279C194.436 173.903 193.654 174.415 192.377 174.829M168.734 108.865C166.539 90.8332 160.821 72.3923 143.471 68.1568C129.848 64.8309 118.485 69.8923 113.325 73.7972H85.6167C88.3315 68.2027 96.0759 57.7429 112.021 54.6164C131.282 50.8399 148.198 59.8092 158.976 72.0829C163.931 77.3247 166.725 80.7918 168.206 80.7918C169.687 80.7918 177.431 76.1108 185.814 75.567C188.309 75.413 188.266 78.2111 186.996 82.3737M168.734 108.865C177.075 101.741 182.467 92.3785 184.914 87.4391C185.906 85.4371 186.477 84.0771 186.996 82.3737M192.377 174.829C191.954 171.914 191.129 171.268 187.574 170.227M186.996 82.3737C187.011 81.3629 187.149 80.3006 186.566 79.6339C184.797 77.6114 180.682 77.5637 180.111 81.6122",
|
|
87
103
|
stroke: "#515151"
|
|
88
|
-
}),
|
|
104
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
89
105
|
d: "M58.1244 104.222C58.1244 110.068 53.4484 114.796 47.694 114.796C41.9396 114.796 37.2637 110.068 37.2637 104.222C37.2637 98.3755 41.9396 93.6475 47.694 93.6475C53.4484 93.6475 58.1244 98.3755 58.1244 104.222Z",
|
|
90
106
|
fill: "white",
|
|
91
107
|
stroke: "#515151"
|
|
92
|
-
}),
|
|
108
|
+
}), /* @__PURE__ */ React.createElement("mask", {
|
|
93
109
|
id: "path-16-inside-1",
|
|
94
110
|
fill: "white"
|
|
95
|
-
},
|
|
111
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
96
112
|
fillRule: "evenodd",
|
|
97
113
|
clipRule: "evenodd",
|
|
98
114
|
d: "M49.0146 93.7897C55.1924 94.3756 53.5744 106.093 49.6029 111.367C46.7226 115.191 48.4316 118.499 50.5099 122.521C50.9335 123.341 51.3724 124.191 51.7909 125.08C53.7504 127.949 54.885 131.351 54.885 134.999C54.885 145.246 45.9347 153.552 34.8939 153.552C23.8531 153.552 14.9028 145.246 14.9028 134.999C14.9028 127.111 20.2072 120.373 27.6863 117.689C34.9897 113.65 37.2698 109.614 37.5416 102.578C37.7769 96.4849 42.8368 93.2038 49.0146 93.7897Z"
|
|
99
|
-
})),
|
|
115
|
+
})), /* @__PURE__ */ React.createElement("path", {
|
|
100
116
|
fillRule: "evenodd",
|
|
101
117
|
clipRule: "evenodd",
|
|
102
118
|
d: "M49.0146 93.7897C55.1924 94.3756 53.5744 106.093 49.6029 111.367C46.7226 115.191 48.4316 118.499 50.5099 122.521C50.9335 123.341 51.3724 124.191 51.7909 125.08C53.7504 127.949 54.885 131.351 54.885 134.999C54.885 145.246 45.9347 153.552 34.8939 153.552C23.8531 153.552 14.9028 145.246 14.9028 134.999C14.9028 127.111 20.2072 120.373 27.6863 117.689C34.9897 113.65 37.2698 109.614 37.5416 102.578C37.7769 96.4849 42.8368 93.2038 49.0146 93.7897Z",
|
|
103
119
|
fill: "#515151"
|
|
104
|
-
}),
|
|
120
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
105
121
|
d: "M49.6029 111.367L51.9993 113.171V113.171L49.6029 111.367ZM49.0146 93.7897L48.7313 96.7763L48.7313 96.7763L49.0146 93.7897ZM50.5099 122.521L53.1752 121.144V121.144L50.5099 122.521ZM51.7909 125.08L49.0764 126.357L49.1784 126.574L49.3136 126.772L51.7909 125.08ZM27.6863 117.689L28.6996 120.513L28.9268 120.431L29.138 120.314L27.6863 117.689ZM37.5416 102.578L34.5438 102.462L37.5416 102.578ZM51.9993 113.171C54.4038 109.979 55.9656 105.116 56.1129 100.926C56.1868 98.8228 55.9187 96.5591 54.9346 94.6609C53.8722 92.6119 51.9836 91.0578 49.2978 90.8031L48.7313 96.7763C49.1344 96.8145 49.3603 96.9449 49.608 97.4226C49.9338 98.051 50.1714 99.1562 50.1166 100.715C50.0065 103.848 48.7735 107.481 47.2066 109.562L51.9993 113.171ZM53.1752 121.144C52.0769 119.018 51.3798 117.611 51.149 116.336C50.9676 115.333 51.0733 114.401 51.9993 113.171L47.2066 109.562C45.2522 112.157 44.7723 114.791 45.2448 117.404C45.6681 119.744 46.8646 122.001 47.8446 123.898L53.1752 121.144ZM54.5055 123.803C54.0596 122.855 53.5952 121.957 53.1752 121.144L47.8446 123.898C48.2717 124.725 48.6853 125.526 49.0764 126.357L54.5055 123.803ZM49.3136 126.772C50.9511 129.17 51.885 131.987 51.885 134.999H57.885C57.885 130.715 56.5497 126.728 54.2683 123.388L49.3136 126.772ZM51.885 134.999C51.885 143.382 44.4927 150.552 34.8939 150.552V156.552C47.3766 156.552 57.885 147.11 57.885 134.999H51.885ZM34.8939 150.552C25.2951 150.552 17.9028 143.382 17.9028 134.999H11.9028C11.9028 147.11 22.4111 156.552 34.8939 156.552V150.552ZM17.9028 134.999C17.9028 128.529 22.2629 122.822 28.6996 120.513L26.673 114.865C18.1516 117.923 11.9028 125.693 11.9028 134.999H17.9028ZM34.5438 102.462C34.4194 105.684 33.8475 107.868 32.7169 109.652C31.5726 111.457 29.6524 113.174 26.2346 115.064L29.138 120.314C33.0235 118.166 35.8951 115.845 37.7847 112.864C39.6879 109.861 40.392 106.509 40.5393 102.694L34.5438 102.462ZM49.2978 90.8031C45.6324 90.4555 42.0532 91.2323 39.2808 93.2562C36.446 95.3257 34.6955 98.5337 34.5438 102.462L40.5393 102.694C40.6229 100.529 41.5201 99.0502 42.8185 98.1023C44.1794 97.1088 46.219 96.538 48.7313 96.7763L49.2978 90.8031Z",
|
|
106
122
|
fill: "#515151",
|
|
107
123
|
mask: "url(#path-16-inside-1)"
|
|
108
|
-
}),
|
|
124
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
109
125
|
d: "M54.0973 105.948C54.0973 107.639 52.6657 109.043 50.858 109.043C49.0503 109.043 47.6187 107.639 47.6187 105.948C47.6187 104.256 49.0503 102.852 50.858 102.852C52.6657 102.852 54.0973 104.256 54.0973 105.948Z",
|
|
110
126
|
fill: "white",
|
|
111
127
|
stroke: "#515151"
|
|
112
|
-
}),
|
|
128
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
113
129
|
d: "M37.1187 95.0657C37.1187 96.8972 35.5779 98.4556 33.585 98.4556C31.5921 98.4556 30.0513 96.8972 30.0513 95.0657C30.0513 93.2342 31.5921 91.6758 33.585 91.6758C35.5779 91.6758 37.1187 93.2342 37.1187 95.0657Z",
|
|
114
130
|
fill: "#515151",
|
|
115
131
|
stroke: "#515151",
|
|
116
132
|
strokeWidth: 3
|
|
117
|
-
}),
|
|
133
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
118
134
|
d: "M147.224 155.647C147.116 159.23 148.491 160.533 151.929 161.727",
|
|
119
135
|
stroke: "#515151"
|
|
120
136
|
}));
|
|
121
137
|
}
|
|
122
|
-
|
|
123
|
-
var _default = SvgComponent;
|
|
124
|
-
exports.default = _default;
|
|
138
|
+
var IllustrationNoContent_default = SvgComponent;
|