developer-icons 1.0.1 → 1.0.2
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/createDeveloperIcon.d.ts +3 -0
- package/dist/icons/CanvaIcon.d.ts +2 -0
- package/dist/icons/ChatgptIcon.d.ts +2 -0
- package/dist/icons/CssIcon.d.ts +2 -0
- package/dist/icons/DiscordIcon.d.ts +2 -0
- package/dist/icons/FigmaIcon.d.ts +2 -0
- package/dist/icons/FirebaseIcon.d.ts +2 -0
- package/dist/icons/GitIcon.d.ts +2 -0
- package/dist/icons/GithubIcon.d.ts +2 -0
- package/dist/icons/GmailIcon.d.ts +2 -0
- package/dist/icons/HtmlIcon.d.ts +2 -0
- package/dist/icons/InstagramIcon.d.ts +2 -0
- package/dist/icons/JavascriptIcon.d.ts +2 -0
- package/dist/icons/LinkedinIcon.d.ts +2 -0
- package/dist/icons/MongodbIcon.d.ts +2 -0
- package/dist/icons/NextjsIcon.d.ts +2 -0
- package/dist/icons/NotionIcon.d.ts +2 -0
- package/dist/icons/OpenaiIcon.d.ts +2 -0
- package/dist/icons/PostmanIcon.d.ts +2 -0
- package/dist/icons/ReactIcon.d.ts +2 -0
- package/dist/icons/ReactNativeIcon.d.ts +2 -0
- package/dist/icons/ReduxIcon.d.ts +2 -0
- package/dist/icons/SassIcon.d.ts +2 -0
- package/dist/icons/TailwindCssIcon.d.ts +2 -0
- package/dist/icons/TypescriptIcon.d.ts +2 -0
- package/dist/icons/ViteIcon.d.ts +2 -0
- package/dist/icons/VsCodeIcon.d.ts +2 -0
- package/dist/icons/WordpressIcon.d.ts +2 -0
- package/dist/icons/icons.data.d.ts +8 -0
- package/dist/icons/index.d.ts +27 -0
- package/dist/main.d.ts +4 -0
- package/dist/main.js +730 -0
- package/dist/utils/capitalizeFirstLetter.d.ts +1 -0
- package/package.json +1 -1
@@ -0,0 +1,27 @@
|
|
1
|
+
export * from './HtmlIcon.tsx';
|
2
|
+
export * from './CanvaIcon.tsx';
|
3
|
+
export * from './ChatgptIcon.tsx';
|
4
|
+
export * from './CssIcon.tsx';
|
5
|
+
export * from './DiscordIcon.tsx';
|
6
|
+
export * from './FigmaIcon.tsx';
|
7
|
+
export * from './FirebaseIcon.tsx';
|
8
|
+
export * from './GitIcon.tsx';
|
9
|
+
export * from './GithubIcon.tsx';
|
10
|
+
export * from './GmailIcon.tsx';
|
11
|
+
export * from './InstagramIcon.tsx';
|
12
|
+
export * from './JavascriptIcon.tsx';
|
13
|
+
export * from './LinkedinIcon.tsx';
|
14
|
+
export * from './MongodbIcon.tsx';
|
15
|
+
export * from './NextjsIcon.tsx';
|
16
|
+
export * from './NotionIcon.tsx';
|
17
|
+
export * from './OpenaiIcon.tsx';
|
18
|
+
export * from './PostmanIcon.tsx';
|
19
|
+
export * from './ReactNativeIcon.tsx';
|
20
|
+
export * from './ReactIcon.tsx';
|
21
|
+
export * from './ReduxIcon.tsx';
|
22
|
+
export * from './SassIcon.tsx';
|
23
|
+
export * from './TailwindCssIcon.tsx';
|
24
|
+
export * from './TypescriptIcon.tsx';
|
25
|
+
export * from './ViteIcon.tsx';
|
26
|
+
export * from './VsCodeIcon.tsx';
|
27
|
+
export * from './WordpressIcon.tsx';
|
package/dist/main.d.ts
ADDED
package/dist/main.js
ADDED
@@ -0,0 +1,730 @@
|
|
1
|
+
import { jsx as e, jsxs as N } from "react/jsx-runtime";
|
2
|
+
import { createElement as L } from "react";
|
3
|
+
function G(t) {
|
4
|
+
return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
|
5
|
+
}
|
6
|
+
/*!
|
7
|
+
* Determine if an object is a Buffer
|
8
|
+
*
|
9
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
10
|
+
* @license MIT
|
11
|
+
*/
|
12
|
+
var J = function(t) {
|
13
|
+
return t != null && (R(t) || U(t) || !!t._isBuffer);
|
14
|
+
};
|
15
|
+
function R(t) {
|
16
|
+
return !!t.constructor && typeof t.constructor.isBuffer == "function" && t.constructor.isBuffer(t);
|
17
|
+
}
|
18
|
+
function U(t) {
|
19
|
+
return typeof t.readFloatLE == "function" && typeof t.slice == "function" && R(t.slice(0, 0));
|
20
|
+
}
|
21
|
+
var q = J, W = Object.prototype.toString, K = function(r) {
|
22
|
+
if (typeof r > "u")
|
23
|
+
return "undefined";
|
24
|
+
if (r === null)
|
25
|
+
return "null";
|
26
|
+
if (r === !0 || r === !1 || r instanceof Boolean)
|
27
|
+
return "boolean";
|
28
|
+
if (typeof r == "string" || r instanceof String)
|
29
|
+
return "string";
|
30
|
+
if (typeof r == "number" || r instanceof Number)
|
31
|
+
return "number";
|
32
|
+
if (typeof r == "function" || r instanceof Function)
|
33
|
+
return "function";
|
34
|
+
if (typeof Array.isArray < "u" && Array.isArray(r))
|
35
|
+
return "array";
|
36
|
+
if (r instanceof RegExp)
|
37
|
+
return "regexp";
|
38
|
+
if (r instanceof Date)
|
39
|
+
return "date";
|
40
|
+
var c = W.call(r);
|
41
|
+
return c === "[object RegExp]" ? "regexp" : c === "[object Date]" ? "date" : c === "[object Arguments]" ? "arguments" : c === "[object Error]" ? "error" : q(r) ? "buffer" : c === "[object Set]" ? "set" : c === "[object WeakSet]" ? "weakset" : c === "[object Map]" ? "map" : c === "[object WeakMap]" ? "weakmap" : c === "[object Symbol]" ? "symbol" : c === "[object Int8Array]" ? "int8array" : c === "[object Uint8Array]" ? "uint8array" : c === "[object Uint8ClampedArray]" ? "uint8clampedarray" : c === "[object Int16Array]" ? "int16array" : c === "[object Uint16Array]" ? "uint16array" : c === "[object Int32Array]" ? "int32array" : c === "[object Uint32Array]" ? "uint32array" : c === "[object Float32Array]" ? "float32array" : c === "[object Float64Array]" ? "float64array" : "object";
|
42
|
+
}, j = { exports: {} };
|
43
|
+
(function(t) {
|
44
|
+
(function() {
|
45
|
+
function r(c, p) {
|
46
|
+
if (typeof p != "function")
|
47
|
+
return c;
|
48
|
+
var a = {};
|
49
|
+
for (var f in c)
|
50
|
+
Object.prototype.hasOwnProperty.call(c, f) && (a[p(f, c[f]) || f] = c[f]);
|
51
|
+
return a;
|
52
|
+
}
|
53
|
+
t.exports ? t.exports = r : window.rename = r;
|
54
|
+
})();
|
55
|
+
})(j);
|
56
|
+
var X = j.exports;
|
57
|
+
/*!
|
58
|
+
* deep-rename-keys <https://github.com/jonschlinkert/deep-rename-keys>
|
59
|
+
*
|
60
|
+
* Copyright (c) 2015 Jon Schlinkert, contributors.
|
61
|
+
* Licensed under the MIT license.
|
62
|
+
*/
|
63
|
+
var O = K, Y = X, Q = function t(r, c) {
|
64
|
+
var p = O(r);
|
65
|
+
if (p !== "object" && p !== "array")
|
66
|
+
throw new Error("expected an object");
|
67
|
+
var a = [];
|
68
|
+
p === "object" && (r = Y(r, c), a = {});
|
69
|
+
for (var f in r)
|
70
|
+
if (r.hasOwnProperty(f)) {
|
71
|
+
var m = r[f];
|
72
|
+
O(m) === "object" || O(m) === "array" ? a[f] = t(m, c) : a[f] = m;
|
73
|
+
}
|
74
|
+
return a;
|
75
|
+
};
|
76
|
+
const e1 = /* @__PURE__ */ G(Q);
|
77
|
+
var D = { exports: {} };
|
78
|
+
(function(t) {
|
79
|
+
var r = Object.prototype.hasOwnProperty, c = "~";
|
80
|
+
function p() {
|
81
|
+
}
|
82
|
+
Object.create && (p.prototype = /* @__PURE__ */ Object.create(null), new p().__proto__ || (c = !1));
|
83
|
+
function a(m, h, u) {
|
84
|
+
this.fn = m, this.context = h, this.once = u || !1;
|
85
|
+
}
|
86
|
+
function f() {
|
87
|
+
this._events = new p(), this._eventsCount = 0;
|
88
|
+
}
|
89
|
+
f.prototype.eventNames = function() {
|
90
|
+
var h = [], u, i;
|
91
|
+
if (this._eventsCount === 0)
|
92
|
+
return h;
|
93
|
+
for (i in u = this._events)
|
94
|
+
r.call(u, i) && h.push(c ? i.slice(1) : i);
|
95
|
+
return Object.getOwnPropertySymbols ? h.concat(Object.getOwnPropertySymbols(u)) : h;
|
96
|
+
}, f.prototype.listeners = function(h, u) {
|
97
|
+
var i = c ? c + h : h, C = this._events[i];
|
98
|
+
if (u)
|
99
|
+
return !!C;
|
100
|
+
if (!C)
|
101
|
+
return [];
|
102
|
+
if (C.fn)
|
103
|
+
return [C.fn];
|
104
|
+
for (var o = 0, y = C.length, l = new Array(y); o < y; o++)
|
105
|
+
l[o] = C[o].fn;
|
106
|
+
return l;
|
107
|
+
}, f.prototype.emit = function(h, u, i, C, o, y) {
|
108
|
+
var l = c ? c + h : h;
|
109
|
+
if (!this._events[l])
|
110
|
+
return !1;
|
111
|
+
var n = this._events[l], b = arguments.length, F, g;
|
112
|
+
if (n.fn) {
|
113
|
+
switch (n.once && this.removeListener(h, n.fn, void 0, !0), b) {
|
114
|
+
case 1:
|
115
|
+
return n.fn.call(n.context), !0;
|
116
|
+
case 2:
|
117
|
+
return n.fn.call(n.context, u), !0;
|
118
|
+
case 3:
|
119
|
+
return n.fn.call(n.context, u, i), !0;
|
120
|
+
case 4:
|
121
|
+
return n.fn.call(n.context, u, i, C), !0;
|
122
|
+
case 5:
|
123
|
+
return n.fn.call(n.context, u, i, C, o), !0;
|
124
|
+
case 6:
|
125
|
+
return n.fn.call(n.context, u, i, C, o, y), !0;
|
126
|
+
}
|
127
|
+
for (g = 1, F = new Array(b - 1); g < b; g++)
|
128
|
+
F[g - 1] = arguments[g];
|
129
|
+
n.fn.apply(n.context, F);
|
130
|
+
} else {
|
131
|
+
var S = n.length, A;
|
132
|
+
for (g = 0; g < S; g++)
|
133
|
+
switch (n[g].once && this.removeListener(h, n[g].fn, void 0, !0), b) {
|
134
|
+
case 1:
|
135
|
+
n[g].fn.call(n[g].context);
|
136
|
+
break;
|
137
|
+
case 2:
|
138
|
+
n[g].fn.call(n[g].context, u);
|
139
|
+
break;
|
140
|
+
case 3:
|
141
|
+
n[g].fn.call(n[g].context, u, i);
|
142
|
+
break;
|
143
|
+
case 4:
|
144
|
+
n[g].fn.call(n[g].context, u, i, C);
|
145
|
+
break;
|
146
|
+
default:
|
147
|
+
if (!F)
|
148
|
+
for (A = 1, F = new Array(b - 1); A < b; A++)
|
149
|
+
F[A - 1] = arguments[A];
|
150
|
+
n[g].fn.apply(n[g].context, F);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
return !0;
|
154
|
+
}, f.prototype.on = function(h, u, i) {
|
155
|
+
var C = new a(u, i || this), o = c ? c + h : h;
|
156
|
+
return this._events[o] ? this._events[o].fn ? this._events[o] = [this._events[o], C] : this._events[o].push(C) : (this._events[o] = C, this._eventsCount++), this;
|
157
|
+
}, f.prototype.once = function(h, u, i) {
|
158
|
+
var C = new a(u, i || this, !0), o = c ? c + h : h;
|
159
|
+
return this._events[o] ? this._events[o].fn ? this._events[o] = [this._events[o], C] : this._events[o].push(C) : (this._events[o] = C, this._eventsCount++), this;
|
160
|
+
}, f.prototype.removeListener = function(h, u, i, C) {
|
161
|
+
var o = c ? c + h : h;
|
162
|
+
if (!this._events[o])
|
163
|
+
return this;
|
164
|
+
if (!u)
|
165
|
+
return --this._eventsCount === 0 ? this._events = new p() : delete this._events[o], this;
|
166
|
+
var y = this._events[o];
|
167
|
+
if (y.fn)
|
168
|
+
y.fn === u && (!C || y.once) && (!i || y.context === i) && (--this._eventsCount === 0 ? this._events = new p() : delete this._events[o]);
|
169
|
+
else {
|
170
|
+
for (var l = 0, n = [], b = y.length; l < b; l++)
|
171
|
+
(y[l].fn !== u || C && !y[l].once || i && y[l].context !== i) && n.push(y[l]);
|
172
|
+
n.length ? this._events[o] = n.length === 1 ? n[0] : n : --this._eventsCount === 0 ? this._events = new p() : delete this._events[o];
|
173
|
+
}
|
174
|
+
return this;
|
175
|
+
}, f.prototype.removeAllListeners = function(h) {
|
176
|
+
var u;
|
177
|
+
return h ? (u = c ? c + h : h, this._events[u] && (--this._eventsCount === 0 ? this._events = new p() : delete this._events[u])) : (this._events = new p(), this._eventsCount = 0), this;
|
178
|
+
}, f.prototype.off = f.prototype.removeListener, f.prototype.addListener = f.prototype.on, f.prototype.setMaxListeners = function() {
|
179
|
+
return this;
|
180
|
+
}, f.prefixed = c, f.EventEmitter = f, t.exports = f;
|
181
|
+
})(D);
|
182
|
+
var P = D.exports;
|
183
|
+
function d(t, r, c) {
|
184
|
+
return r in t ? Object.defineProperty(t, r, { value: c, enumerable: !0, configurable: !0, writable: !0 }) : t[r] = c, t;
|
185
|
+
}
|
186
|
+
var t1 = P, I = function() {
|
187
|
+
}, v = {
|
188
|
+
data: "state-data",
|
189
|
+
cdata: "state-cdata",
|
190
|
+
tagBegin: "state-tag-begin",
|
191
|
+
tagName: "state-tag-name",
|
192
|
+
tagEnd: "state-tag-end",
|
193
|
+
attributeNameStart: "state-attribute-name-start",
|
194
|
+
attributeName: "state-attribute-name",
|
195
|
+
attributeNameEnd: "state-attribute-name-end",
|
196
|
+
attributeValueBegin: "state-attribute-value-begin",
|
197
|
+
attributeValue: "state-attribute-value"
|
198
|
+
}, s = {
|
199
|
+
lt: "action-lt",
|
200
|
+
gt: "action-gt",
|
201
|
+
space: "action-space",
|
202
|
+
equal: "action-equal",
|
203
|
+
quote: "action-quote",
|
204
|
+
slash: "action-slash",
|
205
|
+
char: "action-char",
|
206
|
+
error: "action-error"
|
207
|
+
}, M = {
|
208
|
+
text: "text",
|
209
|
+
openTag: "open-tag",
|
210
|
+
closeTag: "close-tag",
|
211
|
+
attributeName: "attribute-name",
|
212
|
+
attributeValue: "attribute-value"
|
213
|
+
}, c1 = {
|
214
|
+
" ": s.space,
|
215
|
+
" ": s.space,
|
216
|
+
"\n": s.space,
|
217
|
+
"\r": s.space,
|
218
|
+
"<": s.lt,
|
219
|
+
">": s.gt,
|
220
|
+
'"': s.quote,
|
221
|
+
"'": s.quote,
|
222
|
+
"=": s.equal,
|
223
|
+
"/": s.slash
|
224
|
+
}, r1 = function(r) {
|
225
|
+
return c1[r] || s.char;
|
226
|
+
}, a1 = function(r) {
|
227
|
+
var c, p, a, f, m, h, u, i, C, o;
|
228
|
+
r = Object.assign({ debug: !1 }, r);
|
229
|
+
var y = new t1(), l = v.data, n = "", b = "", F = "", g = "", S = "", A = "", z = function(V, _) {
|
230
|
+
if (!(b[0] === "?" || b[0] === "!")) {
|
231
|
+
var Z = { type: V, value: _ };
|
232
|
+
r.debug && console.log("emit:", Z), y.emit("data", Z);
|
233
|
+
}
|
234
|
+
};
|
235
|
+
y.stateMachine = (o = {}, d(o, v.data, (c = {}, d(c, s.lt, function() {
|
236
|
+
n.trim() && z(M.text, n), b = "", S = !1, l = v.tagBegin;
|
237
|
+
}), d(c, s.char, function(w) {
|
238
|
+
n += w;
|
239
|
+
}), c)), d(o, v.cdata, d({}, s.char, function(w) {
|
240
|
+
n += w, n.substr(-3) === "]]>" && (z(M.text, n.slice(0, -3)), n = "", l = v.data);
|
241
|
+
})), d(o, v.tagBegin, (p = {}, d(p, s.space, I), d(p, s.char, function(w) {
|
242
|
+
b = w, l = v.tagName;
|
243
|
+
}), d(p, s.slash, function() {
|
244
|
+
b = "", S = !0;
|
245
|
+
}), p)), d(o, v.tagName, (a = {}, d(a, s.space, function() {
|
246
|
+
S ? l = v.tagEnd : (l = v.attributeNameStart, z(M.openTag, b));
|
247
|
+
}), d(a, s.gt, function() {
|
248
|
+
z(S ? M.closeTag : M.openTag, b), n = "", l = v.data;
|
249
|
+
}), d(a, s.slash, function() {
|
250
|
+
l = v.tagEnd, z(M.openTag, b);
|
251
|
+
}), d(a, s.char, function(w) {
|
252
|
+
b += w, b === "![CDATA[" && (l = v.cdata, n = "", b = "");
|
253
|
+
}), a)), d(o, v.tagEnd, (f = {}, d(f, s.gt, function() {
|
254
|
+
z(M.closeTag, b), n = "", l = v.data;
|
255
|
+
}), d(f, s.char, I), f)), d(o, v.attributeNameStart, (m = {}, d(m, s.char, function(w) {
|
256
|
+
F = w, l = v.attributeName;
|
257
|
+
}), d(m, s.gt, function() {
|
258
|
+
n = "", l = v.data;
|
259
|
+
}), d(m, s.space, I), d(m, s.slash, function() {
|
260
|
+
S = !0, l = v.tagEnd;
|
261
|
+
}), m)), d(o, v.attributeName, (h = {}, d(h, s.space, function() {
|
262
|
+
l = v.attributeNameEnd;
|
263
|
+
}), d(h, s.equal, function() {
|
264
|
+
z(M.attributeName, F), l = v.attributeValueBegin;
|
265
|
+
}), d(h, s.gt, function() {
|
266
|
+
g = "", z(M.attributeName, F), z(M.attributeValue, g), n = "", l = v.data;
|
267
|
+
}), d(h, s.slash, function() {
|
268
|
+
S = !0, g = "", z(M.attributeName, F), z(M.attributeValue, g), l = v.tagEnd;
|
269
|
+
}), d(h, s.char, function(w) {
|
270
|
+
F += w;
|
271
|
+
}), h)), d(o, v.attributeNameEnd, (u = {}, d(u, s.space, I), d(u, s.equal, function() {
|
272
|
+
z(M.attributeName, F), l = v.attributeValueBegin;
|
273
|
+
}), d(u, s.gt, function() {
|
274
|
+
g = "", z(M.attributeName, F), z(M.attributeValue, g), n = "", l = v.data;
|
275
|
+
}), d(u, s.char, function(w) {
|
276
|
+
g = "", z(M.attributeName, F), z(M.attributeValue, g), F = w, l = v.attributeName;
|
277
|
+
}), u)), d(o, v.attributeValueBegin, (i = {}, d(i, s.space, I), d(i, s.quote, function(w) {
|
278
|
+
A = w, g = "", l = v.attributeValue;
|
279
|
+
}), d(i, s.gt, function() {
|
280
|
+
g = "", z(M.attributeValue, g), n = "", l = v.data;
|
281
|
+
}), d(i, s.char, function(w) {
|
282
|
+
A = "", g = w, l = v.attributeValue;
|
283
|
+
}), i)), d(o, v.attributeValue, (C = {}, d(C, s.space, function(w) {
|
284
|
+
A ? g += w : (z(M.attributeValue, g), l = v.attributeNameStart);
|
285
|
+
}), d(C, s.quote, function(w) {
|
286
|
+
A === w ? (z(M.attributeValue, g), l = v.attributeNameStart) : g += w;
|
287
|
+
}), d(C, s.gt, function(w) {
|
288
|
+
A ? g += w : (z(M.attributeValue, g), n = "", l = v.data);
|
289
|
+
}), d(C, s.slash, function(w) {
|
290
|
+
A ? g += w : (z(M.attributeValue, g), S = !0, l = v.tagEnd);
|
291
|
+
}), d(C, s.char, function(w) {
|
292
|
+
g += w;
|
293
|
+
}), C)), o);
|
294
|
+
var $ = function(V) {
|
295
|
+
r.debug && console.log(l, V);
|
296
|
+
var _ = y.stateMachine[l], Z = _[r1(V)] || _[s.error] || _[s.char];
|
297
|
+
Z(V);
|
298
|
+
};
|
299
|
+
return y.write = function(w) {
|
300
|
+
for (var V = w.length, _ = 0; _ < V; _++)
|
301
|
+
$(w[_]);
|
302
|
+
}, y;
|
303
|
+
}, n1 = {
|
304
|
+
State: v,
|
305
|
+
Action: s,
|
306
|
+
Type: M,
|
307
|
+
create: a1
|
308
|
+
}, i1 = P, T = n1, k = T.Type, B = {
|
309
|
+
element: "element",
|
310
|
+
text: "text"
|
311
|
+
}, E = function(r) {
|
312
|
+
return Object.assign({
|
313
|
+
name: "",
|
314
|
+
type: B.element,
|
315
|
+
value: "",
|
316
|
+
parent: null,
|
317
|
+
attributes: {},
|
318
|
+
children: []
|
319
|
+
}, r);
|
320
|
+
}, H = function(r) {
|
321
|
+
r = Object.assign({
|
322
|
+
stream: !1,
|
323
|
+
parentNodes: !0,
|
324
|
+
doneEvent: "done",
|
325
|
+
tagPrefix: "tag:",
|
326
|
+
emitTopLevelOnly: !1,
|
327
|
+
debug: !1
|
328
|
+
}, r);
|
329
|
+
var c = void 0, p = void 0, a = void 0, f = void 0, m = new i1(), h = function(i) {
|
330
|
+
switch (i.type) {
|
331
|
+
case k.openTag:
|
332
|
+
if (a === null)
|
333
|
+
a = p, a.name = i.value;
|
334
|
+
else {
|
335
|
+
var C = E({
|
336
|
+
name: i.value,
|
337
|
+
parent: a
|
338
|
+
});
|
339
|
+
a.children.push(C), a = C;
|
340
|
+
}
|
341
|
+
break;
|
342
|
+
case k.closeTag:
|
343
|
+
var o = a.parent;
|
344
|
+
if (r.parentNodes || (a.parent = null), a.name !== i.value)
|
345
|
+
break;
|
346
|
+
r.stream && o === p && (p.children = [], a.parent = null), (!r.emitTopLevelOnly || o === p) && (m.emit(r.tagPrefix + a.name, a), m.emit("tag", a.name, a)), a === p && (c.removeAllListeners("data"), m.emit(r.doneEvent, a), p = null), a = o;
|
347
|
+
break;
|
348
|
+
case k.text:
|
349
|
+
a && a.children.push(E({
|
350
|
+
type: B.text,
|
351
|
+
value: i.value,
|
352
|
+
parent: r.parentNodes ? a : null
|
353
|
+
}));
|
354
|
+
break;
|
355
|
+
case k.attributeName:
|
356
|
+
f = i.value, a.attributes[f] = "";
|
357
|
+
break;
|
358
|
+
case k.attributeValue:
|
359
|
+
a.attributes[f] = i.value;
|
360
|
+
break;
|
361
|
+
}
|
362
|
+
};
|
363
|
+
return m.reset = function() {
|
364
|
+
c = T.create({ debug: r.debug }), c.on("data", h), p = E(), a = null, f = "", m.parse = c.write;
|
365
|
+
}, m.reset(), m;
|
366
|
+
}, o1 = function(r, c) {
|
367
|
+
c = Object.assign({}, c, { stream: !1, tagPrefix: ":" });
|
368
|
+
var p = H(c), a = void 0;
|
369
|
+
return p.on("done", function(f) {
|
370
|
+
a = f;
|
371
|
+
}), p.parse(r), a;
|
372
|
+
}, s1 = {
|
373
|
+
parseSync: o1,
|
374
|
+
create: H,
|
375
|
+
NodeType: B
|
376
|
+
}, l1 = function(r) {
|
377
|
+
var c = s1.parseSync("<root>".concat(r, "</root>"), {
|
378
|
+
parentNodes: !1
|
379
|
+
}), p = c.children && c.children.length > 0 && c.children.every(function(a) {
|
380
|
+
return a.name === "svg";
|
381
|
+
});
|
382
|
+
if (p)
|
383
|
+
return c.children.length === 1 ? c.children[0] : c.children;
|
384
|
+
throw Error("nothing to parse");
|
385
|
+
}, f1 = function(r) {
|
386
|
+
return e1(r, function(c) {
|
387
|
+
return d1(c) ? c : p1(c);
|
388
|
+
});
|
389
|
+
}, p1 = function(r) {
|
390
|
+
return r.replace(/[-|:]([a-z])/gi, function(c, p) {
|
391
|
+
return p.toUpperCase();
|
392
|
+
});
|
393
|
+
}, d1 = function(r) {
|
394
|
+
return /^(data|aria)(-\w+)/.test(r);
|
395
|
+
}, u1 = function(r) {
|
396
|
+
if (r) {
|
397
|
+
var c = String(r);
|
398
|
+
return /[&<>]/.test(c) ? "<![CDATA[".concat(c.replace(/]]>/, "]]]]><![CDATA[>"), "]]>") : c;
|
399
|
+
}
|
400
|
+
return "";
|
401
|
+
}, h1 = function(r) {
|
402
|
+
return String(r).replace(/&/g, "&").replace(/'/g, "'").replace(/"/g, """).replace(/</g, "<").replace(/>/g, ">");
|
403
|
+
}, C1 = function(r) {
|
404
|
+
var c = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, p = c.transformNode, a = p === void 0 ? function(u) {
|
405
|
+
return u;
|
406
|
+
} : p, f = c.camelcase, m = f === void 0 ? !1 : f, h = function(i) {
|
407
|
+
var C;
|
408
|
+
return C = a(i), m && (C = f1(C)), C;
|
409
|
+
};
|
410
|
+
return h(l1(r));
|
411
|
+
}, g1 = function t(r) {
|
412
|
+
var c = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, p = c.transformAttr, a = p === void 0 ? function(l, n, b) {
|
413
|
+
return "".concat(l, '="').concat(b(n), '"');
|
414
|
+
} : p, f = c.transformNode, m = f === void 0 ? function(l) {
|
415
|
+
return l;
|
416
|
+
} : f, h = c.selfClose, u = h === void 0 ? !0 : h;
|
417
|
+
if (Array.isArray(r))
|
418
|
+
return r.map(function(l) {
|
419
|
+
return t(l, {
|
420
|
+
transformAttr: a,
|
421
|
+
selfClose: u,
|
422
|
+
transformNode: m
|
423
|
+
});
|
424
|
+
}).join("");
|
425
|
+
var i = m(r);
|
426
|
+
if (i.type === "text")
|
427
|
+
return u1(i.value);
|
428
|
+
var C = "";
|
429
|
+
for (var o in i.attributes) {
|
430
|
+
var y = a(o, i.attributes[o], h1, i.name);
|
431
|
+
C += y ? " ".concat(y) : "";
|
432
|
+
}
|
433
|
+
return i.children && i.children.length > 0 || !u ? "<".concat(i.name).concat(C, ">").concat(t(i.children, {
|
434
|
+
transformAttr: a,
|
435
|
+
transformNode: m,
|
436
|
+
selfClose: u
|
437
|
+
}), "</").concat(i.name, ">") : "<".concat(i.name).concat(C, "/>");
|
438
|
+
};
|
439
|
+
const w1 = (t, r) => {
|
440
|
+
const c = C1(r, { camelcase: !0 }), p = [...c.children.map((a) => g1(a))];
|
441
|
+
return `import { createElement } from 'react';
|
442
|
+
import {Icon} from '../createDeveloperIcon';
|
443
|
+
export const ${t} = (props) => createElement(Icon, {...${JSON.stringify(
|
444
|
+
c.attributes
|
445
|
+
)}, ...props, children: [${p}]})`;
|
446
|
+
}, x = (t) => L("svg", t), L1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#E65100", d: "M41,5H7l3,34l14,4l14-4L41,5L41,5z" }), /* @__PURE__ */ e("path", { fill: "#FF6D00", d: "M24 8L24 39.9 35.2 36.7 37.7 8z" }), /* @__PURE__ */ e("path", { fill: "#FFF", d: "M24,25v-4h8.6l-0.7,11.5L24,35.1v-4.2l4.1-1.4l0.3-4.5H24z M32.9,17l0.3-4H24v4H32.9z" }), /* @__PURE__ */ e("path", { fill: "#EEE", d: "M24,30.9v4.2l-7.9-2.6L15.7,27h4l0.2,2.5L24,30.9z M19.1,17H24v-4h-9.1l0.7,12H24v-4h-4.6L19.1,17z" })] }), x1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", clipRule: "evenodd", baseProfile: "basic", ...t, children: [/* @__PURE__ */ N("linearGradient", { id: "N8aMJ-jZ4-cfldZrsnvhda", x1: "38.263", x2: "10.15", y1: "1373.62", y2: "1342.615", gradientTransform: "translate(0 -1333.89)", gradientUnits: "userSpaceOnUse", children: [
|
447
|
+
/* @__PURE__ */ e("stop", { offset: "0", stopColor: "#823af3" }),
|
448
|
+
/* @__PURE__ */ e("stop", { offset: ".36", stopColor: "#4b66e1" }),
|
449
|
+
/* @__PURE__ */ e("stop", { offset: ".906", stopColor: "#01f1c4" })
|
450
|
+
] }), /* @__PURE__ */ e("path", { fill: "url(#N8aMJ-jZ4-cfldZrsnvhda)", fillRule: "evenodd", d: "M44,24c0,11.045-8.955,20-20,20S4,35.045,4,24 S12.955,4,24,4S44,12.955,44,24z", clipRule: "evenodd" }), /* @__PURE__ */ e("path", { fill: "#fff", fillRule: "evenodd", d: "M29.194,26.962c-0.835,0.915-2.007,1.378-2.556,1.378 c-0.635,0-0.982-0.389-1.053-0.974c-0.024-0.224-0.016-0.45,0.024-0.673c0.21-1.31,0.692-2.124,0.662-2.372 c-0.009-0.071-0.049-0.106-0.101-0.106c-0.406,0-1.83,1.47-2.046,2.443l-0.168,0.779c-0.11,0.549-0.648,0.902-1.018,0.902 c-0.177,0-0.311-0.088-0.334-0.283c-0.007-0.089,0-0.178,0.021-0.266l0.079-0.41c-0.768,0.574-1.596,0.962-1.984,0.962 c-0.53,0-0.827-0.283-0.933-0.709c-0.35,0.461-0.813,0.709-1.306,0.709c-0.63,0-1.237-0.417-1.528-1.034 c-0.415,0.466-0.907,0.922-1.496,1.299c-0.869,0.55-1.836,0.992-2.982,0.992c-1.058,0-1.956-0.566-2.453-1.026 c-0.737-0.69-1.126-1.718-1.241-2.656c-0.362-2.957,1.438-6.834,4.227-8.533c0.64-0.39,1.357-0.584,2.008-0.584 c1.34,0,2.34,0.958,2.48,2.104c0.126,1.032-0.286,1.924-1.431,2.501c-0.584,0.296-0.874,0.282-0.965,0.141 c-0.061-0.094-0.026-0.254,0.091-0.351c1.076-0.899,1.096-1.637,0.97-2.677c-0.082-0.669-0.522-1.098-1.016-1.098 c-2.115,0-5.149,4.745-4.727,8.197c0.165,1.346,0.99,2.904,2.682,2.904c0.564,0,1.162-0.159,1.694-0.425 c0.928-0.474,1.453-0.85,1.98-1.464c-0.13-1.596,1.24-3.6,3.278-3.6c0.882,0,1.612,0.354,1.698,1.062 c0.108,0.885-0.646,1.062-0.928,1.062c-0.247,0-0.643-0.071-0.671-0.301c-0.03-0.248,0.534-0.106,0.464-0.673 c-0.043-0.354-0.411-0.478-0.763-0.478c-1.269,0-1.97,1.77-1.835,2.869c0.061,0.496,0.315,0.991,0.774,0.991 c0.37,0,0.904-0.531,1.109-1.31c0.13-0.531,0.632-0.885,1.003-0.885c0.194,0,0.328,0.088,0.352,0.283 c0.008,0.071,0.002,0.16-0.021,0.266c-0.042,0.23-0.219,0.996-0.21,1.154c0.006,0.138,0.086,0.328,0.326,0.328 c0.19,0,0.89-0.378,1.538-0.958c0.203-1.051,0.454-2.351,0.474-2.454c0.079-0.426,0.232-0.865,1.096-0.865 c0.177,0,0.311,0.088,0.337,0.301c0.008,0.07,0.002,0.16-0.021,0.266l-0.242,1.093c0.758-1.01,1.936-1.752,2.642-1.752 c0.3,0,0.531,0.158,0.57,0.478c0.022,0.178-0.03,0.478-0.147,0.814c-0.251,0.69-0.533,1.727-0.72,2.62 c-0.04,0.19,0.026,0.476,0.373,0.476c0.277,0,1.166-0.339,1.885-1.288c-0.005-0.134-0.007-0.27-0.007-0.408 c0-0.744,0.053-1.346,0.194-1.787c0.141-0.461,0.723-0.902,1.11-0.902c0.194,0,0.335,0.106,0.335,0.318 c0,0.071-0.018,0.16-0.053,0.248c-0.264,0.779-0.405,1.506-0.405,2.231c0,0.407,0.088,1.062,0.177,1.398 c0.018,0.071,0.034,0.142,0.105,0.142c0.123,0,0.952-0.814,1.551-1.806c-0.53-0.337-0.829-0.956-0.829-1.718 c0-1.274,0.758-1.93,1.498-1.93c0.582,0,1.11,0.425,1.11,1.274c0,0.532-0.212,1.134-0.51,1.718c0,0,0.123,0.018,0.176,0.018 c0.458,0,0.811-0.213,1.006-0.443c0.088-0.1,0.17-0.178,0.248-0.224c0.59-0.713,1.455-1.228,2.47-1.228 c0.864,0,1.61,0.337,1.696,1.045c0.11,0.902-0.661,1.08-0.926,1.08c-0.264,0-0.661-0.071-0.689-0.301s0.551-0.106,0.484-0.654 c-0.043-0.354-0.413-0.496-0.766-0.496c-1.182,0-1.994,1.576-1.838,2.85c0.062,0.514,0.299,1.01,0.758,1.01 c0.37,0,0.923-0.532,1.127-1.31c0.131-0.514,0.632-0.885,1.002-0.885c0.176,0,0.328,0.088,0.354,0.301 c0.013,0.106-0.03,0.337-0.227,1.168c-0.081,0.354-0.097,0.655-0.066,0.903c0.063,0.514,0.298,0.85,0.516,1.045 c0.079,0.07,0.126,0.158,0.132,0.213c0.017,0.142-0.091,0.266-0.267,0.266c-0.053,0-0.123,0-0.181-0.035 c-0.908-0.372-1.285-0.991-1.391-1.576c-0.35,0.442-0.814,0.69-1.29,0.69c-0.811,0-1.603-0.709-1.715-1.629 c-0.046-0.378-0.001-0.785,0.123-1.184c-0.329,0.203-0.683,0.316-1.001,0.316c-0.106,0-0.194,0-0.299-0.018 c-0.793,1.15-1.622,1.947-2.257,2.302c-0.264,0.142-0.51,0.213-0.687,0.213c-0.142,0-0.3-0.035-0.37-0.159 C29.367,27.91,29.258,27.474,29.194,26.962L29.194,26.962z M32.067,23.191c0,0.496,0.246,1.01,0.564,1.346 c0.124-0.337,0.194-0.673,0.194-1.01c0-0.638-0.247-0.921-0.441-0.921C32.155,22.606,32.067,22.926,32.067,23.191z", clipRule: "evenodd" })] }), b1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", shapeRendering: "geometricPrecision", textRendering: "geometricPrecision", imageRendering: "optimizeQuality", fillRule: "evenodd", clipRule: "evenodd", viewBox: "0 0 512 512", ...t, children: [/* @__PURE__ */ e("rect", { fill: "#10A37F", width: "512", height: "512", rx: "104.187", ry: "105.042" }), /* @__PURE__ */ e("path", { fill: "#fff", fillRule: "nonzero", d: "M378.68 230.011a71.432 71.432 0 003.654-22.541 71.383 71.383 0 00-9.783-36.064c-12.871-22.404-36.747-36.236-62.587-36.236a72.31 72.31 0 00-15.145 1.604 71.362 71.362 0 00-53.37-23.991h-.453l-.17.001c-31.297 0-59.052 20.195-68.673 49.967a71.372 71.372 0 00-47.709 34.618 72.224 72.224 0 00-9.755 36.226 72.204 72.204 0 0018.628 48.395 71.395 71.395 0 00-3.655 22.541 71.388 71.388 0 009.783 36.064 72.187 72.187 0 0077.728 34.631 71.375 71.375 0 0053.374 23.992H271l.184-.001c31.314 0 59.06-20.196 68.681-49.995a71.384 71.384 0 0047.71-34.619 72.107 72.107 0 009.736-36.194 72.201 72.201 0 00-18.628-48.394l-.003-.004zM271.018 380.492h-.074a53.576 53.576 0 01-34.287-12.423 44.928 44.928 0 001.694-.96l57.032-32.943a9.278 9.278 0 004.688-8.06v-80.459l24.106 13.919a.859.859 0 01.469.661v66.586c-.033 29.604-24.022 53.619-53.628 53.679zm-115.329-49.257a53.563 53.563 0 01-7.196-26.798c0-3.069.268-6.146.79-9.17.424.254 1.164.706 1.695 1.011l57.032 32.943a9.289 9.289 0 009.37-.002l69.63-40.205v27.839l.001.048a.864.864 0 01-.345.691l-57.654 33.288a53.791 53.791 0 01-26.817 7.17 53.746 53.746 0 01-46.506-26.818v.003zm-15.004-124.506a53.5 53.5 0 0127.941-23.534c0 .491-.028 1.361-.028 1.965v65.887l-.001.054a9.27 9.27 0 004.681 8.053l69.63 40.199-24.105 13.919a.864.864 0 01-.813.074l-57.66-33.316a53.746 53.746 0 01-26.805-46.5 53.787 53.787 0 017.163-26.798l-.003-.003zm198.055 46.089l-69.63-40.204 24.106-13.914a.863.863 0 01.813-.074l57.659 33.288a53.71 53.71 0 0126.835 46.491c0 22.489-14.033 42.612-35.133 50.379v-67.857c.003-.025.003-.051.003-.076a9.265 9.265 0 00-4.653-8.033zm23.993-36.111a81.919 81.919 0 00-1.694-1.01l-57.032-32.944a9.31 9.31 0 00-4.684-1.266 9.31 9.31 0 00-4.684 1.266l-69.631 40.205v-27.839l-.001-.048c0-.272.129-.528.346-.691l57.654-33.26a53.696 53.696 0 0126.816-7.177c29.644 0 53.684 24.04 53.684 53.684a53.91 53.91 0 01-.774 9.077v.003zm-150.831 49.618l-24.111-13.919a.859.859 0 01-.469-.661v-66.587c.013-29.628 24.053-53.648 53.684-53.648a53.719 53.719 0 0134.349 12.426c-.434.237-1.191.655-1.694.96l-57.032 32.943a9.272 9.272 0 00-4.687 8.057v.053l-.04 80.376zm13.095-28.233l31.012-17.912 31.012 17.9v35.812l-31.012 17.901-31.012-17.901v-35.8z" })] }), y1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#0277BD", d: "M41,5H7l3,34l14,4l14-4L41,5L41,5z" }), /* @__PURE__ */ e("path", { fill: "#039BE5", d: "M24 8L24 39.9 35.2 36.7 37.7 8z" }), /* @__PURE__ */ e("path", { fill: "#FFF", d: "M33.1 13L24 13 24 17 28.9 17 28.6 21 24 21 24 25 28.4 25 28.1 29.5 24 30.9 24 35.1 31.9 32.5 32.6 21 32.6 21z" }), /* @__PURE__ */ e("path", { fill: "#EEE", d: "M24,13v4h-8.9l-0.3-4H24z M19.4,21l0.2,4H24v-4H19.4z M19.8,27h-4l0.3,5.5l7.9,2.6v-4.2l-4.1-1.4L19.8,27z" })] }), M1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#536dfe", d: "M39.248,10.177c-2.804-1.287-5.812-2.235-8.956-2.778c-0.057-0.01-0.114,0.016-0.144,0.068 c-0.387,0.688-0.815,1.585-1.115,2.291c-3.382-0.506-6.747-0.506-10.059,0c-0.3-0.721-0.744-1.603-1.133-2.291 c-0.03-0.051-0.087-0.077-0.144-0.068c-3.143,0.541-6.15,1.489-8.956,2.778c-0.024,0.01-0.045,0.028-0.059,0.051 c-5.704,8.522-7.267,16.835-6.5,25.044c0.003,0.04,0.026,0.079,0.057,0.103c3.763,2.764,7.409,4.442,10.987,5.554 c0.057,0.017,0.118-0.003,0.154-0.051c0.846-1.156,1.601-2.374,2.248-3.656c0.038-0.075,0.002-0.164-0.076-0.194 c-1.197-0.454-2.336-1.007-3.432-1.636c-0.087-0.051-0.094-0.175-0.014-0.234c0.231-0.173,0.461-0.353,0.682-0.534 c0.04-0.033,0.095-0.04,0.142-0.019c7.201,3.288,14.997,3.288,22.113,0c0.047-0.023,0.102-0.016,0.144,0.017 c0.22,0.182,0.451,0.363,0.683,0.536c0.08,0.059,0.075,0.183-0.012,0.234c-1.096,0.641-2.236,1.182-3.434,1.634 c-0.078,0.03-0.113,0.12-0.075,0.196c0.661,1.28,1.415,2.498,2.246,3.654c0.035,0.049,0.097,0.07,0.154,0.052 c3.595-1.112,7.241-2.79,11.004-5.554c0.033-0.024,0.054-0.061,0.057-0.101c0.917-9.491-1.537-17.735-6.505-25.044 C39.293,10.205,39.272,10.187,39.248,10.177z M16.703,30.273c-2.168,0-3.954-1.99-3.954-4.435s1.752-4.435,3.954-4.435 c2.22,0,3.989,2.008,3.954,4.435C20.658,28.282,18.906,30.273,16.703,30.273z M31.324,30.273c-2.168,0-3.954-1.99-3.954-4.435 s1.752-4.435,3.954-4.435c2.22,0,3.989,2.008,3.954,4.435C35.278,28.282,33.544,30.273,31.324,30.273z" })] }), z1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#e64a19", d: "M26,17h-8c-3.866,0-7-3.134-7-7v0c0-3.866,3.134-7,7-7h8V17z" }), /* @__PURE__ */ e("path", { fill: "#7c4dff", d: "M25,31h-7c-3.866,0-7-3.134-7-7v0c0-3.866,3.134-7,7-7h7V31z" }), /* @__PURE__ */ e("path", { fill: "#66bb6a", d: "M18,45L18,45c-3.866,0-7-3.134-7-7v0c0-3.866,3.134-7,7-7h7v7C25,41.866,21.866,45,18,45z" }), /* @__PURE__ */ e("path", { fill: "#ff7043", d: "M32,17h-7V3h7c3.866,0,7,3.134,7,7v0C39,13.866,35.866,17,32,17z" }), /* @__PURE__ */ e("circle", { cx: "32", cy: "24", r: "7", fill: "#29b6f6" })] }), F1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#ff8f00", d: "M8,37L23.234,8.436c0.321-0.602,1.189-0.591,1.494,0.02L30,19L8,37z" }), /* @__PURE__ */ e("path", { fill: "#ffa000", d: "M8,36.992l5.546-34.199c0.145-0.895,1.347-1.089,1.767-0.285L26,22.992L8,36.992z" }), /* @__PURE__ */ e("path", { fill: "#ff6f00", d: "M8.008 36.986L8.208 36.829 25.737 22.488 20.793 13.012z" }), /* @__PURE__ */ e("path", { fill: "#ffc400", d: "M8,37l26.666-25.713c0.559-0.539,1.492-0.221,1.606,0.547L40,37l-15,8.743 c-0.609,0.342-1.352,0.342-1.961,0L8,37z" })] }), A1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#F4511E", d: "M42.2,22.1L25.9,5.8C25.4,5.3,24.7,5,24,5c0,0,0,0,0,0c-0.7,0-1.4,0.3-1.9,0.8l-3.5,3.5l4.1,4.1c0.4-0.2,0.8-0.3,1.3-0.3c1.7,0,3,1.3,3,3c0,0.5-0.1,0.9-0.3,1.3l4,4c0.4-0.2,0.8-0.3,1.3-0.3c1.7,0,3,1.3,3,3s-1.3,3-3,3c-1.7,0-3-1.3-3-3c0-0.5,0.1-0.9,0.3-1.3l-4-4c-0.1,0-0.2,0.1-0.3,0.1v10.4c1.2,0.4,2,1.5,2,2.8c0,1.7-1.3,3-3,3s-3-1.3-3-3c0-1.3,0.8-2.4,2-2.8V18.8c-1.2-0.4-2-1.5-2-2.8c0-0.5,0.1-0.9,0.3-1.3l-4.1-4.1L5.8,22.1C5.3,22.6,5,23.3,5,24c0,0.7,0.3,1.4,0.8,1.9l16.3,16.3c0,0,0,0,0,0c0.5,0.5,1.2,0.8,1.9,0.8s1.4-0.3,1.9-0.8l16.3-16.3c0.5-0.5,0.8-1.2,0.8-1.9C43,23.3,42.7,22.6,42.2,22.1z" })] }), N1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 64 64", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { d: "M32 6C17.641 6 6 17.641 6 32c0 12.277 8.512 22.56 19.955 25.286-.592-.141-1.179-.299-1.755-.479V50.85c0 0-.975.325-2.275.325-3.637 0-5.148-3.245-5.525-4.875-.229-.993-.827-1.934-1.469-2.509-.767-.684-1.126-.686-1.131-.92-.01-.491.658-.471.975-.471 1.625 0 2.857 1.729 3.429 2.623 1.417 2.207 2.938 2.577 3.721 2.577.975 0 1.817-.146 2.397-.426.268-1.888 1.108-3.57 2.478-4.774-6.097-1.219-10.4-4.716-10.4-10.4 0-2.928 1.175-5.619 3.133-7.792C19.333 23.641 19 22.494 19 20.625c0-1.235.086-2.751.65-4.225 0 0 3.708.026 7.205 3.338C28.469 19.268 30.196 19 32 19s3.531.268 5.145.738c3.497-3.312 7.205-3.338 7.205-3.338.567 1.474.65 2.99.65 4.225 0 2.015-.268 3.19-.432 3.697C46.466 26.475 47.6 29.124 47.6 32c0 5.684-4.303 9.181-10.4 10.4 1.628 1.43 2.6 3.513 2.6 5.85v8.557c-.576.181-1.162.338-1.755.479C49.488 54.56 58 44.277 58 32 58 17.641 46.359 6 32 6zM33.813 57.93C33.214 57.972 32.61 58 32 58 32.61 58 33.213 57.971 33.813 57.93zM37.786 57.346c-1.164.265-2.357.451-3.575.554C35.429 57.797 36.622 57.61 37.786 57.346zM32 58c-.61 0-1.214-.028-1.813-.07C30.787 57.971 31.39 58 32 58zM29.788 57.9c-1.217-.103-2.411-.289-3.574-.554C27.378 57.61 28.571 57.797 29.788 57.9z" })] }), S1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#4caf50", d: "M45,16.2l-5,2.75l-5,4.75L35,40h7c1.657,0,3-1.343,3-3V16.2z" }), /* @__PURE__ */ e("path", { fill: "#1e88e5", d: "M3,16.2l3.614,1.71L13,23.7V40H6c-1.657,0-3-1.343-3-3V16.2z" }), /* @__PURE__ */ e("polygon", { fill: "#e53935", points: "35,11.2 24,19.45 13,11.2 12,17 13,23.7 24,31.95 35,23.7 36,17" }), /* @__PURE__ */ e("path", { fill: "#c62828", d: "M3,12.298V16.2l10,7.5V11.2L9.876,8.859C9.132,8.301,8.228,8,7.298,8h0C4.924,8,3,9.924,3,12.298z" }), /* @__PURE__ */ e("path", { fill: "#fbc02d", d: "M45,12.298V16.2l-10,7.5V11.2l3.124-2.341C38.868,8.301,39.772,8,40.702,8h0 C43.076,8,45,9.924,45,12.298z" })] }), _1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ N("radialGradient", { id: "yOrnnhliCrdS2gy~4tD8ma", cx: "19.38", cy: "42.035", r: "44.899", gradientUnits: "userSpaceOnUse", children: [
|
451
|
+
/* @__PURE__ */ e("stop", { offset: "0", stopColor: "#fd5" }),
|
452
|
+
/* @__PURE__ */ e("stop", { offset: ".328", stopColor: "#ff543f" }),
|
453
|
+
/* @__PURE__ */ e("stop", { offset: ".348", stopColor: "#fc5245" }),
|
454
|
+
/* @__PURE__ */ e("stop", { offset: ".504", stopColor: "#e64771" }),
|
455
|
+
/* @__PURE__ */ e("stop", { offset: ".643", stopColor: "#d53e91" }),
|
456
|
+
/* @__PURE__ */ e("stop", { offset: ".761", stopColor: "#cc39a4" }),
|
457
|
+
/* @__PURE__ */ e("stop", { offset: ".841", stopColor: "#c837ab" })
|
458
|
+
] }), /* @__PURE__ */ e("path", { fill: "url(#yOrnnhliCrdS2gy~4tD8ma)", d: "M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" }), /* @__PURE__ */ N("radialGradient", { id: "yOrnnhliCrdS2gy~4tD8mb", cx: "11.786", cy: "5.54", r: "29.813", gradientTransform: "matrix(1 0 0 .6663 0 1.849)", gradientUnits: "userSpaceOnUse", children: [
|
459
|
+
/* @__PURE__ */ e("stop", { offset: "0", stopColor: "#4168c9" }),
|
460
|
+
/* @__PURE__ */ e("stop", { offset: ".999", stopColor: "#4168c9", stopOpacity: "0" })
|
461
|
+
] }), /* @__PURE__ */ e("path", { fill: "url(#yOrnnhliCrdS2gy~4tD8mb)", d: "M34.017,41.99l-20,0.019c-4.4,0.004-8.003-3.592-8.008-7.992l-0.019-20 c-0.004-4.4,3.592-8.003,7.992-8.008l20-0.019c4.4-0.004,8.003,3.592,8.008,7.992l0.019,20 C42.014,38.383,38.417,41.986,34.017,41.99z" }), /* @__PURE__ */ e("path", { fill: "#fff", d: "M24,31c-3.859,0-7-3.14-7-7s3.141-7,7-7s7,3.14,7,7S27.859,31,24,31z M24,19c-2.757,0-5,2.243-5,5 s2.243,5,5,5s5-2.243,5-5S26.757,19,24,19z" }), /* @__PURE__ */ e("circle", { cx: "31.5", cy: "16.5", r: "1.5", fill: "#fff" }), /* @__PURE__ */ e("path", { fill: "#fff", d: "M30,37H18c-3.859,0-7-3.14-7-7V18c0-3.86,3.141-7,7-7h12c3.859,0,7,3.14,7,7v12 C37,33.86,33.859,37,30,37z M18,13c-2.757,0-5,2.243-5,5v12c0,2.757,2.243,5,5,5h12c2.757,0,5-2.243,5-5V18c0-2.757-2.243-5-5-5H18z" })] }), V1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#ffd600", d: "M6,42V6h36v36H6z" }), /* @__PURE__ */ e("path", { fill: "#000001", d: "M29.538 32.947c.692 1.124 1.444 2.201 3.037 2.201 1.338 0 2.04-.665 2.04-1.585 0-1.101-.726-1.492-2.198-2.133l-.807-.344c-2.329-.988-3.878-2.226-3.878-4.841 0-2.41 1.845-4.244 4.728-4.244 2.053 0 3.528.711 4.592 2.573l-2.514 1.607c-.553-.988-1.151-1.377-2.078-1.377-.946 0-1.545.597-1.545 1.377 0 .964.6 1.354 1.985 1.951l.807.344C36.452 29.645 38 30.839 38 33.523 38 36.415 35.716 38 32.65 38c-2.999 0-4.702-1.505-5.65-3.368L29.538 32.947zM17.952 33.029c.506.906 1.275 1.603 2.381 1.603 1.058 0 1.667-.418 1.667-2.043V22h3.333v11.101c0 3.367-1.953 4.899-4.805 4.899-2.577 0-4.437-1.746-5.195-3.368L17.952 33.029z" })] }), I1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#0078d4", d: "M42,37c0,2.762-2.238,5-5,5H11c-2.761,0-5-2.238-5-5V11c0-2.762,2.239-5,5-5h26c2.762,0,5,2.238,5,5 V37z" }), /* @__PURE__ */ e("path", { d: "M30,37V26.901c0-1.689-0.819-2.698-2.192-2.698c-0.815,0-1.414,0.459-1.779,1.364 c-0.017,0.064-0.041,0.325-0.031,1.114L26,37h-7V18h7v1.061C27.022,18.356,28.275,18,29.738,18c4.547,0,7.261,3.093,7.261,8.274 L37,37H30z M11,37V18h3.457C12.454,18,11,16.528,11,14.499C11,12.472,12.478,11,14.514,11c2.012,0,3.445,1.431,3.486,3.479 C18,16.523,16.521,18,14.485,18H18v19H11z", opacity: ".05" }), /* @__PURE__ */ e("path", { d: "M30.5,36.5v-9.599c0-1.973-1.031-3.198-2.692-3.198c-1.295,0-1.935,0.912-2.243,1.677 c-0.082,0.199-0.071,0.989-0.067,1.326L25.5,36.5h-6v-18h6v1.638c0.795-0.823,2.075-1.638,4.238-1.638 c4.233,0,6.761,2.906,6.761,7.774L36.5,36.5H30.5z M11.5,36.5v-18h6v18H11.5z M14.457,17.5c-1.713,0-2.957-1.262-2.957-3.001 c0-1.738,1.268-2.999,3.014-2.999c1.724,0,2.951,1.229,2.986,2.989c0,1.749-1.268,3.011-3.015,3.011H14.457z", opacity: ".07" }), /* @__PURE__ */ e("path", { fill: "#fff", d: "M12,19h5v17h-5V19z M14.485,17h-0.028C12.965,17,12,15.888,12,14.499C12,13.08,12.995,12,14.514,12 c1.521,0,2.458,1.08,2.486,2.499C17,15.887,16.035,17,14.485,17z M36,36h-5v-9.099c0-2.198-1.225-3.698-3.192-3.698 c-1.501,0-2.313,1.012-2.707,1.99C24.957,25.543,25,26.511,25,27v9h-5V19h5v2.616C25.721,20.5,26.85,19,29.738,19 c3.578,0,6.261,2.25,6.261,7.274L36,36L36,36z" })] }), k1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#5d4037", d: "M42,17.3C42,37.8,24,44,24,44S6,37.8,6,17.3c0-2.5,0.2-4.6,0.4-6.3c0.3-2.5,2-4.5,4.4-5.1 C13.9,5,18.8,4,24,4s10.1,1,13.3,1.9c2.4,0.6,4.1,2.7,4.4,5.1C41.8,12.7,42,14.9,42,17.3z" }), /* @__PURE__ */ e("path", { fill: "#4caf50", d: "M24,7c4.9,0,9.5,1,12.5,1.8c1.2,0.3,2,1.3,2.2,2.6c0.2,1.9,0.3,3.9,0.3,5.9c0,15.6-11.5,21.9-15,23.4 c-3.5-1.6-15-7.9-15-23.4c0-2,0.1-4,0.3-5.9c0.1-1.3,1-2.3,2.2-2.6C14.5,8,19.1,7,24,7 M24,4c-5.2,0-10.1,1-13.3,1.9 C8.4,6.5,6.6,8.6,6.4,11C6.2,12.7,6,14.9,6,17.3C6,37.8,24,44,24,44s18-6.2,18-26.7c0-2.5-0.2-4.6-0.4-6.3c-0.3-2.5-2-4.5-4.4-5.1 C34.1,5,29.2,4,24,4L24,4z" }), /* @__PURE__ */ e("path", { fill: "#dcedc8", d: "M23 28H25V36H23z" }), /* @__PURE__ */ e("path", { fill: "#4caf50", d: "M24,10c0,0-6,5-6,13c0,5.2,3.3,8.5,5,10l1-3l1,3c1.7-1.5,5-4.8,5-10C30,15,24,10,24,10z" }), /* @__PURE__ */ e("path", { fill: "#81c784", d: "M24,10c0,0-6,5-6,13c0,5.2,3.3,8.5,5,10l1-3V10z" })] }), Z1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", baseProfile: "basic", ...t, children: [/* @__PURE__ */ N("linearGradient", { id: "NRNx2IPDe7PJlJvrxOKgWa", x1: "24", x2: "24", y1: "43.734", y2: "4.266", gradientUnits: "userSpaceOnUse", children: [
|
462
|
+
/* @__PURE__ */ e("stop", { offset: "0", stopColor: "#0a070a" }),
|
463
|
+
/* @__PURE__ */ e("stop", { offset: ".465", stopColor: "#2b2b2b" }),
|
464
|
+
/* @__PURE__ */ e("stop", { offset: "1", stopColor: "#4b4b4b" })
|
465
|
+
] }), /* @__PURE__ */ e("circle", { cx: "24", cy: "24", r: "19.734", fill: "url(#NRNx2IPDe7PJlJvrxOKgWa)" }), /* @__PURE__ */ e("rect", { width: "3.023", height: "15.996", x: "15.992", y: "16.027", fill: "#fff" }), /* @__PURE__ */ N("linearGradient", { id: "NRNx2IPDe7PJlJvrxOKgWb", x1: "30.512", x2: "30.512", y1: "33.021", y2: "18.431", gradientUnits: "userSpaceOnUse", children: [
|
466
|
+
/* @__PURE__ */ e("stop", { offset: ".377", stopColor: "#fff", stopOpacity: "0" }),
|
467
|
+
/* @__PURE__ */ e("stop", { offset: ".666", stopColor: "#fff", stopOpacity: ".3" }),
|
468
|
+
/* @__PURE__ */ e("stop", { offset: ".988", stopColor: "#fff" })
|
469
|
+
] }), /* @__PURE__ */ e("rect", { width: "2.953", height: "14.59", x: "29.035", y: "15.957", fill: "url(#NRNx2IPDe7PJlJvrxOKgWb)" }), /* @__PURE__ */ N("linearGradient", { id: "NRNx2IPDe7PJlJvrxOKgWc", x1: "22.102", x2: "36.661", y1: "21.443", y2: "40.529", gradientUnits: "userSpaceOnUse", children: [
|
470
|
+
/* @__PURE__ */ e("stop", { offset: ".296", stopColor: "#fff" }),
|
471
|
+
/* @__PURE__ */ e("stop", { offset: ".521", stopColor: "#fff", stopOpacity: ".5" }),
|
472
|
+
/* @__PURE__ */ e("stop", { offset: ".838", stopColor: "#fff", stopOpacity: "0" })
|
473
|
+
] }), /* @__PURE__ */ e("polygon", { fill: "url(#NRNx2IPDe7PJlJvrxOKgWc)", points: "36.781,38.094 34.168,39.09 15.992,16.027 19.508,16.027" })] }), O1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 50 50", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { d: "M 31.494141 5.1503906 L 5.9277344 7.0019531 A 1.0001 1.0001 0 0 0 5.9042969 7.0039062 A 1.0001 1.0001 0 0 0 5.8652344 7.0097656 A 1.0001 1.0001 0 0 0 5.7929688 7.0214844 A 1.0001 1.0001 0 0 0 5.7636719 7.0292969 A 1.0001 1.0001 0 0 0 5.7304688 7.0371094 A 1.0001 1.0001 0 0 0 5.6582031 7.0605469 A 1.0001 1.0001 0 0 0 5.6113281 7.0800781 A 1.0001 1.0001 0 0 0 5.5839844 7.0917969 A 1.0001 1.0001 0 0 0 5.4335938 7.1777344 A 1.0001 1.0001 0 0 0 5.4082031 7.1933594 A 1.0001 1.0001 0 0 0 5.3476562 7.2421875 A 1.0001 1.0001 0 0 0 5.3359375 7.2539062 A 1.0001 1.0001 0 0 0 5.2871094 7.2988281 A 1.0001 1.0001 0 0 0 5.2578125 7.3320312 A 1.0001 1.0001 0 0 0 5.2148438 7.3828125 A 1.0001 1.0001 0 0 0 5.1992188 7.4023438 A 1.0001 1.0001 0 0 0 5.15625 7.4648438 A 1.0001 1.0001 0 0 0 5.1445312 7.484375 A 1.0001 1.0001 0 0 0 5.1074219 7.5488281 A 1.0001 1.0001 0 0 0 5.09375 7.5761719 A 1.0001 1.0001 0 0 0 5.0644531 7.6484375 A 1.0001 1.0001 0 0 0 5.0605469 7.65625 A 1.0001 1.0001 0 0 0 5.015625 7.8300781 A 1.0001 1.0001 0 0 0 5.0097656 7.8613281 A 1.0001 1.0001 0 0 0 5.0019531 7.9414062 A 1.0001 1.0001 0 0 0 5.0019531 7.9453125 A 1.0001 1.0001 0 0 0 5 8 L 5 33.738281 C 5 34.76391 5.3151542 35.766862 5.9042969 36.607422 A 1.0001 1.0001 0 0 0 5.953125 36.671875 L 12.126953 44.101562 A 1.0001 1.0001 0 0 0 12.359375 44.382812 L 12.75 44.851562 A 1.0006635 1.0006635 0 0 0 12.917969 45.011719 C 13.50508 45.581386 14.317167 45.917563 15.193359 45.861328 L 42.193359 44.119141 C 43.762433 44.017718 45 42.697027 45 41.125 L 45 15.132812 C 45 14.209354 44.565523 13.390672 43.904297 12.839844 A 1.0008168 1.0008168 0 0 0 43.748047 12.695312 L 43.263672 12.337891 A 1.0001 1.0001 0 0 0 43.0625 12.189453 L 34.824219 6.1132812 C 33.865071 5.4054876 32.682705 5.0641541 31.494141 5.1503906 z M 31.638672 7.1445312 C 32.352108 7.0927682 33.061867 7.29845 33.636719 7.7226562 L 39.767578 12.246094 L 14.742188 13.884766 C 13.880567 13.941006 13.037689 13.622196 12.425781 13.011719 L 12.423828 13.011719 L 8.2539062 8.8398438 L 31.638672 7.1445312 z M 7 10.414062 L 11.011719 14.425781 L 12 15.414062 L 12 40.818359 L 7.5390625 35.449219 C 7.1899317 34.947488 7 34.351269 7 33.738281 L 7 10.414062 z M 41.935547 14.134766 C 42.526748 14.096822 43 14.54116 43 15.132812 L 43 41.125 C 43 41.660973 42.59938 42.08847 42.064453 42.123047 L 15.064453 43.865234 C 14.770856 43.884078 14.506356 43.783483 14.314453 43.605469 A 1.0006635 1.0006635 0 0 0 14.3125 43.603516 C 14.3125 43.603516 14.310547 43.601562 14.310547 43.601562 C 14.306465 43.597733 14.304796 43.59179 14.300781 43.587891 A 1.0006635 1.0006635 0 0 0 14.289062 43.572266 C 14.112238 43.393435 14 43.149431 14 42.867188 L 14 16.875 C 14 16.337536 14.39999 15.911571 14.935547 15.876953 L 41.935547 14.134766 z M 38.496094 19 L 33.421875 19.28125 C 32.647875 19.36125 31.746094 19.938 31.746094 20.875 L 33.996094 21.0625 L 33.996094 31.753906 L 26.214844 19.751953 L 20.382812 20.080078 C 19.291812 20.160078 18.994141 20.970953 18.994141 22.001953 L 21.244141 22.001953 L 21.244141 37.566406 C 21.244141 37.566406 20.191844 37.850406 19.839844 37.941406 C 19.091844 38.134406 18.994141 38.784906 18.994141 39.253906 C 18.994141 39.253906 22.746656 39.065547 24.472656 38.935547 C 26.431656 38.785547 26.496094 37.472656 26.496094 37.472656 L 24.246094 37.003906 L 24.246094 25.470703 C 24.246094 25.470703 29.965844 34.660328 31.714844 37.361328 C 32.537844 38.630328 33.152375 38.878906 34.234375 38.878906 C 35.122375 38.878906 35.962141 38.616594 36.994141 38.058594 L 36.994141 20.697266 C 36.994141 20.697266 37.184203 20.687141 37.783203 20.494141 C 38.466203 20.273141 38.496094 19.656 38.496094 19 z" })] }), E1 = (t) => L(x, { viewBox: "0 0 512 512", xmlns: "http://www.w3.org/2000/svg", fillRule: "evenodd", clipRule: "evenodd", strokeLinejoin: "round", strokeMiterlimit: "2", ...t, children: [/* @__PURE__ */ e("path", { d: "M474.123 209.81c11.525-34.577 7.569-72.423-10.838-103.904-27.696-48.168-83.433-72.94-137.794-61.414a127.14 127.14 0 00-95.475-42.49c-55.564 0-104.936 35.781-122.139 88.593-35.781 7.397-66.574 29.76-84.637 61.414-27.868 48.167-21.503 108.72 15.826 150.007-11.525 34.578-7.569 72.424 10.838 103.733 27.696 48.34 83.433 73.111 137.966 61.585 24.084 27.18 58.833 42.835 95.303 42.663 55.564 0 104.936-35.782 122.139-88.594 35.782-7.397 66.574-29.76 84.465-61.413 28.04-48.168 21.676-108.722-15.654-150.008v-.172zm-39.567-87.218c11.01 19.267 15.139 41.803 11.354 63.65-.688-.516-2.064-1.204-2.924-1.72l-101.152-58.49a16.965 16.965 0 00-16.687 0L206.621 194.5v-50.232l97.883-56.597c45.587-26.32 103.732-10.666 130.052 34.921zm-227.935 104.42l49.888-28.9 49.887 28.9v57.63l-49.887 28.9-49.888-28.9v-57.63zm23.223-191.81c22.364 0 43.867 7.742 61.07 22.02-.688.344-2.064 1.204-3.097 1.72L186.666 117.26c-5.161 2.925-8.258 8.43-8.258 14.45v136.934l-43.523-25.116V130.333c0-52.64 42.491-95.13 95.131-95.302l-.172.172zM52.14 168.697c11.182-19.268 28.557-34.062 49.544-41.803V247.14c0 6.02 3.097 11.354 8.258 14.45l118.354 68.295-43.695 25.288-97.711-56.425c-45.415-26.32-61.07-84.465-34.75-130.052zm26.665 220.71c-11.182-19.095-15.139-41.802-11.354-63.65.688.516 2.064 1.204 2.924 1.72l101.152 58.49a16.965 16.965 0 0016.687 0l118.354-68.467v50.232l-97.883 56.425c-45.587 26.148-103.732 10.665-130.052-34.75h.172zm204.54 87.39c-22.192 0-43.867-7.741-60.898-22.02a62.439 62.439 0 003.097-1.72l101.152-58.317c5.16-2.924 8.429-8.43 8.257-14.45V243.527l43.523 25.116v113.022c0 52.64-42.663 95.303-95.131 95.303v-.172zM461.22 343.303c-11.182 19.267-28.729 34.061-49.544 41.63V264.687c0-6.021-3.097-11.526-8.257-14.45L284.893 181.77l43.523-25.116 97.883 56.424c45.587 26.32 61.07 84.466 34.75 130.053l.172.172z", fillRule: "nonzero" })] }), B1 = (t) => L(x, { width: "144px", height: "144px", viewBox: "0 0 256 256", version: "1.1", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", preserveAspectRatio: "xMidYMid", fill: "#000000", ...t, children: [/* @__PURE__ */ e("g", { id: "SVGRepo_bgCarrier", strokeWidth: "0" }), /* @__PURE__ */ e("g", { id: "SVGRepo_tracerCarrier", strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e("g", { id: "SVGRepo_iconCarrier", children: /* @__PURE__ */ N("g", { children: [
|
474
|
+
/* @__PURE__ */ e("path", { d: "M254.953118,144.253071 C263.911504,74.1217108 214.38443,10.0052669 144.381048,1.04688158 C74.3776647,-7.9115038 10.0052669,41.6155696 1.04688158,111.618952 C-7.9115038,181.622335 41.6155696,245.866756 111.618952,254.953118 C181.750312,263.911504 245.866756,214.38443 254.953118,144.253071 Z", fill: "#FF6C37" }),
|
475
|
+
/* @__PURE__ */ N("g", { transform: "translate(50.181225, 45.198924)", children: [
|
476
|
+
/* @__PURE__ */ e("path", { d: "M124.018448,36.9853339 L70.012182,90.9916 L54.7829269,75.7623449 C107.893354,22.6519173 113.140409,27.2590869 124.018448,36.9853339 L124.018448,36.9853339 Z", fill: "#FFFFFF" }),
|
477
|
+
/* @__PURE__ */ e("path", { d: "M70.012182,92.2713693 C69.6282512,92.2713693 69.3722974,92.1433924 69.1163435,91.8874385 L53.7591114,76.6581834 C53.2472037,76.1462757 53.2472037,75.3784141 53.7591114,74.8665063 C107.765378,20.8602402 113.396363,25.9793176 124.78631,36.2174723 C125.042264,36.4734262 125.170241,36.72938 125.170241,37.1133108 C125.170241,37.4972416 125.042264,37.7531955 124.78631,38.0091494 L70.7800436,91.8874385 C70.6520667,92.1433924 70.2681359,92.2713693 70.012182,92.2713693 Z M56.574604,75.7623449 L70.012182,89.1999229 L122.098794,37.1133108 C112.628501,28.6668332 106.229654,26.1072945 56.574604,75.7623449 L56.574604,75.7623449 Z", fill: "#FF6C37" }),
|
478
|
+
/* @__PURE__ */ e("path", { d: "M85.497391,106.476809 L70.7800436,91.7594616 L124.78631,37.7531955 C139.247703,52.342566 117.619601,76.0182987 85.497391,106.476809 Z", fill: "#FFFFFF" }),
|
479
|
+
/* @__PURE__ */ e("path", { d: "M85.497391,107.756578 C85.1134602,107.756578 84.8575064,107.628601 84.6015525,107.372648 L69.8842051,92.6553001 C69.6282512,92.3993463 69.6282512,92.1433924 69.6282512,91.7594616 C69.6282512,91.3755308 69.7562282,91.1195769 70.012182,90.8636231 L124.018448,36.857357 C124.530356,36.3454492 125.298217,36.3454492 125.810125,36.857357 C129.137525,39.9288034 130.929203,44.2800191 130.801226,48.7592118 C130.545272,62.9646515 114.420178,81.0093992 86.5212065,107.372648 C86.1372757,107.628601 85.7533449,107.756578 85.497391,107.756578 L85.497391,107.756578 Z M72.5717207,91.7594616 C80.7622445,100.077962 84.2176217,103.405363 85.497391,104.685132 C106.997516,84.2088225 127.857756,63.2206053 127.985733,48.7592118 C128.11371,45.4318115 126.833941,42.1044113 124.658333,39.5448726 L72.5717207,91.7594616 Z", fill: "#FF6C37" }),
|
480
|
+
/* @__PURE__ */ e("path", { d: "M55.0388808,76.1462757 L65.9169201,87.024315 C66.172874,87.2802689 66.172874,87.5362228 65.9169201,87.7921767 C65.7889432,87.9201536 65.7889432,87.9201536 65.6609663,87.9201536 L43.1370259,92.7832771 C41.9852335,92.911254 40.961418,92.1433924 40.7054642,90.9916 C40.5774872,90.3517153 40.8334411,89.7118307 41.2173719,89.3278999 L54.2710192,76.2742526 C54.526973,76.0182987 54.9109038,75.8903218 55.0388808,76.1462757 Z", fill: "#FFFFFF" }),
|
481
|
+
/* @__PURE__ */ e("path", { d: "M42.7530951,94.0630464 C40.8334411,94.0630464 39.4256948,92.5273232 39.4256948,90.6076692 C39.4256948,89.7118307 39.8096256,88.8159921 40.4495103,88.1761075 L53.5031576,75.1224602 C54.2710192,74.4825755 55.2948346,74.4825755 56.0626962,75.1224602 L66.9407356,86.0004996 C67.7085972,86.6403842 67.7085972,87.7921767 66.9407356,88.5600383 C66.6847817,88.8159921 66.4288279,88.9439691 66.0448971,89.071946 L43.5209567,93.9350695 C43.2650028,93.9350695 43.009049,94.0630464 42.7530951,94.0630464 L42.7530951,94.0630464 Z M54.65495,77.5540219 L42.1132104,90.0957615 C41.8572566,90.3517153 41.7292796,90.7356461 41.9852335,91.1195769 C42.1132104,91.5035077 42.4971412,91.6314847 42.881072,91.5035077 L63.9972661,86.8963381 L54.65495,77.5540219 Z", fill: "#FF6C37" }),
|
482
|
+
/* @__PURE__ */ e("path", { d: "M152.557304,7.03873136 C144.366781,-0.895838537 131.185156,-0.639884669 123.250587,7.67861603 C115.316017,15.9971167 115.57197,29.050764 123.890471,36.9853339 C130.673249,43.5121575 140.911403,44.6639499 148.97395,39.8008264 L134.38458,25.211456 L152.557304,7.03873136 Z", fill: "#FFFFFF" }),
|
483
|
+
/* @__PURE__ */ e("path", { d: "M138.223888,44.0240653 C126.066079,44.0240653 116.211855,34.1698413 116.211855,22.0120326 C116.211855,9.85422391 126.066079,-1.81866161e-14 138.223888,-1.81866161e-14 C143.854873,-1.81866161e-14 149.357881,2.17560788 153.453143,6.14289283 C153.709097,6.39884669 153.837074,6.65480056 153.837074,7.03873136 C153.837074,7.42266217 153.709097,7.67861603 153.453143,7.9345699 L136.176257,25.211456 L149.741812,38.777011 C150.25372,39.2889187 150.25372,40.0567803 149.741812,40.568688 C149.613835,40.696665 149.613835,40.696665 149.485858,40.8246419 C146.158458,42.8722729 142.191173,44.0240653 138.223888,44.0240653 Z M138.223888,2.68751561 C127.473825,2.68751561 118.771394,11.3899471 118.899371,22.1400096 C118.899371,32.890072 127.601802,41.5925035 138.351865,41.4645266 C141.295334,41.4645266 144.238804,40.8246419 146.926319,39.4168956 L133.488741,26.1072945 C133.232787,25.8513406 133.10481,25.5953868 133.10481,25.211456 C133.10481,24.8275252 133.232787,24.5715713 133.488741,24.3156174 L150.63765,7.1667083 C147.182273,4.22323882 142.831057,2.68751561 138.223888,2.68751561 L138.223888,2.68751561 Z", fill: "#FF6C37" }),
|
484
|
+
/* @__PURE__ */ e("path", { d: "M152.941235,7.42266217 L152.685281,7.1667083 L134.38458,25.211456 L148.845973,39.6728495 C150.25372,38.777011 151.661466,37.7531955 152.813258,36.6014031 C161.003782,28.5388563 161.003782,15.485209 152.941235,7.42266217 L152.941235,7.42266217 Z", fill: "#FFFFFF" }),
|
485
|
+
/* @__PURE__ */ e("path", { d: "M148.97395,41.0805958 C148.590019,41.0805958 148.334066,40.9526188 148.078112,40.696665 L133.488741,26.1072945 C133.232787,25.8513406 133.10481,25.5953868 133.10481,25.211456 C133.10481,24.8275252 133.232787,24.5715713 133.488741,24.3156174 L151.661466,6.14289283 C152.173374,5.63098509 152.941235,5.63098509 153.453143,6.14289283 L153.837074,6.39884669 C162.411528,14.9733013 162.411528,28.7948101 153.965051,37.4972416 C152.685281,38.777011 151.277535,39.9288034 149.741812,40.8246419 C149.357881,40.9526188 149.101927,41.0805958 148.97395,41.0805958 L148.97395,41.0805958 Z M136.176257,25.211456 L149.101927,38.1371263 C150.125743,37.4972416 151.149558,36.6014031 151.91742,35.8335415 C159.212105,28.5388563 159.596036,16.6370014 152.557304,8.95838537 L136.176257,25.211456 Z", fill: "#FF6C37" }),
|
486
|
+
/* @__PURE__ */ e("path", { d: "M126.194056,39.2889187 C123.12261,36.2174723 118.131509,36.2174723 115.060063,39.2889187 L66.8127587,87.5362228 L74.8753055,95.5987696 L125.938102,50.8068428 C129.265502,47.9913502 129.521456,43.0002498 126.705964,39.6728495 C126.45001,39.5448726 126.322033,39.4168956 126.194056,39.2889187 L126.194056,39.2889187 Z", fill: "#FFFFFF" }),
|
487
|
+
/* @__PURE__ */ e("path", { d: "M74.7473286,96.878539 C74.3633978,96.878539 74.1074439,96.750562 73.85149,96.4946082 L65.7889432,88.4320613 C65.2770355,87.9201536 65.2770355,87.152292 65.7889432,86.6403842 L114.036247,38.3930802 C117.619601,34.809726 123.378563,34.809726 126.961918,38.3930802 C130.545272,41.9764343 130.545272,47.7353963 126.961918,51.3187505 C126.833941,51.4467274 126.705964,51.5747044 126.577987,51.7026813 L75.5151902,96.4946082 C75.3872133,96.750562 75.1312594,96.878539 74.7473286,96.878539 L74.7473286,96.878539 Z M68.6044358,87.5362228 L74.8753055,93.8070925 L125.042264,49.7830273 C127.857756,47.4794425 128.11371,43.2562037 125.810125,40.4407111 C123.50654,37.6252186 119.283302,37.3692647 116.467809,39.6728495 C116.339832,39.8008264 116.211855,39.9288034 115.955901,40.0567803 L68.6044358,87.5362228 Z", fill: "#FF6C37" }),
|
488
|
+
/* @__PURE__ */ e("path", { d: "M29.8274248,142.438327 C29.3155171,142.694281 29.0595632,143.206189 29.1875401,143.718097 L31.363148,152.932436 C31.8750557,154.212205 31.1071941,155.747929 29.6994479,156.131859 C28.6756324,156.51579 27.52384,156.131859 26.8839553,155.363998 L12.8064926,141.414512 L58.7502118,95.4707927 L74.6193516,95.7267466 L85.3694141,106.476809 C82.8098754,108.652417 67.3246664,123.625718 29.8274248,142.438327 L29.8274248,142.438327 Z", fill: "#FFFFFF" }),
|
489
|
+
/* @__PURE__ */ e("path", { d: "M28.8036093,157.411629 C27.7797938,157.411629 26.7559784,157.027698 26.1160937,156.259836 L12.1666079,142.31035 C11.910654,142.054397 11.7826771,141.798443 11.7826771,141.414512 C11.7826771,141.030581 11.910654,140.774627 12.1666079,140.518673 L58.1103272,94.5749541 C58.366281,94.3190003 58.7502118,94.1910233 59.0061657,94.1910233 L74.8753055,94.4469772 C75.2592363,94.4469772 75.5151902,94.5749541 75.7711441,94.830908 L86.5212065,105.58097 C86.7771604,105.836924 86.9051373,106.220855 86.9051373,106.604786 C86.9051373,106.988717 86.7771604,107.244671 86.3932296,107.500624 L85.497391,108.268486 C71.931836,120.170341 53.5031576,132.072196 30.5952864,143.462143 L32.7708943,152.548505 C33.1548251,154.212205 32.3869635,156.003882 30.8512403,156.899721 C30.0833787,157.283652 29.443494,157.411629 28.8036093,157.411629 Z M14.7261466,141.414512 L27.9077708,154.468159 C28.2917016,155.108044 29.0595632,155.363998 29.6994479,154.980067 C30.3393325,154.596136 30.5952864,153.828275 30.2113556,153.18839 L28.0357477,143.974051 C27.7797938,142.822258 28.2917016,141.798443 29.3155171,141.286535 C51.9674343,129.896588 70.2681359,118.12271 83.705714,106.476809 L74.2354208,97.0065159 L59.5180734,96.750562 L14.7261466,141.414512 Z", fill: "#FF6C37" }),
|
490
|
+
/* @__PURE__ */ e("path", { d: "M1.9284532,152.420528 L12.9344695,141.414512 L29.3155171,157.795559 L3.20822254,156.003882 C2.05643013,155.875905 1.28856853,154.85209 1.41654546,153.700298 C1.41654546,153.18839 1.5445224,152.676482 1.9284532,152.420528 L1.9284532,152.420528 Z", fill: "#FFFFFF" }),
|
491
|
+
/* @__PURE__ */ e("path", { d: "M29.3155171,158.947352 L3.0802456,157.155675 C1.16059159,157.027698 -0.119177745,155.363998 0.00879918845,153.444344 C0.136776122,152.676482 0.39272999,151.908621 1.03261466,151.396713 L12.038631,140.390696 C12.5505387,139.878789 13.3184003,139.878789 13.830308,140.390696 L30.2113556,156.771744 C30.5952864,157.155675 30.7232633,157.667583 30.4673095,158.17949 C30.2113556,158.691398 29.8274248,158.947352 29.3155171,158.947352 L29.3155171,158.947352 Z M12.9344695,143.206189 L2.82429173,153.316367 C2.44036093,153.572321 2.44036093,154.212205 2.82429173,154.468159 C2.95226867,154.596136 3.0802456,154.724113 3.33619947,154.724113 L25.9881168,156.259836 L12.9344695,143.206189 Z", fill: "#FF6C37" }),
|
492
|
+
/* @__PURE__ */ e("path", { d: "M54.2710192,101.357732 C53.5031576,101.357732 52.9912498,100.717847 52.9912498,100.077962 C52.9912498,99.6940315 53.1192268,99.4380776 53.3751806,99.1821238 L65.7889432,86.7683612 C66.3008509,86.2564534 67.0687125,86.2564534 67.5806203,86.7683612 L75.6431671,94.830908 C76.0270979,95.2148388 76.1550749,95.5987696 76.0270979,96.1106774 C75.899121,96.4946082 75.5151902,96.878539 75.0032825,97.0065159 L54.526973,101.357732 C54.3989961,101.357732 54.2710192,101.357732 54.2710192,101.357732 L54.2710192,101.357732 Z M66.6847817,89.4558768 L58.2383041,97.9023544 L72.059813,94.9588849 L66.6847817,89.4558768 Z", fill: "#FF6C37" }),
|
493
|
+
/* @__PURE__ */ e("path", { d: "M74.6193516,95.7267466 L60.5418889,98.798193 C59.5180734,99.0541468 58.494258,98.4142622 58.2383041,97.3904467 C58.1103272,96.750562 58.2383041,96.1106774 58.7502118,95.5987696 L66.5568048,87.7921767 L74.6193516,95.7267466 Z", fill: "#FFFFFF" }),
|
494
|
+
/* @__PURE__ */ e("path", { d: "M60.2859351,100.077962 C58.494258,100.077962 57.0865117,98.670216 57.0865117,96.878539 C57.0865117,95.9827004 57.4704425,95.2148388 57.9823502,94.5749541 L65.7889432,86.7683612 C66.3008509,86.2564534 67.0687125,86.2564534 67.5806203,86.7683612 L75.6431671,94.830908 C76.0270979,95.2148388 76.1550749,95.5987696 76.0270979,96.1106774 C75.899121,96.4946082 75.5151902,96.878539 75.0032825,97.0065159 L60.9258197,100.077962 C60.6698659,100.077962 60.413912,100.077962 60.2859351,100.077962 L60.2859351,100.077962 Z M66.6847817,89.4558768 L59.7740273,96.3666312 C59.5180734,96.6225851 59.5180734,96.878539 59.6460504,97.1344928 C59.7740273,97.3904467 60.0299812,97.5184236 60.413912,97.5184236 L72.1877899,94.9588849 L66.6847817,89.4558768 Z", fill: "#FF6C37" }),
|
495
|
+
/* @__PURE__ */ e("path", { d: "M153.069212,19.7084478 C152.813258,18.9405862 151.91742,18.5566554 151.149558,18.8126093 C150.381697,19.0685632 149.997766,19.9644017 150.25372,20.7322633 C150.25372,20.8602402 150.381697,20.9882172 150.381697,21.1161941 C151.149558,22.6519173 150.893604,24.5715713 149.869789,25.9793176 C149.357881,26.6192023 149.485858,27.5150408 149.997766,28.0269485 C150.63765,28.5388563 151.533489,28.4108793 152.045397,27.7709947 C153.965051,25.3394329 154.348981,22.2679865 153.069212,19.7084478 L153.069212,19.7084478 Z", fill: "#FF6C37" })
|
496
|
+
] })
|
497
|
+
] }) })] }), R1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 50 50", width: "144px", height: "144px", clipRule: "evenodd", ...t, children: [/* @__PURE__ */ e("path", { d: "M 34.554688 3.984375 C 33.775003 3.9581582 32.958884 4.0940926 32.140625 4.359375 C 30.504109 4.889941 28.789203 5.9238848 27.029297 7.3554688 C 26.339589 7.9165071 25.643623 8.5578288 24.945312 9.2382812 C 24.262398 8.5751039 23.580733 7.9509974 22.90625 7.4023438 C 21.147758 5.9719089 19.4375 4.9375672 17.804688 4.4082031 C 16.171878 3.8788386 14.547223 3.8624356 13.212891 4.6328125 C 11.878558 5.4031893 11.080619 6.8173558 10.722656 8.4960938 C 10.364693 10.174832 10.404125 12.173992 10.763672 14.412109 C 10.888559 15.189511 11.066671 16.005078 11.269531 16.835938 C 10.507095 17.067004 9.7666767 17.309955 9.0800781 17.578125 C 7.0079817 18.387438 5.2934468 19.355663 4.0449219 20.507812 C 2.7963969 21.659962 1.9902344 23.058304 1.9902344 24.59375 C 1.9902344 26.129196 2.7963969 27.525585 4.0449219 28.677734 C 5.2934468 29.829884 7.0079817 30.800062 9.0800781 31.609375 C 9.8142516 31.896126 10.609118 32.154326 11.429688 32.398438 C 11.134531 33.501278 10.895394 34.571467 10.732422 35.585938 C 10.372587 37.825853 10.334588 39.825265 10.693359 41.507812 C 11.052134 43.19036 11.850478 44.612534 13.191406 45.386719 C 14.532336 46.160905 16.164264 46.141894 17.800781 45.611328 C 19.437297 45.080762 21.15025 44.048772 22.910156 42.617188 C 23.593512 42.061316 24.284757 41.427206 24.976562 40.753906 C 25.671996 41.431263 26.366006 42.068338 27.052734 42.626953 C 28.811227 44.057387 30.523438 45.089776 32.15625 45.619141 C 33.789061 46.148505 35.413715 46.164908 36.748047 45.394531 C 38.082379 44.624154 38.878366 43.209988 39.236328 41.53125 C 39.59429 39.852512 39.554857 37.855304 39.195312 35.617188 C 39.031899 34.599965 38.792614 33.526227 38.496094 32.419922 C 39.343769 32.169866 40.163744 31.904721 40.919922 31.609375 C 42.992018 30.800062 44.706553 29.829884 45.955078 28.677734 C 47.203603 27.525585 48.009766 26.129196 48.009766 24.59375 C 48.009766 23.058304 47.203603 21.659963 45.955078 20.507812 C 44.706553 19.355663 42.992018 18.387438 40.919922 17.578125 C 40.22347 17.306107 39.471688 17.059992 38.697266 16.826172 C 38.901775 15.990221 39.083345 15.168805 39.208984 14.386719 C 39.568819 12.146804 39.606825 10.145439 39.248047 8.4628906 C 38.889279 6.7803434 38.088976 5.3601244 36.748047 4.5859375 C 36.077582 4.1988452 35.334372 4.0105918 34.554688 3.984375 z M 34.462891 6.0195312 C 34.952154 6.03291 35.369535 6.1493386 35.726562 6.3554688 C 36.440618 6.7677287 36.968419 7.5700924 37.25 8.890625 C 37.531581 10.211156 37.521848 11.99533 37.189453 14.064453 C 37.075647 14.772878 36.910402 15.52369 36.722656 16.292969 C 34.677151 15.800695 32.435744 15.435401 30.046875 15.220703 C 28.847638 13.559329 27.615404 12.045781 26.373047 10.703125 C 27.030182 10.061662 27.683063 9.4617259 28.320312 8.9433594 C 29.946026 7.6209332 31.485126 6.7210962 32.769531 6.3046875 C 33.411734 6.0964824 33.973627 6.0061525 34.462891 6.0195312 z M 15.486328 6.0253906 C 15.978419 6.0116533 16.541491 6.1017415 17.185547 6.3105469 C 18.473657 6.7281576 20.015452 7.6275969 21.642578 8.9511719 C 22.267037 9.4591336 22.905298 10.047651 23.548828 10.673828 C 22.297283 12.027473 21.054862 13.55414 19.847656 15.230469 C 17.468889 15.449074 15.236606 15.81635 13.201172 16.310547 C 13.014826 15.545537 12.849558 14.798586 12.736328 14.09375 C 12.403642 12.02283 12.39534 10.238404 12.677734 8.9140625 C 12.960128 7.5897208 13.492238 6.7813032 14.212891 6.3652344 C 14.573216 6.1572002 14.994237 6.0391279 15.486328 6.0253906 z M 24.976562 12.142578 C 25.791172 13.029071 26.605956 13.99916 27.414062 15.042969 C 26.620033 15.009861 25.816288 14.990234 25 14.990234 C 24.167457 14.990234 23.34841 15.010498 22.539062 15.044922 C 23.347352 14.000306 24.16175 13.029737 24.976562 12.142578 z M 25 17.009766 C 26.359894 17.009766 27.685348 17.065647 28.974609 17.160156 C 29.86173 18.434311 30.728648 19.786055 31.554688 21.216797 C 32.280504 22.473948 32.937328 23.729163 33.535156 24.96875 C 32.931017 26.224782 32.263184 27.496972 31.527344 28.771484 C 30.879609 29.893393 30.20319 30.958949 29.515625 31.986328 C 28.059313 32.10805 26.550303 32.175781 25 32.175781 C 23.412375 32.175781 21.869462 32.104031 20.380859 31.976562 C 19.704742 30.963955 19.039735 29.91454 18.402344 28.810547 C 17.668186 27.538949 17.003577 26.269079 16.400391 25.015625 C 17.006106 23.755092 17.673701 22.47818 18.412109 21.199219 C 19.233818 19.775977 20.098207 18.432055 20.980469 17.164062 C 22.283609 17.067424 23.62445 17.009766 25 17.009766 z M 31.548828 17.410156 C 33.197299 17.615841 34.745083 17.901405 36.185547 18.244141 C 35.758129 19.645287 35.231654 21.108808 34.59375 22.619141 C 34.179567 21.820719 33.750599 21.019585 33.287109 20.216797 C 32.725422 19.243926 32.140408 18.316416 31.548828 17.410156 z M 18.34375 17.425781 C 17.764654 18.315097 17.194836 19.224578 16.644531 20.177734 C 16.175094 20.990823 15.737221 21.802736 15.318359 22.611328 C 14.68596 21.110075 14.162654 19.654877 13.738281 18.261719 C 15.168002 17.918363 16.706766 17.633813 18.34375 17.425781 z M 38.164062 18.775391 C 38.872944 18.989877 39.557566 19.21371 40.185547 19.458984 C 42.0957 20.205046 43.60665 21.088493 44.585938 21.992188 C 45.565224 22.895882 45.990234 23.757696 45.990234 24.59375 C 45.990234 25.429804 45.565225 26.291619 44.585938 27.195312 C 43.60665 28.099007 42.0957 28.982454 40.185547 29.728516 C 39.487698 30.001079 38.72096 30.248243 37.923828 30.482422 C 37.355199 28.723643 36.629408 26.888772 35.765625 25.015625 C 36.758785 22.865083 37.561088 20.768289 38.164062 18.775391 z M 11.802734 18.785156 C 12.398803 20.758169 13.190811 22.834118 14.169922 24.962891 C 13.30047 26.846955 12.571087 28.692254 12 30.460938 C 11.23096 30.232919 10.490212 29.992451 9.8144531 29.728516 C 7.9042995 28.982454 6.39335 28.099007 5.4140625 27.195312 C 4.434775 26.291618 4.0097656 25.429804 4.0097656 24.59375 C 4.0097656 23.757696 4.434775 22.895882 5.4140625 21.992188 C 6.39335 21.088493 7.9042995 20.205046 9.8144531 19.458984 C 10.432774 19.217483 11.105915 18.996837 11.802734 18.785156 z M 25 20 C 22.250421 20 20 22.250421 20 25 C 20 27.749579 22.250421 30 25 30 C 27.749579 30 30 27.749579 30 25 C 30 22.250421 27.749579 20 25 20 z M 15.341797 27.365234 C 15.762496 28.177853 16.200028 28.993283 16.671875 29.810547 C 17.041048 30.449973 17.418073 31.072393 17.800781 31.683594 C 16.457817 31.497372 15.181231 31.261605 13.982422 30.982422 C 14.363652 29.81481 14.819744 28.602796 15.341797 27.365234 z M 34.619141 27.365234 C 35.143284 28.605725 35.599609 29.819681 35.982422 30.990234 C 34.779808 31.269089 33.499292 31.504052 32.152344 31.689453 C 32.540071 31.070779 32.922982 30.44057 33.296875 29.792969 C 33.765252 28.981717 34.201083 28.171917 34.619141 27.365234 z M 13.40625 32.923828 C 15.216074 33.352568 17.177716 33.681912 19.257812 33.896484 C 20.64638 35.904859 22.092967 37.709497 23.548828 39.287109 C 22.897813 39.921859 22.252566 40.517583 21.621094 41.03125 C 19.99538 42.353677 18.454326 43.251559 17.169922 43.667969 C 15.885516 44.084378 14.926946 44.029446 14.212891 43.617188 C 13.498835 43.204927 12.972987 42.402563 12.691406 41.082031 C 12.409825 39.761499 12.417606 37.979279 12.75 35.910156 C 12.900793 34.971492 13.12615 33.966374 13.40625 32.923828 z M 36.560547 32.931641 C 36.842987 33.980548 37.069013 34.98935 37.220703 35.933594 C 37.553389 38.004513 37.56169 39.788939 37.279297 41.113281 C 36.996903 42.437623 36.468699 43.247993 35.748047 43.664062 C 35.027395 44.080132 34.059594 44.13441 32.771484 43.716797 C 31.483374 43.299186 29.941578 42.399747 28.314453 41.076172 C 27.678439 40.558811 27.028726 39.958258 26.373047 39.318359 C 27.838664 37.73459 29.295467 35.920758 30.693359 33.900391 C 32.778701 33.687251 34.745791 33.359875 36.560547 32.931641 z M 21.867188 34.101562 C 22.893951 34.157518 23.934244 34.195312 25 34.195312 C 26.030504 34.195312 27.037063 34.159787 28.03125 34.107422 C 27.014961 35.478593 25.979034 36.725149 24.947266 37.847656 C 23.916125 36.722751 22.882144 35.473968 21.867188 34.101562 z", clipRule: "evenodd", fillRule: "evenodd" })] }), j1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", "aria-hidden": "true", role: "img", class: "iconify iconify--logos", width: "35.93", height: "32", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 256 228", ...t, children: [/* @__PURE__ */ e("path", { fill: "#00D8FF", d: "M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z" })] }), D1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#7e57c2", d: "M23,4c-6.617,0-12,7.27-12,16.205c0,4.834,1.582,9.169,4.078,12.136C15.03,32.554,15,32.773,15,33 c0,1.657,1.343,3,3,3s3-1.343,3-3s-1.343-3-3-3c-0.315,0-0.612,0.062-0.897,0.152C15.206,27.731,14,24.175,14,20.205 C14,12.924,18.037,7,23,7c3.837,0,7.111,3.547,8.404,8.518c1.122,0.346,2.237,0.782,3.33,1.308C33.579,9.508,28.759,4,23,4z" }), /* @__PURE__ */ e("path", { fill: "#7e57c2", d: "M35.507,20.084c-3.947-2.392-8.374-3.442-12.182-2.959C22.775,16.444,21.943,16,21,16 c-1.657,0-3,1.343-3,3s1.343,3,3,3c1.272,0,2.353-0.795,2.789-1.912c3.118-0.379,6.812,0.531,10.163,2.563 c6.403,3.881,9.67,10.569,7.282,14.911c-0.827,1.504-2.286,2.572-4.218,3.09c-2.286,0.611-5.007,0.394-7.727-0.528 c-0.839,0.772-1.749,1.498-2.725,2.168c2.552,1.117,5.196,1.704,7.669,1.704c1.24,0,2.438-0.147,3.559-0.447 c2.741-0.733,4.841-2.304,6.071-4.542C47.016,33.276,43.267,24.787,35.507,20.084z" }), /* @__PURE__ */ e("path", { fill: "#7e57c2", d: "M35,28.992C35,27.34,33.657,26,32,26s-3,1.34-3,2.992c0,0.669,0.228,1.281,0.6,1.779 c-1.279,2.802-3.744,5.567-7.062,7.578c-3.865,2.344-8.185,3.202-11.555,2.302c-1.932-0.518-3.391-1.586-4.218-3.09 c-1.702-3.094-0.521-7.376,2.61-10.988c-0.323-1.144-0.562-2.34-0.706-3.575c-5.07,4.797-7.109,11.323-4.532,16.009 c1.23,2.238,3.33,3.809,6.071,4.542c1.121,0.3,2.318,0.447,3.559,0.447c3.346,0,7.007-1.068,10.326-3.08 c3.836-2.325,6.683-5.577,8.209-8.962C33.815,31.801,35,30.541,35,28.992z" })] }), P1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#f06292", d: "M39.867,25.956c-1.538,0.008-2.87,0.377-3.986,0.928c-0.408-0.815-0.822-1.532-0.891-2.065 c-0.081-0.622-0.175-0.994-0.077-1.735c0.098-0.741,0.527-1.791,0.521-1.87c-0.006-0.079-0.096-0.456-0.983-0.463 c-0.887-0.006-1.646,0.171-1.735,0.405c-0.089,0.234-0.26,0.761-0.366,1.311c-0.155,0.804-1.771,3.673-2.688,5.173 c-0.3-0.586-0.555-1.102-0.608-1.51c-0.081-0.622-0.175-0.994-0.077-1.735c0.098-0.741,0.527-1.791,0.521-1.87 c-0.006-0.079-0.096-0.456-0.983-0.463c-0.887-0.006-1.646,0.171-1.735,0.405c-0.089,0.234-0.185,0.781-0.366,1.311 c-0.182,0.529-2.329,5.314-2.892,6.555c-0.287,0.632-0.536,1.14-0.712,1.486c-0.001-0.001-0.001-0.002-0.001-0.002 s-0.011,0.023-0.029,0.062c-0.151,0.295-0.24,0.458-0.24,0.458s0.001,0.002,0.003,0.006c-0.12,0.217-0.248,0.418-0.311,0.418 c-0.044,0-0.133-0.577,0.019-1.369c0.32-1.66,1.087-4.248,1.08-4.338c-0.004-0.046,0.143-0.497-0.501-0.733 c-0.626-0.229-0.849,0.153-0.906,0.154c-0.055,0.001-0.096,0.135-0.096,0.135s0.697-2.911-1.33-2.911 c-1.268,0-3.024,1.387-3.889,2.644c-0.546,0.298-1.715,0.936-2.954,1.617c-0.476,0.262-0.962,0.529-1.423,0.783 c-0.031-0.035-0.063-0.069-0.095-0.104c-2.459-2.623-7.003-4.478-6.811-8.005c0.07-1.282,0.516-4.658,8.733-8.752 c6.731-3.354,12.12-2.431,13.051-0.386c1.33,2.923-2.88,8.354-9.87,9.138c-2.663,0.299-4.066-0.734-4.415-1.118 c-0.367-0.405-0.422-0.423-0.559-0.347c-0.223,0.124-0.082,0.481,0,0.694c0.209,0.543,1.065,1.506,2.525,1.986 c1.285,0.422,4.412,0.653,8.193-0.81c4.236-1.638,7.543-6.196,6.571-10.005c-0.988-3.874-7.412-5.148-13.492-2.988 C12.44,9.332,8.523,11.35,5.706,13.984c-3.349,3.132-3.883,5.859-3.663,6.998c0.782,4.048,6.361,6.684,8.595,8.637 c-0.11,0.061-0.214,0.118-0.308,0.17c-1.12,0.554-5.373,2.78-6.437,5.131c-1.207,2.667,0.192,4.581,1.118,4.839 c2.869,0.798,5.813-0.638,7.396-2.998c1.582-2.359,1.389-5.432,0.663-6.834c-0.009-0.017-0.019-0.034-0.028-0.052 c0.289-0.171,0.584-0.345,0.876-0.517c0.57-0.335,1.13-0.647,1.615-0.911c-0.272,0.744-0.471,1.637-0.574,2.926 c-0.122,1.514,0.499,3.471,1.311,4.241c0.358,0.339,0.788,0.347,1.06,0.347c0.945,0,1.376-0.786,1.851-1.716 c0.582-1.14,1.099-2.468,1.099-2.468s-0.648,3.586,1.118,3.586c0.644,0,1.291-0.835,1.58-1.26c0.001,0.005,0.001,0.007,0.001,0.007 s0.017-0.028,0.05-0.083c0.067-0.102,0.105-0.167,0.105-0.167s0.001-0.007,0.003-0.019c0.259-0.449,0.833-1.473,1.693-3.162 c1.112-2.182,2.178-4.916,2.178-4.916s0.099,0.668,0.424,1.774c0.191,0.65,0.597,1.369,0.918,2.059 c-0.258,0.358-0.416,0.563-0.416,0.563s0.001,0.004,0.004,0.011c-0.206,0.274-0.437,0.569-0.679,0.857 c-0.878,1.045-1.923,2.239-2.063,2.583c-0.165,0.406-0.126,0.704,0.193,0.945c0.233,0.175,0.647,0.203,1.08,0.174 c0.789-0.053,1.343-0.249,1.617-0.368c0.427-0.151,0.924-0.388,1.39-0.731c0.861-0.633,1.38-1.538,1.33-2.738 c-0.028-0.661-0.238-1.316-0.505-1.934c0.078-0.112,0.156-0.226,0.235-0.34c1.357-1.984,2.41-4.164,2.41-4.164 s0.099,0.668,0.424,1.774c0.164,0.559,0.489,1.17,0.781,1.768c-1.276,1.037-2.067,2.242-2.342,3.032 c-0.508,1.462-0.11,2.124,0.636,2.275c0.338,0.068,0.816-0.087,1.175-0.239c0.447-0.148,0.984-0.395,1.486-0.764 c0.861-0.633,1.689-1.519,1.639-2.718c-0.023-0.546-0.171-1.088-0.372-1.608c1.082-0.451,2.482-0.701,4.266-0.493 c3.827,0.447,4.577,2.836,4.434,3.836c-0.144,1-0.946,1.55-1.215,1.716c-0.268,0.166-0.35,0.224-0.328,0.347 c0.033,0.179,0.157,0.173,0.386,0.134c0.315-0.053,2.009-0.813,2.082-2.659C46.089,28.509,43.844,25.935,39.867,25.956z M10.37,35.9 c-1.268,1.383-3.038,1.905-3.798,1.465c-0.82-0.475-0.495-2.511,1.06-3.979c0.948-0.894,2.172-1.718,2.984-2.225 c0.185-0.111,0.456-0.274,0.786-0.472c0.055-0.031,0.086-0.048,0.086-0.048l-0.001-0.002c0.064-0.038,0.129-0.077,0.196-0.118 C12.25,32.61,11.701,34.449,10.37,35.9z M19.605,29.623c-0.441,1.076-1.365,3.83-1.928,3.682c-0.483-0.127-0.777-2.22-0.096-4.28 c0.342-1.037,1.074-2.276,1.504-2.757c0.692-0.774,1.454-1.027,1.639-0.713C20.959,25.955,19.882,28.948,19.605,29.623z M27.234,33.263c-0.187,0.098-0.359,0.159-0.438,0.112c-0.059-0.035,0.077-0.164,0.077-0.164s0.954-1.027,1.33-1.494 c0.219-0.272,0.472-0.595,0.748-0.955c0.002,0.036,0.003,0.072,0.003,0.107C28.952,32.099,27.764,32.929,27.234,33.263z M33.111,31.923c-0.14-0.099-0.116-0.42,0.343-1.421c0.18-0.393,0.592-1.054,1.306-1.686c0.083,0.26,0.133,0.509,0.132,0.741 C34.883,31.105,33.779,31.683,33.111,31.923z" })] }), T1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#00acc1", d: "M24,9.604c-6.4,0-10.4,3.199-12,9.597c2.4-3.199,5.2-4.398,8.4-3.599 c1.826,0.456,3.131,1.781,4.576,3.247C27.328,21.236,30.051,24,36,24c6.4,0,10.4-3.199,12-9.598c-2.4,3.199-5.2,4.399-8.4,3.6 c-1.825-0.456-3.13-1.781-4.575-3.247C32.672,12.367,29.948,9.604,24,9.604L24,9.604z M12,24c-6.4,0-10.4,3.199-12,9.598 c2.4-3.199,5.2-4.399,8.4-3.599c1.825,0.457,3.13,1.781,4.575,3.246c2.353,2.388,5.077,5.152,11.025,5.152 c6.4,0,10.4-3.199,12-9.598c-2.4,3.199-5.2,4.399-8.4,3.599c-1.826-0.456-3.131-1.781-4.576-3.246C20.672,26.764,17.949,24,12,24 L12,24z" })] }), H1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("rect", { width: "36", height: "36", x: "6", y: "6", fill: "#1976d2" }), /* @__PURE__ */ e("polygon", { fill: "#fff", points: "27.49,22 14.227,22 14.227,25.264 18.984,25.264 18.984,40 22.753,40 22.753,25.264 27.49,25.264" }), /* @__PURE__ */ e("path", { fill: "#fff", d: "M39.194,26.084c0,0-1.787-1.192-3.807-1.192s-2.747,0.96-2.747,1.986 c0,2.648,7.381,2.383,7.381,7.712c0,8.209-11.254,4.568-11.254,4.568V35.22c0,0,2.152,1.622,4.733,1.622s2.483-1.688,2.483-1.92 c0-2.449-7.315-2.449-7.315-7.878c0-7.381,10.658-4.469,10.658-4.469L39.194,26.084z" })] }), $1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", "aria-hidden": "true", role: "img", class: "iconify iconify--logos", width: "31.88", height: "32", preserveAspectRatio: "xMidYMid meet", viewBox: "0 0 256 257", ...t, children: [/* @__PURE__ */ N("defs", { children: [
|
498
|
+
/* @__PURE__ */ N("linearGradient", { id: "IconifyId1813088fe1fbc01fb466", x1: "-.828%", x2: "57.636%", y1: "7.652%", y2: "78.411%", children: [
|
499
|
+
/* @__PURE__ */ e("stop", { offset: "0%", stopColor: "#41D1FF" }),
|
500
|
+
/* @__PURE__ */ e("stop", { offset: "100%", stopColor: "#BD34FE" })
|
501
|
+
] }),
|
502
|
+
/* @__PURE__ */ N("linearGradient", { id: "IconifyId1813088fe1fbc01fb467", x1: "43.376%", x2: "50.316%", y1: "2.242%", y2: "89.03%", children: [
|
503
|
+
/* @__PURE__ */ e("stop", { offset: "0%", stopColor: "#FFEA83" }),
|
504
|
+
/* @__PURE__ */ e("stop", { offset: "8.333%", stopColor: "#FFDD35" }),
|
505
|
+
/* @__PURE__ */ e("stop", { offset: "100%", stopColor: "#FFA800" })
|
506
|
+
] })
|
507
|
+
] }), /* @__PURE__ */ e("path", { fill: "url(#IconifyId1813088fe1fbc01fb466)", d: "M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z" }), /* @__PURE__ */ e("path", { fill: "url(#IconifyId1813088fe1fbc01fb467)", d: "M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z" })] }), G1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#29b6f6", d: "M44,11.11v25.78c0,1.27-0.79,2.4-1.98,2.82l-8.82,4.14L34,33V15L33.2,4.15l8.82,4.14 C43.21,8.71,44,9.84,44,11.11z" }), /* @__PURE__ */ e("path", { fill: "#0277bd", d: "M9,33.896L34,15V5.353c0-1.198-1.482-1.758-2.275-0.86L4.658,29.239 c-0.9,0.83-0.849,2.267,0.107,3.032c0,0,1.324,1.232,1.803,1.574C7.304,34.37,8.271,34.43,9,33.896z" }), /* @__PURE__ */ e("path", { fill: "#0288d1", d: "M9,14.104L34,33v9.647c0,1.198-1.482,1.758-2.275,0.86L4.658,18.761 c-0.9-0.83-0.849-2.267,0.107-3.032c0,0,1.324-1.232,1.803-1.574C7.304,13.63,8.271,13.57,9,14.104z" })] }), J1 = (t) => L(x, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 48 48", width: "144px", height: "144px", ...t, children: [/* @__PURE__ */ e("path", { fill: "#fff", d: "M24 4.050000000000001A19.95 19.95 0 1 0 24 43.95A19.95 19.95 0 1 0 24 4.050000000000001Z" }), /* @__PURE__ */ e("path", { fill: "#01579b", d: "M8.001,24c0,6.336,3.68,11.806,9.018,14.4L9.385,17.488C8.498,19.479,8.001,21.676,8.001,24z M34.804,23.194c0-1.977-1.063-3.35-1.67-4.412c-0.813-1.329-1.576-2.437-1.576-3.752c0-1.465,1.471-2.84,3.041-2.84 c0.071,0,0.135,0.006,0.206,0.008C31.961,9.584,28.168,8,24.001,8c-5.389,0-10.153,2.666-13.052,6.749 c0.228,0.074,0.307,0.039,0.611,0.039c1.669,0,4.264-0.2,4.264-0.2c0.86-0.057,0.965,1.212,0.099,1.316c0,0-0.864,0.105-1.828,0.152 l5.931,17.778l3.5-10.501l-2.603-7.248c-0.861-0.046-1.679-0.152-1.679-0.152c-0.862-0.056-0.762-1.375,0.098-1.316 c0,0,2.648,0.2,4.217,0.2c1.675,0,4.264-0.2,4.264-0.2c0.861-0.057,0.965,1.212,0.104,1.316c0,0-0.87,0.105-1.832,0.152l5.891,17.61 l1.599-5.326C34.399,26.289,34.804,24.569,34.804,23.194z M24.281,25.396l-4.8,13.952c1.436,0.426,2.95,0.652,4.52,0.652 c1.861,0,3.649-0.324,5.316-0.907c-0.04-0.071-0.085-0.143-0.118-0.22L24.281,25.396z M38.043,16.318 c0.071,0.51,0.108,1.059,0.108,1.645c0,1.628-0.306,3.451-1.219,5.737l-4.885,14.135C36.805,35.063,40,29.902,40,24 C40,21.219,39.289,18.604,38.043,16.318z" }), /* @__PURE__ */ e("path", { fill: "#01579b", d: "M4,24c0,11.024,8.97,20,19.999,20C35.03,44,44,35.024,44,24S35.03,4,24,4S4,12.976,4,24z M5.995,24 c0-9.924,8.074-17.999,18.004-17.999S42.005,14.076,42.005,24S33.929,42.001,24,42.001C14.072,42.001,5.995,33.924,5.995,24z" })] }), U1 = (t) => `${t[0]}${t.slice(1).toLowerCase()}`, q1 = [
|
508
|
+
{
|
509
|
+
id: "html",
|
510
|
+
name: "HTML",
|
511
|
+
path: "public/html.svg",
|
512
|
+
categories: ["web", "frontend"],
|
513
|
+
keywords: ["html", "html5", "markup", "language"]
|
514
|
+
},
|
515
|
+
{
|
516
|
+
id: "canva",
|
517
|
+
name: "Canva",
|
518
|
+
path: "public/canva.svg",
|
519
|
+
categories: ["web", "design"],
|
520
|
+
keywords: ["canva", "graphic", "design"]
|
521
|
+
},
|
522
|
+
{
|
523
|
+
id: "chatgpt",
|
524
|
+
name: "ChatGPT",
|
525
|
+
path: "public/chatgpt.svg",
|
526
|
+
categories: ["ai", "technology"],
|
527
|
+
keywords: ["chatgpt", "openai", "chatbot"]
|
528
|
+
},
|
529
|
+
{
|
530
|
+
id: "css",
|
531
|
+
name: "CSS",
|
532
|
+
path: "public/css.svg",
|
533
|
+
categories: ["web", "frontend"],
|
534
|
+
keywords: ["css", "stylesheets", "design"]
|
535
|
+
},
|
536
|
+
{
|
537
|
+
id: "discord",
|
538
|
+
name: "Discord",
|
539
|
+
path: "public/discord.svg",
|
540
|
+
categories: ["communication", "social"],
|
541
|
+
keywords: ["discord", "chat", "gaming"]
|
542
|
+
},
|
543
|
+
{
|
544
|
+
id: "figma",
|
545
|
+
name: "Figma",
|
546
|
+
path: "public/figma.svg",
|
547
|
+
categories: ["design", "ui/ux"],
|
548
|
+
keywords: ["figma", "design", "prototyping"]
|
549
|
+
},
|
550
|
+
{
|
551
|
+
id: "firebase",
|
552
|
+
name: "Firebase",
|
553
|
+
path: "public/firebase.svg",
|
554
|
+
categories: ["web", "backend"],
|
555
|
+
keywords: ["firebase", "database", "backend"]
|
556
|
+
},
|
557
|
+
{
|
558
|
+
id: "git",
|
559
|
+
name: "Git",
|
560
|
+
path: "public/git.svg",
|
561
|
+
categories: ["development", "version control"],
|
562
|
+
keywords: ["git", "version control", "code"]
|
563
|
+
},
|
564
|
+
{
|
565
|
+
id: "github",
|
566
|
+
name: "GitHub",
|
567
|
+
path: "public/github.svg",
|
568
|
+
categories: ["development", "version control"],
|
569
|
+
keywords: ["github", "git", "repository"]
|
570
|
+
},
|
571
|
+
{
|
572
|
+
id: "gmail",
|
573
|
+
name: "Gmail",
|
574
|
+
path: "public/gmail.svg",
|
575
|
+
categories: ["communication", "email"],
|
576
|
+
keywords: ["gmail", "email", "google"]
|
577
|
+
},
|
578
|
+
{
|
579
|
+
id: "instagram",
|
580
|
+
name: "Instagram",
|
581
|
+
path: "public/instagram.svg",
|
582
|
+
categories: ["social", "media"],
|
583
|
+
keywords: ["instagram", "social media", "photos"]
|
584
|
+
},
|
585
|
+
{
|
586
|
+
id: "javascript",
|
587
|
+
name: "JavaScript",
|
588
|
+
path: "public/javascript.svg",
|
589
|
+
categories: ["web", "programming"],
|
590
|
+
keywords: ["javascript", "programming", "language"]
|
591
|
+
},
|
592
|
+
{
|
593
|
+
id: "linkedin",
|
594
|
+
name: "LinkedIn",
|
595
|
+
path: "public/linkedin.svg",
|
596
|
+
categories: ["social", "professional"],
|
597
|
+
keywords: ["linkedin", "professional", "networking"]
|
598
|
+
},
|
599
|
+
{
|
600
|
+
id: "mongodb",
|
601
|
+
name: "MongoDB",
|
602
|
+
path: "public/mongodb.svg",
|
603
|
+
categories: ["database", "backend"],
|
604
|
+
keywords: ["mongodb", "database", "nosql"]
|
605
|
+
},
|
606
|
+
{
|
607
|
+
id: "nextjs",
|
608
|
+
name: "Next.js",
|
609
|
+
path: "public/nextjs.svg",
|
610
|
+
categories: ["web", "framework"],
|
611
|
+
keywords: ["nextjs", "react", "javascript"]
|
612
|
+
},
|
613
|
+
{
|
614
|
+
id: "notion",
|
615
|
+
name: "Notion",
|
616
|
+
path: "public/notion.svg",
|
617
|
+
categories: ["productivity", "tool"],
|
618
|
+
keywords: ["notion", "organization", "notes"]
|
619
|
+
},
|
620
|
+
{
|
621
|
+
id: "openai",
|
622
|
+
name: "OpenAI",
|
623
|
+
path: "public/openai.svg",
|
624
|
+
categories: ["ai", "technology"],
|
625
|
+
keywords: ["openai", "artificial intelligence", "research"]
|
626
|
+
},
|
627
|
+
{
|
628
|
+
id: "postman",
|
629
|
+
name: "Postman",
|
630
|
+
path: "public/postman.svg",
|
631
|
+
categories: ["development", "tool"],
|
632
|
+
keywords: ["postman", "api", "testing"]
|
633
|
+
},
|
634
|
+
{
|
635
|
+
id: "react-native",
|
636
|
+
name: "React Native",
|
637
|
+
path: "public/react-native.svg",
|
638
|
+
categories: ["mobile", "framework"],
|
639
|
+
keywords: ["react native", "mobile app", "javascript"]
|
640
|
+
},
|
641
|
+
{
|
642
|
+
id: "react",
|
643
|
+
name: "React",
|
644
|
+
path: "public/react.svg",
|
645
|
+
categories: ["web", "library"],
|
646
|
+
keywords: ["react", "javascript", "ui"]
|
647
|
+
},
|
648
|
+
{
|
649
|
+
id: "redux",
|
650
|
+
name: "Redux",
|
651
|
+
path: "public/redux.svg",
|
652
|
+
categories: ["web", "state-management"],
|
653
|
+
keywords: ["redux", "javascript", "state"]
|
654
|
+
},
|
655
|
+
{
|
656
|
+
id: "sass",
|
657
|
+
name: "SASS",
|
658
|
+
path: "public/sass.svg",
|
659
|
+
categories: ["web", "frontend"],
|
660
|
+
keywords: ["sass", "css", "style"]
|
661
|
+
},
|
662
|
+
{
|
663
|
+
id: "tailwindcss",
|
664
|
+
name: "Tailwind CSS",
|
665
|
+
path: "public/tailwindcss.svg",
|
666
|
+
categories: ["web", "frontend"],
|
667
|
+
keywords: ["tailwindcss", "css", "design"]
|
668
|
+
},
|
669
|
+
{
|
670
|
+
id: "typescript",
|
671
|
+
name: "TypeScript",
|
672
|
+
path: "public/typescript.svg",
|
673
|
+
categories: ["web", "programming"],
|
674
|
+
keywords: ["typescript", "javascript", "language"]
|
675
|
+
},
|
676
|
+
{
|
677
|
+
id: "vite",
|
678
|
+
name: "Vite",
|
679
|
+
path: "public/vite.svg",
|
680
|
+
categories: ["web", "tool"],
|
681
|
+
keywords: ["vite", "build tool", "javascript"]
|
682
|
+
},
|
683
|
+
{
|
684
|
+
id: "vscode",
|
685
|
+
name: "VS Code",
|
686
|
+
path: "public/vscode.svg",
|
687
|
+
categories: ["development", "tool"],
|
688
|
+
keywords: ["vscode", "editor", "code"]
|
689
|
+
},
|
690
|
+
{
|
691
|
+
id: "wordpress",
|
692
|
+
name: "WordPress",
|
693
|
+
path: "public/wordpress.svg",
|
694
|
+
categories: ["web", "cms"],
|
695
|
+
keywords: ["wordpress", "cms", "blogging"]
|
696
|
+
}
|
697
|
+
];
|
698
|
+
export {
|
699
|
+
x1 as CanvaIcon,
|
700
|
+
b1 as ChatgptIcon,
|
701
|
+
y1 as CssIcon,
|
702
|
+
M1 as DiscordIcon,
|
703
|
+
z1 as FigmaIcon,
|
704
|
+
F1 as FirebaseIcon,
|
705
|
+
A1 as GitIcon,
|
706
|
+
N1 as GithubIcon,
|
707
|
+
S1 as GmailIcon,
|
708
|
+
L1 as HtmlIcon,
|
709
|
+
x as Icon,
|
710
|
+
q1 as IconsData,
|
711
|
+
_1 as InstagramIcon,
|
712
|
+
V1 as JavascriptIcon,
|
713
|
+
I1 as LinkedinIcon,
|
714
|
+
k1 as MongodbIcon,
|
715
|
+
Z1 as NextjsIcon,
|
716
|
+
O1 as NotionIcon,
|
717
|
+
E1 as OpenaiIcon,
|
718
|
+
B1 as PostmanIcon,
|
719
|
+
j1 as ReactIcon,
|
720
|
+
R1 as ReactNativeIcon,
|
721
|
+
D1 as ReduxIcon,
|
722
|
+
P1 as SassIcon,
|
723
|
+
T1 as TailwindCssIcon,
|
724
|
+
H1 as TypescriptIcon,
|
725
|
+
$1 as ViteIcon,
|
726
|
+
G1 as VsCodeIcon,
|
727
|
+
J1 as WordpressIcon,
|
728
|
+
U1 as capitalizeFirstletter,
|
729
|
+
w1 as createDeveloperIcon
|
730
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const capitalizeFirstletter: (str: string) => string;
|
package/package.json
CHANGED