developer-icons 1.2.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -4
- package/dist/{createDeveloperIcon.d.ts → icon.d.ts} +0 -1
- package/dist/icons/CanvaIcon.d.ts +1 -1
- package/dist/icons/ChatgptIcon.d.ts +1 -1
- package/dist/icons/CssIcon.d.ts +1 -1
- package/dist/icons/DiscordIcon.d.ts +1 -1
- package/dist/icons/FigmaIcon.d.ts +1 -1
- package/dist/icons/FirebaseIcon.d.ts +1 -1
- package/dist/icons/GitIcon.d.ts +1 -1
- package/dist/icons/GithubIcon.d.ts +1 -1
- package/dist/icons/GmailIcon.d.ts +1 -1
- package/dist/icons/HtmlIcon.d.ts +1 -1
- package/dist/icons/InstagramIcon.d.ts +1 -1
- package/dist/icons/JavascriptIcon.d.ts +1 -1
- package/dist/icons/LinkedinIcon.d.ts +1 -1
- package/dist/icons/MongodbIcon.d.ts +1 -1
- package/dist/icons/NextjsIcon.d.ts +1 -1
- package/dist/icons/NotionIcon.d.ts +1 -1
- package/dist/icons/OpenaiIcon.d.ts +1 -1
- package/dist/icons/PostmanIcon.d.ts +1 -1
- package/dist/icons/ReactIcon.d.ts +1 -1
- package/dist/icons/ReactNativeIcon.d.ts +1 -1
- package/dist/icons/ReduxIcon.d.ts +1 -1
- package/dist/icons/SassIcon.d.ts +1 -1
- package/dist/icons/TailwindCssIcon.d.ts +1 -1
- package/dist/icons/TypescriptIcon.d.ts +1 -1
- package/dist/icons/ViteIcon.d.ts +1 -1
- package/dist/icons/VsCodeIcon.d.ts +1 -1
- package/dist/icons/WordpressIcon.d.ts +1 -1
- package/dist/main.d.ts +2 -2
- package/dist/main.js +202 -680
- package/package.json +4 -2
package/dist/main.js
CHANGED
@@ -1,740 +1,246 @@
|
|
1
|
-
import { jsx as
|
2
|
-
import { createElement as
|
3
|
-
|
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, f) {
|
46
|
-
if (typeof f != "function")
|
47
|
-
return c;
|
48
|
-
var a = {};
|
49
|
-
for (var p in c)
|
50
|
-
Object.prototype.hasOwnProperty.call(c, p) && (a[f(p, c[p]) || p] = c[p]);
|
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 f = O(r);
|
65
|
-
if (f !== "object" && f !== "array")
|
66
|
-
throw new Error("expected an object");
|
67
|
-
var a = [];
|
68
|
-
f === "object" && (r = Y(r, c), a = {});
|
69
|
-
for (var p in r)
|
70
|
-
if (r.hasOwnProperty(p)) {
|
71
|
-
var m = r[p];
|
72
|
-
O(m) === "object" || O(m) === "array" ? a[p] = t(m, c) : a[p] = 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 f() {
|
81
|
-
}
|
82
|
-
Object.create && (f.prototype = /* @__PURE__ */ Object.create(null), new f().__proto__ || (c = !1));
|
83
|
-
function a(m, h, u) {
|
84
|
-
this.fn = m, this.context = h, this.once = u || !1;
|
85
|
-
}
|
86
|
-
function p() {
|
87
|
-
this._events = new f(), this._eventsCount = 0;
|
88
|
-
}
|
89
|
-
p.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
|
-
}, p.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
|
-
}, p.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], L = arguments.length, F, g;
|
112
|
-
if (n.fn) {
|
113
|
-
switch (n.once && this.removeListener(h, n.fn, void 0, !0), L) {
|
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(L - 1); g < L; 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), L) {
|
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(L - 1); A < L; A++)
|
149
|
-
F[A - 1] = arguments[A];
|
150
|
-
n[g].fn.apply(n[g].context, F);
|
151
|
-
}
|
152
|
-
}
|
153
|
-
return !0;
|
154
|
-
}, p.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
|
-
}, p.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
|
-
}, p.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 f() : 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 f() : delete this._events[o]);
|
169
|
-
else {
|
170
|
-
for (var l = 0, n = [], L = y.length; l < L; 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 f() : delete this._events[o];
|
173
|
-
}
|
174
|
-
return this;
|
175
|
-
}, p.prototype.removeAllListeners = function(h) {
|
176
|
-
var u;
|
177
|
-
return h ? (u = c ? c + h : h, this._events[u] && (--this._eventsCount === 0 ? this._events = new f() : delete this._events[u])) : (this._events = new f(), this._eventsCount = 0), this;
|
178
|
-
}, p.prototype.off = p.prototype.removeListener, p.prototype.addListener = p.prototype.on, p.prototype.setMaxListeners = function() {
|
179
|
-
return this;
|
180
|
-
}, p.prefixed = c, p.EventEmitter = p, t.exports = p;
|
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, f, a, p, m, h, u, i, C, o;
|
228
|
-
r = Object.assign({ debug: !1 }, r);
|
229
|
-
var y = new t1(), l = v.data, n = "", L = "", F = "", g = "", S = "", A = "", z = function(V, _) {
|
230
|
-
if (!(L[0] === "?" || L[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), L = "", 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, (f = {}, d(f, s.space, I), d(f, s.char, function(w) {
|
242
|
-
L = w, l = v.tagName;
|
243
|
-
}), d(f, s.slash, function() {
|
244
|
-
L = "", S = !0;
|
245
|
-
}), f)), d(o, v.tagName, (a = {}, d(a, s.space, function() {
|
246
|
-
S ? l = v.tagEnd : (l = v.attributeNameStart, z(M.openTag, L));
|
247
|
-
}), d(a, s.gt, function() {
|
248
|
-
z(S ? M.closeTag : M.openTag, L), n = "", l = v.data;
|
249
|
-
}), d(a, s.slash, function() {
|
250
|
-
l = v.tagEnd, z(M.openTag, L);
|
251
|
-
}), d(a, s.char, function(w) {
|
252
|
-
L += w, L === "![CDATA[" && (l = v.cdata, n = "", L = "");
|
253
|
-
}), a)), d(o, v.tagEnd, (p = {}, d(p, s.gt, function() {
|
254
|
-
z(M.closeTag, L), n = "", l = v.data;
|
255
|
-
}), d(p, s.char, I), p)), 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, E = {
|
309
|
-
element: "element",
|
310
|
-
text: "text"
|
311
|
-
}, B = function(r) {
|
312
|
-
return Object.assign({
|
313
|
-
name: "",
|
314
|
-
type: E.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, f = void 0, a = void 0, p = void 0, m = new i1(), h = function(i) {
|
330
|
-
switch (i.type) {
|
331
|
-
case k.openTag:
|
332
|
-
if (a === null)
|
333
|
-
a = f, a.name = i.value;
|
334
|
-
else {
|
335
|
-
var C = B({
|
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 === f && (f.children = [], a.parent = null), (!r.emitTopLevelOnly || o === f) && (m.emit(r.tagPrefix + a.name, a), m.emit("tag", a.name, a)), a === f && (c.removeAllListeners("data"), m.emit(r.doneEvent, a), f = null), a = o;
|
347
|
-
break;
|
348
|
-
case k.text:
|
349
|
-
a && a.children.push(B({
|
350
|
-
type: E.text,
|
351
|
-
value: i.value,
|
352
|
-
parent: r.parentNodes ? a : null
|
353
|
-
}));
|
354
|
-
break;
|
355
|
-
case k.attributeName:
|
356
|
-
p = i.value, a.attributes[p] = "";
|
357
|
-
break;
|
358
|
-
case k.attributeValue:
|
359
|
-
a.attributes[p] = i.value;
|
360
|
-
break;
|
361
|
-
}
|
362
|
-
};
|
363
|
-
return m.reset = function() {
|
364
|
-
c = T.create({ debug: r.debug }), c.on("data", h), f = B(), a = null, p = "", m.parse = c.write;
|
365
|
-
}, m.reset(), m;
|
366
|
-
}, o1 = function(r, c) {
|
367
|
-
c = Object.assign({}, c, { stream: !1, tagPrefix: ":" });
|
368
|
-
var f = H(c), a = void 0;
|
369
|
-
return f.on("done", function(p) {
|
370
|
-
a = p;
|
371
|
-
}), f.parse(r), a;
|
372
|
-
}, s1 = {
|
373
|
-
parseSync: o1,
|
374
|
-
create: H,
|
375
|
-
NodeType: E
|
376
|
-
}, l1 = function(r) {
|
377
|
-
var c = s1.parseSync("<root>".concat(r, "</root>"), {
|
378
|
-
parentNodes: !1
|
379
|
-
}), f = c.children && c.children.length > 0 && c.children.every(function(a) {
|
380
|
-
return a.name === "svg";
|
381
|
-
});
|
382
|
-
if (f)
|
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, f) {
|
391
|
-
return f.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] : {}, f = c.transformNode, a = f === void 0 ? function(u) {
|
405
|
-
return u;
|
406
|
-
} : f, p = c.camelcase, m = p === void 0 ? !1 : p, 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] : {}, f = c.transformAttr, a = f === void 0 ? function(l, n, L) {
|
413
|
-
return "".concat(l, '="').concat(L(n), '"');
|
414
|
-
} : f, p = c.transformNode, m = p === void 0 ? function(l) {
|
415
|
-
return l;
|
416
|
-
} : p, 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 v1 = {
|
440
|
-
xmlns: "http://www.w3.org/2000/svg",
|
441
|
-
width: 48,
|
442
|
-
height: 48,
|
443
|
-
viewBox: "0 0 48 48"
|
444
|
-
}, m1 = (t, r) => `${t} ${r ?? ""}`, b1 = (t, r) => {
|
445
|
-
const c = C1(r, { camelcase: !0 }), f = [...c.children.map((a) => g1(a))];
|
446
|
-
return `import { createElement } from 'react';
|
447
|
-
import {Icon, DeveloperIconProps} from '../createDeveloperIcon';
|
448
|
-
export const ${t} = (props: DeveloperIconProps) => createElement(Icon, {...${JSON.stringify(
|
449
|
-
c.attributes
|
450
|
-
)}, ...props, children: [${f}]
|
451
|
-
})`;
|
452
|
-
}, b = ({
|
453
|
-
size: t = 80,
|
454
|
-
className: r,
|
455
|
-
color: c,
|
456
|
-
...f
|
457
|
-
}) => x("svg", {
|
458
|
-
...v1,
|
459
|
-
stroke: c,
|
460
|
-
className: m1("developer-icons", r),
|
461
|
-
...f,
|
462
|
-
width: t,
|
463
|
-
height: t
|
464
|
-
}), L1 = (t) => x(b, {
|
1
|
+
import { jsx as c, jsxs as i } from "react/jsx-runtime";
|
2
|
+
import { createElement as a } from "react";
|
3
|
+
const f = (t) => a(l, {
|
465
4
|
xmlns: "http://www.w3.org/2000/svg",
|
5
|
+
width: "144",
|
6
|
+
height: "144",
|
466
7
|
viewBox: "0 0 48 48",
|
467
|
-
width: "144px",
|
468
|
-
height: "144px",
|
469
8
|
...t,
|
470
|
-
children: [/* @__PURE__ */
|
471
|
-
}),
|
9
|
+
children: [/* @__PURE__ */ c("path", { fill: "#E65100", d: "M41 5H7l3 34 14 4 14-4z" }), /* @__PURE__ */ c("path", { fill: "#FF6D00", d: "M24 8v31.9l11.2-3.2L37.7 8z" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "M24 25v-4h8.6l-.7 11.5-7.9 2.6v-4.2l4.1-1.4.3-4.5zm8.9-8 .3-4H24v4z" }), /* @__PURE__ */ c("path", { fill: "#EEE", d: "M24 30.9v4.2l-7.9-2.6-.4-5.5h4l.2 2.5zM19.1 17H24v-4h-9.1l.7 12H24v-4h-4.6z" })]
|
10
|
+
}), g = (t) => a(l, {
|
472
11
|
xmlns: "http://www.w3.org/2000/svg",
|
473
|
-
|
474
|
-
|
475
|
-
height: "144px",
|
476
|
-
clipRule: "evenodd",
|
12
|
+
width: "144",
|
13
|
+
height: "144",
|
477
14
|
baseProfile: "basic",
|
15
|
+
clipRule: "evenodd",
|
16
|
+
viewBox: "0 0 48 48",
|
478
17
|
...t,
|
479
|
-
children: [/* @__PURE__ */
|
480
|
-
/* @__PURE__ */
|
481
|
-
/* @__PURE__ */
|
482
|
-
/* @__PURE__ */
|
483
|
-
] }), /* @__PURE__ */
|
484
|
-
}),
|
18
|
+
children: [/* @__PURE__ */ i("linearGradient", { id: "a", x1: "38.263", x2: "10.15", y1: "1373.62", y2: "1342.615", gradientTransform: "translate(0 -1333.89)", gradientUnits: "userSpaceOnUse", children: [
|
19
|
+
/* @__PURE__ */ c("stop", { offset: "0", stopColor: "#823af3" }),
|
20
|
+
/* @__PURE__ */ c("stop", { offset: ".36", stopColor: "#4b66e1" }),
|
21
|
+
/* @__PURE__ */ c("stop", { offset: ".906", stopColor: "#01f1c4" })
|
22
|
+
] }), /* @__PURE__ */ c("path", { fill: "url(#a)", fillRule: "evenodd", d: "M44 24c0 11.045-8.955 20-20 20S4 35.045 4 24 12.955 4 24 4s20 8.955 20 20" }), /* @__PURE__ */ c("path", { fill: "#fff", fillRule: "evenodd", d: "M29.194 26.962c-.835.915-2.007 1.378-2.556 1.378-.635 0-.982-.389-1.053-.974a2.4 2.4 0 0 1 .024-.673c.21-1.31.692-2.124.662-2.372-.009-.071-.049-.106-.101-.106-.406 0-1.83 1.47-2.046 2.443l-.168.779c-.11.549-.648.902-1.018.902-.177 0-.311-.088-.334-.283a.9.9 0 0 1 .021-.266l.079-.41c-.768.574-1.596.962-1.984.962-.53 0-.827-.283-.933-.709-.35.461-.813.709-1.306.709-.63 0-1.237-.417-1.528-1.034a7.3 7.3 0 0 1-1.496 1.299c-.869.55-1.836.992-2.982.992-1.058 0-1.956-.566-2.453-1.026-.737-.69-1.126-1.718-1.241-2.656-.362-2.957 1.438-6.834 4.227-8.533a3.93 3.93 0 0 1 2.008-.584c1.34 0 2.34.958 2.48 2.104.126 1.032-.286 1.924-1.431 2.501-.584.296-.874.282-.965.141-.061-.094-.026-.254.091-.351 1.076-.899 1.096-1.637.97-2.677-.082-.669-.522-1.098-1.016-1.098-2.115 0-5.149 4.745-4.727 8.197.165 1.346.99 2.904 2.682 2.904.564 0 1.162-.159 1.694-.425.928-.474 1.453-.85 1.98-1.464-.13-1.596 1.24-3.6 3.278-3.6.882 0 1.612.354 1.698 1.062.108.885-.646 1.062-.928 1.062-.247 0-.643-.071-.671-.301-.03-.248.534-.106.464-.673-.043-.354-.411-.478-.763-.478-1.269 0-1.97 1.77-1.835 2.869.061.496.315.991.774.991.37 0 .904-.531 1.109-1.31.13-.531.632-.885 1.003-.885.194 0 .328.088.352.283a.8.8 0 0 1-.021.266c-.042.23-.219.996-.21 1.154.006.138.086.328.326.328.19 0 .89-.378 1.538-.958l.474-2.454c.079-.426.232-.865 1.096-.865.177 0 .311.088.337.301q.013.106-.021.266l-.242 1.093c.758-1.01 1.936-1.752 2.642-1.752.3 0 .531.158.57.478.022.178-.03.478-.147.814-.251.69-.533 1.727-.72 2.62-.04.19.026.476.373.476.277 0 1.166-.339 1.885-1.288q-.007-.201-.007-.408c0-.744.053-1.346.194-1.787.141-.461.723-.902 1.11-.902.194 0 .335.106.335.318 0 .071-.018.16-.053.248-.264.779-.405 1.506-.405 2.231 0 .407.088 1.062.177 1.398.018.071.034.142.105.142.123 0 .952-.814 1.551-1.806-.53-.337-.829-.956-.829-1.718 0-1.274.758-1.93 1.498-1.93.582 0 1.11.425 1.11 1.274 0 .532-.212 1.134-.51 1.718 0 0 .123.018.176.018a1.32 1.32 0 0 0 1.006-.443c.088-.1.17-.178.248-.224.59-.713 1.455-1.228 2.47-1.228.864 0 1.61.337 1.696 1.045.11.902-.661 1.08-.926 1.08-.264 0-.661-.071-.689-.301s.551-.106.484-.654c-.043-.354-.413-.496-.766-.496-1.182 0-1.994 1.576-1.838 2.85.062.514.299 1.01.758 1.01.37 0 .923-.532 1.127-1.31.131-.514.632-.885 1.002-.885.176 0 .328.088.354.301.013.106-.03.337-.227 1.168a2.6 2.6 0 0 0-.066.903c.063.514.298.85.516 1.045.079.07.126.158.132.213.017.142-.091.266-.267.266-.053 0-.123 0-.181-.035-.908-.372-1.285-.991-1.391-1.576-.35.442-.814.69-1.29.69-.811 0-1.603-.709-1.715-1.629a2.9 2.9 0 0 1 .123-1.184c-.329.203-.683.316-1.001.316-.106 0-.194 0-.299-.018-.793 1.15-1.622 1.947-2.257 2.302-.264.142-.51.213-.687.213-.142 0-.3-.035-.37-.159-.166-.277-.275-.713-.339-1.225m2.873-3.771c0 .496.246 1.01.564 1.346.124-.337.194-.673.194-1.01 0-.638-.247-.921-.441-.921-.229 0-.317.32-.317.585" })]
|
23
|
+
}), w = (t) => a(l, {
|
485
24
|
xmlns: "http://www.w3.org/2000/svg",
|
486
|
-
shapeRendering: "geometricPrecision",
|
487
|
-
textRendering: "geometricPrecision",
|
488
|
-
imageRendering: "optimizeQuality",
|
489
25
|
fillRule: "evenodd",
|
490
26
|
clipRule: "evenodd",
|
27
|
+
imageRendering: "optimizeQuality",
|
28
|
+
shapeRendering: "geometricPrecision",
|
29
|
+
textRendering: "geometricPrecision",
|
491
30
|
viewBox: "0 0 512 512",
|
492
31
|
...t,
|
493
|
-
children: [/* @__PURE__ */
|
494
|
-
}),
|
32
|
+
children: [/* @__PURE__ */ c("rect", { width: "512", height: "512", fill: "#10A37F", rx: "104.187", ry: "105.042" }), /* @__PURE__ */ c("path", { fill: "#fff", fillRule: "nonzero", d: "M378.68 230.011a71.4 71.4 0 0 0 3.654-22.541 71.4 71.4 0 0 0-9.783-36.064c-12.871-22.404-36.747-36.236-62.587-36.236a72.3 72.3 0 0 0-15.145 1.604 71.36 71.36 0 0 0-53.37-23.991h-.453l-.17.001c-31.297 0-59.052 20.195-68.673 49.967a71.37 71.37 0 0 0-47.709 34.618 72.2 72.2 0 0 0-9.755 36.226 72.2 72.2 0 0 0 18.628 48.395 71.4 71.4 0 0 0-3.655 22.541 71.4 71.4 0 0 0 9.783 36.064 72.19 72.19 0 0 0 77.728 34.631 71.38 71.38 0 0 0 53.374 23.992H271l.184-.001c31.314 0 59.06-20.196 68.681-49.995a71.38 71.38 0 0 0 47.71-34.619 72.1 72.1 0 0 0 9.736-36.194 72.2 72.2 0 0 0-18.628-48.394zM271.018 380.492h-.074a53.58 53.58 0 0 1-34.287-12.423 45 45 0 0 0 1.694-.96l57.032-32.943a9.28 9.28 0 0 0 4.688-8.06v-80.459l24.106 13.919a.86.86 0 0 1 .469.661v66.586c-.033 29.604-24.022 53.619-53.628 53.679m-115.329-49.257a53.56 53.56 0 0 1-7.196-26.798c0-3.069.268-6.146.79-9.17.424.254 1.164.706 1.695 1.011l57.032 32.943a9.29 9.29 0 0 0 9.37-.002l69.63-40.205v27.839l.001.048a.86.86 0 0 1-.345.691l-57.654 33.288a53.8 53.8 0 0 1-26.817 7.17 53.75 53.75 0 0 1-46.506-26.818zm-15.004-124.506a53.5 53.5 0 0 1 27.941-23.534c0 .491-.028 1.361-.028 1.965v65.887l-.001.054a9.27 9.27 0 0 0 4.681 8.053l69.63 40.199-24.105 13.919a.86.86 0 0 1-.813.074l-57.66-33.316a53.75 53.75 0 0 1-26.805-46.5 53.8 53.8 0 0 1 7.163-26.798zm198.055 46.089-69.63-40.204 24.106-13.914a.86.86 0 0 1 .813-.074l57.659 33.288a53.71 53.71 0 0 1 26.835 46.491c0 22.489-14.033 42.612-35.133 50.379v-67.857q.004-.038.003-.076a9.27 9.27 0 0 0-4.653-8.033m23.993-36.111a82 82 0 0 0-1.694-1.01l-57.032-32.944a9.3 9.3 0 0 0-4.684-1.266 9.3 9.3 0 0 0-4.684 1.266l-69.631 40.205v-27.839l-.001-.048c0-.272.129-.528.346-.691l57.654-33.26a53.7 53.7 0 0 1 26.816-7.177c29.644 0 53.684 24.04 53.684 53.684a54 54 0 0 1-.774 9.077zm-150.831 49.618-24.111-13.919a.86.86 0 0 1-.469-.661v-66.587c.013-29.628 24.053-53.648 53.684-53.648a53.72 53.72 0 0 1 34.349 12.426c-.434.237-1.191.655-1.694.96l-57.032 32.943a9.27 9.27 0 0 0-4.687 8.057v.053zm13.095-28.233 31.012-17.912 31.012 17.9v35.812l-31.012 17.901-31.012-17.901z" })]
|
33
|
+
}), m = (t) => a(l, {
|
495
34
|
xmlns: "http://www.w3.org/2000/svg",
|
35
|
+
width: "144",
|
36
|
+
height: "144",
|
496
37
|
viewBox: "0 0 48 48",
|
497
|
-
width: "144px",
|
498
|
-
height: "144px",
|
499
38
|
...t,
|
500
|
-
children: [/* @__PURE__ */
|
501
|
-
}),
|
39
|
+
children: [/* @__PURE__ */ c("path", { fill: "#0277BD", d: "M41 5H7l3 34 14 4 14-4z" }), /* @__PURE__ */ c("path", { fill: "#039BE5", d: "M24 8v31.9l11.2-3.2L37.7 8z" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "M33.1 13H24v4h4.9l-.3 4H24v4h4.4l-.3 4.5-4.1 1.4v4.2l7.9-2.6.7-11.5z" }), /* @__PURE__ */ c("path", { fill: "#EEE", d: "M24 13v4h-8.9l-.3-4zm-4.6 8 .2 4H24v-4zm.4 6h-4l.3 5.5 7.9 2.6v-4.2l-4.1-1.4z" })]
|
40
|
+
}), v = (t) => a(l, {
|
502
41
|
xmlns: "http://www.w3.org/2000/svg",
|
42
|
+
width: "144",
|
43
|
+
height: "144",
|
503
44
|
viewBox: "0 0 48 48",
|
504
|
-
width: "144px",
|
505
|
-
height: "144px",
|
506
45
|
...t,
|
507
|
-
children: [/* @__PURE__ */
|
508
|
-
}),
|
46
|
+
children: [/* @__PURE__ */ c("path", { fill: "#536dfe", d: "M39.248 10.177a36.3 36.3 0 0 0-8.956-2.778.14.14 0 0 0-.144.068 25 25 0 0 0-1.115 2.291 33.5 33.5 0 0 0-10.059 0c-.3-.721-.744-1.603-1.133-2.291a.14.14 0 0 0-.144-.068 36.2 36.2 0 0 0-8.956 2.778.13.13 0 0 0-.059.051c-5.704 8.522-7.267 16.835-6.5 25.044a.15.15 0 0 0 .057.103c3.763 2.764 7.409 4.442 10.987 5.554a.14.14 0 0 0 .154-.051 26 26 0 0 0 2.248-3.656.14.14 0 0 0-.076-.194 24 24 0 0 1-3.432-1.636.14.14 0 0 1-.014-.234q.348-.261.682-.534a.14.14 0 0 1 .142-.019c7.201 3.288 14.997 3.288 22.113 0a.14.14 0 0 1 .144.017c.22.182.451.363.683.536a.14.14 0 0 1-.012.234 22.5 22.5 0 0 1-3.434 1.634.14.14 0 0 0-.075.196 29 29 0 0 0 2.246 3.654c.035.049.097.07.154.052 3.595-1.112 7.241-2.79 11.004-5.554a.14.14 0 0 0 .057-.101c.917-9.491-1.537-17.735-6.505-25.044a.1.1 0 0 0-.057-.052M16.703 30.273c-2.168 0-3.954-1.99-3.954-4.435s1.752-4.435 3.954-4.435c2.22 0 3.989 2.008 3.954 4.435.001 2.444-1.751 4.435-3.954 4.435m14.621 0c-2.168 0-3.954-1.99-3.954-4.435s1.752-4.435 3.954-4.435c2.22 0 3.989 2.008 3.954 4.435 0 2.444-1.734 4.435-3.954 4.435" })]
|
47
|
+
}), b = (t) => a(l, {
|
509
48
|
xmlns: "http://www.w3.org/2000/svg",
|
49
|
+
width: "144",
|
50
|
+
height: "144",
|
510
51
|
viewBox: "0 0 48 48",
|
511
|
-
width: "144px",
|
512
|
-
height: "144px",
|
513
52
|
...t,
|
514
|
-
children: [/* @__PURE__ */
|
515
|
-
}),
|
53
|
+
children: [/* @__PURE__ */ c("path", { fill: "#e64a19", d: "M26 17h-8a7 7 0 1 1 0-14h8z" }), /* @__PURE__ */ c("path", { fill: "#7c4dff", d: "M25 31h-7a7 7 0 1 1 0-14h7z" }), /* @__PURE__ */ c("path", { fill: "#66bb6a", d: "M18 45a7 7 0 1 1 0-14h7v7a7 7 0 0 1-7 7" }), /* @__PURE__ */ c("path", { fill: "#ff7043", d: "M32 17h-7V3h7a7 7 0 1 1 0 14" }), /* @__PURE__ */ c("circle", { cx: "32", cy: "24", r: "7", fill: "#29b6f6" })]
|
54
|
+
}), M = (t) => a(l, {
|
516
55
|
xmlns: "http://www.w3.org/2000/svg",
|
56
|
+
width: "144",
|
57
|
+
height: "144",
|
517
58
|
viewBox: "0 0 48 48",
|
518
|
-
width: "144px",
|
519
|
-
height: "144px",
|
520
59
|
...t,
|
521
|
-
children: [/* @__PURE__ */
|
522
|
-
}),
|
60
|
+
children: [/* @__PURE__ */ c("path", { fill: "#ff8f00", d: "M8 37 23.234 8.436a.84.84 0 0 1 1.494.02L30 19z" }), /* @__PURE__ */ c("path", { fill: "#ffa000", d: "m8 36.992 5.546-34.199c.145-.895 1.347-1.089 1.767-.285L26 22.992z" }), /* @__PURE__ */ c("path", { fill: "#ff6f00", d: "m8.008 36.986.2-.157 17.529-14.341-4.944-9.476z" }), /* @__PURE__ */ c("path", { fill: "#ffc400", d: "m8 37 26.666-25.713a.954.954 0 0 1 1.606.547L40 37l-15 8.743a2 2 0 0 1-1.961 0z" })]
|
61
|
+
}), x = (t) => a(l, {
|
523
62
|
xmlns: "http://www.w3.org/2000/svg",
|
63
|
+
width: "144",
|
64
|
+
height: "144",
|
524
65
|
viewBox: "0 0 48 48",
|
525
|
-
width: "144px",
|
526
|
-
height: "144px",
|
527
66
|
...t,
|
528
|
-
children: [/* @__PURE__ */
|
529
|
-
}),
|
67
|
+
children: [/* @__PURE__ */ c("path", { fill: "#F4511E", d: "M42.2 22.1 25.9 5.8c-.5-.5-1.2-.8-1.9-.8s-1.4.3-1.9.8l-3.5 3.5 4.1 4.1c.4-.2.8-.3 1.3-.3 1.7 0 3 1.3 3 3 0 .5-.1.9-.3 1.3l4 4c.4-.2.8-.3 1.3-.3 1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3c0-.5.1-.9.3-1.3l-4-4c-.1 0-.2.1-.3.1v10.4c1.2.4 2 1.5 2 2.8 0 1.7-1.3 3-3 3s-3-1.3-3-3c0-1.3.8-2.4 2-2.8V18.8c-1.2-.4-2-1.5-2-2.8 0-.5.1-.9.3-1.3l-4.1-4.1L5.8 22.1c-.5.5-.8 1.2-.8 1.9s.3 1.4.8 1.9l16.3 16.3c.5.5 1.2.8 1.9.8s1.4-.3 1.9-.8l16.3-16.3c.5-.5.8-1.2.8-1.9s-.3-1.4-.8-1.9" })]
|
68
|
+
}), u = (t) => a(l, {
|
530
69
|
xmlns: "http://www.w3.org/2000/svg",
|
70
|
+
width: "144",
|
71
|
+
height: "144",
|
531
72
|
viewBox: "0 0 64 64",
|
532
|
-
width: "144px",
|
533
|
-
height: "144px",
|
534
73
|
...t,
|
535
|
-
children: [/* @__PURE__ */
|
536
|
-
}),
|
74
|
+
children: [/* @__PURE__ */ c("path", { d: "M32 6C17.641 6 6 17.641 6 32c0 12.277 8.512 22.56 19.955 25.286a26 26 0 0 1-1.755-.479V50.85s-.975.325-2.275.325c-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.792-.2-.567-.533-1.714-.533-3.583 0-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.557q-.865.27-1.755.479C49.488 54.56 58 44.277 58 32 58 17.641 46.359 6 32 6m-2.212 51.9" })]
|
75
|
+
}), C = (t) => a(l, {
|
537
76
|
xmlns: "http://www.w3.org/2000/svg",
|
77
|
+
width: "144",
|
78
|
+
height: "144",
|
538
79
|
viewBox: "0 0 48 48",
|
539
|
-
width: "144px",
|
540
|
-
height: "144px",
|
541
80
|
...t,
|
542
|
-
children: [/* @__PURE__ */
|
543
|
-
}),
|
81
|
+
children: [/* @__PURE__ */ c("path", { fill: "#4caf50", d: "m45 16.2-5 2.75-5 4.75V40h7a3 3 0 0 0 3-3z" }), /* @__PURE__ */ c("path", { fill: "#1e88e5", d: "m3 16.2 3.614 1.71L13 23.7V40H6a3 3 0 0 1-3-3z" }), /* @__PURE__ */ c("path", { fill: "#e53935", d: "m35 11.2-11 8.25-11-8.25-1 5.8 1 6.7 11 8.25 11-8.25 1-6.7z" }), /* @__PURE__ */ c("path", { fill: "#c62828", d: "M3 12.298V16.2l10 7.5V11.2L9.876 8.859A4.298 4.298 0 0 0 3 12.298" }), /* @__PURE__ */ c("path", { fill: "#fbc02d", d: "M45 12.298V16.2l-10 7.5V11.2l3.124-2.341A4.298 4.298 0 0 1 45 12.298" })]
|
82
|
+
}), z = (t) => a(l, {
|
544
83
|
xmlns: "http://www.w3.org/2000/svg",
|
84
|
+
width: "144",
|
85
|
+
height: "144",
|
545
86
|
viewBox: "0 0 48 48",
|
546
|
-
width: "144px",
|
547
|
-
height: "144px",
|
548
87
|
...t,
|
549
|
-
children: [/* @__PURE__ */
|
550
|
-
/* @__PURE__ */
|
551
|
-
/* @__PURE__ */
|
552
|
-
/* @__PURE__ */
|
553
|
-
/* @__PURE__ */
|
554
|
-
/* @__PURE__ */
|
555
|
-
/* @__PURE__ */
|
556
|
-
/* @__PURE__ */
|
557
|
-
] }), /* @__PURE__ */
|
558
|
-
/* @__PURE__ */
|
559
|
-
/* @__PURE__ */
|
560
|
-
] }), /* @__PURE__ */
|
561
|
-
}),
|
88
|
+
children: [/* @__PURE__ */ i("radialGradient", { id: "a", cx: "19.38", cy: "42.035", r: "44.899", gradientUnits: "userSpaceOnUse", children: [
|
89
|
+
/* @__PURE__ */ c("stop", { offset: "0", stopColor: "#fd5" }),
|
90
|
+
/* @__PURE__ */ c("stop", { offset: ".328", stopColor: "#ff543f" }),
|
91
|
+
/* @__PURE__ */ c("stop", { offset: ".348", stopColor: "#fc5245" }),
|
92
|
+
/* @__PURE__ */ c("stop", { offset: ".504", stopColor: "#e64771" }),
|
93
|
+
/* @__PURE__ */ c("stop", { offset: ".643", stopColor: "#d53e91" }),
|
94
|
+
/* @__PURE__ */ c("stop", { offset: ".761", stopColor: "#cc39a4" }),
|
95
|
+
/* @__PURE__ */ c("stop", { offset: ".841", stopColor: "#c837ab" })
|
96
|
+
] }), /* @__PURE__ */ c("path", { fill: "url(#a)", d: "m34.017 41.99-20 .019c-4.4.004-8.003-3.592-8.008-7.992l-.019-20c-.004-4.4 3.592-8.003 7.992-8.008l20-.019c4.4-.004 8.003 3.592 8.008 7.992l.019 20c.005 4.401-3.592 8.004-7.992 8.008" }), /* @__PURE__ */ i("radialGradient", { id: "b", cx: "11.786", cy: "5.54", r: "29.813", gradientTransform: "matrix(1 0 0 .6663 0 1.849)", gradientUnits: "userSpaceOnUse", children: [
|
97
|
+
/* @__PURE__ */ c("stop", { offset: "0", stopColor: "#4168c9" }),
|
98
|
+
/* @__PURE__ */ c("stop", { offset: ".999", stopColor: "#4168c9", stopOpacity: "0" })
|
99
|
+
] }), /* @__PURE__ */ c("path", { fill: "url(#b)", d: "m34.017 41.99-20 .019c-4.4.004-8.003-3.592-8.008-7.992l-.019-20c-.004-4.4 3.592-8.003 7.992-8.008l20-.019c4.4-.004 8.003 3.592 8.008 7.992l.019 20c.005 4.401-3.592 8.004-7.992 8.008" }), /* @__PURE__ */ c("path", { fill: "#fff", d: "M24 31c-3.859 0-7-3.14-7-7s3.141-7 7-7 7 3.14 7 7-3.141 7-7 7m0-12c-2.757 0-5 2.243-5 5s2.243 5 5 5 5-2.243 5-5-2.243-5-5-5" }), /* @__PURE__ */ c("circle", { cx: "31.5", cy: "16.5", r: "1.5", fill: "#fff" }), /* @__PURE__ */ c("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 7v12c0 3.86-3.141 7-7 7M18 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-5z" })]
|
100
|
+
}), F = (t) => a(l, {
|
562
101
|
xmlns: "http://www.w3.org/2000/svg",
|
102
|
+
width: "144",
|
103
|
+
height: "144",
|
563
104
|
viewBox: "0 0 48 48",
|
564
|
-
width: "144px",
|
565
|
-
height: "144px",
|
566
105
|
...t,
|
567
|
-
children: [/* @__PURE__ */
|
568
|
-
}),
|
106
|
+
children: [/* @__PURE__ */ c("path", { fill: "#ffd600", d: "M6 42V6h36v36z" }), /* @__PURE__ */ c("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.368zm-11.586.082c.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.368z" })]
|
107
|
+
}), y = (t) => a(l, {
|
569
108
|
xmlns: "http://www.w3.org/2000/svg",
|
109
|
+
width: "144",
|
110
|
+
height: "144",
|
570
111
|
viewBox: "0 0 48 48",
|
571
|
-
width: "144px",
|
572
|
-
height: "144px",
|
573
112
|
...t,
|
574
|
-
children: [/* @__PURE__ */
|
575
|
-
}),
|
113
|
+
children: [/* @__PURE__ */ c("path", { fill: "#0078d4", d: "M42 37a5 5 0 0 1-5 5H11a5 5 0 0 1-5-5V11a5 5 0 0 1 5-5h26a5 5 0 0 1 5 5z" }), /* @__PURE__ */ c("path", { d: "M30 37V26.901c0-1.689-.819-2.698-2.192-2.698-.815 0-1.414.459-1.779 1.364-.017.064-.041.325-.031 1.114L26 37h-7V18h7v1.061C27.022 18.356 28.275 18 29.738 18c4.547 0 7.261 3.093 7.261 8.274L37 37zm-19 0V18h3.457C12.454 18 11 16.528 11 14.499 11 12.472 12.478 11 14.514 11c2.012 0 3.445 1.431 3.486 3.479C18 16.523 16.521 18 14.485 18H18v19z", opacity: ".05" }), /* @__PURE__ */ c("path", { d: "M30.5 36.5v-9.599c0-1.973-1.031-3.198-2.692-3.198-1.295 0-1.935.912-2.243 1.677-.082.199-.071.989-.067 1.326L25.5 36.5h-6v-18h6v1.638c.795-.823 2.075-1.638 4.238-1.638 4.233 0 6.761 2.906 6.761 7.774L36.5 36.5zm-19 0v-18h6v18zm2.957-19c-1.713 0-2.957-1.262-2.957-3.001s1.268-2.999 3.014-2.999c1.724 0 2.951 1.229 2.986 2.989 0 1.749-1.268 3.011-3.015 3.011z", opacity: ".07" }), /* @__PURE__ */ c("path", { fill: "#fff", d: "M12 19h5v17h-5zm2.485-2h-.028C12.965 17 12 15.888 12 14.499 12 13.08 12.995 12 14.514 12c1.521 0 2.458 1.08 2.486 2.499C17 15.887 16.035 17 14.485 17M36 36h-5v-9.099c0-2.198-1.225-3.698-3.192-3.698-1.501 0-2.313 1.012-2.707 1.99-.144.35-.101 1.318-.101 1.807v9h-5V19h5v2.616C25.721 20.5 26.85 19 29.738 19c3.578 0 6.261 2.25 6.261 7.274z" })]
|
114
|
+
}), k = (t) => a(l, {
|
576
115
|
xmlns: "http://www.w3.org/2000/svg",
|
116
|
+
width: "144",
|
117
|
+
height: "144",
|
577
118
|
viewBox: "0 0 48 48",
|
578
|
-
width: "144px",
|
579
|
-
height: "144px",
|
580
119
|
...t,
|
581
|
-
children: [/* @__PURE__ */
|
582
|
-
}),
|
120
|
+
children: [/* @__PURE__ */ c("path", { fill: "#5d4037", d: "M42 17.3C42 37.8 24 44 24 44S6 37.8 6 17.3c0-2.5.2-4.6.4-6.3.3-2.5 2-4.5 4.4-5.1C13.9 5 18.8 4 24 4s10.1 1 13.3 1.9c2.4.6 4.1 2.7 4.4 5.1.1 1.7.3 3.9.3 6.3" }), /* @__PURE__ */ c("path", { fill: "#4caf50", d: "M24 7c4.9 0 9.5 1 12.5 1.8 1.2.3 2 1.3 2.2 2.6.2 1.9.3 3.9.3 5.9 0 15.6-11.5 21.9-15 23.4-3.5-1.6-15-7.9-15-23.4 0-2 .1-4 .3-5.9.1-1.3 1-2.3 2.2-2.6C14.5 8 19.1 7 24 7m0-3c-5.2 0-10.1 1-13.3 1.9-2.3.6-4.1 2.7-4.3 5.1-.2 1.7-.4 3.9-.4 6.3C6 37.8 24 44 24 44s18-6.2 18-26.7c0-2.5-.2-4.6-.4-6.3-.3-2.5-2-4.5-4.4-5.1C34.1 5 29.2 4 24 4" }), /* @__PURE__ */ c("path", { fill: "#dcedc8", d: "M23 28h2v8h-2z" }), /* @__PURE__ */ c("path", { fill: "#4caf50", d: "M24 10s-6 5-6 13c0 5.2 3.3 8.5 5 10l1-3 1 3c1.7-1.5 5-4.8 5-10 0-8-6-13-6-13" }), /* @__PURE__ */ c("path", { fill: "#81c784", d: "M24 10s-6 5-6 13c0 5.2 3.3 8.5 5 10l1-3z" })]
|
121
|
+
}), V = (t) => a(l, {
|
583
122
|
xmlns: "http://www.w3.org/2000/svg",
|
584
|
-
|
585
|
-
|
586
|
-
height: "144px",
|
123
|
+
width: "144",
|
124
|
+
height: "144",
|
587
125
|
baseProfile: "basic",
|
126
|
+
viewBox: "0 0 48 48",
|
588
127
|
...t,
|
589
|
-
children: [/* @__PURE__ */
|
590
|
-
/* @__PURE__ */
|
591
|
-
/* @__PURE__ */
|
592
|
-
/* @__PURE__ */
|
593
|
-
] }), /* @__PURE__ */
|
594
|
-
/* @__PURE__ */
|
595
|
-
/* @__PURE__ */
|
596
|
-
/* @__PURE__ */
|
597
|
-
] }), /* @__PURE__ */
|
598
|
-
/* @__PURE__ */
|
599
|
-
/* @__PURE__ */
|
600
|
-
/* @__PURE__ */
|
601
|
-
] }), /* @__PURE__ */
|
602
|
-
}),
|
128
|
+
children: [/* @__PURE__ */ i("linearGradient", { id: "a", x1: "24", x2: "24", y1: "43.734", y2: "4.266", gradientUnits: "userSpaceOnUse", children: [
|
129
|
+
/* @__PURE__ */ c("stop", { offset: "0", stopColor: "#0a070a" }),
|
130
|
+
/* @__PURE__ */ c("stop", { offset: ".465", stopColor: "#2b2b2b" }),
|
131
|
+
/* @__PURE__ */ c("stop", { offset: "1", stopColor: "#4b4b4b" })
|
132
|
+
] }), /* @__PURE__ */ c("circle", { cx: "24", cy: "24", r: "19.734", fill: "url(#a)" }), /* @__PURE__ */ c("path", { fill: "#fff", d: "M15.992 16.027h3.023v15.996h-3.023z" }), /* @__PURE__ */ i("linearGradient", { id: "b", x1: "30.512", x2: "30.512", y1: "33.021", y2: "18.431", gradientUnits: "userSpaceOnUse", children: [
|
133
|
+
/* @__PURE__ */ c("stop", { offset: ".377", stopColor: "#fff", stopOpacity: "0" }),
|
134
|
+
/* @__PURE__ */ c("stop", { offset: ".666", stopColor: "#fff", stopOpacity: ".3" }),
|
135
|
+
/* @__PURE__ */ c("stop", { offset: ".988", stopColor: "#fff" })
|
136
|
+
] }), /* @__PURE__ */ c("path", { fill: "url(#b)", d: "M29.035 15.957h2.953v14.59h-2.953z" }), /* @__PURE__ */ i("linearGradient", { id: "c", x1: "22.102", x2: "36.661", y1: "21.443", y2: "40.529", gradientUnits: "userSpaceOnUse", children: [
|
137
|
+
/* @__PURE__ */ c("stop", { offset: ".296", stopColor: "#fff" }),
|
138
|
+
/* @__PURE__ */ c("stop", { offset: ".521", stopColor: "#fff", stopOpacity: ".5" }),
|
139
|
+
/* @__PURE__ */ c("stop", { offset: ".838", stopColor: "#fff", stopOpacity: "0" })
|
140
|
+
] }), /* @__PURE__ */ c("path", { fill: "url(#c)", d: "m36.781 38.094-2.613.996-18.176-23.063h3.516z" })]
|
141
|
+
}), I = (t) => a(l, {
|
603
142
|
xmlns: "http://www.w3.org/2000/svg",
|
143
|
+
width: "144",
|
144
|
+
height: "144",
|
604
145
|
viewBox: "0 0 50 50",
|
605
|
-
width: "144px",
|
606
|
-
height: "144px",
|
607
146
|
...t,
|
608
|
-
children: [/* @__PURE__ */
|
609
|
-
}),
|
610
|
-
viewBox: "0 0 512 512",
|
147
|
+
children: [/* @__PURE__ */ c("path", { d: "M31.494 5.15 5.928 7.002l-.024.002-.039.006-.072.011-.03.008-.033.008-.072.024-.047.02-.027.01a1 1 0 0 0-.15.087l-.026.015-.06.05-.012.01-.049.046-.03.033-.042.05-.016.02-.043.063-.011.02-.038.064-.013.027-.03.072-.003.008a1 1 0 0 0-.045.174l-.006.031-.008.08v.004L5 8v25.738a5 5 0 0 0 .904 2.87l.05.064 6.173 7.43a1 1 0 0 0 .232.28l.391.47a1 1 0 0 0 .168.16c.587.57 1.4.906 2.275.85l27-1.743A3.014 3.014 0 0 0 45 41.125V15.133c0-.924-.434-1.742-1.096-2.293a1 1 0 0 0-.156-.145l-.484-.357a1 1 0 0 0-.202-.149l-8.238-6.076a5 5 0 0 0-3.33-.963m.145 1.995a3 3 0 0 1 1.998.578l6.13 4.523-25.025 1.639a3 3 0 0 1-2.316-.873h-.002L8.254 8.84zM7 10.415l4.012 4.01.988.99v25.403L7.54 35.45A3 3 0 0 1 7 33.74zm34.936 3.72a.984.984 0 0 1 1.064.998v25.992c0 .536-.4.963-.936.998l-27 1.742a1 1 0 0 1-.75-.26l-.002-.001-.001-.002q-.006-.007-.01-.014l-.012-.016a1 1 0 0 1-.289-.705V16.875c0-.537.4-.963.936-.998zM38.496 19l-5.074.281c-.774.08-1.676.657-1.676 1.594l2.25.188v10.69l-7.781-12.001-5.832.328c-1.091.08-1.389.891-1.389 1.922h2.25v15.564s-1.052.284-1.404.375c-.748.193-.846.844-.846 1.313 0 0 3.753-.188 5.479-.318 1.959-.15 2.023-1.463 2.023-1.463l-2.25-.47V25.472s5.72 9.19 7.469 11.89c.823 1.27 1.437 1.518 2.52 1.518.887 0 1.727-.262 2.76-.82V20.697s.19-.01.788-.203c.683-.22.713-.838.713-1.494" })]
|
148
|
+
}), B = (t) => a(l, {
|
611
149
|
xmlns: "http://www.w3.org/2000/svg",
|
612
150
|
fillRule: "evenodd",
|
613
|
-
clipRule: "evenodd",
|
614
151
|
strokeLinejoin: "round",
|
615
152
|
strokeMiterlimit: "2",
|
153
|
+
clipRule: "evenodd",
|
154
|
+
viewBox: "0 0 512 512",
|
616
155
|
...t,
|
617
|
-
children: [/* @__PURE__ */
|
618
|
-
}),
|
619
|
-
width: "144px",
|
620
|
-
height: "144px",
|
621
|
-
viewBox: "0 0 256 256",
|
622
|
-
version: "1.1",
|
156
|
+
children: [/* @__PURE__ */ c("path", { fillRule: "nonzero", 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 0 0-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.008zm-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.97 16.97 0 0 0-16.687 0L206.621 194.5v-50.232l97.883-56.597c45.587-26.32 103.732-10.666 130.052 34.921m-227.935 104.42 49.888-28.9 49.887 28.9v57.63l-49.887 28.9-49.888-28.9zm23.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.302zM52.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.97 16.97 0 0 0 16.687 0L306.568 317.5v50.232l-97.883 56.425c-45.587 26.148-103.732 10.665-130.052-34.75zm204.54 87.39c-22.192 0-43.867-7.741-60.898-22.02a62 62 0 0 0 3.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.053z" })]
|
157
|
+
}), L = (t) => a(l, {
|
623
158
|
xmlns: "http://www.w3.org/2000/svg",
|
624
|
-
|
159
|
+
width: "144",
|
160
|
+
height: "144",
|
625
161
|
preserveAspectRatio: "xMidYMid",
|
626
|
-
|
162
|
+
viewBox: "0 0 256 256",
|
627
163
|
...t,
|
628
|
-
children: [/* @__PURE__ */
|
629
|
-
|
630
|
-
/* @__PURE__ */ N("g", { transform: "translate(50.181225, 45.198924)", children: [
|
631
|
-
/* @__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" }),
|
632
|
-
/* @__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" }),
|
633
|
-
/* @__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" }),
|
634
|
-
/* @__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" }),
|
635
|
-
/* @__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" }),
|
636
|
-
/* @__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" }),
|
637
|
-
/* @__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" }),
|
638
|
-
/* @__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" }),
|
639
|
-
/* @__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" }),
|
640
|
-
/* @__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" }),
|
641
|
-
/* @__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" }),
|
642
|
-
/* @__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" }),
|
643
|
-
/* @__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" }),
|
644
|
-
/* @__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" }),
|
645
|
-
/* @__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" }),
|
646
|
-
/* @__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" }),
|
647
|
-
/* @__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" }),
|
648
|
-
/* @__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" }),
|
649
|
-
/* @__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" }),
|
650
|
-
/* @__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" })
|
651
|
-
] })
|
652
|
-
] }) })]
|
653
|
-
}), D1 = (t) => x(b, {
|
164
|
+
children: [/* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M254.953 144.253c8.959-70.131-40.569-134.248-110.572-143.206C74.378-7.912 10.005 41.616 1.047 111.619c-8.959 70.003 40.569 134.248 110.572 143.334 70.131 8.959 134.248-40.569 143.334-110.7" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "m174.2 82.184-54.007 54.007-15.229-15.23c53.11-53.11 58.358-48.503 69.236-38.777" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M120.193 137.47c-.384 0-.64-.128-.895-.384l-15.358-15.229a1.237 1.237 0 0 1 0-1.792c54.007-54.006 59.638-48.887 71.028-38.649.255.256.383.512.383.896s-.128.64-.383.896l-54.007 53.878c-.128.256-.512.384-.768.384m-13.437-16.509 13.437 13.438 52.087-52.087c-9.47-8.446-15.87-11.006-65.524 38.65" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "m135.679 151.676-14.718-14.718 54.007-54.006c14.46 14.59-7.167 38.265-39.29 68.724" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M135.679 152.956c-.384 0-.64-.128-.896-.384l-14.718-14.718c-.256-.256-.256-.512-.256-.896s.128-.64.384-.895L174.2 82.056a1.237 1.237 0 0 1 1.791 0 15.58 15.58 0 0 1 4.991 11.902c-.256 14.206-16.38 32.25-44.28 58.614-.383.256-.767.384-1.023.384m-12.926-15.998c8.19 8.319 11.646 11.646 12.926 12.926 21.5-20.476 42.36-41.464 42.488-55.926.128-3.327-1.152-6.655-3.327-9.214z" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "m105.22 121.345 10.878 10.878q.384.384 0 .768c-.128.128-.128.128-.256.128l-22.524 4.863c-1.152.128-2.175-.64-2.431-1.791-.128-.64.128-1.28.512-1.664l13.053-13.054c.256-.256.64-.384.768-.128" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M92.934 139.262c-1.92 0-3.327-1.536-3.327-3.455 0-.896.384-1.792 1.024-2.432l13.053-13.054c.768-.64 1.792-.64 2.56 0l10.878 10.878c.768.64.768 1.792 0 2.56-.256.256-.512.384-.896.512l-22.524 4.863c-.256 0-.512.128-.768.128m11.902-16.51-12.542 12.543c-.256.256-.383.64-.128 1.024.128.383.512.511.896.383l21.116-4.607z" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "M202.739 52.238c-8.191-7.935-21.373-7.679-29.307.64-7.935 8.318-7.679 21.372.64 29.306A20.68 20.68 0 0 0 199.155 85l-14.59-14.59z" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M188.405 89.223c-12.158 0-22.012-9.854-22.012-22.012s9.854-22.012 22.012-22.012c5.631 0 11.134 2.176 15.23 6.143.255.256.383.512.383.896s-.128.64-.384.895L186.357 70.41l13.566 13.566c.512.512.512 1.28 0 1.792l-.256.256c-3.327 2.047-7.295 3.199-11.262 3.199m0-41.337c-10.75 0-19.452 8.703-19.324 19.453 0 10.75 8.702 19.452 19.452 19.324 2.944 0 5.887-.64 8.575-2.047l-13.438-13.31c-.256-.256-.384-.512-.384-.896s.128-.64.384-.895l17.149-17.15c-3.456-2.943-7.807-4.479-12.414-4.479" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "m203.122 52.622-.255-.256-18.301 18.044 14.461 14.462c1.408-.896 2.816-1.92 3.967-3.072a20.51 20.51 0 0 0 .128-29.178" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M199.155 86.28c-.384 0-.64-.128-.896-.384l-14.589-14.59c-.256-.256-.384-.512-.384-.896s.128-.64.384-.895l18.173-18.173a1.237 1.237 0 0 1 1.791 0l.384.256c8.575 8.574 8.575 22.396.128 31.098-1.28 1.28-2.687 2.432-4.223 3.328-.384.128-.64.256-.768.256m-12.798-15.87 12.926 12.926c1.024-.64 2.048-1.536 2.816-2.304 7.294-7.294 7.678-19.196.64-26.875z" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "M176.375 84.488a7.88 7.88 0 0 0-11.134 0l-48.247 48.247 8.063 8.063 51.062-44.792c3.328-2.816 3.584-7.807.768-11.134-.256-.128-.384-.256-.512-.384" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M124.929 142.077c-.384 0-.64-.128-.896-.383l-8.063-8.063a1.237 1.237 0 0 1 0-1.792l48.247-48.247a9.115 9.115 0 0 1 12.926 0 9.115 9.115 0 0 1 0 12.926l-.384.384-51.063 44.792q-.192.383-.767.383m-6.143-9.342 6.27 6.271 50.167-44.024c2.816-2.304 3.072-6.527.768-9.342-2.303-2.816-6.526-3.072-9.342-.768-.128.128-.256.256-.512.384z" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "M80.009 187.637c-.512.256-.768.768-.64 1.28l2.175 9.214c.512 1.28-.256 2.816-1.663 3.2-1.024.384-2.176 0-2.816-.768l-14.077-13.95 45.943-45.943 15.87.256 10.75 10.75c-2.56 2.175-18.045 17.149-55.542 35.961" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M78.985 202.61c-1.024 0-2.048-.383-2.688-1.151l-13.95-13.95c-.255-.256-.383-.512-.383-.896 0-.383.128-.64.384-.895l45.944-45.944c.256-.256.64-.384.895-.384l15.87.256c.383 0 .64.128.895.384l10.75 10.75c.256.256.384.64.384 1.024s-.128.64-.512.896l-.895.767c-13.566 11.902-31.995 23.804-54.902 35.194l2.175 9.086c.384 1.664-.384 3.456-1.92 4.352-.767.384-1.407.512-2.047.512m-14.078-15.997 13.182 13.054c.384.64 1.152.896 1.792.512s.896-1.152.512-1.792l-2.176-9.214c-.256-1.152.256-2.176 1.28-2.688 22.652-11.39 40.952-23.163 54.39-34.81l-9.47-9.47-14.718-.256z" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "m52.11 197.62 11.006-11.007 16.38 16.381-26.107-1.791c-1.151-.128-1.92-1.152-1.791-2.304 0-.512.128-1.024.512-1.28" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "m79.497 204.146-26.236-1.791c-1.92-.128-3.199-1.792-3.071-3.712.128-.768.384-1.535 1.024-2.047L62.22 185.59a1.237 1.237 0 0 1 1.792 0l16.38 16.38c.385.385.512.897.257 1.408q-.384.768-1.152.768m-16.381-15.74-10.11 10.11c-.384.255-.384.895 0 1.151.127.128.255.256.511.256l22.652 1.536zM104.452 146.557c-.768 0-1.28-.64-1.28-1.28 0-.384.128-.64.384-.896l12.414-12.414a1.237 1.237 0 0 1 1.792 0l8.062 8.063c.384.384.512.768.384 1.28-.128.384-.512.767-1.023.895l-20.477 4.352zm12.414-11.902-8.446 8.446 13.821-2.943z" }), /* @__PURE__ */ c("path", { fill: "#FFF", d: "m124.8 140.926-14.077 3.071c-1.024.256-2.048-.384-2.303-1.408-.128-.64 0-1.28.511-1.791l7.807-7.807z" }), /* @__PURE__ */ c("path", { fill: "#FF6C37", d: "M110.467 145.277a3.17 3.17 0 0 1-3.2-3.2c0-.895.385-1.663.897-2.303l7.806-7.807a1.237 1.237 0 0 1 1.792 0l8.062 8.063c.384.384.512.768.384 1.28-.128.384-.512.767-1.023.895l-14.078 3.072zm6.399-10.622-6.91 6.91c-.257.257-.257.512-.129.768q.192.384.768.384l11.774-2.56zM203.25 64.907c-.256-.767-1.151-1.151-1.92-.895-.767.255-1.151 1.151-.895 1.92 0 .127.128.255.128.383.768 1.536.512 3.455-.512 4.863-.512.64-.384 1.536.128 2.048.64.512 1.536.384 2.048-.256 1.92-2.432 2.303-5.503 1.023-8.063" })]
|
165
|
+
}), S = (t) => a(l, {
|
654
166
|
xmlns: "http://www.w3.org/2000/svg",
|
655
|
-
|
656
|
-
|
657
|
-
height: "144px",
|
167
|
+
width: "144",
|
168
|
+
height: "144",
|
658
169
|
clipRule: "evenodd",
|
170
|
+
viewBox: "0 0 50 50",
|
659
171
|
...t,
|
660
|
-
children: [/* @__PURE__ */
|
661
|
-
}),
|
172
|
+
children: [/* @__PURE__ */ c("path", { fillRule: "evenodd", d: "M34.555 3.984c-.78-.026-1.596.11-2.414.375-1.637.53-3.352 1.565-5.112 2.996a32 32 0 0 0-2.084 1.883 32 32 0 0 0-2.039-1.836c-1.758-1.43-3.468-2.464-5.101-2.994s-3.258-.546-4.592.225c-1.334.77-2.132 2.184-2.49 3.863s-.319 3.678.04 5.916c.126.778.304 1.593.507 2.424-.763.231-1.503.474-2.19.742-2.072.81-3.787 1.778-5.035 2.93s-2.055 2.55-2.055 4.086c0 1.535.806 2.932 2.055 4.084C5.293 29.83 7.008 30.8 9.08 31.609c.734.287 1.53.545 2.35.79a32 32 0 0 0-.698 3.187c-.36 2.24-.397 4.24-.039 5.922.36 1.682 1.157 3.105 2.498 3.879s2.973.755 4.61.224c1.636-.53 3.35-1.562 5.11-2.994a32 32 0 0 0 2.066-1.863c.695.677 1.389 1.314 2.076 1.873 1.758 1.43 3.47 2.463 5.103 2.992 1.633.53 3.258.546 4.592-.224s2.13-2.185 2.488-3.864.319-3.676-.04-5.914a32 32 0 0 0-.7-3.197c.848-.25 1.668-.515 2.424-.81 2.072-.81 3.787-1.78 5.035-2.932s2.055-2.549 2.055-4.084c0-1.536-.806-2.934-2.055-4.086-1.248-1.152-2.963-2.12-5.035-2.93a30 30 0 0 0-2.223-.752c.205-.836.386-1.657.512-2.44.36-2.24.398-4.24.039-5.923s-1.159-3.103-2.5-3.877c-.67-.387-1.414-.575-2.193-.602m-.092 2.036c.49.013.907.13 1.264.335.714.413 1.241 1.215 1.523 2.536s.272 3.104-.06 5.173c-.114.709-.28 1.46-.467 2.229a46.4 46.4 0 0 0-6.676-1.072 48 48 0 0 0-3.674-4.518 29 29 0 0 1 1.947-1.76c1.626-1.322 3.165-2.222 4.45-2.638.642-.209 1.204-.299 1.693-.285m-18.977.005c.492-.013 1.055.077 1.7.286 1.288.417 2.83 1.317 4.457 2.64a29 29 0 0 1 1.906 1.723 48 48 0 0 0-3.701 4.556 46 46 0 0 0-6.647 1.08 29 29 0 0 1-.465-2.216c-.332-2.071-.34-3.856-.058-5.18s.814-2.133 1.535-2.549c.36-.208.781-.326 1.273-.34m9.49 6.118c.815.886 1.63 1.856 2.438 2.9A58 58 0 0 0 25 14.99q-1.249.001-2.46.055a45 45 0 0 1 2.437-2.902M25 17.01c1.36 0 2.685.056 3.975.15a57 57 0 0 1 2.58 4.057 57 57 0 0 1 1.98 3.752 57 57 0 0 1-2.008 3.802 57 57 0 0 1-2.011 3.215c-1.457.122-2.966.19-4.516.19a54 54 0 0 1-4.62-.2 57 57 0 0 1-1.978-3.165 57 57 0 0 1-2.002-3.795 57 57 0 0 1 2.012-3.817 57 57 0 0 1 2.568-4.035A54 54 0 0 1 25 17.01m6.549.4c1.648.206 3.196.491 4.637.834a45 45 0 0 1-1.592 4.375c-.414-.798-.843-1.6-1.307-2.402a60 60 0 0 0-1.738-2.807m-13.205.016c-.58.89-1.15 1.799-1.7 2.752-.469.813-.907 1.625-1.326 2.433a45 45 0 0 1-1.58-4.35 43 43 0 0 1 4.606-.835m19.82 1.35c.709.214 1.394.438 2.022.683 1.91.746 3.42 1.63 4.4 2.533.98.904 1.404 1.766 1.404 2.602s-.425 1.698-1.404 2.601c-.98.904-2.49 1.787-4.4 2.534-.698.272-1.465.52-2.262.753a50 50 0 0 0-2.158-5.466 48.4 48.4 0 0 0 2.398-6.24m-26.361.01a48 48 0 0 0 2.367 6.177A50 50 0 0 0 12 30.46a28 28 0 0 1-2.186-.732c-1.91-.747-3.42-1.63-4.4-2.534S4.01 25.43 4.01 24.594s.425-1.698 1.404-2.602c.98-.904 2.49-1.787 4.4-2.533a28 28 0 0 1 1.989-.674M25 20c-2.75 0-5 2.25-5 5s2.25 5 5 5 5-2.25 5-5-2.25-5-5-5m-9.658 7.365c.42.813.858 1.628 1.33 2.446q.554.957 1.129 1.873a43 43 0 0 1-3.819-.702c.382-1.167.838-2.38 1.36-3.617m19.277 0c.524 1.24.98 2.455 1.363 3.625a43 43 0 0 1-3.83.7q.583-.928 1.145-1.897c.468-.811.904-1.621 1.322-2.428m-21.213 5.559a46 46 0 0 0 5.852.972 49 49 0 0 0 4.29 5.391 29 29 0 0 1-1.927 1.744c-1.626 1.323-3.167 2.22-4.451 2.637s-2.243.361-2.957-.05c-.714-.413-1.24-1.215-1.522-2.536-.281-1.32-.273-3.103.059-5.172.15-.939.376-1.944.656-2.986m23.155.008a30 30 0 0 1 .66 3.002c.332 2.07.34 3.855.058 5.18s-.81 2.134-1.531 2.55-1.688.47-2.977.053c-1.288-.418-2.83-1.317-4.457-2.64a29 29 0 0 1-1.941-1.759 49 49 0 0 0 4.32-5.418 46 46 0 0 0 5.868-.968m-14.694 1.17c1.027.056 2.067.093 3.133.093 1.03 0 2.037-.035 3.031-.088a46 46 0 0 1-3.084 3.74 46 46 0 0 1-3.08-3.745" })]
|
173
|
+
}), A = (t) => a(l, {
|
662
174
|
xmlns: "http://www.w3.org/2000/svg",
|
663
|
-
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
664
|
-
"aria-hidden": "true",
|
665
|
-
role: "img",
|
666
|
-
class: "iconify iconify--logos",
|
667
175
|
width: "35.93",
|
668
176
|
height: "32",
|
669
|
-
|
177
|
+
"aria-hidden": "true",
|
178
|
+
class: "iconify iconify--logos",
|
670
179
|
viewBox: "0 0 256 228",
|
671
180
|
...t,
|
672
|
-
children: [/* @__PURE__ */
|
673
|
-
}),
|
181
|
+
children: [/* @__PURE__ */ c("path", { fill: "#00D8FF", d: "M210.483 73.824a172 172 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621 6.238-30.281 2.16-54.676-11.769-62.708-13.355-7.7-35.196.329-57.254 19.526a171 171 0 0 0-6.375 5.848 156 156 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233 50.33 10.957 46.379 33.89 51.995 62.588a171 171 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.427a146 146 0 0 0 6.921 2.165 168 168 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266 13.744 7.926 36.812-.22 59.273-19.855a146 146 0 0 0 5.342-4.923 168 168 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586 13.731-7.949 18.194-32.003 12.4-61.268a145 145 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488 29.348-9.723 48.443-25.443 48.443-41.52 0-15.417-17.868-30.326-45.517-39.844m-6.365 70.984q-2.102.694-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432 5.106-11 9.31-21.767 12.459-31.957 2.619.758 5.16 1.557 7.61 2.4 23.69 8.156 38.14 20.213 38.14 29.504 0 9.896-15.606 22.743-40.946 31.14m-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787-1.524 8.219-4.59 13.698-8.382 15.893-8.067 4.67-25.32-1.4-43.927-17.412a157 157 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246 12.376-1.098 24.068-2.894 34.671-5.345a134 134 0 0 1 1.386 6.193M87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675-8.075-4.657-11.432-22.636-6.853-46.752a157 157 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994 7.084 9.967 14.501 19.128 21.976 27.15a135 135 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94M50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863-6.35-5.437-9.555-10.836-9.555-15.216 0-9.322 13.897-21.212 37.076-29.293 2.813-.98 5.757-1.905 8.812-2.773 3.204 10.42 7.406 21.315 12.477 32.332-5.137 11.18-9.399 22.249-12.634 32.792a135 135 0 0 1-6.318-1.979m12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789 8.564-4.958 27.502 2.111 47.463 19.835a144 144 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988-12.04 1.116-23.565 2.908-34.161 5.309a160 160 0 0 1-1.76-7.887Zm110.427 27.268a348 348 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08-2.206 7.072-4.956 14.465-8.193 22.045a381 381 0 0 0-7.365-13.322m-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322 322 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18M82.802 87.83a323 323 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152 7.304-1.634 15.093-2.97 23.209-3.984a322 322 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793 2.26-7.3 5.045-14.885 8.298-22.6a321 321 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147m37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433 4.902.192 9.899.29 14.978.29 5.218 0 10.376-.117 15.453-.343-4.985 6.774-10.018 12.97-15.028 18.486m52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52-7.422 1.694-15.436 3.058-23.88 4.071a382 382 0 0 0 7.859-13.026 347 347 0 0 0 7.425-13.565m-16.898 8.101a359 359 0 0 1-12.281 19.815 329 329 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310 310 0 0 1-12.513-19.846h.001a307 307 0 0 1-10.923-20.627 310 310 0 0 1 10.89-20.637l-.001.001a307 307 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329 329 0 0 1 12.335 19.695 359 359 0 0 1 11.036 20.54 330 330 0 0 1-11 20.722m22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026q-.518 2.504-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408-7.034-10.017-14.323-19.124-21.64-27.008a161 161 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3M128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86-22.86-10.235-22.86-22.86 10.235-22.86 22.86-22.86" })]
|
182
|
+
}), q = (t) => a(l, {
|
674
183
|
xmlns: "http://www.w3.org/2000/svg",
|
184
|
+
width: "144",
|
185
|
+
height: "144",
|
675
186
|
viewBox: "0 0 48 48",
|
676
|
-
width: "144px",
|
677
|
-
height: "144px",
|
678
187
|
...t,
|
679
|
-
children: [/* @__PURE__ */
|
680
|
-
}),
|
188
|
+
children: [/* @__PURE__ */ c("path", { fill: "#7e57c2", d: "M23 4c-6.617 0-12 7.27-12 16.205 0 4.834 1.582 9.169 4.078 12.136A3 3 0 0 0 15 33a3 3 0 1 0 3-3 3 3 0 0 0-.897.152C15.206 27.731 14 24.175 14 20.205 14 12.924 18.037 7 23 7c3.837 0 7.111 3.547 8.404 8.518 1.122.346 2.237.782 3.33 1.308C33.579 9.508 28.759 4 23 4" }), /* @__PURE__ */ c("path", { fill: "#7e57c2", d: "M35.507 20.084c-3.947-2.392-8.374-3.442-12.182-2.959A2.98 2.98 0 0 0 21 16a3 3 0 1 0 0 6 2.995 2.995 0 0 0 2.789-1.912c3.118-.379 6.812.531 10.163 2.563 6.403 3.881 9.67 10.569 7.282 14.911-.827 1.504-2.286 2.572-4.218 3.09-2.286.611-5.007.394-7.727-.528a24.5 24.5 0 0 1-2.725 2.168c2.552 1.117 5.196 1.704 7.669 1.704 1.24 0 2.438-.147 3.559-.447 2.741-.733 4.841-2.304 6.071-4.542 3.153-5.731-.596-14.22-8.356-18.923" }), /* @__PURE__ */ c("path", { fill: "#7e57c2", d: "M35 28.992C35 27.34 33.657 26 32 26s-3 1.34-3 2.992c0 .669.228 1.281.6 1.779-1.279 2.802-3.744 5.567-7.062 7.578-3.865 2.344-8.185 3.202-11.555 2.302-1.932-.518-3.391-1.586-4.218-3.09-1.702-3.094-.521-7.376 2.61-10.988a23 23 0 0 1-.706-3.575c-5.07 4.797-7.109 11.323-4.532 16.009 1.23 2.238 3.33 3.809 6.071 4.542 1.121.3 2.318.447 3.559.447 3.346 0 7.007-1.068 10.326-3.08 3.836-2.325 6.683-5.577 8.209-8.962C33.815 31.801 35 30.541 35 28.992" })]
|
189
|
+
}), R = (t) => a(l, {
|
681
190
|
xmlns: "http://www.w3.org/2000/svg",
|
191
|
+
width: "144",
|
192
|
+
height: "144",
|
682
193
|
viewBox: "0 0 48 48",
|
683
|
-
width: "144px",
|
684
|
-
height: "144px",
|
685
194
|
...t,
|
686
|
-
children: [/* @__PURE__ */
|
687
|
-
}),
|
195
|
+
children: [/* @__PURE__ */ c("path", { fill: "#f06292", d: "M39.867 25.956a9 9 0 0 0-3.986.928c-.408-.815-.822-1.532-.891-2.065-.081-.622-.175-.994-.077-1.735s.527-1.791.521-1.87-.096-.456-.983-.463c-.887-.006-1.646.171-1.735.405s-.26.761-.366 1.311c-.155.804-1.771 3.673-2.688 5.173-.3-.586-.555-1.102-.608-1.51-.081-.622-.175-.994-.077-1.735s.527-1.791.521-1.87-.096-.456-.983-.463c-.887-.006-1.646.171-1.735.405s-.185.781-.366 1.311c-.182.529-2.329 5.314-2.892 6.555-.287.632-.536 1.14-.712 1.486l-.001-.002-.029.062c-.151.295-.24.458-.24.458l.003.006c-.12.217-.248.418-.311.418-.044 0-.133-.577.019-1.369.32-1.66 1.087-4.248 1.08-4.338-.004-.046.143-.497-.501-.733-.626-.229-.849.153-.906.154-.055.001-.096.135-.096.135s.697-2.911-1.33-2.911c-1.268 0-3.024 1.387-3.889 2.644-.546.298-1.715.936-2.954 1.617l-1.423.783-.095-.104c-2.459-2.623-7.003-4.478-6.811-8.005.07-1.282.516-4.658 8.733-8.752 6.731-3.354 12.12-2.431 13.051-.386 1.33 2.923-2.88 8.354-9.87 9.138-2.663.299-4.066-.734-4.415-1.118-.367-.405-.422-.423-.559-.347-.223.124-.082.481 0 .694.209.543 1.065 1.506 2.525 1.986 1.285.422 4.412.653 8.193-.81 4.236-1.638 7.543-6.196 6.571-10.005-.988-3.874-7.412-5.148-13.492-2.988-3.623 1.286-7.54 3.304-10.357 5.938-3.349 3.132-3.883 5.859-3.663 6.998.782 4.048 6.361 6.684 8.595 8.637l-.308.17c-1.12.554-5.373 2.78-6.437 5.131-1.207 2.667.192 4.581 1.118 4.839 2.869.798 5.813-.638 7.396-2.998 1.582-2.359 1.389-5.432.663-6.834l-.028-.052.876-.517c.57-.335 1.13-.647 1.615-.911-.272.744-.471 1.637-.574 2.926-.122 1.514.499 3.471 1.311 4.241.358.339.788.347 1.06.347.945 0 1.376-.786 1.851-1.716.582-1.14 1.099-2.468 1.099-2.468s-.648 3.586 1.118 3.586c.644 0 1.291-.835 1.58-1.26l.001.007.05-.083c.067-.102.105-.167.105-.167l.003-.019a71 71 0 0 0 1.693-3.162c1.112-2.182 2.178-4.916 2.178-4.916s.099.668.424 1.774c.191.65.597 1.369.918 2.059-.258.358-.416.563-.416.563l.004.011c-.206.274-.437.569-.679.857-.878 1.045-1.923 2.239-2.063 2.583-.165.406-.126.704.193.945.233.175.647.203 1.08.174a4.9 4.9 0 0 0 1.617-.368 5.4 5.4 0 0 0 1.39-.731c.861-.633 1.38-1.538 1.33-2.738-.028-.661-.238-1.316-.505-1.934l.235-.34c1.357-1.984 2.41-4.164 2.41-4.164s.099.668.424 1.774c.164.559.489 1.17.781 1.768-1.276 1.037-2.067 2.242-2.342 3.032-.508 1.462-.11 2.124.636 2.275.338.068.816-.087 1.175-.239a5.4 5.4 0 0 0 1.486-.764c.861-.633 1.689-1.519 1.639-2.718-.023-.546-.171-1.088-.372-1.608 1.082-.451 2.482-.701 4.266-.493 3.827.447 4.577 2.836 4.434 3.836-.144 1-.946 1.55-1.215 1.716-.268.166-.35.224-.328.347.033.179.157.173.386.134.315-.053 2.009-.813 2.082-2.659.091-2.346-2.154-4.92-6.131-4.899M10.37 35.9c-1.268 1.383-3.038 1.905-3.798 1.465-.82-.475-.495-2.511 1.06-3.979.948-.894 2.172-1.718 2.984-2.225l.786-.472.086-.048-.001-.002.196-.118c.567 2.089.018 3.928-1.313 5.379m9.235-6.277c-.441 1.076-1.365 3.83-1.928 3.682-.483-.127-.777-2.22-.096-4.28.342-1.037 1.074-2.276 1.504-2.757.692-.774 1.454-1.027 1.639-.713.235.4-.842 3.393-1.119 4.068m7.629 3.64c-.187.098-.359.159-.438.112-.059-.035.077-.164.077-.164s.954-1.027 1.33-1.494c.219-.272.472-.595.748-.955l.003.107c-.002 1.23-1.19 2.06-1.72 2.394m5.877-1.34c-.14-.099-.116-.42.343-1.421.18-.393.592-1.054 1.306-1.686.083.26.133.509.132.741-.009 1.548-1.113 2.126-1.781 2.366" })]
|
196
|
+
}), H = (t) => a(l, {
|
688
197
|
xmlns: "http://www.w3.org/2000/svg",
|
198
|
+
width: "144",
|
199
|
+
height: "144",
|
689
200
|
viewBox: "0 0 48 48",
|
690
|
-
width: "144px",
|
691
|
-
height: "144px",
|
692
201
|
...t,
|
693
|
-
children: [/* @__PURE__ */
|
694
|
-
}),
|
202
|
+
children: [/* @__PURE__ */ c("path", { fill: "#00acc1", d: "M24 9.604q-9.6 0-12 9.597 3.6-4.798 8.4-3.599c1.826.456 3.131 1.781 4.576 3.247C27.328 21.236 30.051 24 36 24q9.6 0 12-9.598-3.6 4.798-8.4 3.6c-1.825-.456-3.13-1.781-4.575-3.247C32.672 12.367 29.948 9.604 24 9.604M12 24q-9.6 0-12 9.598 3.6-4.799 8.4-3.599c1.825.457 3.13 1.781 4.575 3.246 2.353 2.388 5.077 5.152 11.025 5.152q9.6 0 12-9.598-3.6 4.799-8.4 3.599c-1.826-.456-3.131-1.781-4.576-3.246C20.672 26.764 17.949 24 12 24" })]
|
203
|
+
}), j = (t) => a(l, {
|
695
204
|
xmlns: "http://www.w3.org/2000/svg",
|
205
|
+
width: "144",
|
206
|
+
height: "144",
|
696
207
|
viewBox: "0 0 48 48",
|
697
|
-
width: "144px",
|
698
|
-
height: "144px",
|
699
208
|
...t,
|
700
|
-
children: [/* @__PURE__ */
|
701
|
-
}),
|
209
|
+
children: [/* @__PURE__ */ c("path", { fill: "#1976d2", d: "M6 6h36v36H6z" }), /* @__PURE__ */ c("path", { fill: "#fff", d: "M27.49 22H14.227v3.264h4.757V40h3.769V25.264h4.737zM39.194 26.084s-1.787-1.192-3.807-1.192-2.747.96-2.747 1.986c0 2.648 7.381 2.383 7.381 7.712 0 8.209-11.254 4.568-11.254 4.568V35.22s2.152 1.622 4.733 1.622 2.483-1.688 2.483-1.92c0-2.449-7.315-2.449-7.315-7.878 0-7.381 10.658-4.469 10.658-4.469z" })]
|
210
|
+
}), G = (t) => a(l, {
|
702
211
|
xmlns: "http://www.w3.org/2000/svg",
|
703
|
-
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
704
|
-
"aria-hidden": "true",
|
705
|
-
role: "img",
|
706
|
-
class: "iconify iconify--logos",
|
707
212
|
width: "31.88",
|
708
213
|
height: "32",
|
709
|
-
|
214
|
+
"aria-hidden": "true",
|
215
|
+
class: "iconify iconify--logos",
|
710
216
|
viewBox: "0 0 256 257",
|
711
217
|
...t,
|
712
|
-
children: [/* @__PURE__ */
|
713
|
-
/* @__PURE__ */
|
714
|
-
/* @__PURE__ */
|
715
|
-
/* @__PURE__ */
|
218
|
+
children: [/* @__PURE__ */ i("defs", { children: [
|
219
|
+
/* @__PURE__ */ i("linearGradient", { id: "a", x1: "-.828%", x2: "57.636%", y1: "7.652%", y2: "78.411%", children: [
|
220
|
+
/* @__PURE__ */ c("stop", { offset: "0%", stopColor: "#41D1FF" }),
|
221
|
+
/* @__PURE__ */ c("stop", { offset: "100%", stopColor: "#BD34FE" })
|
716
222
|
] }),
|
717
|
-
/* @__PURE__ */
|
718
|
-
/* @__PURE__ */
|
719
|
-
/* @__PURE__ */
|
720
|
-
/* @__PURE__ */
|
223
|
+
/* @__PURE__ */ i("linearGradient", { id: "b", x1: "43.376%", x2: "50.316%", y1: "2.242%", y2: "89.03%", children: [
|
224
|
+
/* @__PURE__ */ c("stop", { offset: "0%", stopColor: "#FFEA83" }),
|
225
|
+
/* @__PURE__ */ c("stop", { offset: "8.333%", stopColor: "#FFDD35" }),
|
226
|
+
/* @__PURE__ */ c("stop", { offset: "100%", stopColor: "#FFA800" })
|
721
227
|
] })
|
722
|
-
] }), /* @__PURE__ */
|
723
|
-
}),
|
228
|
+
] }), /* @__PURE__ */ c("path", { fill: "url(#a)", d: "M255.153 37.938 134.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.5 6.5 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62" }), /* @__PURE__ */ c("path", { fill: "url(#b)", d: "M185.432.063 96.44 17.501a3.27 3.27 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.028 72.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" })]
|
229
|
+
}), O = (t) => a(l, {
|
724
230
|
xmlns: "http://www.w3.org/2000/svg",
|
231
|
+
width: "144",
|
232
|
+
height: "144",
|
725
233
|
viewBox: "0 0 48 48",
|
726
|
-
width: "144px",
|
727
|
-
height: "144px",
|
728
234
|
...t,
|
729
|
-
children: [/* @__PURE__ */
|
730
|
-
}),
|
235
|
+
children: [/* @__PURE__ */ c("path", { fill: "#29b6f6", d: "M44 11.11v25.78c0 1.27-.79 2.4-1.98 2.82l-8.82 4.14L34 33V15l-.8-10.85 8.82 4.14A2.98 2.98 0 0 1 44 11.11" }), /* @__PURE__ */ c("path", { fill: "#0277bd", d: "M9 33.896 34 15V5.353c0-1.198-1.482-1.758-2.275-.86L4.658 29.239a2 2 0 0 0 .107 3.032s1.324 1.232 1.803 1.574c.736.525 1.703.585 2.432.051" }), /* @__PURE__ */ c("path", { fill: "#0288d1", d: "M9 14.104 34 33v9.647c0 1.198-1.482 1.758-2.275.86L4.658 18.761a2 2 0 0 1 .107-3.032s1.324-1.232 1.803-1.574c.736-.525 1.703-.585 2.432-.051" })]
|
236
|
+
}), D = (t) => a(l, {
|
731
237
|
xmlns: "http://www.w3.org/2000/svg",
|
238
|
+
width: "144",
|
239
|
+
height: "144",
|
732
240
|
viewBox: "0 0 48 48",
|
733
|
-
width: "144px",
|
734
|
-
height: "144px",
|
735
241
|
...t,
|
736
|
-
children: [/* @__PURE__ */
|
737
|
-
}),
|
242
|
+
children: [/* @__PURE__ */ c("path", { fill: "#fff", d: "M24 4.05a19.95 19.95 0 1 0 0 39.9 19.95 19.95 0 1 0 0-39.9" }), /* @__PURE__ */ c("path", { fill: "#01579b", d: "M8.001 24c0 6.336 3.68 11.806 9.018 14.4L9.385 17.488A15.9 15.9 0 0 0 8.001 24m26.803-.806c0-1.977-1.063-3.35-1.67-4.412-.813-1.329-1.576-2.437-1.576-3.752 0-1.465 1.471-2.84 3.041-2.84.071 0 .135.006.206.008A15.9 15.9 0 0 0 24.001 8c-5.389 0-10.153 2.666-13.052 6.749.228.074.307.039.611.039 1.669 0 4.264-.2 4.264-.2.86-.057.965 1.212.099 1.316 0 0-.864.105-1.828.152l5.931 17.778 3.5-10.501-2.603-7.248c-.861-.046-1.679-.152-1.679-.152-.862-.056-.762-1.375.098-1.316 0 0 2.648.2 4.217.2 1.675 0 4.264-.2 4.264-.2.861-.057.965 1.212.104 1.316 0 0-.87.105-1.832.152l5.891 17.61 1.599-5.326c.814-2.08 1.219-3.8 1.219-5.175m-10.523 2.202-4.8 13.952c1.436.426 2.95.652 4.52.652 1.861 0 3.649-.324 5.316-.907-.04-.071-.085-.143-.118-.22zm13.762-9.078q.107.766.108 1.645c0 1.628-.306 3.451-1.219 5.737l-4.885 14.135A16 16 0 0 0 40 24a16 16 0 0 0-1.957-7.682" }), /* @__PURE__ */ c("path", { fill: "#01579b", d: "M4 24c0 11.024 8.97 20 19.999 20C35.03 44 44 35.024 44 24S35.03 4 24 4 4 12.976 4 24m1.995 0c0-9.924 8.074-17.999 18.004-17.999S42.005 14.076 42.005 24 33.929 42.001 24 42.001 5.995 33.924 5.995 24" })]
|
243
|
+
}), E = [
|
738
244
|
{
|
739
245
|
id: "html",
|
740
246
|
name: "HTML",
|
@@ -924,39 +430,55 @@ export const ${t} = (props: DeveloperIconProps) => createElement(Icon, {...${JSO
|
|
924
430
|
categories: ["web", "cms"],
|
925
431
|
keywords: ["wordpress", "cms", "blogging"]
|
926
432
|
}
|
927
|
-
]
|
433
|
+
], U = (t) => `${t[0]}${t.slice(1).toLowerCase()}`, d = (t, e) => `${t} ${e ?? ""}`, n = {
|
434
|
+
xmlns: "http://www.w3.org/2000/svg",
|
435
|
+
width: 48,
|
436
|
+
height: 48,
|
437
|
+
viewBox: "0 0 48 48"
|
438
|
+
}, l = ({
|
439
|
+
size: t = 80,
|
440
|
+
className: e,
|
441
|
+
color: s,
|
442
|
+
...o
|
443
|
+
}) => a("svg", {
|
444
|
+
...n,
|
445
|
+
stroke: s,
|
446
|
+
className: d("developer-icons", e),
|
447
|
+
...o,
|
448
|
+
width: t,
|
449
|
+
height: t
|
450
|
+
});
|
928
451
|
export {
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
m1 as mergeClassNames
|
452
|
+
g as CanvaIcon,
|
453
|
+
w as ChatgptIcon,
|
454
|
+
m as CssIcon,
|
455
|
+
n as DefaultAttributes,
|
456
|
+
v as DiscordIcon,
|
457
|
+
b as FigmaIcon,
|
458
|
+
M as FirebaseIcon,
|
459
|
+
x as GitIcon,
|
460
|
+
u as GithubIcon,
|
461
|
+
C as GmailIcon,
|
462
|
+
f as HtmlIcon,
|
463
|
+
l as Icon,
|
464
|
+
E as IconsData,
|
465
|
+
z as InstagramIcon,
|
466
|
+
F as JavascriptIcon,
|
467
|
+
y as LinkedinIcon,
|
468
|
+
k as MongodbIcon,
|
469
|
+
V as NextjsIcon,
|
470
|
+
I as NotionIcon,
|
471
|
+
B as OpenaiIcon,
|
472
|
+
L as PostmanIcon,
|
473
|
+
A as ReactIcon,
|
474
|
+
S as ReactNativeIcon,
|
475
|
+
q as ReduxIcon,
|
476
|
+
R as SassIcon,
|
477
|
+
H as TailwindCssIcon,
|
478
|
+
j as TypescriptIcon,
|
479
|
+
G as ViteIcon,
|
480
|
+
O as VsCodeIcon,
|
481
|
+
D as WordpressIcon,
|
482
|
+
U as capitalizeFirstletter,
|
483
|
+
d as mergeClassNames
|
962
484
|
};
|