@semcore/illustration 2.31.2-prerelease.0 → 2.32.0-prerelease.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/CHANGELOG.md +6 -0
- package/Configuration/index.d.ts +28 -0
- package/Configuration/index.js +196 -0
- package/Configuration/index.mjs +174 -0
- package/lib/cjs/index.js +1 -1
- package/lib/es6/index.js +1 -1
- package/package.json +3 -3
- package/svg/Configuration.svg +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
import { BoxProps } from '@semcore/flex-box';
|
|
3
|
+
import { Intergalactic } from '@semcore/core';
|
|
4
|
+
|
|
5
|
+
type IllustrationProps = BoxProps & {
|
|
6
|
+
/**
|
|
7
|
+
* Main color of the illustration
|
|
8
|
+
**/
|
|
9
|
+
primaryColor?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Secondary color of the illustration
|
|
12
|
+
**/
|
|
13
|
+
secondaryColor?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Changes background fill of the illustration
|
|
16
|
+
**/
|
|
17
|
+
fill?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Width of the illustration
|
|
20
|
+
**/
|
|
21
|
+
width?: string | number;
|
|
22
|
+
/**
|
|
23
|
+
* Height of the illustration
|
|
24
|
+
**/
|
|
25
|
+
height?: string | number;
|
|
26
|
+
}
|
|
27
|
+
declare const Illustration: Intergalactic.Component<'svg', IllustrationProps>;
|
|
28
|
+
export default Illustration;
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
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));
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
var stdin_exports = {};
|
|
22
|
+
__export(stdin_exports, {
|
|
23
|
+
default: () => stdin_default
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(stdin_exports);
|
|
26
|
+
var import_react = __toESM(require("react"));
|
|
27
|
+
var import_core = require("@semcore/core");
|
|
28
|
+
var import_flex_box = require("@semcore/flex-box");
|
|
29
|
+
var import_useColorResolver = require("@semcore/utils/lib/use/useColorResolver");
|
|
30
|
+
const Configuration = ({ fill = "none", width = "130", height = "130", viewBox = "0 0 130 130", primaryColor = "#E0E1E9", secondaryColor = "#6C6E79", ...props }, ref) => {
|
|
31
|
+
const colorResolver = (0, import_useColorResolver.useColorResolver)();
|
|
32
|
+
const resolvedPrimaryColor = colorResolver(primaryColor);
|
|
33
|
+
const resolvedSecondaryColor = colorResolver(secondaryColor);
|
|
34
|
+
return /* @__PURE__ */ import_react.default.createElement(import_flex_box.Box, {
|
|
35
|
+
ref,
|
|
36
|
+
width,
|
|
37
|
+
height,
|
|
38
|
+
viewBox,
|
|
39
|
+
fill,
|
|
40
|
+
tag: "svg",
|
|
41
|
+
...props
|
|
42
|
+
}, /* @__PURE__ */ import_react.default.createElement("path", {
|
|
43
|
+
d: "M39.054 17.323 3.292 53.088a1.474 1.474 0 0 0 0 2.09l71.53 71.53c.579.576 1.51.576 2.09 0l35.765-35.768c3.421-3.422 8.687-3.883 12.604-1.383.743.476 1.719-.078 1.719-.96V4.478c0-.815-.662-1.477-1.477-1.477H41.397c-.882 0-1.433.974-.957 1.72 2.5 3.919 2.039 9.182-1.386 12.603Z",
|
|
44
|
+
fill: resolvedPrimaryColor
|
|
45
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
46
|
+
d: "M105.24 112.53H16.584c-5.4 0-9.775-4.376-9.775-9.781V46.558c0-5.405 4.376-9.781 9.775-9.781h88.656c5.41 0 9.78 4.376 9.78 9.78v56.192a9.77 9.77 0 0 1-9.78 9.781Z",
|
|
47
|
+
fill: resolvedSecondaryColor,
|
|
48
|
+
stroke: resolvedSecondaryColor,
|
|
49
|
+
strokeLinecap: "round",
|
|
50
|
+
strokeLinejoin: "round",
|
|
51
|
+
strokeMiterlimit: "10"
|
|
52
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
53
|
+
d: "M9.277 46.557v7.192c43.883 1.993 46.318.688 67.965-16.972h-58.19c-5.4 0-9.775 4.376-9.775 9.78Z",
|
|
54
|
+
fill: "#fff",
|
|
55
|
+
stroke: resolvedSecondaryColor,
|
|
56
|
+
strokeLinecap: "round",
|
|
57
|
+
strokeLinejoin: "round",
|
|
58
|
+
strokeMiterlimit: "10"
|
|
59
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
60
|
+
d: "M18.059 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995Z",
|
|
61
|
+
fill: resolvedPrimaryColor,
|
|
62
|
+
stroke: resolvedSecondaryColor,
|
|
63
|
+
strokeLinecap: "round",
|
|
64
|
+
strokeLinejoin: "round",
|
|
65
|
+
strokeMiterlimit: "10"
|
|
66
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
67
|
+
d: "M28.126 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995ZM38.19 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995Z",
|
|
68
|
+
stroke: resolvedSecondaryColor,
|
|
69
|
+
strokeMiterlimit: "10"
|
|
70
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
71
|
+
d: "M85.121 14.162s-11.043 4-10.776 5.855c.118.89-.584.241-.665-.325-.267-1.856 10.777-5.856 10.777-5.856 2.559-.75 3.785-.588.665.325Z",
|
|
72
|
+
fill: "#fff",
|
|
73
|
+
fillRule: "evenodd"
|
|
74
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
75
|
+
d: "M84.457 13.838s-11.044 4-10.777 5.855c.111.774 1.049.977 2.573.813 6.734-.774 16.24-9.701 8.204-6.668Z",
|
|
76
|
+
stroke: resolvedSecondaryColor,
|
|
77
|
+
strokeLinecap: "round",
|
|
78
|
+
strokeLinejoin: "round",
|
|
79
|
+
strokeMiterlimit: "10"
|
|
80
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
81
|
+
d: "M82.29 16.375s-2.646 1.516-5.68 3.527c-4.39 2.898-9.606 6.82-8.891 8.673.426 1.094 3.138.226 5.87-.982 9.13-2.863 21.502-18.314 8.7-11.218Z",
|
|
82
|
+
fill: resolvedPrimaryColor,
|
|
83
|
+
fillRule: "evenodd",
|
|
84
|
+
stroke: resolvedSecondaryColor,
|
|
85
|
+
strokeLinecap: "round",
|
|
86
|
+
strokeLinejoin: "round",
|
|
87
|
+
strokeMiterlimit: "10"
|
|
88
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
89
|
+
d: "M80.847 17.812c-2.538 1.537-7.33 4.572-10.264 7.192-1.054.782-4.34 4.259-1.054 3.486-1.038-3.68 15.356-12.028 11.318-10.678Z",
|
|
90
|
+
fill: "#fff"
|
|
91
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
92
|
+
d: "M79.043 20.65c-6.373 7.936-11.241 15.683-9.419 17.049 1.752 1.313 7.984-5.283 7.984-5.283 6.979-5.903 10.866-23.518 1.435-11.767Z",
|
|
93
|
+
fill: resolvedPrimaryColor,
|
|
94
|
+
fillRule: "evenodd",
|
|
95
|
+
stroke: resolvedSecondaryColor,
|
|
96
|
+
strokeLinecap: "round",
|
|
97
|
+
strokeLinejoin: "round",
|
|
98
|
+
strokeMiterlimit: "10"
|
|
99
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
100
|
+
d: "M71.447 36.948c-4.348-.925 11.321-19.651 7.986-15.986-3.452 4.3-8.377 10.77-9.522 14.75-.456 1.589-.119 2.138 1.536 1.236Z",
|
|
101
|
+
fill: "#fff"
|
|
102
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
103
|
+
d: "M89.405 28.723v-.006c-.075-.364-.33-.748-.717-1.054-1.183-.943-3.55-1.135-5.347 2.359l-1.956 4.81s-3.218 8.498-6.603 7.227c-1.147-.429-.952-2.479-.774-3.689.084-.57.22-1.127.4-1.672 1.139-3.452 2.571-8.084 5.5-15.695.651-1.688 1.761-3.188 3.266-4.189 7.697-5.103 15.942 6.681 6.231 11.909Z",
|
|
104
|
+
fill: resolvedPrimaryColor,
|
|
105
|
+
fillRule: "evenodd",
|
|
106
|
+
stroke: resolvedSecondaryColor,
|
|
107
|
+
strokeLinecap: "round",
|
|
108
|
+
strokeLinejoin: "round",
|
|
109
|
+
strokeMiterlimit: "10"
|
|
110
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
111
|
+
d: "M75.606 37.006c.555-2.296 1.2-5.096 2.216-8.916-1.137 3.236-2.321 6.65-3.15 9.492l.934-.576Z",
|
|
112
|
+
fill: "#fff"
|
|
113
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
114
|
+
d: "m53.033 72.369 2.443.868 3.733-3.035c.782-.512 1.75-.39 2.25.072l3.664 3.388c.665.615.704 1.578.248 2.237l-2.568 4.114 1.057 2.367 4.84.612c.801-.03 1.475.746 1.505 1.547l.195 4.968c.03.801-.579 1.627-1.374 1.82l-4.776.99-.868 2.442 3.035 3.733c.511.782.389 1.75-.073 2.251l-3.388 3.663a1.717 1.717 0 0 1-2.237.248l-4.114-2.568c-.79.354-1.577.704-2.367 1.057l-.612 4.841c-.128.806-.904 1.48-1.705 1.51l-4.968.195c-.802.03-1.628-.579-1.658-1.38l-.988-4.782-2.442-.868-3.9 2.882a1.718 1.718 0 0 1-2.25-.072l-3.664-3.388c-.501-.462-.699-1.416-.242-2.078l2.726-4.12c-.512-.782-.865-1.572-1.057-2.367l-4.84-.612c-.807-.128-1.48-.904-1.511-1.706l-.195-4.968c-.03-.8.579-1.627 1.38-1.658l4.776-.99c.123-.968.418-1.622.868-2.442l-3.043-3.892c-.506-.623-.384-1.591.23-2.256l3.389-3.664c.462-.5 1.416-.698 2.078-.242l4.12 2.726c.79-.353 1.577-.703 2.367-1.057l.612-4.84c-.03-.801.746-1.474 1.547-1.505l4.968-.194c.801-.031 1.627.578 1.82 1.374l.99 4.779Zm-4.723 6.445c-4.968.195-8.971 4.526-8.776 9.494.194 4.968 4.526 8.971 9.494 8.777 4.968-.195 8.971-4.526 8.776-9.494-.195-4.969-4.526-8.974-9.494-8.777ZM86.245 53.247l2.027.81 3.244-2.431c.676-.407 1.485-.27 1.892.136l2.973 2.974c.54.54.54 1.352.137 1.891l-2.298 3.377.81 2.028 4.052.676c.676 0 1.216.676 1.216 1.352v4.19c0 .675-.54 1.351-1.216 1.485l-4.053.676-.809 2.028 2.431 3.243c.406.676.27 1.486-.136 1.892l-2.974 2.974a1.45 1.45 0 0 1-1.891.136l-3.378-2.298-2.027.81-.676 4.053c-.137.676-.81 1.215-1.486 1.215h-4.19c-.675 0-1.351-.54-1.351-1.215l-.676-4.053-2.028-.81-3.377 2.298a1.444 1.444 0 0 1-1.892-.136l-2.973-2.974c-.406-.406-.54-1.216-.137-1.755l2.432-3.377c-.407-.676-.676-1.352-.81-2.028l-4.053-.676c-.676-.137-1.216-.81-1.216-1.486v-4.19c0-.675.54-1.351 1.216-1.351l4.053-.676c.136-.81.406-1.352.81-2.028l-2.432-3.377c-.406-.54-.27-1.352.27-1.892l2.974-2.973c.406-.407 1.216-.54 1.755-.137l3.377 2.432 2.028-.81.676-4.053c0-.676.676-1.216 1.352-1.216h4.19c.675 0 1.351.54 1.485 1.216l.679 4.05Zm-4.19 5.269c-4.189 0-7.702 3.513-7.702 7.703 0 4.189 3.513 7.702 7.702 7.702 4.19 0 7.703-3.513 7.703-7.702 0-4.19-3.513-7.703-7.703-7.703Z",
|
|
115
|
+
fill: "#fff",
|
|
116
|
+
fillRule: "evenodd",
|
|
117
|
+
stroke: resolvedSecondaryColor,
|
|
118
|
+
strokeLinecap: "round",
|
|
119
|
+
strokeLinejoin: "round",
|
|
120
|
+
strokeMiterlimit: "10"
|
|
121
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
122
|
+
d: "M81.163 34.748c-1.176.367-3.296 1.62-3.88 2.449-42.019 59.468-62.418 62.982-62.418 70.874 0 3.947 4.187 4.462 4.187 4.462-5.4 0-9.775-4.376-9.775-9.781V53.078H32.54c27.01 0 36.794-11.672 43.537-16.298 1.352-.93 3.861-1.823 5.085-2.032Z",
|
|
123
|
+
fill: resolvedPrimaryColor,
|
|
124
|
+
fillRule: "evenodd",
|
|
125
|
+
stroke: resolvedSecondaryColor,
|
|
126
|
+
strokeLinecap: "round",
|
|
127
|
+
strokeLinejoin: "round",
|
|
128
|
+
strokeMiterlimit: "10"
|
|
129
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
130
|
+
d: "M34.015 73.294C63.15 58.412 73.1 37.47 80.11 35.156M28.126 76.094a110.31 110.31 0 0 0 4.448-2.075",
|
|
131
|
+
stroke: resolvedSecondaryColor,
|
|
132
|
+
strokeLinecap: "round",
|
|
133
|
+
strokeLinejoin: "round",
|
|
134
|
+
strokeMiterlimit: "10"
|
|
135
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
136
|
+
d: "M54.3 52.643c9.496-3.391 21.441-15.617 24.598-17.21",
|
|
137
|
+
stroke: resolvedSecondaryColor,
|
|
138
|
+
strokeLinecap: "round",
|
|
139
|
+
strokeLinejoin: "round",
|
|
140
|
+
strokeMiterlimit: "10"
|
|
141
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
142
|
+
d: "M105.241 112.53c7.831 0 10.259-6.53 9.773-13.926C124 109 117 112.53 105.241 112.53Z",
|
|
143
|
+
fill: resolvedPrimaryColor,
|
|
144
|
+
fillRule: "evenodd",
|
|
145
|
+
stroke: resolvedSecondaryColor,
|
|
146
|
+
strokeLinecap: "round",
|
|
147
|
+
strokeLinejoin: "round",
|
|
148
|
+
strokeMiterlimit: "10"
|
|
149
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
150
|
+
d: "M118.472 103.707C106.5 87.5 97.254 71.635 90.565 53.079h24.458c0 25.274-1.266 34.984 3.449 50.628Z",
|
|
151
|
+
fill: resolvedPrimaryColor,
|
|
152
|
+
fillRule: "evenodd",
|
|
153
|
+
stroke: resolvedSecondaryColor,
|
|
154
|
+
strokeLinecap: "round",
|
|
155
|
+
strokeLinejoin: "round",
|
|
156
|
+
strokeMiterlimit: "10"
|
|
157
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
158
|
+
d: "M112.46 90.528c1.914 6.04 5.369 11.338 5.369 11.338",
|
|
159
|
+
stroke: resolvedSecondaryColor,
|
|
160
|
+
strokeLinecap: "round",
|
|
161
|
+
strokeLinejoin: "round",
|
|
162
|
+
strokeMiterlimit: "10"
|
|
163
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
164
|
+
d: "M115.023 46.56v6.517H90.565c-1.825-5.06-2.78-11.844-5.947-16.296h20.624a9.773 9.773 0 0 1 9.781 9.778Z",
|
|
165
|
+
fill: "#fff",
|
|
166
|
+
fillRule: "evenodd",
|
|
167
|
+
stroke: resolvedSecondaryColor,
|
|
168
|
+
strokeLinecap: "round",
|
|
169
|
+
strokeLinejoin: "round",
|
|
170
|
+
strokeMiterlimit: "10"
|
|
171
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
172
|
+
d: "M83.505 33.702c-5.469 2.76-10.092 6.29-8.723 8.362 8.411 4.806 41.87-10.627 47.997-20.76C126.04 6.51 99.007-3.333 80.229 20.28l10.459 5.325s-.512 4.8-7.183 8.097Z",
|
|
173
|
+
fill: resolvedPrimaryColor
|
|
174
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
175
|
+
d: "M126 21.5C99.821 41.379 76.963 45.369 74.782 42.064c-1.37-2.072 3.254-5.603 8.723-8.362 6.67-3.296 7.183-8.098 7.183-8.098",
|
|
176
|
+
stroke: resolvedSecondaryColor,
|
|
177
|
+
strokeLinecap: "round",
|
|
178
|
+
strokeLinejoin: "round",
|
|
179
|
+
strokeMiterlimit: "10"
|
|
180
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
181
|
+
d: "M90.145 28.416s-1.123 2.912-6.144 5.603c-6.588 3.169-12.307 8.193-6.588 8.521-3.517-1.43 2.107-5.945 7.864-8.791 1.27-.629 3.767-1.99 4.868-5.333Z",
|
|
182
|
+
fill: "#fff",
|
|
183
|
+
fillRule: "evenodd"
|
|
184
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
185
|
+
d: "M80.226 20.28C91 4.5 107.5 6 107.5 6",
|
|
186
|
+
stroke: resolvedSecondaryColor,
|
|
187
|
+
strokeLinecap: "round",
|
|
188
|
+
strokeLinejoin: "round",
|
|
189
|
+
strokeMiterlimit: "10"
|
|
190
|
+
}), /* @__PURE__ */ import_react.default.createElement("path", {
|
|
191
|
+
d: "M105.153 6.22s7.054 14.967 20.134 16.43c.588-.433 1.159-.862 1.713-1.288V4.477c0-.815-.662-1.477-1.477-1.477h-15.917c-1.441 1.13-2.778 2.433-4.453 3.22Z",
|
|
192
|
+
fill: resolvedSecondaryColor
|
|
193
|
+
}));
|
|
194
|
+
};
|
|
195
|
+
Configuration.displayName = "Configuration";
|
|
196
|
+
var stdin_default = (0, import_core.createBaseComponent)(Configuration);
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { createBaseComponent } from "@semcore/core";
|
|
3
|
+
import { Box } from "@semcore/flex-box";
|
|
4
|
+
import { useColorResolver } from "@semcore/utils/lib/use/useColorResolver";
|
|
5
|
+
const Configuration = ({ fill = "none", width = "130", height = "130", viewBox = "0 0 130 130", primaryColor = "#E0E1E9", secondaryColor = "#6C6E79", ...props }, ref) => {
|
|
6
|
+
const colorResolver = useColorResolver();
|
|
7
|
+
const resolvedPrimaryColor = colorResolver(primaryColor);
|
|
8
|
+
const resolvedSecondaryColor = colorResolver(secondaryColor);
|
|
9
|
+
return /* @__PURE__ */ React.createElement(Box, {
|
|
10
|
+
ref,
|
|
11
|
+
width,
|
|
12
|
+
height,
|
|
13
|
+
viewBox,
|
|
14
|
+
fill,
|
|
15
|
+
tag: "svg",
|
|
16
|
+
...props
|
|
17
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
18
|
+
d: "M39.054 17.323 3.292 53.088a1.474 1.474 0 0 0 0 2.09l71.53 71.53c.579.576 1.51.576 2.09 0l35.765-35.768c3.421-3.422 8.687-3.883 12.604-1.383.743.476 1.719-.078 1.719-.96V4.478c0-.815-.662-1.477-1.477-1.477H41.397c-.882 0-1.433.974-.957 1.72 2.5 3.919 2.039 9.182-1.386 12.603Z",
|
|
19
|
+
fill: resolvedPrimaryColor
|
|
20
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
21
|
+
d: "M105.24 112.53H16.584c-5.4 0-9.775-4.376-9.775-9.781V46.558c0-5.405 4.376-9.781 9.775-9.781h88.656c5.41 0 9.78 4.376 9.78 9.78v56.192a9.77 9.77 0 0 1-9.78 9.781Z",
|
|
22
|
+
fill: resolvedSecondaryColor,
|
|
23
|
+
stroke: resolvedSecondaryColor,
|
|
24
|
+
strokeLinecap: "round",
|
|
25
|
+
strokeLinejoin: "round",
|
|
26
|
+
strokeMiterlimit: "10"
|
|
27
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
28
|
+
d: "M9.277 46.557v7.192c43.883 1.993 46.318.688 67.965-16.972h-58.19c-5.4 0-9.775 4.376-9.775 9.78Z",
|
|
29
|
+
fill: "#fff",
|
|
30
|
+
stroke: resolvedSecondaryColor,
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round",
|
|
33
|
+
strokeMiterlimit: "10"
|
|
34
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
35
|
+
d: "M18.059 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995Z",
|
|
36
|
+
fill: resolvedPrimaryColor,
|
|
37
|
+
stroke: resolvedSecondaryColor,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round",
|
|
40
|
+
strokeMiterlimit: "10"
|
|
41
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
42
|
+
d: "M28.126 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995ZM38.19 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995Z",
|
|
43
|
+
stroke: resolvedSecondaryColor,
|
|
44
|
+
strokeMiterlimit: "10"
|
|
45
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
46
|
+
d: "M85.121 14.162s-11.043 4-10.776 5.855c.118.89-.584.241-.665-.325-.267-1.856 10.777-5.856 10.777-5.856 2.559-.75 3.785-.588.665.325Z",
|
|
47
|
+
fill: "#fff",
|
|
48
|
+
fillRule: "evenodd"
|
|
49
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
50
|
+
d: "M84.457 13.838s-11.044 4-10.777 5.855c.111.774 1.049.977 2.573.813 6.734-.774 16.24-9.701 8.204-6.668Z",
|
|
51
|
+
stroke: resolvedSecondaryColor,
|
|
52
|
+
strokeLinecap: "round",
|
|
53
|
+
strokeLinejoin: "round",
|
|
54
|
+
strokeMiterlimit: "10"
|
|
55
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
56
|
+
d: "M82.29 16.375s-2.646 1.516-5.68 3.527c-4.39 2.898-9.606 6.82-8.891 8.673.426 1.094 3.138.226 5.87-.982 9.13-2.863 21.502-18.314 8.7-11.218Z",
|
|
57
|
+
fill: resolvedPrimaryColor,
|
|
58
|
+
fillRule: "evenodd",
|
|
59
|
+
stroke: resolvedSecondaryColor,
|
|
60
|
+
strokeLinecap: "round",
|
|
61
|
+
strokeLinejoin: "round",
|
|
62
|
+
strokeMiterlimit: "10"
|
|
63
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
64
|
+
d: "M80.847 17.812c-2.538 1.537-7.33 4.572-10.264 7.192-1.054.782-4.34 4.259-1.054 3.486-1.038-3.68 15.356-12.028 11.318-10.678Z",
|
|
65
|
+
fill: "#fff"
|
|
66
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
67
|
+
d: "M79.043 20.65c-6.373 7.936-11.241 15.683-9.419 17.049 1.752 1.313 7.984-5.283 7.984-5.283 6.979-5.903 10.866-23.518 1.435-11.767Z",
|
|
68
|
+
fill: resolvedPrimaryColor,
|
|
69
|
+
fillRule: "evenodd",
|
|
70
|
+
stroke: resolvedSecondaryColor,
|
|
71
|
+
strokeLinecap: "round",
|
|
72
|
+
strokeLinejoin: "round",
|
|
73
|
+
strokeMiterlimit: "10"
|
|
74
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
75
|
+
d: "M71.447 36.948c-4.348-.925 11.321-19.651 7.986-15.986-3.452 4.3-8.377 10.77-9.522 14.75-.456 1.589-.119 2.138 1.536 1.236Z",
|
|
76
|
+
fill: "#fff"
|
|
77
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
78
|
+
d: "M89.405 28.723v-.006c-.075-.364-.33-.748-.717-1.054-1.183-.943-3.55-1.135-5.347 2.359l-1.956 4.81s-3.218 8.498-6.603 7.227c-1.147-.429-.952-2.479-.774-3.689.084-.57.22-1.127.4-1.672 1.139-3.452 2.571-8.084 5.5-15.695.651-1.688 1.761-3.188 3.266-4.189 7.697-5.103 15.942 6.681 6.231 11.909Z",
|
|
79
|
+
fill: resolvedPrimaryColor,
|
|
80
|
+
fillRule: "evenodd",
|
|
81
|
+
stroke: resolvedSecondaryColor,
|
|
82
|
+
strokeLinecap: "round",
|
|
83
|
+
strokeLinejoin: "round",
|
|
84
|
+
strokeMiterlimit: "10"
|
|
85
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
86
|
+
d: "M75.606 37.006c.555-2.296 1.2-5.096 2.216-8.916-1.137 3.236-2.321 6.65-3.15 9.492l.934-.576Z",
|
|
87
|
+
fill: "#fff"
|
|
88
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
89
|
+
d: "m53.033 72.369 2.443.868 3.733-3.035c.782-.512 1.75-.39 2.25.072l3.664 3.388c.665.615.704 1.578.248 2.237l-2.568 4.114 1.057 2.367 4.84.612c.801-.03 1.475.746 1.505 1.547l.195 4.968c.03.801-.579 1.627-1.374 1.82l-4.776.99-.868 2.442 3.035 3.733c.511.782.389 1.75-.073 2.251l-3.388 3.663a1.717 1.717 0 0 1-2.237.248l-4.114-2.568c-.79.354-1.577.704-2.367 1.057l-.612 4.841c-.128.806-.904 1.48-1.705 1.51l-4.968.195c-.802.03-1.628-.579-1.658-1.38l-.988-4.782-2.442-.868-3.9 2.882a1.718 1.718 0 0 1-2.25-.072l-3.664-3.388c-.501-.462-.699-1.416-.242-2.078l2.726-4.12c-.512-.782-.865-1.572-1.057-2.367l-4.84-.612c-.807-.128-1.48-.904-1.511-1.706l-.195-4.968c-.03-.8.579-1.627 1.38-1.658l4.776-.99c.123-.968.418-1.622.868-2.442l-3.043-3.892c-.506-.623-.384-1.591.23-2.256l3.389-3.664c.462-.5 1.416-.698 2.078-.242l4.12 2.726c.79-.353 1.577-.703 2.367-1.057l.612-4.84c-.03-.801.746-1.474 1.547-1.505l4.968-.194c.801-.031 1.627.578 1.82 1.374l.99 4.779Zm-4.723 6.445c-4.968.195-8.971 4.526-8.776 9.494.194 4.968 4.526 8.971 9.494 8.777 4.968-.195 8.971-4.526 8.776-9.494-.195-4.969-4.526-8.974-9.494-8.777ZM86.245 53.247l2.027.81 3.244-2.431c.676-.407 1.485-.27 1.892.136l2.973 2.974c.54.54.54 1.352.137 1.891l-2.298 3.377.81 2.028 4.052.676c.676 0 1.216.676 1.216 1.352v4.19c0 .675-.54 1.351-1.216 1.485l-4.053.676-.809 2.028 2.431 3.243c.406.676.27 1.486-.136 1.892l-2.974 2.974a1.45 1.45 0 0 1-1.891.136l-3.378-2.298-2.027.81-.676 4.053c-.137.676-.81 1.215-1.486 1.215h-4.19c-.675 0-1.351-.54-1.351-1.215l-.676-4.053-2.028-.81-3.377 2.298a1.444 1.444 0 0 1-1.892-.136l-2.973-2.974c-.406-.406-.54-1.216-.137-1.755l2.432-3.377c-.407-.676-.676-1.352-.81-2.028l-4.053-.676c-.676-.137-1.216-.81-1.216-1.486v-4.19c0-.675.54-1.351 1.216-1.351l4.053-.676c.136-.81.406-1.352.81-2.028l-2.432-3.377c-.406-.54-.27-1.352.27-1.892l2.974-2.973c.406-.407 1.216-.54 1.755-.137l3.377 2.432 2.028-.81.676-4.053c0-.676.676-1.216 1.352-1.216h4.19c.675 0 1.351.54 1.485 1.216l.679 4.05Zm-4.19 5.269c-4.189 0-7.702 3.513-7.702 7.703 0 4.189 3.513 7.702 7.702 7.702 4.19 0 7.703-3.513 7.703-7.702 0-4.19-3.513-7.703-7.703-7.703Z",
|
|
90
|
+
fill: "#fff",
|
|
91
|
+
fillRule: "evenodd",
|
|
92
|
+
stroke: resolvedSecondaryColor,
|
|
93
|
+
strokeLinecap: "round",
|
|
94
|
+
strokeLinejoin: "round",
|
|
95
|
+
strokeMiterlimit: "10"
|
|
96
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
97
|
+
d: "M81.163 34.748c-1.176.367-3.296 1.62-3.88 2.449-42.019 59.468-62.418 62.982-62.418 70.874 0 3.947 4.187 4.462 4.187 4.462-5.4 0-9.775-4.376-9.775-9.781V53.078H32.54c27.01 0 36.794-11.672 43.537-16.298 1.352-.93 3.861-1.823 5.085-2.032Z",
|
|
98
|
+
fill: resolvedPrimaryColor,
|
|
99
|
+
fillRule: "evenodd",
|
|
100
|
+
stroke: resolvedSecondaryColor,
|
|
101
|
+
strokeLinecap: "round",
|
|
102
|
+
strokeLinejoin: "round",
|
|
103
|
+
strokeMiterlimit: "10"
|
|
104
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
105
|
+
d: "M34.015 73.294C63.15 58.412 73.1 37.47 80.11 35.156M28.126 76.094a110.31 110.31 0 0 0 4.448-2.075",
|
|
106
|
+
stroke: resolvedSecondaryColor,
|
|
107
|
+
strokeLinecap: "round",
|
|
108
|
+
strokeLinejoin: "round",
|
|
109
|
+
strokeMiterlimit: "10"
|
|
110
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
111
|
+
d: "M54.3 52.643c9.496-3.391 21.441-15.617 24.598-17.21",
|
|
112
|
+
stroke: resolvedSecondaryColor,
|
|
113
|
+
strokeLinecap: "round",
|
|
114
|
+
strokeLinejoin: "round",
|
|
115
|
+
strokeMiterlimit: "10"
|
|
116
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
117
|
+
d: "M105.241 112.53c7.831 0 10.259-6.53 9.773-13.926C124 109 117 112.53 105.241 112.53Z",
|
|
118
|
+
fill: resolvedPrimaryColor,
|
|
119
|
+
fillRule: "evenodd",
|
|
120
|
+
stroke: resolvedSecondaryColor,
|
|
121
|
+
strokeLinecap: "round",
|
|
122
|
+
strokeLinejoin: "round",
|
|
123
|
+
strokeMiterlimit: "10"
|
|
124
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
125
|
+
d: "M118.472 103.707C106.5 87.5 97.254 71.635 90.565 53.079h24.458c0 25.274-1.266 34.984 3.449 50.628Z",
|
|
126
|
+
fill: resolvedPrimaryColor,
|
|
127
|
+
fillRule: "evenodd",
|
|
128
|
+
stroke: resolvedSecondaryColor,
|
|
129
|
+
strokeLinecap: "round",
|
|
130
|
+
strokeLinejoin: "round",
|
|
131
|
+
strokeMiterlimit: "10"
|
|
132
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
133
|
+
d: "M112.46 90.528c1.914 6.04 5.369 11.338 5.369 11.338",
|
|
134
|
+
stroke: resolvedSecondaryColor,
|
|
135
|
+
strokeLinecap: "round",
|
|
136
|
+
strokeLinejoin: "round",
|
|
137
|
+
strokeMiterlimit: "10"
|
|
138
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
139
|
+
d: "M115.023 46.56v6.517H90.565c-1.825-5.06-2.78-11.844-5.947-16.296h20.624a9.773 9.773 0 0 1 9.781 9.778Z",
|
|
140
|
+
fill: "#fff",
|
|
141
|
+
fillRule: "evenodd",
|
|
142
|
+
stroke: resolvedSecondaryColor,
|
|
143
|
+
strokeLinecap: "round",
|
|
144
|
+
strokeLinejoin: "round",
|
|
145
|
+
strokeMiterlimit: "10"
|
|
146
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
147
|
+
d: "M83.505 33.702c-5.469 2.76-10.092 6.29-8.723 8.362 8.411 4.806 41.87-10.627 47.997-20.76C126.04 6.51 99.007-3.333 80.229 20.28l10.459 5.325s-.512 4.8-7.183 8.097Z",
|
|
148
|
+
fill: resolvedPrimaryColor
|
|
149
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
150
|
+
d: "M126 21.5C99.821 41.379 76.963 45.369 74.782 42.064c-1.37-2.072 3.254-5.603 8.723-8.362 6.67-3.296 7.183-8.098 7.183-8.098",
|
|
151
|
+
stroke: resolvedSecondaryColor,
|
|
152
|
+
strokeLinecap: "round",
|
|
153
|
+
strokeLinejoin: "round",
|
|
154
|
+
strokeMiterlimit: "10"
|
|
155
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
156
|
+
d: "M90.145 28.416s-1.123 2.912-6.144 5.603c-6.588 3.169-12.307 8.193-6.588 8.521-3.517-1.43 2.107-5.945 7.864-8.791 1.27-.629 3.767-1.99 4.868-5.333Z",
|
|
157
|
+
fill: "#fff",
|
|
158
|
+
fillRule: "evenodd"
|
|
159
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
160
|
+
d: "M80.226 20.28C91 4.5 107.5 6 107.5 6",
|
|
161
|
+
stroke: resolvedSecondaryColor,
|
|
162
|
+
strokeLinecap: "round",
|
|
163
|
+
strokeLinejoin: "round",
|
|
164
|
+
strokeMiterlimit: "10"
|
|
165
|
+
}), /* @__PURE__ */ React.createElement("path", {
|
|
166
|
+
d: "M105.153 6.22s7.054 14.967 20.134 16.43c.588-.433 1.159-.862 1.713-1.288V4.477c0-.815-.662-1.477-1.477-1.477h-15.917c-1.441 1.13-2.778 2.433-4.453 3.22Z",
|
|
167
|
+
fill: resolvedSecondaryColor
|
|
168
|
+
}));
|
|
169
|
+
};
|
|
170
|
+
Configuration.displayName = "Configuration";
|
|
171
|
+
var stdin_default = createBaseComponent(Configuration);
|
|
172
|
+
export {
|
|
173
|
+
stdin_default as default
|
|
174
|
+
};
|
package/lib/cjs/index.js
CHANGED
package/lib/es6/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/illustration",
|
|
3
3
|
"description": "Semrush Illustration Component",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.32.0-prerelease.0",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es6/index.js",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/runtime": "^7.17.9",
|
|
13
|
-
"@semcore/flex-box": "5.31.2
|
|
13
|
+
"@semcore/flex-box": "5.31.2",
|
|
14
14
|
"colorjs.io": "0.4.3"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@semcore/core": "^2.
|
|
17
|
+
"@semcore/core": "^2.17.5",
|
|
18
18
|
"react": "16.8 - 18",
|
|
19
19
|
"react-dom": "16.8 - 18"
|
|
20
20
|
},
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="130" height="130" viewBox="0 0 130 130" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M39.054 17.323 3.292 53.088a1.474 1.474 0 0 0 0 2.09l71.53 71.53c.579.576 1.51.576 2.09 0l35.765-35.768c3.421-3.422 8.687-3.883 12.604-1.383.743.476 1.719-.078 1.719-.96V4.478c0-.815-.662-1.477-1.477-1.477H41.397c-.882 0-1.433.974-.957 1.72 2.5 3.919 2.039 9.182-1.386 12.603Z" fill="#E0E1E9"/><path d="M105.24 112.53H16.584c-5.4 0-9.775-4.376-9.775-9.781V46.558c0-5.405 4.376-9.781 9.775-9.781h88.656c5.41 0 9.78 4.376 9.78 9.78v56.192a9.77 9.77 0 0 1-9.78 9.781Z" fill="#6C6E79" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.277 46.557v7.192c43.883 1.993 46.318.688 67.965-16.972h-58.19c-5.4 0-9.775 4.376-9.775 9.78Z" fill="#fff" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.059 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995Z" fill="#E0E1E9" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M28.126 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995ZM38.19 49.51a3.997 3.997 0 1 0 0-7.994 3.997 3.997 0 0 0 0 7.995Z" stroke="#6C6E79" stroke-miterlimit="10"/><path fill-rule="evenodd" clip-rule="evenodd" d="M85.121 14.162s-11.043 4-10.776 5.855c.118.89-.584.241-.665-.325-.267-1.856 10.777-5.856 10.777-5.856 2.559-.75 3.785-.588.665.325Z" fill="#fff"/><path clip-rule="evenodd" d="M84.457 13.838s-11.044 4-10.777 5.855c.111.774 1.049.977 2.573.813 6.734-.774 16.24-9.701 8.204-6.668Z" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M82.29 16.375s-2.646 1.516-5.68 3.527c-4.39 2.898-9.606 6.82-8.891 8.673.426 1.094 3.138.226 5.87-.982 9.13-2.863 21.502-18.314 8.7-11.218Z" fill="#E0E1E9" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M80.847 17.812c-2.538 1.537-7.33 4.572-10.264 7.192-1.054.782-4.34 4.259-1.054 3.486-1.038-3.68 15.356-12.028 11.318-10.678Z" fill="#fff"/><path fill-rule="evenodd" clip-rule="evenodd" d="M79.043 20.65c-6.373 7.936-11.241 15.683-9.419 17.049 1.752 1.313 7.984-5.283 7.984-5.283 6.979-5.903 10.866-23.518 1.435-11.767Z" fill="#E0E1E9" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M71.447 36.948c-4.348-.925 11.321-19.651 7.986-15.986-3.452 4.3-8.377 10.77-9.522 14.75-.456 1.589-.119 2.138 1.536 1.236Z" fill="#fff"/><path fill-rule="evenodd" clip-rule="evenodd" d="M89.405 28.723v-.006c-.075-.364-.33-.748-.717-1.054-1.183-.943-3.55-1.135-5.347 2.359l-1.956 4.81s-3.218 8.498-6.603 7.227c-1.147-.429-.952-2.479-.774-3.689.084-.57.22-1.127.4-1.672 1.139-3.452 2.571-8.084 5.5-15.695.651-1.688 1.761-3.188 3.266-4.189 7.697-5.103 15.942 6.681 6.231 11.909Z" fill="#E0E1E9" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M75.606 37.006c.555-2.296 1.2-5.096 2.216-8.916-1.137 3.236-2.321 6.65-3.15 9.492l.934-.576Z" fill="#fff"/><path fill-rule="evenodd" clip-rule="evenodd" d="m53.033 72.369 2.443.868 3.733-3.035c.782-.512 1.75-.39 2.25.072l3.664 3.388c.665.615.704 1.578.248 2.237l-2.568 4.114 1.057 2.367 4.84.612c.801-.03 1.475.746 1.505 1.547l.195 4.968c.03.801-.579 1.627-1.374 1.82l-4.776.99-.868 2.442 3.035 3.733c.511.782.389 1.75-.073 2.251l-3.388 3.663a1.717 1.717 0 0 1-2.237.248l-4.114-2.568c-.79.354-1.577.704-2.367 1.057l-.612 4.841c-.128.806-.904 1.48-1.705 1.51l-4.968.195c-.802.03-1.628-.579-1.658-1.38l-.988-4.782-2.442-.868-3.9 2.882a1.718 1.718 0 0 1-2.25-.072l-3.664-3.388c-.501-.462-.699-1.416-.242-2.078l2.726-4.12c-.512-.782-.865-1.572-1.057-2.367l-4.84-.612c-.807-.128-1.48-.904-1.511-1.706l-.195-4.968c-.03-.8.579-1.627 1.38-1.658l4.776-.99c.123-.968.418-1.622.868-2.442l-3.043-3.892c-.506-.623-.384-1.591.23-2.256l3.389-3.664c.462-.5 1.416-.698 2.078-.242l4.12 2.726c.79-.353 1.577-.703 2.367-1.057l.612-4.84c-.03-.801.746-1.474 1.547-1.505l4.968-.194c.801-.031 1.627.578 1.82 1.374l.99 4.779Zm-4.723 6.445c-4.968.195-8.971 4.526-8.776 9.494.194 4.968 4.526 8.971 9.494 8.777 4.968-.195 8.971-4.526 8.776-9.494-.195-4.969-4.526-8.974-9.494-8.777ZM86.245 53.247l2.027.81 3.244-2.431c.676-.407 1.485-.27 1.892.136l2.973 2.974c.54.54.54 1.352.137 1.891l-2.298 3.377.81 2.028 4.052.676c.676 0 1.216.676 1.216 1.352v4.19c0 .675-.54 1.351-1.216 1.485l-4.053.676-.809 2.028 2.431 3.243c.406.676.27 1.486-.136 1.892l-2.974 2.974a1.45 1.45 0 0 1-1.891.136l-3.378-2.298-2.027.81-.676 4.053c-.137.676-.81 1.215-1.486 1.215h-4.19c-.675 0-1.351-.54-1.351-1.215l-.676-4.053-2.028-.81-3.377 2.298a1.444 1.444 0 0 1-1.892-.136l-2.973-2.974c-.406-.406-.54-1.216-.137-1.755l2.432-3.377c-.407-.676-.676-1.352-.81-2.028l-4.053-.676c-.676-.137-1.216-.81-1.216-1.486v-4.19c0-.675.54-1.351 1.216-1.351l4.053-.676c.136-.81.406-1.352.81-2.028l-2.432-3.377c-.406-.54-.27-1.352.27-1.892l2.974-2.973c.406-.407 1.216-.54 1.755-.137l3.377 2.432 2.028-.81.676-4.053c0-.676.676-1.216 1.352-1.216h4.19c.675 0 1.351.54 1.485 1.216l.679 4.05Zm-4.19 5.269c-4.189 0-7.702 3.513-7.702 7.703 0 4.189 3.513 7.702 7.702 7.702 4.19 0 7.703-3.513 7.703-7.702 0-4.19-3.513-7.703-7.703-7.703Z" fill="#fff" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M81.163 34.748c-1.176.367-3.296 1.62-3.88 2.449-42.019 59.468-62.418 62.982-62.418 70.874 0 3.947 4.187 4.462 4.187 4.462-5.4 0-9.775-4.376-9.775-9.781V53.078H32.54c27.01 0 36.794-11.672 43.537-16.298 1.352-.93 3.861-1.823 5.085-2.032Z" fill="#E0E1E9" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M34.015 73.294C63.15 58.412 73.1 37.47 80.11 35.156M28.126 76.094a110.31 110.31 0 0 0 4.448-2.075" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M54.3 52.643c9.496-3.391 21.441-15.617 24.598-17.21" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M105.241 112.53c7.831 0 10.259-6.53 9.773-13.926C124 109 117 112.53 105.241 112.53Z" fill="#E0E1E9" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M118.472 103.707C106.5 87.5 97.254 71.635 90.565 53.079h24.458c0 25.274-1.266 34.984 3.449 50.628Z" fill="#E0E1E9" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M112.46 90.528c1.914 6.04 5.369 11.338 5.369 11.338" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M115.023 46.56v6.517H90.565c-1.825-5.06-2.78-11.844-5.947-16.296h20.624a9.773 9.773 0 0 1 9.781 9.778Z" fill="#fff" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M83.505 33.702c-5.469 2.76-10.092 6.29-8.723 8.362 8.411 4.806 41.87-10.627 47.997-20.76C126.04 6.51 99.007-3.333 80.229 20.28l10.459 5.325s-.512 4.8-7.183 8.097Z" fill="#E0E1E9"/><path d="M126 21.5C99.821 41.379 76.963 45.369 74.782 42.064c-1.37-2.072 3.254-5.603 8.723-8.362 6.67-3.296 7.183-8.098 7.183-8.098" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M90.145 28.416s-1.123 2.912-6.144 5.603c-6.588 3.169-12.307 8.193-6.588 8.521-3.517-1.43 2.107-5.945 7.864-8.791 1.27-.629 3.767-1.99 4.868-5.333Z" fill="#fff"/><path d="M80.226 20.28C91 4.5 107.5 6 107.5 6" stroke="#6C6E79" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M105.153 6.22s7.054 14.967 20.134 16.43c.588-.433 1.159-.862 1.713-1.288V4.477c0-.815-.662-1.477-1.477-1.477h-15.917c-1.441 1.13-2.778 2.433-4.453 3.22Z" fill="#6C6E79"/></svg>
|