@conveyorhq/arrow-ds 1.213.0 → 1.214.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/package.json +1 -1
- package/public/components/EmptyIllustration/EmptyIllustration.d.ts +7 -0
- package/public/components/EmptyIllustration/EmptyIllustration.js +74 -0
- package/public/components/EmptyIllustration/alert.d.ts +4 -0
- package/public/components/EmptyIllustration/alert.js +14 -0
- package/public/components/EmptyIllustration/books-check.d.ts +4 -0
- package/public/components/EmptyIllustration/books-check.js +34 -0
- package/public/components/EmptyIllustration/bulk-edit.d.ts +4 -0
- package/public/components/EmptyIllustration/bulk-edit.js +33 -0
- package/public/components/EmptyIllustration/clock.d.ts +4 -0
- package/public/components/EmptyIllustration/clock.js +20 -0
- package/public/components/EmptyIllustration/confetti.d.ts +4 -0
- package/public/components/EmptyIllustration/confetti.js +33 -0
- package/public/components/EmptyIllustration/docs.d.ts +4 -0
- package/public/components/EmptyIllustration/docs.js +20 -0
- package/public/components/EmptyIllustration/done.d.ts +4 -0
- package/public/components/EmptyIllustration/done.js +29 -0
- package/public/components/EmptyIllustration/found.d.ts +4 -0
- package/public/components/EmptyIllustration/found.js +38 -0
- package/public/components/EmptyIllustration/index.d.ts +19 -0
- package/public/components/EmptyIllustration/index.js +35 -0
- package/public/components/EmptyIllustration/lightning.d.ts +4 -0
- package/public/components/EmptyIllustration/lightning.js +18 -0
- package/public/components/EmptyIllustration/megaphone.d.ts +4 -0
- package/public/components/EmptyIllustration/megaphone.js +21 -0
- package/public/components/EmptyIllustration/network-nodes.d.ts +4 -0
- package/public/components/EmptyIllustration/network-nodes.js +40 -0
- package/public/components/EmptyIllustration/network.d.ts +4 -0
- package/public/components/EmptyIllustration/network.js +21 -0
- package/public/components/EmptyIllustration/no-results.d.ts +4 -0
- package/public/components/EmptyIllustration/no-results.js +37 -0
- package/public/components/EmptyIllustration/open-questions.d.ts +4 -0
- package/public/components/EmptyIllustration/open-questions.js +29 -0
- package/public/components/EmptyIllustration/patterns.d.ts +4 -0
- package/public/components/EmptyIllustration/patterns.js +29 -0
- package/public/components/EmptyIllustration/stopwatch.d.ts +4 -0
- package/public/components/EmptyIllustration/stopwatch.js +33 -0
- package/public/components/EmptyIllustration/tags.d.ts +4 -0
- package/public/components/EmptyIllustration/tags.js +26 -0
- package/public/components/EmptyIllustration/team.d.ts +4 -0
- package/public/components/EmptyIllustration/team.js +19 -0
- package/public/components/EmptyIllustration/todo.d.ts +4 -0
- package/public/components/EmptyIllustration/todo.js +29 -0
- package/public/index.d.ts +1 -0
- package/public/index.js +1 -0
- package/src/components/EmptyIllustration/EmptyIllustration.stories.mdx +141 -0
- package/src/components/EmptyIllustration/EmptyIllustration.tsx +97 -0
- package/src/components/EmptyIllustration/alert.tsx +20 -0
- package/src/components/EmptyIllustration/books-check.tsx +180 -0
- package/src/components/EmptyIllustration/bulk-edit.tsx +78 -0
- package/src/components/EmptyIllustration/clock.tsx +51 -0
- package/src/components/EmptyIllustration/confetti.tsx +140 -0
- package/src/components/EmptyIllustration/docs.tsx +48 -0
- package/src/components/EmptyIllustration/done.tsx +75 -0
- package/src/components/EmptyIllustration/found.tsx +88 -0
- package/src/components/EmptyIllustration/index.ts +19 -0
- package/src/components/EmptyIllustration/lightning.tsx +41 -0
- package/src/components/EmptyIllustration/megaphone.tsx +55 -0
- package/src/components/EmptyIllustration/network-nodes.tsx +83 -0
- package/src/components/EmptyIllustration/network.tsx +51 -0
- package/src/components/EmptyIllustration/no-results.tsx +80 -0
- package/src/components/EmptyIllustration/open-questions.tsx +71 -0
- package/src/components/EmptyIllustration/patterns.tsx +92 -0
- package/src/components/EmptyIllustration/stopwatch.tsx +96 -0
- package/src/components/EmptyIllustration/tags.tsx +81 -0
- package/src/components/EmptyIllustration/team.tsx +33 -0
- package/src/components/EmptyIllustration/todo.tsx +84 -0
- package/src/index.ts +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../Svg";
|
|
3
|
+
declare const illustrationIds: readonly ["alert", "books-check", "bulk-edit", "clock", "confetti", "docs", "done", "found", "lightning", "megaphone", "network", "network-nodes", "no-results", "open-questions", "patterns", "stopwatch", "tags", "team", "todo"];
|
|
4
|
+
declare function EmptyIllustration({ id, ...props }: React.ComponentProps<typeof Svg> & {
|
|
5
|
+
id: typeof illustrationIds[number];
|
|
6
|
+
}): React.JSX.Element | null;
|
|
7
|
+
export { EmptyIllustration };
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustration = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const _1 = require(".");
|
|
9
|
+
const illustrationIds = [
|
|
10
|
+
"alert",
|
|
11
|
+
"books-check",
|
|
12
|
+
"bulk-edit",
|
|
13
|
+
"clock",
|
|
14
|
+
"confetti",
|
|
15
|
+
"docs",
|
|
16
|
+
"done",
|
|
17
|
+
"found",
|
|
18
|
+
"lightning",
|
|
19
|
+
"megaphone",
|
|
20
|
+
"network",
|
|
21
|
+
"network-nodes",
|
|
22
|
+
"no-results",
|
|
23
|
+
"open-questions",
|
|
24
|
+
"patterns",
|
|
25
|
+
"stopwatch",
|
|
26
|
+
"tags",
|
|
27
|
+
"team",
|
|
28
|
+
"todo",
|
|
29
|
+
];
|
|
30
|
+
function EmptyIllustration({ id, ...props }) {
|
|
31
|
+
switch (id) {
|
|
32
|
+
case "alert":
|
|
33
|
+
return react_1.default.createElement(_1.EmptyIllustrationAlert, { ...props });
|
|
34
|
+
case "books-check":
|
|
35
|
+
return react_1.default.createElement(_1.EmptyIllustrationBooksCheck, { ...props });
|
|
36
|
+
case "bulk-edit":
|
|
37
|
+
return react_1.default.createElement(_1.EmptyIllustrationBulkEdit, { ...props });
|
|
38
|
+
case "clock":
|
|
39
|
+
return react_1.default.createElement(_1.EmptyIllustrationClock, { ...props });
|
|
40
|
+
case "confetti":
|
|
41
|
+
return react_1.default.createElement(_1.EmptyIllustrationConfetti, { ...props });
|
|
42
|
+
case "docs":
|
|
43
|
+
return react_1.default.createElement(_1.EmptyIllustrationDocs, { ...props });
|
|
44
|
+
case "done":
|
|
45
|
+
return react_1.default.createElement(_1.EmptyIllustrationDone, { ...props });
|
|
46
|
+
case "found":
|
|
47
|
+
return react_1.default.createElement(_1.EmptyIllustrationFound, { ...props });
|
|
48
|
+
case "lightning":
|
|
49
|
+
return react_1.default.createElement(_1.EmptyIllustrationLightning, { ...props });
|
|
50
|
+
case "megaphone":
|
|
51
|
+
return react_1.default.createElement(_1.EmptyIllustrationMegaphone, { ...props });
|
|
52
|
+
case "network":
|
|
53
|
+
return react_1.default.createElement(_1.EmptyIllustrationNetwork, { ...props });
|
|
54
|
+
case "network-nodes":
|
|
55
|
+
return react_1.default.createElement(_1.EmptyIllustrationNetworkNodes, { ...props });
|
|
56
|
+
case "no-results":
|
|
57
|
+
return react_1.default.createElement(_1.EmptyIllustrationNoResults, { ...props });
|
|
58
|
+
case "open-questions":
|
|
59
|
+
return react_1.default.createElement(_1.EmptyIllustrationOpenQuestions, { ...props });
|
|
60
|
+
case "patterns":
|
|
61
|
+
return react_1.default.createElement(_1.EmptyIllustrationPatterns, { ...props });
|
|
62
|
+
case "stopwatch":
|
|
63
|
+
return react_1.default.createElement(_1.EmptyIllustrationStopwatch, { ...props });
|
|
64
|
+
case "tags":
|
|
65
|
+
return react_1.default.createElement(_1.EmptyIllustrationTags, { ...props });
|
|
66
|
+
case "team":
|
|
67
|
+
return react_1.default.createElement(_1.EmptyIllustrationTeam, { ...props });
|
|
68
|
+
case "todo":
|
|
69
|
+
return react_1.default.createElement(_1.EmptyIllustrationTodo, { ...props });
|
|
70
|
+
default:
|
|
71
|
+
return null;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
exports.EmptyIllustration = EmptyIllustration;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationAlert = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationAlert({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: "#d93329", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("path", { strokeWidth: "2", stroke: "#47687d", fill: "#fa7d76", d: "M52.0068 22.5813c1.8455 0.013 3.7559 0.7943 4.9375 2.3896l0.2266 0.3301 2e-3 3e-3 25.0224 39.8046 49e-4 88e-4c1.1529 1.8766 0.9911 3.9863-0.0508 5.6006-1.0358 1.6047-2.9199 2.7002-5.1797 2.7002H27.0303c-2.2702 0-4.151-1.1287-5.1817-2.7402-1.0343-1.6172-1.2093-3.7314-0.042-5.5723L46.8271 25.304c1.1571-1.8752 3.2102-2.7365 5.1797-2.7227zM52.0518 58.3362c-2.2284 2e-4-3.7959 1.6252-3.7959 3.3916 1e-4 1.8481 1.5529 3.3904 3.7959 3.3906 2.1537 0 3.7957-1.5558 3.7959-3.3906 0-1.7529-1.6569-3.3916-3.7959-3.3916zM48.7158 41.3459c-0.1087 1e-4-0.1973 0.0446-0.2431 0.0889-82e-4 79e-4-0.0131 0.0148-0.0166 0.0195l39e-4 0.0264 29e-4 0.0498 0.7266 12.9141c0.0174 0.0777 0.0467 0.1075 0.0634 0.1211 0.0249 0.0201 0.0833 0.0526 0.1924 0.0527h5.1094c0.1091-1e-4 0.1675-0.0326 0.1924-0.0527 0.0167-0.0136 0.045-0.0436 0.0625-0.1211l0.7275-12.9141 29e-4-0.0498 3e-3-0.0264c-36e-4-47e-4-78e-4-0.0119-0.0157-0.0195-0.0458-0.0443-0.1344-0.0888-0.2431-0.0889z" })));
|
|
13
|
+
}
|
|
14
|
+
exports.EmptyIllustrationAlert = EmptyIllustrationAlert;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationBooksCheck = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationBooksCheck({ className, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { className: className, width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: "#29853d", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("rect", { fill: "#fff", width: "16.3529", height: "48.9804", rx: "1", x: "19.3525", y: "29.549" }),
|
|
13
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "16.3529", height: "48.9804", rx: "1", x: "19.3525", y: "29.549" }),
|
|
14
|
+
react_1.default.createElement("rect", { fill: "#8969bd", transform: "translate(26.5098 36.7058)", width: "2.03922", height: "30.5882" }),
|
|
15
|
+
react_1.default.createElement("rect", { fill: "#fff", width: "12.2745", height: "59.1765", rx: "1", x: "35.6667", y: "19.3528" }),
|
|
16
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "12.2745", height: "59.1765", rx: "1", x: "35.6667", y: "19.3528" }),
|
|
17
|
+
react_1.default.createElement("rect", { fill: "#12926f", width: "6.11765", height: "6.11765", rx: "3.05882", x: "38.7446", y: "24.4706" }),
|
|
18
|
+
react_1.default.createElement("rect", { fill: "#33c69f", transform: "rotate(90 3.0589 39.7646)", width: "26.5098", height: "2.03921" }),
|
|
19
|
+
react_1.default.createElement("rect", { fill: "#fff", width: "16.3529", height: "32.6667", rx: "1", x: "47.9021", y: "45.8625" }),
|
|
20
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "16.3529", height: "32.6667", rx: "1", x: "47.9021", y: "45.8625" }),
|
|
21
|
+
react_1.default.createElement("rect", { fill: "#0d7de4", transform: "translate(50.98 55.0587)", width: "10.1961", height: "2.03922" }),
|
|
22
|
+
react_1.default.createElement("rect", { fill: "#0d7de4", transform: "translate(50.98 50.9801)", width: "10.1961", height: "2.03922" }),
|
|
23
|
+
react_1.default.createElement("rect", { fill: "#0d7de4", transform: "translate(50.98 59.1371)", width: "10.1961", height: "2.03922" }),
|
|
24
|
+
react_1.default.createElement("rect", { fill: "#fff", width: "8.19608", height: "44.902", rx: "1", x: "64.2153", y: "33.6274" }),
|
|
25
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "8.19608", height: "44.902", rx: "1", x: "64.2153", y: "33.6274" }),
|
|
26
|
+
react_1.default.createElement("rect", { fill: "#8969bd", transform: "rotate(90 16.31335 53.01915)", width: "36.7059", height: "2.03921" }),
|
|
27
|
+
react_1.default.createElement("rect", { fill: "#fff", width: "12.2745", height: "38.7843", rx: "1", x: "72.3726", y: "39.7449" }),
|
|
28
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "12.2745", height: "38.7843", rx: "1", x: "72.3726", y: "39.7449" }),
|
|
29
|
+
react_1.default.createElement("rect", { fill: "#33c69f", transform: "rotate(90 17.33355 62.19595)", width: "26.5098", height: "2.03921" }),
|
|
30
|
+
react_1.default.createElement("rect", { fill: "#f4f7f9", width: "81.6078", height: "10.2353", x: "11.1962", y: "80.5293" }),
|
|
31
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "81.6078", height: "10.2353", x: "11.1962", y: "80.5293" }),
|
|
32
|
+
react_1.default.createElement("path", { strokeWidth: "2", stroke: "#47687d", fill: "#54af68", clipRule: "evenodd", d: "M85.6905 6.0835 64.757 27.3245 53.118 15.8541l4.0149-4.0738 7.5651 7.4556 16.9186-17.1672z", fillRule: "evenodd" })));
|
|
33
|
+
}
|
|
34
|
+
exports.EmptyIllustrationBooksCheck = EmptyIllustrationBooksCheck;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationBulkEdit = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationBulkEdit({ className, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { className: className, width: "104", height: "104", viewBox: "0 0 104 104", fill: "#47687d", clipRule: "evenodd", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: "#33c69f", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("mask", { id: "bulkedit_mask0_19777_10931", style: { maskType: "alpha" }, fill: "none", width: "24", height: "11", maskUnits: "userSpaceOnUse", x: "14", y: "47" },
|
|
13
|
+
react_1.default.createElement("path", { fill: "#c4c4c4", clipRule: "evenodd", d: "M29.5676 47.5135H14v9.7297h15.5676zM37.3514 47.5135h-3.8919v9.7297h3.8919z", fillRule: "evenodd" })),
|
|
14
|
+
react_1.default.createElement("path", { strokeWidth: "1.94595", stroke: "#47687d", fill: "#7de6ca", d: "M36.3779 48.4862v7.7842H14.9727v-7.7842z" }),
|
|
15
|
+
react_1.default.createElement("path", { fill: "#dee7ee", d: "M64.5946 30H86v9.7297H64.5946z" }),
|
|
16
|
+
react_1.default.createElement("path", { fill: "#dee7ee", d: "M64.5946 47.5135H86v9.7297H64.5946z" }),
|
|
17
|
+
react_1.default.createElement("path", { fill: "#dee7ee", d: "M64.5946 65.027H86v9.7298H64.5946z" }),
|
|
18
|
+
react_1.default.createElement("path", { d: "M84.0541 31.9459H66.5406v5.8379h17.5135zM64.5946 30v9.7297H86V30z", fillRule: "evenodd" }),
|
|
19
|
+
react_1.default.createElement("path", { d: "M84.0541 49.4595H66.5406v5.8378h17.5135zM64.5946 47.5135v9.7297H86v-9.7297z", fillRule: "evenodd" }),
|
|
20
|
+
react_1.default.createElement("path", { d: "M84.0541 66.973H66.5406v5.8378h17.5135zM64.5946 65.027v9.7298H86V65.027z", fillRule: "evenodd" }),
|
|
21
|
+
react_1.default.createElement("path", { d: "M33.4595 43.622h-1.9463v17.5127h1.9463v1.9463h-5.8379v-1.9463h1.9463V43.622h-1.9463v-1.9463h5.8379z" }),
|
|
22
|
+
react_1.default.createElement("rect", { width: "23.3514", height: "1.94595", x: "39.2972", y: "51.4054" }),
|
|
23
|
+
react_1.default.createElement("path", { d: "M48.6363 67.9129c-0.4312-0.5716-0.5822-1.282-0.5822-1.736V51.4054h-4.8649v1.946h2.9189v12.8255c0 0.7843 0.2382 1.9315 0.9746 2.9078 0.7717 1.0231 2.0351 1.7802 3.8903 1.7802h11.6757v-1.946H50.973c-1.2583 0-1.9409-0.4813-2.3367-1.006z", fillRule: "evenodd" }),
|
|
24
|
+
react_1.default.createElement("path", { d: "M48.6363 36.8439c-0.4312 0.5716-0.5822 1.2819-0.5822 1.736v14.7715h-4.8649v-1.946h2.9189V38.5799c0-0.7843 0.2382-1.9315 0.9746-2.9078 0.7717-1.0231 2.0351-1.7802 3.8903-1.7802h11.6757v1.946H50.973c-1.2583 0-1.9409 0.4812-2.3367 1.006z", fillRule: "evenodd" }),
|
|
25
|
+
react_1.default.createElement("rect", { width: "9.72973", height: "1.94595", x: "17.8918", y: "51.4054" }),
|
|
26
|
+
react_1.default.createElement("rect", { width: "1.94595", height: "1.94595", x: "68.4865", y: "33.8919" }),
|
|
27
|
+
react_1.default.createElement("rect", { width: "1.94595", height: "1.94595", x: "68.4865", y: "51.4054" }),
|
|
28
|
+
react_1.default.createElement("rect", { width: "1.94595", height: "1.94595", x: "68.4865", y: "68.9189" }),
|
|
29
|
+
react_1.default.createElement("rect", { width: "7.78378", height: "1.94595", x: "72.3784", y: "33.8919" }),
|
|
30
|
+
react_1.default.createElement("rect", { width: "7.78378", height: "1.94595", x: "72.3784", y: "51.4054" }),
|
|
31
|
+
react_1.default.createElement("rect", { width: "7.78378", height: "1.94595", x: "72.3784", y: "68.9189" })));
|
|
32
|
+
}
|
|
33
|
+
exports.EmptyIllustrationBulkEdit = EmptyIllustrationBulkEdit;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationClock = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationClock({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", "stroke-width": "3.16667", stroke: "#204156", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { stroke: "none", fill: "#33c69f", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("rect", { stroke: "none", fill: "#fff", width: "76", height: "76", rx: "38", x: "14", y: "14" }),
|
|
13
|
+
react_1.default.createElement("circle", { strokeWidth: "2", stroke: "#47687d", cx: "52", cy: "52", r: "37" }),
|
|
14
|
+
react_1.default.createElement("circle", { stroke: "#7de6ca", cx: "52", cy: "52", r: "34.4167" }),
|
|
15
|
+
react_1.default.createElement("circle", { strokeWidth: "3", stroke: "#47687d", cx: "52", cy: "52", r: "31.5", strokeDasharray: "3.17 3.17" }),
|
|
16
|
+
react_1.default.createElement("circle", { fill: "#c4c4c4", cx: "52", cy: "51.9999", r: "1.58333" }),
|
|
17
|
+
react_1.default.createElement("path", { d: "M52.0001 52 66.597 35.1775" }),
|
|
18
|
+
react_1.default.createElement("path", { d: "M52 52 78.9884 67.2755" })));
|
|
19
|
+
}
|
|
20
|
+
exports.EmptyIllustrationClock = EmptyIllustrationClock;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationConfetti = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationConfetti({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", "stroke-width": "2", stroke: "#47687d", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { stroke: "none", fill: "#29853d", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("circle", { fill: "#54af68", cx: "53", cy: "49", r: "4" }),
|
|
13
|
+
react_1.default.createElement("path", { strokeWidth: "2.3451", stroke: "#8969bd", strokeLinecap: "round", strokeLinejoin: "round", d: "M59.1109 62.2331c-0.9023-6.2663 2.533-17.2951 23.4922-11.2799" }),
|
|
14
|
+
react_1.default.createElement("path", { stroke: "none", fill: "#fdb515", d: "M36.4255 33.1878c0.7485-1.5702 2.8859-1.8076 3.9607-0.44l25.2464 32.123c1.0105 1.2857 0.4279 3.1849-1.1297 3.6828L20.0342 82.7688c-3.2387 1.0353-6.1488-2.2984-4.6857-5.3675z" }),
|
|
15
|
+
react_1.default.createElement("mask", { id: "confetti_mask0_19777_4625", style: { maskType: "alpha" }, strokeWidth: "1", stroke: "none", width: "54", height: "55", maskUnits: "userSpaceOnUse", x: "14", y: "29" },
|
|
16
|
+
react_1.default.createElement("path", { strokeWidth: "0.970385", stroke: "#47687d", fill: "#fdb515", d: "M67.1697 67.1999 19.904 82.4045c-2.8352 0.9119-5.3881-2.0073-4.106-4.6955l22.4357-47.0415z" })),
|
|
17
|
+
react_1.default.createElement("g", { strokeWidth: "1", stroke: "none", fill: "#dc9801", clipRule: "evenodd", fillRule: "evenodd", mask: "url(#confetti_mask0_19777_4625)" },
|
|
18
|
+
react_1.default.createElement("path", { d: "M36.9312 32.124 56.7473 71.0526l-7.3871 2.3451-16.5329-32.4796z" }),
|
|
19
|
+
react_1.default.createElement("path", { d: "M29.7788 47.2502 43.9667 75.0396 36.4624 77.502 25.5576 56.0443z" }),
|
|
20
|
+
react_1.default.createElement("path", { d: "M22.8608 61.7893l8.6769 17.2365-7.5044 2.4624-5.3937-11.022z" })),
|
|
21
|
+
react_1.default.createElement("path", { strokeWidth: "2.3451", stroke: "#8969bd", strokeLinecap: "round", strokeLinejoin: "round", d: "M25.0412 36.991c2.6764 1.5013 6.3682 5.9379-0.2762 11.6735" }),
|
|
22
|
+
react_1.default.createElement("path", { strokeLinejoin: "round", d: "M37.3281 33.6181c0.4293-0.9006 1.6557-1.0371 2.2722-0.2527l25.2463 32.1237c0.5792 0.7375 0.2447 1.8267-0.6486 2.1123L19.7293 81.8165c-2.404 0.7681-4.5639-1.7064-3.478-3.9846z" }),
|
|
23
|
+
react_1.default.createElement("path", { fill: "#0d7de4", d: "M64.9851 35.9948 68.99 41.1133l-6.0354 2.4124-4.0055-5.1197z" }),
|
|
24
|
+
react_1.default.createElement("path", { fill: "#0d7de4", d: "M18.0234 60.4074l7.988-1.0391-1.2388 7.96-7.9887 1.0384z" }),
|
|
25
|
+
react_1.default.createElement("path", { strokeWidth: "2.3451", stroke: "#f38f56", strokeLinecap: "round", strokeLinejoin: "round", d: "M84.5745 66.5977l-8.1867 2.7575 5.5551-12.0217-9.9078 6.2702 2.0846-8.4949" }),
|
|
26
|
+
react_1.default.createElement("path", { strokeWidth: "2.3451", stroke: "#f38f56", strokeLinecap: "round", strokeLinejoin: "round", d: "M51.3772 39.6051 47.8982 29.365 61.251 31.0036 53.8645 20.145l9.3245-1.4689" }),
|
|
27
|
+
react_1.default.createElement("circle", { fill: "#54af68", transform: "rotate(-16.5575 91.1912 57.9454)", cx: "91.1912", cy: "57.9454", r: "3.29834" }),
|
|
28
|
+
react_1.default.createElement("circle", { fill: "#33c69f", transform: "rotate(-16.5575 59.2953 71.2953)", cx: "59.2953", cy: "71.2953", r: "4.06252" }),
|
|
29
|
+
react_1.default.createElement("circle", { fill: "#33c69f", transform: "rotate(-16.5575 82.3931 40.3932)", cx: "82.3931", cy: "40.3932", r: "2.53284" }),
|
|
30
|
+
react_1.default.createElement("circle", { fill: "#33c69f", transform: "rotate(-16.5575 75.5667 28.2268)", cx: "75.5667", cy: "28.2268", r: "4.27509" }),
|
|
31
|
+
react_1.default.createElement("circle", { fill: "#54af68", transform: "rotate(-16.5575 43.2065 19.2065)", cx: "43.2065", cy: "19.2065", r: "3.99111" })));
|
|
32
|
+
}
|
|
33
|
+
exports.EmptyIllustrationConfetti = EmptyIllustrationConfetti;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationDocs = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationDocs({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#dee7ee", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: "#33c69f", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "41.2", height: "55.6", x: "37.3999", y: "30.4" }),
|
|
13
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#f4f7f9", width: "41.2", height: "55.6", x: "30.2", y: "23.2" }),
|
|
14
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#fff", width: "41.2", height: "55.6", x: "23", y: "16" }),
|
|
15
|
+
react_1.default.createElement("rect", { fill: "#33c69f", width: "26.4", height: "2.4", x: "29.2", y: "24.6" }),
|
|
16
|
+
react_1.default.createElement("rect", { fill: "#33c69f", width: "19.8", height: "2.4", x: "29.2", y: "29.4" }),
|
|
17
|
+
react_1.default.createElement("rect", { width: "28.8", height: "7.2", x: "29.2", y: "36.6" }),
|
|
18
|
+
react_1.default.createElement("rect", { width: "28.8", height: "16.8", x: "29.2", y: "48.6" })));
|
|
19
|
+
}
|
|
20
|
+
exports.EmptyIllustrationDocs = EmptyIllustrationDocs;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationDone = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationDone({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#b9c8d2", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: "#29853d", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#fff", width: "69.3726", height: "77.5294", rx: "1", x: "16.2941", y: "13.2353" }),
|
|
13
|
+
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#fff", width: "57.1373", height: "61.2157", rx: "1", x: "22.4117", y: "23.4315" }),
|
|
14
|
+
react_1.default.createElement("mask", { id: "done_path-4-inside-1_19777_4553", fill: "#fff" },
|
|
15
|
+
react_1.default.createElement("path", { d: "M51.4631 10.1961c4.0306 0 7.2987 3.2673 7.2989 7.2979h8.4785c3.3786 0 6.1172 2.7395 6.1172 6.1181v3.917H29.5686v-3.917c0-3.3785 2.7387-6.1179 6.1172-6.1181h8.4795c1e-4-4.0305 3.2674-7.2977 7.2978-7.2979z" })),
|
|
16
|
+
react_1.default.createElement("path", { fill: "#7de6ca", d: "M51.4631 10.1961c4.0306 0 7.2987 3.2673 7.2989 7.2979h8.4785c3.3786 0 6.1172 2.7395 6.1172 6.1181v3.917H29.5686v-3.917c0-3.3785 2.7387-6.1179 6.1172-6.1181h8.4795c1e-4-4.0305 3.2674-7.2977 7.2978-7.2979z" }),
|
|
17
|
+
react_1.default.createElement("path", { fill: "#47687d", d: "M51.4631 10.1961v-2 0zM58.762 17.494h-2v2h2zM67.2405 17.494v-2 0zM73.3577 27.5291v2h2v-2zM29.5686 27.5291h-2v2h2zM35.6858 17.494v-2h-2e-4zM44.1653 17.494v2h1.9999l1e-4-2zM51.4631 10.1961v2c2.9263 0 5.2987 2.3721 5.2989 5.2979h2l2-1e-4c-2e-4-5.1354-4.164-9.2978-9.2989-9.2978zM58.762 17.494v2h8.4785v-2-2H58.762zM67.2405 17.494v2c2.2737 0 4.1172 1.8436 4.1172 4.1181h2 2c0-4.4828-3.6336-8.1181-8.1172-8.1181zM73.3577 23.6121h-2v3.917h2 2v-3.917zM73.3577 27.5291v-2H29.5686v2 2h43.7891zM29.5686 27.5291h2v-3.917h-2-2v3.917zM29.5686 23.6121h2c0-2.2742 1.8436-4.118 4.1173-4.1181l-1e-4-2-2e-4-2c-4.4832 3e-4-8.117 3.6353-8.117 8.1181zM35.6858 17.494v2h8.4795v-2-2h-8.4795zM44.1653 17.494h2c1e-4-2.9259 2.3719-5.2978 5.2979-5.2979l-1e-4-2v-2c-5.135 2e-4-9.2976 4.1628-9.2978 9.2978z", mask: "url(#done_path-4-inside-1_19777_4553)" }),
|
|
18
|
+
react_1.default.createElement("circle", { fill: "#47687d", cx: "51.4634", cy: "17.4944", r: "1.82456" }),
|
|
19
|
+
react_1.default.createElement("rect", { width: "32.5", height: "2.03922", x: "39.8921", y: "36.7057" }),
|
|
20
|
+
react_1.default.createElement("rect", { width: "22.8456", height: "2.03922", x: "39.8921", y: "40.7841" }),
|
|
21
|
+
react_1.default.createElement("rect", { width: "32.5", height: "2.03922", x: "39.8921", y: "53.0198" }),
|
|
22
|
+
react_1.default.createElement("rect", { width: "22.8456", height: "2.03922", x: "39.8921", y: "57.0982" }),
|
|
23
|
+
react_1.default.createElement("rect", { width: "32.5", height: "2.03922", x: "39.8921", y: "69.3335" }),
|
|
24
|
+
react_1.default.createElement("rect", { width: "22.8456", height: "2.03922", x: "39.8921", y: "73.412" }),
|
|
25
|
+
react_1.default.createElement("path", { strokeWidth: "1.89473", stroke: "#33c69f", fill: "none", d: "M27 41.1578l3.1579 3.1579 6.3157-6.3158" }),
|
|
26
|
+
react_1.default.createElement("path", { strokeWidth: "1.89473", stroke: "#33c69f", fill: "none", d: "M27 55.6844l3.1579 3.1579 6.3157-6.3158" }),
|
|
27
|
+
react_1.default.createElement("path", { strokeWidth: "1.89473", stroke: "#33c69f", fill: "none", d: "M27 70.8421 30.1579 74l6.3157-6.3158" })));
|
|
28
|
+
}
|
|
29
|
+
exports.EmptyIllustrationDone = EmptyIllustrationDone;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationFound = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationFound({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "108", height: "104", viewBox: "0 0 108 104", fill: "#dee7ee", "clip-rule": "evenodd", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: "#29853d", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("path", { fill: "#47687d", d: "M85.0789 40.4294v5.0179l-2.2784-2.2335v-2.6413c0-2.7177-2.2784-4.8632-4.8417-4.8632H39.2253c1.2817 1.2873 1.9937 3.0037 1.9937 4.8632v49.3467c0 2.7176 2.2784 4.8631 4.8417 4.8631 2.7056 0 4.8416-2.2885 4.8416-4.8631 0-0.4291 0-1.0013-0.1424-1.2873l-0.2848-1.1443 1.4241-0.143h30.9013V73.4703l2.2784 2.4315v11.2997h10.1106v1.0013 2.1455c0 3.7189-2.5632 6.4365-5.9809 6.4365H46.2031c-3.8449 0.143-6.9778-3.0037-6.9778-6.8656v-16.735H22.7067c-3.7025 0-6.8354-3.0037-6.8354-6.8656V19.5465H4.1943l0-2.5746c0-3.7189 3.1329-6.8656 6.9778-6.7226h0.5696v-0.143H55.032c3.7025 0 6.6929 3.1467 6.6929 6.8656v16.5919H78.386c3.7025 0 6.6929 3.1468 6.6929 6.8656z" }),
|
|
13
|
+
react_1.default.createElement("path", { fill: "#fff", d: "M51.8994 87.3449h30.9013V73.4706l2.2766 2.4199V45.4294l-2.2766-2.1972v-2.6594c0-2.7177-2.2784-4.8632-4.8416-4.8632H39.2256c1.2816 1.2873 1.9936 3.0037 1.9936 4.8632v49.3467c0 2.7176 2.2785 4.8631 4.8417 4.8631 2.7057 0 4.8417-2.2885 4.8417-4.8631 0-0.4291 0-1.0013-0.1424-1.2873l-0.2848-1.1443z" }),
|
|
14
|
+
react_1.default.createElement("path", { fill: "#fff", d: "M18.0075 62.7432v3.5759c0 2.7176 2.1361 4.8631 4.8417 4.8631 2.7057 0 4.8417-2.2885 4.8417-4.8631V40.573c0-3.7189 2.9905-6.8657 6.8353-6.8657h0.5696v-0.143h24.4933V16.9724c0-2.7177-2.2785-4.8632-4.8417-4.8632H16.0139c1.2816 1.2873 1.9936 3.0037 1.9936 4.8632z" }),
|
|
15
|
+
react_1.default.createElement("path", { d: "M6.3306 17.4015h9.5409 0.1424v-0.4291c0-2.7177-2.2784-4.8632-4.8416-4.8632-2.7057 0-4.8417 2.2886-4.8417 4.8632z" }),
|
|
16
|
+
react_1.default.createElement("path", { d: "M29.6846 66.3189c0 1.8594-0.8545 3.5758-1.9937 4.8631h11.677V40.5728c0-2.7177-2.136-4.8632-4.8417-4.8632-2.7056 0-4.8416 2.2886-4.8416 4.8632z" }),
|
|
17
|
+
react_1.default.createElement("path", { d: "M89.2088 94.6396c2.136 0 3.8448-1.8595 3.8448-4.291v-1.0013h-40.015v0.4291c0 1.8595-0.8545 3.5759-1.9937 4.8632z" }),
|
|
18
|
+
react_1.default.createElement("path", { d: "M75.8322 55.4654H60.4053v2.9053h15.4269z" }),
|
|
19
|
+
react_1.default.createElement("path", { d: "M75.835 47.7173H62.3364v2.9053H75.835z" }),
|
|
20
|
+
react_1.default.createElement("path", { d: "M75.8322 60.3068H60.4053v2.9053h15.4269z" }),
|
|
21
|
+
react_1.default.createElement("path", { d: "M53.8962 18.9136H24.134v2.1455h29.7622z" }),
|
|
22
|
+
react_1.default.createElement("path", { d: "M47.7721 25.2069H24.1333v2.1455h23.6388z" }),
|
|
23
|
+
react_1.default.createElement("path", { d: "M61.1598 74.84h-14.525v2.1455h14.525z" }),
|
|
24
|
+
react_1.default.createElement("path", { d: "M75.9697 79.7031H46.6348v2.1455h29.3349z" }),
|
|
25
|
+
react_1.default.createElement("path", { d: "M58.6262 65.1495h-11.716v1.9369H59.936z" }),
|
|
26
|
+
react_1.default.createElement("path", { d: "M56.8797 60.3068h-9.9695v1.9369h10.4061z" }),
|
|
27
|
+
react_1.default.createElement("path", { d: "M57.3138 50.8964H47.2717v1.7542h9.6055z" }),
|
|
28
|
+
react_1.default.createElement("mask", { id: "found_path-18-inside-1_19777_4594", fill: "#fff" },
|
|
29
|
+
react_1.default.createElement("path", { d: "M83.8555 45.7634c-5.715-5.7403-14.926-5.8306-20.75-0.2695l-0.2735 0.2685c-5.8055 5.8313-5.8055 15.2859 0 21.1172l0.2735 0.2686c5.5205 5.2712 14.0824 5.4639 19.8271 0.581l4.124 4.1426 1.7676-1.7754-4.123-4.1416c4.862-5.77 4.6698-14.3707-0.5782-19.916zM64.2432 47.1794c5.0262-5.0479 13.1751-5.0473 18.2011 1e-3 5.0258 5.0484 5.0257 13.2328 0 18.2812-5.026 5.0484-13.1749 5.049-18.2011 1e-3-5.0263-5.0485-5.0263-13.2347 0-18.2832z" })),
|
|
30
|
+
react_1.default.createElement("path", { fill: "#47687d", d: "M83.8555 45.7634c-5.715-5.7403-14.926-5.8306-20.75-0.2695l-0.2735 0.2685c-5.8055 5.8313-5.8055 15.2859 0 21.1172l0.2735 0.2686c5.5205 5.2712 14.0824 5.4639 19.8271 0.581l4.124 4.1426 1.7676-1.7754-4.123-4.1416c4.862-5.77 4.6698-14.3707-0.5782-19.916zM64.2432 47.1794c5.0262-5.0479 13.1751-5.0473 18.2011 1e-3 5.0258 5.0484 5.0257 13.2328 0 18.2812-5.026 5.0484-13.1749 5.049-18.2011 1e-3-5.0263-5.0485-5.0263-13.2347 0-18.2832z" }),
|
|
31
|
+
react_1.default.createElement("path", { fill: "#47687d", d: "M83.8555 45.7634l1.6344-1.6272 99e-4 99e-4 98e-4 0.0101zM63.1055 45.4939l-1.6161-1.6455 0.0116-0.0114 0.0117-0.0112zM62.832 45.7624l-1.6344-1.6272 91e-4-92e-4 93e-4-9e-3zM62.832 66.8796l-1.616 1.6455-93e-4-91e-4-91e-4-92e-4zM63.1055 67.1482l-1.5928 1.668-0.0117-0.0112-0.0116-0.0114zM82.9326 67.7292 81.439 65.9719l1.6242-1.3805 1.5039 1.5107zM87.0566 71.8718l1.6345 1.6272-1.6345 1.6417-1.6344-1.6418zM88.8242 70.0964l1.6345-1.6271 1.6199 1.6272-1.62 1.6271zM84.7012 65.9548 83.0667 67.582l-1.4908-1.4975 1.3616-1.6158zM84.123 46.0388l1.6542-1.6072 0.0105 0.0109 0.0105 0.011zM64.2432 47.1794l-1.6345-1.6272 2e-4-1e-4zM82.4443 47.1804l1.6345-1.6272v0zM82.4443 65.4616l1.6345 1.6272v0zM64.2432 65.4626l-1.6344 1.6273-1e-4-1e-4zM83.8555 45.7634 82.221 47.3906c-4.8275-4.8489-12.6044-4.925-17.5228-0.2287l-1.5927-1.668-1.5928-1.6681c6.7298-6.4258 17.3749-6.3212 23.9772 0.3104zM63.1055 45.4939l1.616 1.6454-0.2734 0.2686-1.6161-1.6455-1.616-1.6454 0.2734-0.2686zM62.832 45.7624l1.6345 1.6272c-4.9097 4.9315-4.9097 12.9313 0 17.8628l-1.6345 1.6272-1.6344 1.6272c-6.7014-6.7311-6.7014-17.6404 0-24.3716zM62.832 66.8796l1.6161-1.6454 0.2734 0.2685-1.616 1.6455-1.6161 1.6454-0.2734-0.2685zM63.1055 67.1482l1.5927-1.6681c4.6614 4.4509 11.8907 4.6143 16.7408 0.4918l1.4936 1.7573 1.4937 1.7573c-6.6394 5.6433-16.5339 5.4213-22.9136-0.6703zM82.9326 67.7292l1.6345-1.6271 4.124 4.1425-1.6345 1.6272-1.6344 1.6271-4.1241-4.1425zM87.0566 71.8718l-1.6344-1.6272 1.7676-1.7754 1.6344 1.6272 1.6344 1.6272-1.7675 1.7754zM88.8242 70.0964l-1.6345 1.6272-4.123-4.1416 1.6345-1.6272 1.6344-1.6271 4.1231 4.1416zM84.7012 65.9548l-1.7637-1.4861c4.1108-4.8785 3.9467-12.1569-0.4896-16.8446l1.6751-1.5853 1.6752-1.5853c6.0596 6.403 6.2799 16.3259 0.6666 22.9874zM84.123 46.0388 82.4689 47.646l-0.2675-0.2754 1.6541-1.6072 1.6541-1.6072 0.2676 0.2754zM64.2432 47.1794l-1.6343-1.6273c5.9278-5.9534 15.5425-5.9526 21.4699 11e-4l-1.6345 1.6272-1.6344 1.6272c-4.1246-4.143-10.8077-4.1433-14.9324-9e-4zM82.4443 47.1804l1.6345-1.6272c5.9216 5.9483 5.9215 15.5873 0 21.5356l-1.6345-1.6272-1.6345-1.6271c4.13-4.1486 4.13-10.8784 1e-4-15.027zM82.4443 65.4616l1.6345 1.6272c-5.9275 5.9538-15.5421 5.9547-21.47 11e-4l1.6344-1.6273 1.6343-1.6273c4.1247 4.1425 10.8077 4.1421 14.9324-9e-4zM64.2432 65.4626l-1.6345 1.6272c-5.9221-5.9483-5.9221-15.5892 0-21.5376l1.6345 1.6272 1.6344 1.6272c-4.1304 4.1487-4.1304 10.8801 0 15.0288z", mask: "url(#found_path-18-inside-1_19777_4594)" }),
|
|
32
|
+
react_1.default.createElement("path", { strokeWidth: "4.5283", stroke: "#47687d", strokeLinecap: "square", fill: "none", d: "M79.3208 52l-8.151 8.1509L68 56.9811" }),
|
|
33
|
+
react_1.default.createElement("path", { strokeWidth: "1.81132", stroke: "#33c69f", strokeLinecap: "square", fill: "none", d: "M79.3208 52l-8.151 8.1509L68 56.9811" }),
|
|
34
|
+
react_1.default.createElement("path", { strokeWidth: "9.2972", stroke: "#47687d", fill: "none", d: "M87.7891 70.4426 103.987 86.7127" }),
|
|
35
|
+
react_1.default.createElement("path", { fill: "#86a3b5", d: "M100.728 86.6255 87.9011 73.9416l3.247-3.3126 12.8269 12.684z", fillRule: "evenodd" }),
|
|
36
|
+
react_1.default.createElement("path", { fill: "#86a3b5", d: "M100.728 86.6256 87.9011 73.9416l3.247-3.3126 12.8269 12.684z", fillRule: "evenodd" })));
|
|
37
|
+
}
|
|
38
|
+
exports.EmptyIllustrationFound = EmptyIllustrationFound;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export * from "./alert";
|
|
2
|
+
export * from "./books-check";
|
|
3
|
+
export * from "./bulk-edit";
|
|
4
|
+
export * from "./clock";
|
|
5
|
+
export * from "./confetti";
|
|
6
|
+
export * from "./docs";
|
|
7
|
+
export * from "./done";
|
|
8
|
+
export * from "./found";
|
|
9
|
+
export * from "./lightning";
|
|
10
|
+
export * from "./megaphone";
|
|
11
|
+
export * from "./network";
|
|
12
|
+
export * from "./network-nodes";
|
|
13
|
+
export * from "./no-results";
|
|
14
|
+
export * from "./open-questions";
|
|
15
|
+
export * from "./patterns";
|
|
16
|
+
export * from "./stopwatch";
|
|
17
|
+
export * from "./tags";
|
|
18
|
+
export * from "./team";
|
|
19
|
+
export * from "./todo";
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./alert"), exports);
|
|
18
|
+
__exportStar(require("./books-check"), exports);
|
|
19
|
+
__exportStar(require("./bulk-edit"), exports);
|
|
20
|
+
__exportStar(require("./clock"), exports);
|
|
21
|
+
__exportStar(require("./confetti"), exports);
|
|
22
|
+
__exportStar(require("./docs"), exports);
|
|
23
|
+
__exportStar(require("./done"), exports);
|
|
24
|
+
__exportStar(require("./found"), exports);
|
|
25
|
+
__exportStar(require("./lightning"), exports);
|
|
26
|
+
__exportStar(require("./megaphone"), exports);
|
|
27
|
+
__exportStar(require("./network"), exports);
|
|
28
|
+
__exportStar(require("./network-nodes"), exports);
|
|
29
|
+
__exportStar(require("./no-results"), exports);
|
|
30
|
+
__exportStar(require("./open-questions"), exports);
|
|
31
|
+
__exportStar(require("./patterns"), exports);
|
|
32
|
+
__exportStar(require("./stopwatch"), exports);
|
|
33
|
+
__exportStar(require("./tags"), exports);
|
|
34
|
+
__exportStar(require("./team"), exports);
|
|
35
|
+
__exportStar(require("./todo"), exports);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationLightning = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationLightning({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: "#33c69f", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("path", { fill: "#fff", d: "M61.5127 16c0.3231-6e-3 0.6297 0.1447 0.8223 0.4043 0.1923 0.2595 0.2468 0.596 0.1474 0.9033l-6.9765 21.5479H76.002c0.3625 0 0.6964 0.1961 0.873 0.5127 0.1765 0.3166 0.1681 0.7042-0.0225 1.0127L46.4648 89.5264c-0.2451 0.3961-0.7317 0.57-1.1728 0.4199-0.4411-0.1502-0.7205-0.5853-0.6729-1.0488l3.0987-30.1709H29c-0.285 0-0.5564-0.1223-0.7461-0.335-0.1896-0.2127-0.2795-0.4962-0.2471-0.7793l4.6231-40.21c0.0573-0.4976 0.4747-0.8764 0.9756-0.8857z" }),
|
|
13
|
+
react_1.default.createElement("path", { fill: "#7de6ca", fillOpacity: "0.15", d: "M61.5127 16c0.3231-6e-3 0.6297 0.1447 0.8223 0.4043 0.1923 0.2595 0.2468 0.596 0.1474 0.9033l-6.9765 21.5479H76.002c0.3625 0 0.6964 0.1961 0.873 0.5127 0.1765 0.3166 0.1681 0.7042-0.0225 1.0127L46.4648 89.5264c-0.2451 0.3961-0.7317 0.57-1.1728 0.4199-0.4411-0.1502-0.7205-0.5853-0.6729-1.0488l3.0987-30.1709H29c-0.285 0-0.5564-0.1223-0.7461-0.335-0.1896-0.2127-0.2795-0.4962-0.2471-0.7793l4.6231-40.21c0.0573-0.4976 0.4747-0.8764 0.9756-0.8857z" }),
|
|
14
|
+
react_1.default.createElement("path", { strokeWidth: "2", stroke: "#47687d", strokeLinejoin: "round", d: "M61.5127 16c0.3231-6e-3 0.6297 0.1447 0.8223 0.4043 0.1923 0.2595 0.2468 0.596 0.1474 0.9033l-6.9765 21.5479H76.002c0.3625 0 0.6964 0.1961 0.873 0.5127 0.1765 0.3166 0.1681 0.7042-0.0225 1.0127L46.4648 89.5264c-0.2451 0.3961-0.7317 0.57-1.1728 0.4199-0.4411-0.1502-0.7205-0.5853-0.6729-1.0488l3.0987-30.1709H29c-0.285 0-0.5564-0.1223-0.7461-0.335-0.1896-0.2127-0.2795-0.4962-0.2471-0.7793l4.6231-40.21c0.0573-0.4976 0.4747-0.8764 0.9756-0.8857z" }),
|
|
15
|
+
react_1.default.createElement("path", { fill: "#7de6ca", d: "M52.2009 54.35h-20.25l3.9-34.65h21.6l-6.9 23.1h20.25l-21.9 36.6z" }),
|
|
16
|
+
react_1.default.createElement("path", { strokeWidth: "1.8", stroke: "#33c69f", strokeLinecap: "square", strokeLinejoin: "round", d: "M44.401 26.9l-3.3 21h19.2l-4.8 12.6", strokeDasharray: "1.2 3.6" })));
|
|
17
|
+
}
|
|
18
|
+
exports.EmptyIllustrationLightning = EmptyIllustrationLightning;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationMegaphone = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationMegaphone({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: "#33c69f", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("path", { strokeWidth: "2.4", stroke: "#47687d", fill: "#86a3b5", d: "M38.1745 86.5833 33.5328 62.4335l12.1783-0.2617 4.4039 22.1524z" }),
|
|
13
|
+
react_1.default.createElement("path", { strokeWidth: "4.41296", stroke: "#33c69f", strokeLinejoin: "round", d: "M74.101 30.2877l9.1936-9.0603" }),
|
|
14
|
+
react_1.default.createElement("path", { strokeWidth: "4.41296", stroke: "#33c69f", strokeLinejoin: "round", d: "M80.4433 40.7825l13.8569-1.8653" }),
|
|
15
|
+
react_1.default.createElement("path", { strokeWidth: "4.41296", stroke: "#33c69f", strokeLinejoin: "round", d: "M80.0294 54.3925l12.1638 3.0663" }),
|
|
16
|
+
react_1.default.createElement("path", { fill: "#f4f7f9", d: "M47.6143 30.8774c-10.1542 5.939-26.2762 10.8689-26.2762 10.8689l4.6617 24.8716c0 0 17.376-3.5485 28.4084-1.9306 8.2743 1.2134 14.3421 3.0339 19.9127 6.4288L63.893 16c-1.1674 3.0233-6.587 9.2089-16.2787 14.8774z" }),
|
|
17
|
+
react_1.default.createElement("path", { fill: "#47687d", d: "M21.3381 41.7463l-0.3509-1.1475-1.0263 0.3138 0.1977 1.0548zM47.6143 30.8774l-0.6058-1.0358v0zM63.893 16l1.1791-0.2231c-0.0997-0.5267-0.5365-0.9234-1.0704-0.972-0.5338-0.0485-1.0351 0.2628-1.2282 0.7629zM74.3209 71.1161l-0.6245 1.0247c0.405 0.2468 0.9173 0.232 1.3073-0.0378 0.3899-0.2698 0.5845-0.744 0.4963-1.21zM54.4082 64.6873 54.5823 63.5v0zM25.9998 66.6179 24.8203 66.839l0.2247 1.1987 1.1949-0.244zM21.3381 41.7463c0.3509 1.1476 0.3511 1.1475 0.3513 1.1474 1e-4 0 4e-4-1e-4 7e-4-2e-4 6e-4-2e-4 15e-4-4e-4 26e-4-8e-4 22e-4-6e-4 54e-4-16e-4 95e-4-29e-4 83e-4-25e-4 0.0204-63e-4 0.0363-0.0112 0.0318-98e-4 0.0787-0.0243 0.1401-0.0434 0.1226-0.0382 0.3029-0.0948 0.5355-0.1687 0.4652-0.1478 1.1397-0.3652 1.9801-0.6445 1.6806-0.5585 4.0271-1.3651 6.6932-2.3585 5.3169-1.9813 11.9642-4.7272 17.1328-7.7502l-0.6059-1.0359-0.6058-1.0358c-4.9856 2.916-11.4765 5.6045-16.7591 7.5729-2.6337 0.9814-4.9524 1.7785-6.612 2.3299-0.8296 0.2757-1.494 0.4899-1.9502 0.6348-0.228 0.0725-0.404 0.1277-0.5225 0.1646-0.0592 0.0185-0.1041 0.0323-0.1339 0.0415-0.0149 46e-4-0.026 81e-4-0.0333 0.0103-37e-4 11e-4-64e-4 2e-3-81e-4 25e-4-8e-4 2e-4-15e-4 4e-4-18e-4 5e-4-2e-4 1e-4-3e-4 1e-4-4e-4 2e-4 0 0 0 0 0.3509 1.1475zM47.6143 30.8774l0.6059 1.0359c4.9237-2.8799 8.7798-5.901 11.5659-8.6055 2.7548-2.6742 4.5492-5.1218 5.2263-6.8756L63.893 16l-1.1195-0.4322c-0.4902 1.2695-1.9893 3.4264-4.6591 6.0179-2.6385 2.5613-6.338 5.4672-11.1059 8.2559zM63.893 16l-1.1791 0.2231 10.4279 55.1161 1.1791-0.2231L75.5 70.893 65.0721 15.7769zM74.3209 71.1161l0.6245-1.0247C69.188 66.5826 62.9471 64.7266 54.5823 63.5l-0.1741 1.1873-0.1741 1.1873c8.1838 1.2001 14.0786 2.9852 19.4623 6.2662zM54.4082 64.6873 54.5823 63.5c-5.6822-0.8333-12.9168-0.3327-18.6581 0.3544-2.8857 0.3454-5.4228 0.7415-7.2389 1.0515-0.9084 0.155-1.6373 0.2885-2.1402 0.3836-0.2515 0.0475-0.4466 0.0854-0.5794 0.1116-0.0664 0.0131-0.1173 0.0232-0.1518 0.0302-0.0173 34e-4-0.0306 61e-4-0.0396 79e-4-46e-4 9e-4-81e-4 17e-4-0.0105 22e-4-12e-4 2e-4-22e-4 4e-4-29e-4 5e-4-3e-4 1e-4-6e-4 2e-4-8e-4 2e-4-3e-4 1e-4-4e-4 1e-4 0.2397 1.1758 0.2401 1.1758 0.24 1.1758 0.24 1.1758 1e-4 0 2e-4-1e-4 4e-4-1e-4 3e-4-1e-4 1e-3-2e-4 18e-4-4e-4 18e-4-3e-4 47e-4-9e-4 85e-4-17e-4 77e-4-16e-4 0.0196-4e-3 0.0355-71e-4 0.0319-64e-4 0.0799-0.016 0.1435-0.0285 0.1271-0.0251 0.3161-0.0618 0.5613-0.1082 0.4904-0.0926 1.2052-0.2237 2.0982-0.376 1.7866-0.3049 4.2831-0.6947 7.1204-1.0343 5.7049-0.6827 12.6745-1.1474 18.0247-0.3628zM25.9998 66.6179l1.1794-0.221-4.6616-24.8717-1.1795 0.2211-1.1795 0.2211 4.6617 24.8716z" }),
|
|
18
|
+
react_1.default.createElement("path", { fill: "#b9c8d2", d: "M20.2923 67.642c1.6398 0.3422 3.3309 0.358 4.9768 0.0466l-4.7425-25.0662c-1.6459 0.3114-3.2143 0.944-4.6157 1.8615-1.4015 0.9175-2.6084 2.1021-3.552 3.4861-0.9437 1.384-1.6054 2.9403-1.9476 4.5801-0.3421 1.6397-0.358 3.3308-0.0466 4.9767 0.3114 1.6458 0.9439 3.2142 1.8615 4.6157 0.9175 1.4014 2.1021 2.6083 3.4861 3.552 1.384 0.9436 2.9403 1.6053 4.58 1.9475z" }),
|
|
19
|
+
react_1.default.createElement("path", { strokeWidth: "2.4", stroke: "#47687d", d: "M25.0943 66.7742c-1.6459 0.3114-3.3361 0.3005-4.974-0.0322-1.638-0.3327-3.1917-0.9806-4.5723-1.9067-1.3807-0.9262-2.5614-2.1124-3.4746-3.4909-0.9132-1.3786-1.5411-2.9225-1.8478-4.5436-0.3067-1.6212-0.2863-3.2878 0.0602-4.9047 0.3465-1.6169 1.0122-3.1524 1.9591-4.5189s2.1565-2.5372 3.5597-3.4453 2.9726-1.5357 4.6184-1.8471" })));
|
|
20
|
+
}
|
|
21
|
+
exports.EmptyIllustrationMegaphone = EmptyIllustrationMegaphone;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.EmptyIllustrationNetworkNodes = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../Svg");
|
|
9
|
+
function EmptyIllustrationNetworkNodes({ ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", "stroke-width": "2", stroke: "#47687d", fill: "#86a3b5", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { stroke: "none", fill: "#33c69f", fillOpacity: "0.15", cx: "52", cy: "52", r: "52" }),
|
|
12
|
+
react_1.default.createElement("circle", { fillOpacity: "0.25", cx: "33.781", cy: "29.2018", r: "6.57895" }),
|
|
13
|
+
react_1.default.createElement("circle", { strokeWidth: "0.721805", cx: "33.6006", cy: "26.9461", r: "1.80451" }),
|
|
14
|
+
react_1.default.createElement("path", { strokeWidth: "0.721805", d: "M33.6002 30.1942c1.1549 0 2.1654-1.0827 2.1654-1.0827 0.4813 0.1203 1.4437 0.9384 1.4437 3.2482h-7.2181c0-1.0827 0.2887-3.2482 1.4436-3.2482 0.2406 0.3609 1.0105 1.0827 2.1654 1.0827z" }),
|
|
15
|
+
react_1.default.createElement("circle", { strokeWidth: "0.721805", cx: "87.9165", cy: "48.4198", r: "1.80451" }),
|
|
16
|
+
react_1.default.createElement("path", { strokeWidth: "0.721805", d: "M87.9163 51.6679c1.1549 0 2.1654-1.0827 2.1654-1.0827 0.4812 0.1203 1.4436 0.9384 1.4436 3.2481h-7.218c0-1.0827 0.2887-3.2481 1.4436-3.2481 0.2406 0.3609 1.0105 1.0827 2.1654 1.0827z" }),
|
|
17
|
+
react_1.default.createElement("circle", { fillOpacity: "0.25", cx: "88.0966", cy: "50.6754", r: "6.57895" }),
|
|
18
|
+
react_1.default.createElement("circle", { fillOpacity: "0.25", cx: "37.5704", cy: "73.4123", r: "6.57895" }),
|
|
19
|
+
react_1.default.createElement("circle", { fillOpacity: "0.25", cx: "74.2021", cy: "27.9386", r: "9.10526" }),
|
|
20
|
+
react_1.default.createElement("circle", { fillOpacity: "0.25", cx: "67.8863", cy: "79.7281", r: "9.10526" }),
|
|
21
|
+
react_1.default.createElement("circle", { fill: "#33c69f", fillOpacity: "0.25", cx: "52.7284", cy: "50.6754", r: "11.6316" }),
|
|
22
|
+
react_1.default.createElement("circle", { fillOpacity: "0.25", cx: "16.0967", cy: "55.7281", r: "9.10526" }),
|
|
23
|
+
react_1.default.createElement("circle", { strokeWidth: "1.01053", cx: "16.0969", cy: "52.4438", r: "2.52632" }),
|
|
24
|
+
react_1.default.createElement("path", { strokeWidth: "1.01053", d: "M16.0967 56.9912c1.6168 0 3.0316-1.5158 3.0316-1.5158 0.6737 0.1685 2.021 1.3137 2.021 4.5474H11.0441c0-1.5158 0.4042-4.5474 2.021-4.5474 0.3369 0.5053 1.4148 1.5158 3.0316 1.5158z" }),
|
|
25
|
+
react_1.default.createElement("circle", { strokeWidth: "1.01053", cx: "74.2021", cy: "24.6544", r: "2.52632" }),
|
|
26
|
+
react_1.default.createElement("path", { strokeWidth: "1.01053", d: "M74.2019 29.2018c1.6169 0 3.0316-1.5158 3.0316-1.5158 0.6737 0.1684 2.0211 1.3137 2.0211 4.5473H69.1493c0-1.5157 0.4042-4.5473 2.021-4.5473 0.3369 0.5052 1.4148 1.5158 3.0316 1.5158z" }),
|
|
27
|
+
react_1.default.createElement("circle", { strokeWidth: "1.01053", cx: "67.8864", cy: "76.4438", r: "2.52632" }),
|
|
28
|
+
react_1.default.createElement("path", { strokeWidth: "1.01053", d: "M67.8863 80.9912c1.6168 0 3.0315-1.5158 3.0315-1.5158 0.6737 0.1685 2.0211 1.3137 2.0211 4.5474H62.8336c0-1.5158 0.4042-4.5474 2.0211-4.5474 0.3368 0.5053 1.4147 1.5158 3.0316 1.5158z" }),
|
|
29
|
+
react_1.default.createElement("circle", { strokeWidth: "0.721805", cx: "37.3901", cy: "71.1566", r: "1.80451" }),
|
|
30
|
+
react_1.default.createElement("path", { strokeWidth: "0.721805", d: "M37.3898 74.4048c1.1549 0 2.1654-1.0827 2.1654-1.0827 0.4812 0.1203 1.4436 0.9383 1.4436 3.2481h-7.218c0-1.0827 0.2887-3.2481 1.4436-3.2481 0.2406 0.3609 1.0105 1.0827 2.1654 1.0827z" }),
|
|
31
|
+
react_1.default.createElement("circle", { fill: "#33c69f", cx: "52.7282", cy: "46.886", r: "2.78947" }),
|
|
32
|
+
react_1.default.createElement("path", { fill: "#33c69f", d: "M52.7283 52.5702c2.021 0 3.7894-1.8948 3.7894-1.8948 0.8421 0.2106 2.5264 1.6422 2.5264 5.6843H46.4125c0-1.8948 0.5052-5.6843 2.5263-5.6843 0.421 0.6316 1.7684 1.8948 3.7895 1.8948z" }),
|
|
33
|
+
react_1.default.createElement("path", { fill: "none", d: "M46.4126 60.7807l-4.421 7.5789" }),
|
|
34
|
+
react_1.default.createElement("path", { fill: "none", d: "M44.518 41.8333l-6.3158-7.5789" }),
|
|
35
|
+
react_1.default.createElement("path", { fill: "none", d: "M61.5705 42.4649l6.9473-7.5789" }),
|
|
36
|
+
react_1.default.createElement("path", { fill: "none", d: "M64.7282 51.0258h16.4211" }),
|
|
37
|
+
react_1.default.createElement("path", { fill: "none", d: "M58.4123 61.4123l5.0526 10.1052" }),
|
|
38
|
+
react_1.default.createElement("path", { fill: "none", d: "M40.7282 52.0649 25.1915 54.3386" })));
|
|
39
|
+
}
|
|
40
|
+
exports.EmptyIllustrationNetworkNodes = EmptyIllustrationNetworkNodes;
|