@deemlol/next-icons 0.1.4 → 0.1.6
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 +35 -27
- package/build/icons/accessibility.d.ts +21 -0
- package/build/icons/airplane.d.ts +21 -0
- package/build/icons/airplaneLanding.d.ts +21 -0
- package/build/icons/airplaneLanding2.d.ts +21 -0
- package/build/icons/airplaneMode.d.ts +21 -0
- package/build/icons/airplaneModeOff.d.ts +21 -0
- package/build/icons/airplaneSeat.d.ts +21 -0
- package/build/icons/airplaneTakeOff.d.ts +21 -0
- package/build/icons/airplaneTakeOff2.d.ts +21 -0
- package/build/icons/alarmClock.d.ts +21 -0
- package/build/icons/alarmClockCheck.d.ts +21 -0
- package/build/icons/alarmClockMinus.d.ts +21 -0
- package/build/icons/alarmClockOff.d.ts +21 -0
- package/build/icons/alarmClockPlus.d.ts +21 -0
- package/build/icons/appWindow.d.ts +21 -0
- package/build/icons/appWindowMac.d.ts +21 -0
- package/build/icons/apple.d.ts +21 -0
- package/build/icons/archiveRestore.d.ts +21 -0
- package/build/icons/cloudflare.d.ts +21 -0
- package/build/icons/cookie.d.ts +21 -0
- package/build/icons/deno.d.ts +21 -0
- package/build/icons/discord.d.ts +21 -0
- package/build/icons/golang.d.ts +21 -0
- package/build/icons/google.d.ts +21 -0
- package/build/icons/html.d.ts +21 -0
- package/build/icons/javascript.d.ts +21 -0
- package/build/icons/nodejs.d.ts +21 -0
- package/build/icons/npmjs.d.ts +21 -0
- package/build/icons/paypal.d.ts +21 -0
- package/build/icons/python.d.ts +21 -0
- package/build/icons/react.d.ts +21 -0
- package/build/icons/soundcloud.d.ts +21 -0
- package/build/icons/spotify.d.ts +21 -0
- package/build/icons/tailwindCSS.d.ts +21 -0
- package/build/icons/textDown.d.ts +21 -0
- package/build/icons/textSize.d.ts +21 -0
- package/build/icons/textUp.d.ts +21 -0
- package/build/icons/typescript.d.ts +21 -0
- package/build/index.d.ts +38 -0
- package/build/index.js +1602 -36
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -30,6 +30,50 @@ typeof SuppressedError === "function"
|
|
|
30
30
|
return (e.name = "SuppressedError"), (e.error = error), (e.suppressed = suppressed), e;
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
+
var Accessibility = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
34
|
+
var _b = _a.color,
|
|
35
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
36
|
+
_c = _a.size,
|
|
37
|
+
size = _c === void 0 ? 24 : _c,
|
|
38
|
+
rest = __rest(_a, ["color", "size"]);
|
|
39
|
+
return /*#__PURE__*/ React.createElement(
|
|
40
|
+
"svg",
|
|
41
|
+
__assign(
|
|
42
|
+
{
|
|
43
|
+
ref: ref,
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
width: size,
|
|
46
|
+
height: size,
|
|
47
|
+
viewBox: "0 0 24 24",
|
|
48
|
+
fill: "none",
|
|
49
|
+
stroke: color,
|
|
50
|
+
strokeWidth: "2",
|
|
51
|
+
strokeLinecap: "round",
|
|
52
|
+
strokeLinejoin: "round"
|
|
53
|
+
},
|
|
54
|
+
rest
|
|
55
|
+
),
|
|
56
|
+
/*#__PURE__*/ React.createElement("circle", {
|
|
57
|
+
cx: "16",
|
|
58
|
+
cy: "4",
|
|
59
|
+
r: "1"
|
|
60
|
+
}),
|
|
61
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
62
|
+
d: "m18 19 1-7-6 1"
|
|
63
|
+
}),
|
|
64
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
65
|
+
d: "m5 8 3-3 5.5 3-2.36 3.5"
|
|
66
|
+
}),
|
|
67
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
68
|
+
d: "M4.24 14.5a5 5 0 0 0 6.88 6"
|
|
69
|
+
}),
|
|
70
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
71
|
+
d: "M13.76 17.5a5 5 0 0 0-6.88-6"
|
|
72
|
+
})
|
|
73
|
+
);
|
|
74
|
+
});
|
|
75
|
+
Accessibility.displayName = "Accessibility";
|
|
76
|
+
|
|
33
77
|
var Activity = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
34
78
|
var _b = _a.color,
|
|
35
79
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -53,14 +97,355 @@ var Activity = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
53
97
|
},
|
|
54
98
|
rest
|
|
55
99
|
),
|
|
56
|
-
/*#__PURE__*/ React.createElement("polyline", {
|
|
57
|
-
points: "22 12 18 12 15 21 9 3 6 12 2 12"
|
|
100
|
+
/*#__PURE__*/ React.createElement("polyline", {
|
|
101
|
+
points: "22 12 18 12 15 21 9 3 6 12 2 12"
|
|
102
|
+
})
|
|
103
|
+
);
|
|
104
|
+
});
|
|
105
|
+
Activity.displayName = "Activity";
|
|
106
|
+
|
|
107
|
+
var AirPlane = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
108
|
+
var _b = _a.color,
|
|
109
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
110
|
+
_c = _a.size,
|
|
111
|
+
size = _c === void 0 ? 24 : _c,
|
|
112
|
+
rest = __rest(_a, ["color", "size"]);
|
|
113
|
+
return /*#__PURE__*/ React.createElement(
|
|
114
|
+
"svg",
|
|
115
|
+
__assign(
|
|
116
|
+
{
|
|
117
|
+
ref: ref,
|
|
118
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
119
|
+
width: size,
|
|
120
|
+
height: size,
|
|
121
|
+
viewBox: "0 0 24 24",
|
|
122
|
+
fill: "none",
|
|
123
|
+
stroke: color,
|
|
124
|
+
strokeWidth: "2",
|
|
125
|
+
strokeLinecap: "round",
|
|
126
|
+
strokeLinejoin: "round"
|
|
127
|
+
},
|
|
128
|
+
rest
|
|
129
|
+
),
|
|
130
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
131
|
+
d: "M4.42238 13.1785L3 14.6006L7.26716 16.7337L9.40076 21L10.8231 19.5779L10.4675 16.3782L13.3123 13.534L17.2239 19.5779L18.5405 18.2616C19.0464 17.7558 19.2455 17.0194 19.0634 16.3277L17.5795 10.6898L19.4074 9.14342C21.0317 7.76935 21.4911 5.35695 20.4243 3.57933C18.6463 2.51276 15.8192 2.91468 14.4579 4.81999L13.3123 6.42352L7.67331 4.93988C6.98142 4.75784 6.24488 4.95692 5.73899 5.46271L4.42238 6.77905L10.4675 10.6898L7.62276 13.534L4.42238 13.1785Z"
|
|
132
|
+
})
|
|
133
|
+
);
|
|
134
|
+
});
|
|
135
|
+
AirPlane.displayName = "AirPlane";
|
|
136
|
+
|
|
137
|
+
var AirPlaneLanding = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
138
|
+
var _b = _a.color,
|
|
139
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
140
|
+
_c = _a.size,
|
|
141
|
+
size = _c === void 0 ? 24 : _c,
|
|
142
|
+
rest = __rest(_a, ["color", "size"]);
|
|
143
|
+
return /*#__PURE__*/ React.createElement(
|
|
144
|
+
"svg",
|
|
145
|
+
__assign(
|
|
146
|
+
{
|
|
147
|
+
ref: ref,
|
|
148
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
149
|
+
width: size,
|
|
150
|
+
height: size,
|
|
151
|
+
viewBox: "0 0 24 24",
|
|
152
|
+
fill: "none",
|
|
153
|
+
stroke: color,
|
|
154
|
+
strokeWidth: "2",
|
|
155
|
+
strokeLinecap: "round",
|
|
156
|
+
strokeLinejoin: "round"
|
|
157
|
+
},
|
|
158
|
+
rest
|
|
159
|
+
),
|
|
160
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
161
|
+
d: "M6 20L22 20"
|
|
162
|
+
}),
|
|
163
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
164
|
+
d: "M3.5 4L2 9.98552L8.74946 12.289L6 14.4747L11 15.971L13.5 13.9102L19.4344 15.9355C20.202 16.1975 21 15.6284 21 14.8192C21 11.5028 18.4934 8.72002 15.1879 8.36672L7 7.49156L6.5 4H3.5Z"
|
|
165
|
+
})
|
|
166
|
+
);
|
|
167
|
+
});
|
|
168
|
+
AirPlaneLanding.displayName = "AirPlaneLanding";
|
|
169
|
+
|
|
170
|
+
var AirPlaneLanding2 = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
171
|
+
var _b = _a.color,
|
|
172
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
173
|
+
_c = _a.size,
|
|
174
|
+
size = _c === void 0 ? 24 : _c,
|
|
175
|
+
rest = __rest(_a, ["color", "size"]);
|
|
176
|
+
return /*#__PURE__*/ React.createElement(
|
|
177
|
+
"svg",
|
|
178
|
+
__assign(
|
|
179
|
+
{
|
|
180
|
+
ref: ref,
|
|
181
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
182
|
+
width: size,
|
|
183
|
+
height: size,
|
|
184
|
+
viewBox: "0 0 24 24",
|
|
185
|
+
fill: "none",
|
|
186
|
+
stroke: color,
|
|
187
|
+
strokeWidth: "2",
|
|
188
|
+
strokeLinecap: "round",
|
|
189
|
+
strokeLinejoin: "round"
|
|
190
|
+
},
|
|
191
|
+
rest
|
|
192
|
+
),
|
|
193
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
194
|
+
d: "M18.0516 20.0928H2.24219"
|
|
195
|
+
}),
|
|
196
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
197
|
+
d: "M19.5 4L21 9.98552L14.2505 12.289L17 14.4747L12 15.971L9.5 13.9102L3.56558 15.9355C2.79804 16.1975 2 15.6284 2 14.8192C2 11.5028 4.50658 8.72002 7.81207 8.36672L16 7.49156L16.5 4H19.5Z"
|
|
198
|
+
})
|
|
199
|
+
);
|
|
200
|
+
});
|
|
201
|
+
AirPlaneLanding2.displayName = "AirPlaneLanding2";
|
|
202
|
+
|
|
203
|
+
var AirPlaneMode = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
204
|
+
var _b = _a.color,
|
|
205
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
206
|
+
_c = _a.size,
|
|
207
|
+
size = _c === void 0 ? 24 : _c,
|
|
208
|
+
rest = __rest(_a, ["color", "size"]);
|
|
209
|
+
return /*#__PURE__*/ React.createElement(
|
|
210
|
+
"svg",
|
|
211
|
+
__assign(
|
|
212
|
+
{
|
|
213
|
+
ref: ref,
|
|
214
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
215
|
+
width: size,
|
|
216
|
+
height: size,
|
|
217
|
+
viewBox: "0 0 24 24",
|
|
218
|
+
fill: "none",
|
|
219
|
+
stroke: color,
|
|
220
|
+
strokeWidth: "2",
|
|
221
|
+
strokeLinecap: "round",
|
|
222
|
+
strokeLinejoin: "round"
|
|
223
|
+
},
|
|
224
|
+
rest
|
|
225
|
+
),
|
|
226
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
227
|
+
d: "M7.5 20V22L12 20.5L16.5 22V20L14 18V14L21 15.5V13.6487C21 12.9374 20.6222 12.2796 20.0077 11.9212L15 9L15.1977 6.62748C15.3734 4.51935 14 2.5 12 2C10 2.5 8.29504 4.77022 8.67783 7.06701L9 9L3.99226 11.9212C3.37782 12.2796 3 12.9374 3 13.6487V15.5L10 14V18L7.5 20Z"
|
|
228
|
+
})
|
|
229
|
+
);
|
|
230
|
+
});
|
|
231
|
+
AirPlaneMode.displayName = "AirPlaneMode";
|
|
232
|
+
|
|
233
|
+
var AirPlaneModeOff = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
234
|
+
var _b = _a.color,
|
|
235
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
236
|
+
_c = _a.size,
|
|
237
|
+
size = _c === void 0 ? 24 : _c,
|
|
238
|
+
rest = __rest(_a, ["color", "size"]);
|
|
239
|
+
return /*#__PURE__*/ React.createElement(
|
|
240
|
+
"svg",
|
|
241
|
+
__assign(
|
|
242
|
+
{
|
|
243
|
+
ref: ref,
|
|
244
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
245
|
+
width: size,
|
|
246
|
+
height: size,
|
|
247
|
+
viewBox: "0 0 24 24",
|
|
248
|
+
fill: "none",
|
|
249
|
+
stroke: color,
|
|
250
|
+
strokeWidth: "2",
|
|
251
|
+
strokeLinecap: "round",
|
|
252
|
+
strokeLinejoin: "round"
|
|
253
|
+
},
|
|
254
|
+
rest
|
|
255
|
+
),
|
|
256
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
257
|
+
d: "M9 9L3.99226 11.9212C3.37782 12.2796 3 12.9374 3 13.6487V15.5L10 14V18L7.5 20V22L12 20.5L16.5 22V20L14 18V14M9 5C9.50809 3.53791 10.617 2.34574 12 2C14 2.5 15.3734 4.51935 15.1977 6.62748L15 9L20.0077 11.9212C20.6222 12.2796 21 12.9374 21 13.6487V15.5L19 15"
|
|
258
|
+
}),
|
|
259
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
260
|
+
d: "M2 2L21.9999 22"
|
|
261
|
+
})
|
|
262
|
+
);
|
|
263
|
+
});
|
|
264
|
+
AirPlaneModeOff.displayName = "AirPlaneModeOff";
|
|
265
|
+
|
|
266
|
+
var AirPlaneSeat = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
267
|
+
var _b = _a.color,
|
|
268
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
269
|
+
_c = _a.size,
|
|
270
|
+
size = _c === void 0 ? 24 : _c,
|
|
271
|
+
rest = __rest(_a, ["color", "size"]);
|
|
272
|
+
return /*#__PURE__*/ React.createElement(
|
|
273
|
+
"svg",
|
|
274
|
+
__assign(
|
|
275
|
+
{
|
|
276
|
+
ref: ref,
|
|
277
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
278
|
+
width: size,
|
|
279
|
+
height: size,
|
|
280
|
+
viewBox: "0 0 24 24",
|
|
281
|
+
fill: "none",
|
|
282
|
+
stroke: color,
|
|
283
|
+
strokeWidth: "2",
|
|
284
|
+
strokeLinecap: "round",
|
|
285
|
+
strokeLinejoin: "round"
|
|
286
|
+
},
|
|
287
|
+
rest
|
|
288
|
+
),
|
|
289
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
290
|
+
d: "M8.61298 18H17.9722C19.0921 18 20 17.1077 20 16.0071C20 14.5 17.9722 14.0141 17.9722 14.0141C17.9722 14.0141 14.2844 12.5964 10 14C10 14 9.86099 8.87274 7.70985 3.17067C7.28543 2.04566 5.90119 1.66155 4.88539 2.3271C4.21507 2.7663 3.8807 3.55966 4.0387 4.33605L6.65836 16.4236C6.85774 17.3436 7.67165 18 8.61298 18Z"
|
|
291
|
+
}),
|
|
292
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
293
|
+
d: "M12.5 10.5H18"
|
|
294
|
+
}),
|
|
295
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
296
|
+
d: "M16 18.5L13 22M13 22H8M13 22H18"
|
|
297
|
+
})
|
|
298
|
+
);
|
|
299
|
+
});
|
|
300
|
+
AirPlaneSeat.displayName = "AirPlaneSeat";
|
|
301
|
+
|
|
302
|
+
var AirPlaneTakeOff = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
303
|
+
var _b = _a.color,
|
|
304
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
305
|
+
_c = _a.size,
|
|
306
|
+
size = _c === void 0 ? 24 : _c,
|
|
307
|
+
rest = __rest(_a, ["color", "size"]);
|
|
308
|
+
return /*#__PURE__*/ React.createElement(
|
|
309
|
+
"svg",
|
|
310
|
+
__assign(
|
|
311
|
+
{
|
|
312
|
+
ref: ref,
|
|
313
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
314
|
+
width: size,
|
|
315
|
+
height: size,
|
|
316
|
+
viewBox: "0 0 24 24",
|
|
317
|
+
fill: "none",
|
|
318
|
+
stroke: color,
|
|
319
|
+
strokeWidth: "2",
|
|
320
|
+
strokeLinecap: "round",
|
|
321
|
+
strokeLinejoin: "round"
|
|
322
|
+
},
|
|
323
|
+
rest
|
|
324
|
+
),
|
|
325
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
326
|
+
d: "M2 19H18"
|
|
327
|
+
}),
|
|
328
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
329
|
+
d: "M4 13.5L2 8L4.5 6.5L6.5 9L13.5412 5.34038C15.1735 4.48683 17.0794 4.17159 18.7603 4.92643C19.6489 5.32553 20.6311 5.87707 21.4975 6.62005C22.4691 7.45319 21.9369 8.87248 20.7119 9.25281L15 11L14 13.5L9.5 15L10.5 12L4 13.5Z"
|
|
330
|
+
})
|
|
331
|
+
);
|
|
332
|
+
});
|
|
333
|
+
AirPlaneTakeOff.displayName = "AirPlaneTakeOff";
|
|
334
|
+
|
|
335
|
+
var AirPlaneTakeOff2 = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
336
|
+
var _b = _a.color,
|
|
337
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
338
|
+
_c = _a.size,
|
|
339
|
+
size = _c === void 0 ? 24 : _c,
|
|
340
|
+
rest = __rest(_a, ["color", "size"]);
|
|
341
|
+
return /*#__PURE__*/ React.createElement(
|
|
342
|
+
"svg",
|
|
343
|
+
__assign(
|
|
344
|
+
{
|
|
345
|
+
ref: ref,
|
|
346
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
347
|
+
width: size,
|
|
348
|
+
height: size,
|
|
349
|
+
viewBox: "0 0 24 24",
|
|
350
|
+
fill: "none",
|
|
351
|
+
stroke: color,
|
|
352
|
+
strokeWidth: "2",
|
|
353
|
+
strokeLinecap: "round",
|
|
354
|
+
strokeLinejoin: "round"
|
|
355
|
+
},
|
|
356
|
+
rest
|
|
357
|
+
),
|
|
358
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
359
|
+
d: "M22 19L6 19"
|
|
360
|
+
}),
|
|
361
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
362
|
+
d: "M20 13.5L22 8L19.5 6.5L17.5 9L10.4588 5.34038C8.82647 4.48683 6.92061 4.17159 5.23975 4.92643C4.35106 5.32553 3.36889 5.87707 2.50248 6.62005C1.53092 7.45319 2.06313 8.87248 3.28811 9.25281L9 11L10 13.5L14.5 15L13.5 12L20 13.5Z"
|
|
363
|
+
})
|
|
364
|
+
);
|
|
365
|
+
});
|
|
366
|
+
AirPlaneTakeOff2.displayName = "AirPlaneTakeOff2";
|
|
367
|
+
|
|
368
|
+
var Airplay = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
369
|
+
var _b = _a.color,
|
|
370
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
371
|
+
_c = _a.size,
|
|
372
|
+
size = _c === void 0 ? 24 : _c,
|
|
373
|
+
rest = __rest(_a, ["color", "size"]);
|
|
374
|
+
return /*#__PURE__*/ React.createElement(
|
|
375
|
+
"svg",
|
|
376
|
+
__assign(
|
|
377
|
+
{
|
|
378
|
+
ref: ref,
|
|
379
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
380
|
+
width: size,
|
|
381
|
+
height: size,
|
|
382
|
+
viewBox: "0 0 24 24",
|
|
383
|
+
fill: "none",
|
|
384
|
+
stroke: color,
|
|
385
|
+
strokeWidth: "2",
|
|
386
|
+
strokeLinecap: "round",
|
|
387
|
+
strokeLinejoin: "round"
|
|
388
|
+
},
|
|
389
|
+
rest
|
|
390
|
+
),
|
|
391
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
392
|
+
d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"
|
|
393
|
+
}),
|
|
394
|
+
/*#__PURE__*/ React.createElement("polygon", {
|
|
395
|
+
points: "12 15 17 21 7 21 12 15"
|
|
396
|
+
})
|
|
397
|
+
);
|
|
398
|
+
});
|
|
399
|
+
Airplay.displayName = "Airplay";
|
|
400
|
+
|
|
401
|
+
var AlarmClock = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
402
|
+
var _b = _a.color,
|
|
403
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
404
|
+
_c = _a.size,
|
|
405
|
+
size = _c === void 0 ? 24 : _c,
|
|
406
|
+
rest = __rest(_a, ["color", "size"]);
|
|
407
|
+
return /*#__PURE__*/ React.createElement(
|
|
408
|
+
"svg",
|
|
409
|
+
__assign(
|
|
410
|
+
{
|
|
411
|
+
ref: ref,
|
|
412
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
413
|
+
width: size,
|
|
414
|
+
height: size,
|
|
415
|
+
viewBox: "0 0 24 24",
|
|
416
|
+
fill: "none",
|
|
417
|
+
stroke: color,
|
|
418
|
+
strokeWidth: "2",
|
|
419
|
+
strokeLinecap: "round",
|
|
420
|
+
strokeLinejoin: "round"
|
|
421
|
+
},
|
|
422
|
+
rest
|
|
423
|
+
),
|
|
424
|
+
/*#__PURE__*/ React.createElement("circle", {
|
|
425
|
+
cx: "12",
|
|
426
|
+
cy: "13",
|
|
427
|
+
r: "8"
|
|
428
|
+
}),
|
|
429
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
430
|
+
d: "M12 9v4l2 2"
|
|
431
|
+
}),
|
|
432
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
433
|
+
d: "M5 3 2 6"
|
|
434
|
+
}),
|
|
435
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
436
|
+
d: "m22 6-3-3"
|
|
437
|
+
}),
|
|
438
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
439
|
+
d: "M6.38 18.7 4 21"
|
|
440
|
+
}),
|
|
441
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
442
|
+
d: "M17.64 18.67 20 21"
|
|
58
443
|
})
|
|
59
444
|
);
|
|
60
445
|
});
|
|
61
|
-
|
|
446
|
+
AlarmClock.displayName = "AlarmClock";
|
|
62
447
|
|
|
63
|
-
var
|
|
448
|
+
var AlarmClockCheck = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
64
449
|
var _b = _a.color,
|
|
65
450
|
color = _b === void 0 ? "currentColor" : _b,
|
|
66
451
|
_c = _a.size,
|
|
@@ -83,15 +468,171 @@ var Airplay = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
83
468
|
},
|
|
84
469
|
rest
|
|
85
470
|
),
|
|
471
|
+
/*#__PURE__*/ React.createElement("circle", {
|
|
472
|
+
cx: "12",
|
|
473
|
+
cy: "13",
|
|
474
|
+
r: "8"
|
|
475
|
+
}),
|
|
86
476
|
/*#__PURE__*/ React.createElement("path", {
|
|
87
|
-
d: "M5
|
|
477
|
+
d: "M5 3 2 6"
|
|
88
478
|
}),
|
|
89
|
-
/*#__PURE__*/ React.createElement("
|
|
90
|
-
|
|
479
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
480
|
+
d: "m22 6-3-3"
|
|
481
|
+
}),
|
|
482
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
483
|
+
d: "M6.38 18.7 4 21"
|
|
484
|
+
}),
|
|
485
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
486
|
+
d: "M17.64 18.67 20 21"
|
|
487
|
+
}),
|
|
488
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
489
|
+
d: "m9 13 2 2 4-4"
|
|
91
490
|
})
|
|
92
491
|
);
|
|
93
492
|
});
|
|
94
|
-
|
|
493
|
+
AlarmClockCheck.displayName = "AlarmClockCheck";
|
|
494
|
+
|
|
495
|
+
var AlarmClockMinus = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
496
|
+
var _b = _a.color,
|
|
497
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
498
|
+
_c = _a.size,
|
|
499
|
+
size = _c === void 0 ? 24 : _c,
|
|
500
|
+
rest = __rest(_a, ["color", "size"]);
|
|
501
|
+
return /*#__PURE__*/ React.createElement(
|
|
502
|
+
"svg",
|
|
503
|
+
__assign(
|
|
504
|
+
{
|
|
505
|
+
ref: ref,
|
|
506
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
507
|
+
width: size,
|
|
508
|
+
height: size,
|
|
509
|
+
viewBox: "0 0 24 24",
|
|
510
|
+
fill: "none",
|
|
511
|
+
stroke: color,
|
|
512
|
+
strokeWidth: "2",
|
|
513
|
+
strokeLinecap: "round",
|
|
514
|
+
strokeLinejoin: "round"
|
|
515
|
+
},
|
|
516
|
+
rest
|
|
517
|
+
),
|
|
518
|
+
/*#__PURE__*/ React.createElement("circle", {
|
|
519
|
+
cx: "12",
|
|
520
|
+
cy: "13",
|
|
521
|
+
r: "8"
|
|
522
|
+
}),
|
|
523
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
524
|
+
d: "M5 3 2 6"
|
|
525
|
+
}),
|
|
526
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
527
|
+
d: "m22 6-3-3"
|
|
528
|
+
}),
|
|
529
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
530
|
+
d: "M6.38 18.7 4 21"
|
|
531
|
+
}),
|
|
532
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
533
|
+
d: "M17.64 18.67 20 21"
|
|
534
|
+
}),
|
|
535
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
536
|
+
d: "M9 13h6"
|
|
537
|
+
})
|
|
538
|
+
);
|
|
539
|
+
});
|
|
540
|
+
AlarmClockMinus.displayName = "AlarmClockMinus";
|
|
541
|
+
|
|
542
|
+
var AlarmClockPlus = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
543
|
+
var _b = _a.color,
|
|
544
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
545
|
+
_c = _a.size,
|
|
546
|
+
size = _c === void 0 ? 24 : _c,
|
|
547
|
+
rest = __rest(_a, ["color", "size"]);
|
|
548
|
+
return /*#__PURE__*/ React.createElement(
|
|
549
|
+
"svg",
|
|
550
|
+
__assign(
|
|
551
|
+
{
|
|
552
|
+
ref: ref,
|
|
553
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
554
|
+
width: size,
|
|
555
|
+
height: size,
|
|
556
|
+
viewBox: "0 0 24 24",
|
|
557
|
+
fill: "none",
|
|
558
|
+
stroke: color,
|
|
559
|
+
strokeWidth: "2",
|
|
560
|
+
strokeLinecap: "round",
|
|
561
|
+
strokeLinejoin: "round"
|
|
562
|
+
},
|
|
563
|
+
rest
|
|
564
|
+
),
|
|
565
|
+
/*#__PURE__*/ React.createElement("circle", {
|
|
566
|
+
cx: "12",
|
|
567
|
+
cy: "13",
|
|
568
|
+
r: "8"
|
|
569
|
+
}),
|
|
570
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
571
|
+
d: "M5 3 2 6"
|
|
572
|
+
}),
|
|
573
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
574
|
+
d: "m22 6-3-3"
|
|
575
|
+
}),
|
|
576
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
577
|
+
d: "M6.38 18.7 4 21"
|
|
578
|
+
}),
|
|
579
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
580
|
+
d: "M17.64 18.67 20 21"
|
|
581
|
+
}),
|
|
582
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
583
|
+
d: "M12 10v6"
|
|
584
|
+
}),
|
|
585
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
586
|
+
d: "M9 13h6"
|
|
587
|
+
})
|
|
588
|
+
);
|
|
589
|
+
});
|
|
590
|
+
AlarmClockPlus.displayName = "AlarmClockPlus";
|
|
591
|
+
|
|
592
|
+
var AlarmClockOff = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
593
|
+
var _b = _a.color,
|
|
594
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
595
|
+
_c = _a.size,
|
|
596
|
+
size = _c === void 0 ? 24 : _c,
|
|
597
|
+
rest = __rest(_a, ["color", "size"]);
|
|
598
|
+
return /*#__PURE__*/ React.createElement(
|
|
599
|
+
"svg",
|
|
600
|
+
__assign(
|
|
601
|
+
{
|
|
602
|
+
ref: ref,
|
|
603
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
604
|
+
width: size,
|
|
605
|
+
height: size,
|
|
606
|
+
viewBox: "0 0 24 24",
|
|
607
|
+
fill: "none",
|
|
608
|
+
stroke: color,
|
|
609
|
+
strokeWidth: "2",
|
|
610
|
+
strokeLinecap: "round",
|
|
611
|
+
strokeLinejoin: "round"
|
|
612
|
+
},
|
|
613
|
+
rest
|
|
614
|
+
),
|
|
615
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
616
|
+
d: "M6.87 6.87a8 8 0 1 0 11.26 11.26"
|
|
617
|
+
}),
|
|
618
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
619
|
+
d: "M19.9 14.25a8 8 0 0 0-9.15-9.15"
|
|
620
|
+
}),
|
|
621
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
622
|
+
d: "m22 6-3-3"
|
|
623
|
+
}),
|
|
624
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
625
|
+
d: "M6.26 18.67 4 21"
|
|
626
|
+
}),
|
|
627
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
628
|
+
d: "m2 2 20 20"
|
|
629
|
+
}),
|
|
630
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
631
|
+
d: "M4 4 2 6"
|
|
632
|
+
})
|
|
633
|
+
);
|
|
634
|
+
});
|
|
635
|
+
AlarmClockOff.displayName = "AlarmClockOff";
|
|
95
636
|
|
|
96
637
|
var AlertCircle = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
97
638
|
var _b = _a.color,
|
|
@@ -532,7 +1073,126 @@ var Aperture = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
532
1073
|
})
|
|
533
1074
|
);
|
|
534
1075
|
});
|
|
535
|
-
Aperture.displayName = "Aperture";
|
|
1076
|
+
Aperture.displayName = "Aperture";
|
|
1077
|
+
|
|
1078
|
+
var Apple = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
1079
|
+
var _b = _a.color,
|
|
1080
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
1081
|
+
_c = _a.size,
|
|
1082
|
+
size = _c === void 0 ? 24 : _c,
|
|
1083
|
+
rest = __rest(_a, ["color", "size"]);
|
|
1084
|
+
return /*#__PURE__*/ React.createElement(
|
|
1085
|
+
"svg",
|
|
1086
|
+
__assign(
|
|
1087
|
+
{
|
|
1088
|
+
ref: ref,
|
|
1089
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1090
|
+
width: size,
|
|
1091
|
+
height: size,
|
|
1092
|
+
viewBox: "0 0 24 24",
|
|
1093
|
+
fill: "none",
|
|
1094
|
+
stroke: color,
|
|
1095
|
+
strokeWidth: "2",
|
|
1096
|
+
strokeLinecap: "round",
|
|
1097
|
+
strokeLinejoin: "round"
|
|
1098
|
+
},
|
|
1099
|
+
rest
|
|
1100
|
+
),
|
|
1101
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1102
|
+
d: "M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z"
|
|
1103
|
+
}),
|
|
1104
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1105
|
+
d: "M10 2c1 .5 2 2 2 5"
|
|
1106
|
+
})
|
|
1107
|
+
);
|
|
1108
|
+
});
|
|
1109
|
+
Apple.displayName = "Apple";
|
|
1110
|
+
|
|
1111
|
+
var AppWindow = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
1112
|
+
var _b = _a.color,
|
|
1113
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
1114
|
+
_c = _a.size,
|
|
1115
|
+
size = _c === void 0 ? 24 : _c,
|
|
1116
|
+
rest = __rest(_a, ["color", "size"]);
|
|
1117
|
+
return /*#__PURE__*/ React.createElement(
|
|
1118
|
+
"svg",
|
|
1119
|
+
__assign(
|
|
1120
|
+
{
|
|
1121
|
+
ref: ref,
|
|
1122
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1123
|
+
width: size,
|
|
1124
|
+
height: size,
|
|
1125
|
+
viewBox: "0 0 24 24",
|
|
1126
|
+
fill: "none",
|
|
1127
|
+
stroke: color,
|
|
1128
|
+
strokeWidth: "2",
|
|
1129
|
+
strokeLinecap: "round",
|
|
1130
|
+
strokeLinejoin: "round"
|
|
1131
|
+
},
|
|
1132
|
+
rest
|
|
1133
|
+
),
|
|
1134
|
+
/*#__PURE__*/ React.createElement("rect", {
|
|
1135
|
+
x: "2",
|
|
1136
|
+
y: "4",
|
|
1137
|
+
width: "20",
|
|
1138
|
+
height: "16",
|
|
1139
|
+
rx: "2"
|
|
1140
|
+
}),
|
|
1141
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1142
|
+
d: "M10 4v4"
|
|
1143
|
+
}),
|
|
1144
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1145
|
+
d: "M2 8h20"
|
|
1146
|
+
}),
|
|
1147
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1148
|
+
d: "M6 4v4"
|
|
1149
|
+
})
|
|
1150
|
+
);
|
|
1151
|
+
});
|
|
1152
|
+
AppWindow.displayName = "AppWindow";
|
|
1153
|
+
|
|
1154
|
+
var AppWindowMac = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
1155
|
+
var _b = _a.color,
|
|
1156
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
1157
|
+
_c = _a.size,
|
|
1158
|
+
size = _c === void 0 ? 24 : _c,
|
|
1159
|
+
rest = __rest(_a, ["color", "size"]);
|
|
1160
|
+
return /*#__PURE__*/ React.createElement(
|
|
1161
|
+
"svg",
|
|
1162
|
+
__assign(
|
|
1163
|
+
{
|
|
1164
|
+
ref: ref,
|
|
1165
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1166
|
+
width: size,
|
|
1167
|
+
height: size,
|
|
1168
|
+
viewBox: "0 0 24 24",
|
|
1169
|
+
fill: "none",
|
|
1170
|
+
stroke: color,
|
|
1171
|
+
strokeWidth: "2",
|
|
1172
|
+
strokeLinecap: "round",
|
|
1173
|
+
strokeLinejoin: "round"
|
|
1174
|
+
},
|
|
1175
|
+
rest
|
|
1176
|
+
),
|
|
1177
|
+
/*#__PURE__*/ React.createElement("rect", {
|
|
1178
|
+
width: "20",
|
|
1179
|
+
height: "16",
|
|
1180
|
+
x: "2",
|
|
1181
|
+
y: "4",
|
|
1182
|
+
rx: "2"
|
|
1183
|
+
}),
|
|
1184
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1185
|
+
d: "M6 8h.01"
|
|
1186
|
+
}),
|
|
1187
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1188
|
+
d: "M10 8h.01"
|
|
1189
|
+
}),
|
|
1190
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1191
|
+
d: "M14 8h.01"
|
|
1192
|
+
})
|
|
1193
|
+
);
|
|
1194
|
+
});
|
|
1195
|
+
AppWindowMac.displayName = "AppWindowMac";
|
|
536
1196
|
|
|
537
1197
|
var Archive = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
538
1198
|
var _b = _a.color,
|
|
@@ -576,6 +1236,52 @@ var Archive = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
576
1236
|
});
|
|
577
1237
|
Archive.displayName = "Archive";
|
|
578
1238
|
|
|
1239
|
+
var ArchiveRestore = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
1240
|
+
var _b = _a.color,
|
|
1241
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
1242
|
+
_c = _a.size,
|
|
1243
|
+
size = _c === void 0 ? 24 : _c,
|
|
1244
|
+
rest = __rest(_a, ["color", "size"]);
|
|
1245
|
+
return /*#__PURE__*/ React.createElement(
|
|
1246
|
+
"svg",
|
|
1247
|
+
__assign(
|
|
1248
|
+
{
|
|
1249
|
+
ref: ref,
|
|
1250
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1251
|
+
width: size,
|
|
1252
|
+
height: size,
|
|
1253
|
+
viewBox: "0 0 24 24",
|
|
1254
|
+
fill: "none",
|
|
1255
|
+
stroke: color,
|
|
1256
|
+
strokeWidth: "2",
|
|
1257
|
+
strokeLinecap: "round",
|
|
1258
|
+
strokeLinejoin: "round"
|
|
1259
|
+
},
|
|
1260
|
+
rest
|
|
1261
|
+
),
|
|
1262
|
+
/*#__PURE__*/ React.createElement("rect", {
|
|
1263
|
+
width: "20",
|
|
1264
|
+
height: "5",
|
|
1265
|
+
x: "2",
|
|
1266
|
+
y: "3",
|
|
1267
|
+
rx: "1"
|
|
1268
|
+
}),
|
|
1269
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1270
|
+
d: "M4 8v11a2 2 0 0 0 2 2h2"
|
|
1271
|
+
}),
|
|
1272
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1273
|
+
d: "M20 8v11a2 2 0 0 1-2 2h-2"
|
|
1274
|
+
}),
|
|
1275
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1276
|
+
d: "m9 15 3-3 3 3"
|
|
1277
|
+
}),
|
|
1278
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
1279
|
+
d: "M12 12v9"
|
|
1280
|
+
})
|
|
1281
|
+
);
|
|
1282
|
+
});
|
|
1283
|
+
ArchiveRestore.displayName = "ArchiveRestore";
|
|
1284
|
+
|
|
579
1285
|
var ArrowDown = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
580
1286
|
var _b = _a.color,
|
|
581
1287
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -2420,6 +3126,47 @@ var CloudDrizzle = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
2420
3126
|
});
|
|
2421
3127
|
CloudDrizzle.displayName = "CloudDrizzle";
|
|
2422
3128
|
|
|
3129
|
+
var CloudFlare = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
3130
|
+
var _b = _a.color,
|
|
3131
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
3132
|
+
_c = _a.size,
|
|
3133
|
+
size = _c === void 0 ? 24 : _c,
|
|
3134
|
+
rest = __rest(_a, ["color", "size"]);
|
|
3135
|
+
return /*#__PURE__*/ React.createElement(
|
|
3136
|
+
"svg",
|
|
3137
|
+
__assign(
|
|
3138
|
+
{
|
|
3139
|
+
ref: ref,
|
|
3140
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3141
|
+
width: size,
|
|
3142
|
+
height: size,
|
|
3143
|
+
viewBox: "0 0 24 24",
|
|
3144
|
+
fill: "none",
|
|
3145
|
+
stroke: color,
|
|
3146
|
+
strokeWidth: "2",
|
|
3147
|
+
strokeLinecap: "round",
|
|
3148
|
+
strokeLinejoin: "round"
|
|
3149
|
+
},
|
|
3150
|
+
rest
|
|
3151
|
+
),
|
|
3152
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3153
|
+
stroke: "none",
|
|
3154
|
+
d: "M0 0h24v24H0z",
|
|
3155
|
+
fill: "none"
|
|
3156
|
+
}),
|
|
3157
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3158
|
+
d: "M13.031 7.007c2.469 -.007 3.295 1.293 3.969 2.993c4 0 4.994 3.825 5 6h-20c-.001 -1.64 1.36 -2.954 3 -3c0 -1.5 1 -3 3 -3c.66 -1.942 2.562 -2.986 5.031 -2.993z"
|
|
3159
|
+
}),
|
|
3160
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3161
|
+
d: "M12 13h6"
|
|
3162
|
+
}),
|
|
3163
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3164
|
+
d: "M17 10l-2.5 6"
|
|
3165
|
+
})
|
|
3166
|
+
);
|
|
3167
|
+
});
|
|
3168
|
+
CloudFlare.displayName = "CloudFlare";
|
|
3169
|
+
|
|
2423
3170
|
var CloudLightning = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
2424
3171
|
var _b = _a.color,
|
|
2425
3172
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -2878,6 +3625,51 @@ var Compass = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
2878
3625
|
});
|
|
2879
3626
|
Compass.displayName = "Compass";
|
|
2880
3627
|
|
|
3628
|
+
var Cookie = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
3629
|
+
var _b = _a.color,
|
|
3630
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
3631
|
+
_c = _a.size,
|
|
3632
|
+
size = _c === void 0 ? 24 : _c,
|
|
3633
|
+
rest = __rest(_a, ["color", "size"]);
|
|
3634
|
+
return /*#__PURE__*/ React.createElement(
|
|
3635
|
+
"svg",
|
|
3636
|
+
__assign(
|
|
3637
|
+
{
|
|
3638
|
+
ref: ref,
|
|
3639
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3640
|
+
width: size,
|
|
3641
|
+
height: size,
|
|
3642
|
+
viewBox: "0 0 24 24",
|
|
3643
|
+
fill: "none",
|
|
3644
|
+
stroke: color,
|
|
3645
|
+
strokeWidth: "2",
|
|
3646
|
+
strokeLinecap: "round",
|
|
3647
|
+
strokeLinejoin: "round"
|
|
3648
|
+
},
|
|
3649
|
+
rest
|
|
3650
|
+
),
|
|
3651
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3652
|
+
d: "M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"
|
|
3653
|
+
}),
|
|
3654
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3655
|
+
d: "M8.5 8.5v.01"
|
|
3656
|
+
}),
|
|
3657
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3658
|
+
d: "M16 15.5v.01"
|
|
3659
|
+
}),
|
|
3660
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3661
|
+
d: "M12 12v.01"
|
|
3662
|
+
}),
|
|
3663
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3664
|
+
d: "M11 17v.01"
|
|
3665
|
+
}),
|
|
3666
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
3667
|
+
d: "M7 14v.01"
|
|
3668
|
+
})
|
|
3669
|
+
);
|
|
3670
|
+
});
|
|
3671
|
+
Cookie.displayName = "Cookie";
|
|
3672
|
+
|
|
2881
3673
|
var Copy = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
2882
3674
|
var _b = _a.color,
|
|
2883
3675
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -3517,6 +4309,91 @@ var Disc = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
3517
4309
|
});
|
|
3518
4310
|
Disc.displayName = "Disc";
|
|
3519
4311
|
|
|
4312
|
+
var Deno = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
4313
|
+
var _b = _a.color,
|
|
4314
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
4315
|
+
_c = _a.size,
|
|
4316
|
+
size = _c === void 0 ? 24 : _c,
|
|
4317
|
+
rest = __rest(_a, ["color", "size"]);
|
|
4318
|
+
return /*#__PURE__*/ React.createElement(
|
|
4319
|
+
"svg",
|
|
4320
|
+
__assign(
|
|
4321
|
+
{
|
|
4322
|
+
ref: ref,
|
|
4323
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4324
|
+
width: size,
|
|
4325
|
+
height: size,
|
|
4326
|
+
viewBox: "0 0 24 24",
|
|
4327
|
+
fill: "none",
|
|
4328
|
+
stroke: color,
|
|
4329
|
+
strokeWidth: "2",
|
|
4330
|
+
strokeLinecap: "round",
|
|
4331
|
+
strokeLinejoin: "round"
|
|
4332
|
+
},
|
|
4333
|
+
rest
|
|
4334
|
+
),
|
|
4335
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4336
|
+
stroke: "none",
|
|
4337
|
+
d: "M0 0h24v24H0z",
|
|
4338
|
+
fill: "none"
|
|
4339
|
+
}),
|
|
4340
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4341
|
+
d: "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"
|
|
4342
|
+
}),
|
|
4343
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4344
|
+
d: "M13.47 20.882l-1.47 -5.882c-2.649 -.088 -5 -1.624 -5 -3.5c0 -1.933 2.239 -3.5 5 -3.5s4 1 5 3c.024 .048 .69 2.215 2 6.5"
|
|
4345
|
+
}),
|
|
4346
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4347
|
+
d: "M12 11h.01"
|
|
4348
|
+
})
|
|
4349
|
+
);
|
|
4350
|
+
});
|
|
4351
|
+
Deno.displayName = "Deno";
|
|
4352
|
+
|
|
4353
|
+
var Discord = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
4354
|
+
var _b = _a.color,
|
|
4355
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
4356
|
+
_c = _a.size,
|
|
4357
|
+
size = _c === void 0 ? 24 : _c,
|
|
4358
|
+
rest = __rest(_a, ["color", "size"]);
|
|
4359
|
+
return /*#__PURE__*/ React.createElement(
|
|
4360
|
+
"svg",
|
|
4361
|
+
__assign(
|
|
4362
|
+
{
|
|
4363
|
+
ref: ref,
|
|
4364
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4365
|
+
width: size,
|
|
4366
|
+
height: size,
|
|
4367
|
+
viewBox: "0 0 24 24",
|
|
4368
|
+
fill: "none",
|
|
4369
|
+
stroke: color,
|
|
4370
|
+
strokeWidth: "2",
|
|
4371
|
+
strokeLinecap: "round",
|
|
4372
|
+
strokeLinejoin: "round"
|
|
4373
|
+
},
|
|
4374
|
+
rest
|
|
4375
|
+
),
|
|
4376
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4377
|
+
stroke: "none",
|
|
4378
|
+
d: "M0 0h24v24H0z",
|
|
4379
|
+
fill: "none"
|
|
4380
|
+
}),
|
|
4381
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4382
|
+
d: "M8 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"
|
|
4383
|
+
}),
|
|
4384
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4385
|
+
d: "M14 12a1 1 0 1 0 2 0a1 1 0 0 0 -2 0"
|
|
4386
|
+
}),
|
|
4387
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4388
|
+
d: "M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -3 -1.34 -4.5 -1.5l-.972 1.923a11.913 11.913 0 0 0 -4.053 0l-.975 -1.923c-1.5 .16 -3.043 .485 -4.5 1.5c-2 5.667 -2.167 9.833 -1.5 11.5c.667 1.333 2 3 3.5 3c.5 0 2 -2 2 -3"
|
|
4389
|
+
}),
|
|
4390
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
4391
|
+
d: "M7 16.5c3.5 1 6.5 1 10 0"
|
|
4392
|
+
})
|
|
4393
|
+
);
|
|
4394
|
+
});
|
|
4395
|
+
Discord.displayName = "Discord";
|
|
4396
|
+
|
|
3520
4397
|
var Divide = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
3521
4398
|
var _b = _a.color,
|
|
3522
4399
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -5005,9 +5882,97 @@ var GitPullRequest = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
5005
5882
|
})
|
|
5006
5883
|
);
|
|
5007
5884
|
});
|
|
5008
|
-
GitPullRequest.displayName = "GitPullRequest";
|
|
5885
|
+
GitPullRequest.displayName = "GitPullRequest";
|
|
5886
|
+
|
|
5887
|
+
var Globe = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
5888
|
+
var _b = _a.color,
|
|
5889
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5890
|
+
_c = _a.size,
|
|
5891
|
+
size = _c === void 0 ? 24 : _c,
|
|
5892
|
+
rest = __rest(_a, ["color", "size"]);
|
|
5893
|
+
return /*#__PURE__*/ React.createElement(
|
|
5894
|
+
"svg",
|
|
5895
|
+
__assign(
|
|
5896
|
+
{
|
|
5897
|
+
ref: ref,
|
|
5898
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5899
|
+
width: size,
|
|
5900
|
+
height: size,
|
|
5901
|
+
viewBox: "0 0 24 24",
|
|
5902
|
+
fill: "none",
|
|
5903
|
+
stroke: color,
|
|
5904
|
+
strokeWidth: "2",
|
|
5905
|
+
strokeLinecap: "round",
|
|
5906
|
+
strokeLinejoin: "round"
|
|
5907
|
+
},
|
|
5908
|
+
rest
|
|
5909
|
+
),
|
|
5910
|
+
/*#__PURE__*/ React.createElement("circle", {
|
|
5911
|
+
cx: "12",
|
|
5912
|
+
cy: "12",
|
|
5913
|
+
r: "10"
|
|
5914
|
+
}),
|
|
5915
|
+
/*#__PURE__*/ React.createElement("line", {
|
|
5916
|
+
x1: "2",
|
|
5917
|
+
y1: "12",
|
|
5918
|
+
x2: "22",
|
|
5919
|
+
y2: "12"
|
|
5920
|
+
}),
|
|
5921
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
5922
|
+
d: "M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
|
|
5923
|
+
})
|
|
5924
|
+
);
|
|
5925
|
+
});
|
|
5926
|
+
Globe.displayName = "Globe";
|
|
5927
|
+
|
|
5928
|
+
var GoLang = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
5929
|
+
var _b = _a.color,
|
|
5930
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
5931
|
+
_c = _a.size,
|
|
5932
|
+
size = _c === void 0 ? 24 : _c,
|
|
5933
|
+
rest = __rest(_a, ["color", "size"]);
|
|
5934
|
+
return /*#__PURE__*/ React.createElement(
|
|
5935
|
+
"svg",
|
|
5936
|
+
__assign(
|
|
5937
|
+
{
|
|
5938
|
+
ref: ref,
|
|
5939
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5940
|
+
width: size,
|
|
5941
|
+
height: size,
|
|
5942
|
+
viewBox: "0 0 24 24",
|
|
5943
|
+
fill: "none",
|
|
5944
|
+
stroke: color,
|
|
5945
|
+
strokeWidth: "2",
|
|
5946
|
+
strokeLinecap: "round",
|
|
5947
|
+
strokeLinejoin: "round"
|
|
5948
|
+
},
|
|
5949
|
+
rest
|
|
5950
|
+
),
|
|
5951
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
5952
|
+
stroke: "none",
|
|
5953
|
+
d: "M0 0h24v24H0z",
|
|
5954
|
+
fill: "none"
|
|
5955
|
+
}),
|
|
5956
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
5957
|
+
d: "M15.695 14.305c1.061 1.06 2.953 .888 4.226 -.384c1.272 -1.273 1.444 -3.165 .384 -4.226c-1.061 -1.06 -2.953 -.888 -4.226 .384c-1.272 1.273 -1.444 3.165 -.384 4.226z"
|
|
5958
|
+
}),
|
|
5959
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
5960
|
+
d: "M12.68 9.233c-1.084 -.497 -2.545 -.191 -3.591 .846c-1.284 1.273 -1.457 3.165 -.388 4.226c1.07 1.06 2.978 .888 4.261 -.384a3.669 3.669 0 0 0 1.038 -1.921h-2.427"
|
|
5961
|
+
}),
|
|
5962
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
5963
|
+
d: "M5.5 15h-1.5"
|
|
5964
|
+
}),
|
|
5965
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
5966
|
+
d: "M6 9h-2"
|
|
5967
|
+
}),
|
|
5968
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
5969
|
+
d: "M5 12h-3"
|
|
5970
|
+
})
|
|
5971
|
+
);
|
|
5972
|
+
});
|
|
5973
|
+
GoLang.displayName = "GoLang";
|
|
5009
5974
|
|
|
5010
|
-
var
|
|
5975
|
+
var Google = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
5011
5976
|
var _b = _a.color,
|
|
5012
5977
|
color = _b === void 0 ? "currentColor" : _b,
|
|
5013
5978
|
_c = _a.size,
|
|
@@ -5030,23 +5995,17 @@ var Globe = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
5030
5995
|
},
|
|
5031
5996
|
rest
|
|
5032
5997
|
),
|
|
5033
|
-
/*#__PURE__*/ React.createElement("
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
}),
|
|
5038
|
-
/*#__PURE__*/ React.createElement("line", {
|
|
5039
|
-
x1: "2",
|
|
5040
|
-
y1: "12",
|
|
5041
|
-
x2: "22",
|
|
5042
|
-
y2: "12"
|
|
5998
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
5999
|
+
stroke: "none",
|
|
6000
|
+
d: "M0 0h24v24H0z",
|
|
6001
|
+
fill: "none"
|
|
5043
6002
|
}),
|
|
5044
6003
|
/*#__PURE__*/ React.createElement("path", {
|
|
5045
|
-
d: "M12
|
|
6004
|
+
d: "M12 2a9.96 9.96 0 0 1 6.29 2.226a1 1 0 0 1 .04 1.52l-1.51 1.362a1 1 0 0 1 -1.265 .06a6 6 0 1 0 2.103 6.836l.001 -.004h-3.66a1 1 0 0 1 -.992 -.883l-.007 -.117v-2a1 1 0 0 1 1 -1h6.945a1 1 0 0 1 .994 .89c.04 .367 .061 .737 .061 1.11c0 5.523 -4.477 10 -10 10s-10 -4.477 -10 -10s4.477 -10 10 -10z"
|
|
5046
6005
|
})
|
|
5047
6006
|
);
|
|
5048
6007
|
});
|
|
5049
|
-
|
|
6008
|
+
Google.displayName = "Google";
|
|
5050
6009
|
|
|
5051
6010
|
var Grid = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
5052
6011
|
var _b = _a.color,
|
|
@@ -5365,6 +6324,39 @@ var House = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
5365
6324
|
});
|
|
5366
6325
|
House.displayName = "House";
|
|
5367
6326
|
|
|
6327
|
+
var HTML5 = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
6328
|
+
var _b = _a.color,
|
|
6329
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6330
|
+
_c = _a.size,
|
|
6331
|
+
size = _c === void 0 ? 24 : _c,
|
|
6332
|
+
rest = __rest(_a, ["color", "size"]);
|
|
6333
|
+
return /*#__PURE__*/ React.createElement(
|
|
6334
|
+
"svg",
|
|
6335
|
+
__assign(
|
|
6336
|
+
{
|
|
6337
|
+
ref: ref,
|
|
6338
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6339
|
+
width: size,
|
|
6340
|
+
height: size,
|
|
6341
|
+
viewBox: "0 0 24 24",
|
|
6342
|
+
fill: "none",
|
|
6343
|
+
stroke: color,
|
|
6344
|
+
strokeWidth: "2",
|
|
6345
|
+
strokeLinecap: "round",
|
|
6346
|
+
strokeLinejoin: "round"
|
|
6347
|
+
},
|
|
6348
|
+
rest
|
|
6349
|
+
),
|
|
6350
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6351
|
+
d: "M19.5 18L21.5 2H2.5L4.5 18L12 22L19.5 18Z"
|
|
6352
|
+
}),
|
|
6353
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6354
|
+
d: "M16.5 6H7.5L7.99965 10.5H15.9996L15.4996 16L11.9996 17L8.49965 16L8 13.5"
|
|
6355
|
+
})
|
|
6356
|
+
);
|
|
6357
|
+
});
|
|
6358
|
+
HTML5.displayName = "HTML5";
|
|
6359
|
+
|
|
5368
6360
|
var Image = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
5369
6361
|
var _b = _a.color,
|
|
5370
6362
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -5574,6 +6566,50 @@ var Italic = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
5574
6566
|
});
|
|
5575
6567
|
Italic.displayName = "Italic";
|
|
5576
6568
|
|
|
6569
|
+
var JavaScript = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
6570
|
+
var _b = _a.color,
|
|
6571
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
6572
|
+
_c = _a.size,
|
|
6573
|
+
size = _c === void 0 ? 24 : _c,
|
|
6574
|
+
rest = __rest(_a, ["color", "size"]);
|
|
6575
|
+
return /*#__PURE__*/ React.createElement(
|
|
6576
|
+
"svg",
|
|
6577
|
+
__assign(
|
|
6578
|
+
{
|
|
6579
|
+
ref: ref,
|
|
6580
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6581
|
+
width: size,
|
|
6582
|
+
height: size,
|
|
6583
|
+
viewBox: "0 0 24 24",
|
|
6584
|
+
fill: "none",
|
|
6585
|
+
stroke: color,
|
|
6586
|
+
strokeWidth: "2",
|
|
6587
|
+
strokeLinecap: "round",
|
|
6588
|
+
strokeLinejoin: "round"
|
|
6589
|
+
},
|
|
6590
|
+
rest
|
|
6591
|
+
),
|
|
6592
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6593
|
+
stroke: "none",
|
|
6594
|
+
d: "M0 0h24v24H0z",
|
|
6595
|
+
fill: "none"
|
|
6596
|
+
}),
|
|
6597
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6598
|
+
d: "M14 3v4a1 1 0 0 0 1 1h4"
|
|
6599
|
+
}),
|
|
6600
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6601
|
+
d: "M3 15h3v4.5a1.5 1.5 0 0 1 -3 0"
|
|
6602
|
+
}),
|
|
6603
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6604
|
+
d: "M9 20.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"
|
|
6605
|
+
}),
|
|
6606
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
6607
|
+
d: "M5 12v-7a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"
|
|
6608
|
+
})
|
|
6609
|
+
);
|
|
6610
|
+
});
|
|
6611
|
+
JavaScript.displayName = "JavaScript";
|
|
6612
|
+
|
|
5577
6613
|
var Key = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
5578
6614
|
var _b = _a.color,
|
|
5579
6615
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -7086,6 +8122,97 @@ var Navigation2 = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
7086
8122
|
});
|
|
7087
8123
|
Navigation2.displayName = "Navigation2";
|
|
7088
8124
|
|
|
8125
|
+
var NodeJs = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
8126
|
+
var _b = _a.color,
|
|
8127
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
8128
|
+
_c = _a.size,
|
|
8129
|
+
size = _c === void 0 ? 24 : _c,
|
|
8130
|
+
rest = __rest(_a, ["color", "size"]);
|
|
8131
|
+
return /*#__PURE__*/ React.createElement(
|
|
8132
|
+
"svg",
|
|
8133
|
+
__assign(
|
|
8134
|
+
{
|
|
8135
|
+
ref: ref,
|
|
8136
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8137
|
+
width: size,
|
|
8138
|
+
height: size,
|
|
8139
|
+
viewBox: "0 0 24 24",
|
|
8140
|
+
fill: "none",
|
|
8141
|
+
stroke: color,
|
|
8142
|
+
strokeWidth: "2",
|
|
8143
|
+
strokeLinecap: "round",
|
|
8144
|
+
strokeLinejoin: "round"
|
|
8145
|
+
},
|
|
8146
|
+
rest
|
|
8147
|
+
),
|
|
8148
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8149
|
+
stroke: "none",
|
|
8150
|
+
d: "M0 0h24v24H0z",
|
|
8151
|
+
fill: "none"
|
|
8152
|
+
}),
|
|
8153
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8154
|
+
d: "M9 9v8.044a2 2 0 0 1 -2.996 1.734l-1.568 -.9a3 3 0 0 1 -1.436 -2.561v-6.635a3 3 0 0 1 1.436 -2.56l6 -3.667a3 3 0 0 1 3.128 0l6 3.667a3 3 0 0 1 1.436 2.561v6.634a3 3 0 0 1 -1.436 2.56l-6 3.667a3 3 0 0 1 -3.128 0"
|
|
8155
|
+
}),
|
|
8156
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8157
|
+
d: "M17 9h-3.5a1.5 1.5 0 0 0 0 3h2a1.5 1.5 0 0 1 0 3h-3.5"
|
|
8158
|
+
})
|
|
8159
|
+
);
|
|
8160
|
+
});
|
|
8161
|
+
NodeJs.displayName = "NodeJs";
|
|
8162
|
+
|
|
8163
|
+
var NPMJs = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
8164
|
+
var _b = _a.color,
|
|
8165
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
8166
|
+
_c = _a.size,
|
|
8167
|
+
size = _c === void 0 ? 24 : _c,
|
|
8168
|
+
rest = __rest(_a, ["color", "size"]);
|
|
8169
|
+
return /*#__PURE__*/ React.createElement(
|
|
8170
|
+
"svg",
|
|
8171
|
+
__assign(
|
|
8172
|
+
{
|
|
8173
|
+
ref: ref,
|
|
8174
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8175
|
+
width: size,
|
|
8176
|
+
height: size,
|
|
8177
|
+
viewBox: "0 0 24 24",
|
|
8178
|
+
fill: "none",
|
|
8179
|
+
stroke: color,
|
|
8180
|
+
strokeWidth: "2",
|
|
8181
|
+
strokeLinecap: "round",
|
|
8182
|
+
strokeLinejoin: "round"
|
|
8183
|
+
},
|
|
8184
|
+
rest
|
|
8185
|
+
),
|
|
8186
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8187
|
+
stroke: "none",
|
|
8188
|
+
d: "M0 0h24v24H0z",
|
|
8189
|
+
fill: "none"
|
|
8190
|
+
}),
|
|
8191
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8192
|
+
d: "M1 8h22v7h-12v2h-4v-2h-6z"
|
|
8193
|
+
}),
|
|
8194
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8195
|
+
d: "M7 8v7"
|
|
8196
|
+
}),
|
|
8197
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8198
|
+
d: "M14 8v7"
|
|
8199
|
+
}),
|
|
8200
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8201
|
+
d: "M17 11v4"
|
|
8202
|
+
}),
|
|
8203
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8204
|
+
d: "M4 11v4"
|
|
8205
|
+
}),
|
|
8206
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8207
|
+
d: "M11 11v1"
|
|
8208
|
+
}),
|
|
8209
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8210
|
+
d: "M20 11v4"
|
|
8211
|
+
})
|
|
8212
|
+
);
|
|
8213
|
+
});
|
|
8214
|
+
NPMJs.displayName = "NPMJs";
|
|
8215
|
+
|
|
7089
8216
|
var Octagon = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
7090
8217
|
var _b = _a.color,
|
|
7091
8218
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -7274,6 +8401,36 @@ var PauseCircle = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
7274
8401
|
});
|
|
7275
8402
|
PauseCircle.displayName = "PauseCircle";
|
|
7276
8403
|
|
|
8404
|
+
var PayPal = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
8405
|
+
var _b = _a.color,
|
|
8406
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
8407
|
+
_c = _a.size,
|
|
8408
|
+
size = _c === void 0 ? 24 : _c,
|
|
8409
|
+
rest = __rest(_a, ["color", "size"]);
|
|
8410
|
+
return /*#__PURE__*/ React.createElement(
|
|
8411
|
+
"svg",
|
|
8412
|
+
__assign(
|
|
8413
|
+
{
|
|
8414
|
+
ref: ref,
|
|
8415
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8416
|
+
width: size,
|
|
8417
|
+
height: size,
|
|
8418
|
+
viewBox: "0 0 24 24",
|
|
8419
|
+
fill: "none",
|
|
8420
|
+
stroke: color,
|
|
8421
|
+
strokeWidth: "2",
|
|
8422
|
+
strokeLinecap: "round",
|
|
8423
|
+
strokeLinejoin: "round"
|
|
8424
|
+
},
|
|
8425
|
+
rest
|
|
8426
|
+
),
|
|
8427
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
8428
|
+
d: "M8.00063 19.9611L9.52233 12.9317H12.8557C13.5061 12.9317 14.1605 12.842 14.7535 12.5762C17.8877 11.1712 18.7246 8.68085 19.0497 7.34411M8.00063 19.9611H3.00385L7.02404 1.94629L14.2533 2.07997C14.8454 2.09092 15.4419 2.14075 15.9993 2.34006C17.9458 3.03611 19.4671 4.63451 19.0497 7.34411M8.00063 19.9611L7.5009 21.9502H11.5665L13.0479 15.9555C21.9478 17.0191 22.4617 9.20548 19.0497 7.34411"
|
|
8429
|
+
})
|
|
8430
|
+
);
|
|
8431
|
+
});
|
|
8432
|
+
PayPal.displayName = "PayPal";
|
|
8433
|
+
|
|
7277
8434
|
var PenTool = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
7278
8435
|
var _b = _a.color,
|
|
7279
8436
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -7939,17 +9096,99 @@ var Printer = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
7939
9096
|
/*#__PURE__*/ React.createElement("path", {
|
|
7940
9097
|
d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"
|
|
7941
9098
|
}),
|
|
7942
|
-
/*#__PURE__*/ React.createElement("rect", {
|
|
7943
|
-
x: "6",
|
|
7944
|
-
y: "14",
|
|
7945
|
-
width: "12",
|
|
7946
|
-
height: "8"
|
|
9099
|
+
/*#__PURE__*/ React.createElement("rect", {
|
|
9100
|
+
x: "6",
|
|
9101
|
+
y: "14",
|
|
9102
|
+
width: "12",
|
|
9103
|
+
height: "8"
|
|
9104
|
+
})
|
|
9105
|
+
);
|
|
9106
|
+
});
|
|
9107
|
+
Printer.displayName = "Printer";
|
|
9108
|
+
|
|
9109
|
+
var Python = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9110
|
+
var _b = _a.color,
|
|
9111
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
9112
|
+
_c = _a.size,
|
|
9113
|
+
size = _c === void 0 ? 24 : _c,
|
|
9114
|
+
rest = __rest(_a, ["color", "size"]);
|
|
9115
|
+
return /*#__PURE__*/ React.createElement(
|
|
9116
|
+
"svg",
|
|
9117
|
+
__assign(
|
|
9118
|
+
{
|
|
9119
|
+
ref: ref,
|
|
9120
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9121
|
+
width: size,
|
|
9122
|
+
height: size,
|
|
9123
|
+
viewBox: "0 0 24 24",
|
|
9124
|
+
fill: "none",
|
|
9125
|
+
stroke: color,
|
|
9126
|
+
strokeWidth: "2",
|
|
9127
|
+
strokeLinecap: "round",
|
|
9128
|
+
strokeLinejoin: "round"
|
|
9129
|
+
},
|
|
9130
|
+
rest
|
|
9131
|
+
),
|
|
9132
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9133
|
+
stroke: "none",
|
|
9134
|
+
d: "M0 0h24v24H0z",
|
|
9135
|
+
fill: "none"
|
|
9136
|
+
}),
|
|
9137
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9138
|
+
d: "M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3"
|
|
9139
|
+
}),
|
|
9140
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9141
|
+
d: "M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3"
|
|
9142
|
+
}),
|
|
9143
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9144
|
+
d: "M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4"
|
|
9145
|
+
}),
|
|
9146
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9147
|
+
d: "M11 6l0 .01"
|
|
9148
|
+
}),
|
|
9149
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9150
|
+
d: "M13 18l0 .01"
|
|
9151
|
+
})
|
|
9152
|
+
);
|
|
9153
|
+
});
|
|
9154
|
+
Python.displayName = "Python";
|
|
9155
|
+
|
|
9156
|
+
var Radio = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9157
|
+
var _b = _a.color,
|
|
9158
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
9159
|
+
_c = _a.size,
|
|
9160
|
+
size = _c === void 0 ? 24 : _c,
|
|
9161
|
+
rest = __rest(_a, ["color", "size"]);
|
|
9162
|
+
return /*#__PURE__*/ React.createElement(
|
|
9163
|
+
"svg",
|
|
9164
|
+
__assign(
|
|
9165
|
+
{
|
|
9166
|
+
ref: ref,
|
|
9167
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9168
|
+
width: size,
|
|
9169
|
+
height: size,
|
|
9170
|
+
viewBox: "0 0 24 24",
|
|
9171
|
+
fill: "none",
|
|
9172
|
+
stroke: color,
|
|
9173
|
+
strokeWidth: "2",
|
|
9174
|
+
strokeLinecap: "round",
|
|
9175
|
+
strokeLinejoin: "round"
|
|
9176
|
+
},
|
|
9177
|
+
rest
|
|
9178
|
+
),
|
|
9179
|
+
/*#__PURE__*/ React.createElement("circle", {
|
|
9180
|
+
cx: "12",
|
|
9181
|
+
cy: "12",
|
|
9182
|
+
r: "2"
|
|
9183
|
+
}),
|
|
9184
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9185
|
+
d: "M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"
|
|
7947
9186
|
})
|
|
7948
9187
|
);
|
|
7949
9188
|
});
|
|
7950
|
-
|
|
9189
|
+
Radio.displayName = "Radio";
|
|
7951
9190
|
|
|
7952
|
-
var
|
|
9191
|
+
var ReactJS = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
7953
9192
|
var _b = _a.color,
|
|
7954
9193
|
color = _b === void 0 ? "currentColor" : _b,
|
|
7955
9194
|
_c = _a.size,
|
|
@@ -7972,17 +9211,21 @@ var Radio = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
7972
9211
|
},
|
|
7973
9212
|
rest
|
|
7974
9213
|
),
|
|
7975
|
-
/*#__PURE__*/ React.createElement("
|
|
7976
|
-
|
|
7977
|
-
cy: "12",
|
|
7978
|
-
r: "2"
|
|
9214
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9215
|
+
d: "M8 12C8 6.47715 9.79086 2 12 2C14.2091 2 16 6.47715 16 12C16 17.5228 14.2091 22 12 22C9.79086 22 8 17.5228 8 12Z"
|
|
7979
9216
|
}),
|
|
7980
9217
|
/*#__PURE__*/ React.createElement("path", {
|
|
7981
|
-
d: "
|
|
9218
|
+
d: "M9.97529 8.58334C14.8173 5.85973 19.649 5.1815 20.7673 7.06847C21.8855 8.95544 18.8667 12.6931 14.0247 15.4167C9.18269 18.1403 4.35097 18.8185 3.23275 16.9315C2.11454 15.0446 5.13327 11.3069 9.97529 8.58334Z"
|
|
9219
|
+
}),
|
|
9220
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9221
|
+
d: "M14.0247 8.58334C18.8667 11.3069 21.8855 15.0446 20.7672 16.9315C19.649 18.8185 14.8173 18.1403 9.97529 15.4167C5.13327 12.6931 2.11454 8.95544 3.23275 7.06847C4.35097 5.18151 9.18269 5.85973 14.0247 8.58334Z"
|
|
9222
|
+
}),
|
|
9223
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
9224
|
+
d: "M12 12V12.01"
|
|
7982
9225
|
})
|
|
7983
9226
|
);
|
|
7984
9227
|
});
|
|
7985
|
-
|
|
9228
|
+
ReactJS.displayName = "ReactJS";
|
|
7986
9229
|
|
|
7987
9230
|
var RefreshCcw = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
7988
9231
|
var _b = _a.color,
|
|
@@ -9150,6 +10393,50 @@ var Smile = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
9150
10393
|
});
|
|
9151
10394
|
Smile.displayName = "Smile";
|
|
9152
10395
|
|
|
10396
|
+
var SoundCloud = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
10397
|
+
var _b = _a.color,
|
|
10398
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
10399
|
+
_c = _a.size,
|
|
10400
|
+
size = _c === void 0 ? 24 : _c,
|
|
10401
|
+
rest = __rest(_a, ["color", "size"]);
|
|
10402
|
+
return /*#__PURE__*/ React.createElement(
|
|
10403
|
+
"svg",
|
|
10404
|
+
__assign(
|
|
10405
|
+
{
|
|
10406
|
+
ref: ref,
|
|
10407
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10408
|
+
width: size,
|
|
10409
|
+
height: size,
|
|
10410
|
+
viewBox: "0 0 24 24",
|
|
10411
|
+
fill: "none",
|
|
10412
|
+
stroke: color,
|
|
10413
|
+
strokeWidth: "2",
|
|
10414
|
+
strokeLinecap: "round",
|
|
10415
|
+
strokeLinejoin: "round"
|
|
10416
|
+
},
|
|
10417
|
+
rest
|
|
10418
|
+
),
|
|
10419
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10420
|
+
stroke: "none",
|
|
10421
|
+
d: "M0 0h24v24H0z",
|
|
10422
|
+
fill: "none"
|
|
10423
|
+
}),
|
|
10424
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10425
|
+
d: "M17 11h1c1.38 0 3 1.274 3 3c0 1.657 -1.5 3 -3 3l-6 0v-10c3 0 4.5 1.5 5 4z"
|
|
10426
|
+
}),
|
|
10427
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10428
|
+
d: "M9 8l0 9"
|
|
10429
|
+
}),
|
|
10430
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10431
|
+
d: "M6 17l0 -7"
|
|
10432
|
+
}),
|
|
10433
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10434
|
+
d: "M3 16l0 -2"
|
|
10435
|
+
})
|
|
10436
|
+
);
|
|
10437
|
+
});
|
|
10438
|
+
SoundCloud.displayName = "SoundCloud";
|
|
10439
|
+
|
|
9153
10440
|
var Sparkles = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9154
10441
|
var _b = _a.color,
|
|
9155
10442
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -9268,6 +10555,50 @@ var Speaker = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
9268
10555
|
});
|
|
9269
10556
|
Speaker.displayName = "Speaker";
|
|
9270
10557
|
|
|
10558
|
+
var Spotify = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
10559
|
+
var _b = _a.color,
|
|
10560
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
10561
|
+
_c = _a.size,
|
|
10562
|
+
size = _c === void 0 ? 24 : _c,
|
|
10563
|
+
rest = __rest(_a, ["color", "size"]);
|
|
10564
|
+
return /*#__PURE__*/ React.createElement(
|
|
10565
|
+
"svg",
|
|
10566
|
+
__assign(
|
|
10567
|
+
{
|
|
10568
|
+
ref: ref,
|
|
10569
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10570
|
+
width: size,
|
|
10571
|
+
height: size,
|
|
10572
|
+
viewBox: "0 0 24 24",
|
|
10573
|
+
fill: "none",
|
|
10574
|
+
stroke: color,
|
|
10575
|
+
strokeWidth: "2",
|
|
10576
|
+
strokeLinecap: "round",
|
|
10577
|
+
strokeLinejoin: "round"
|
|
10578
|
+
},
|
|
10579
|
+
rest
|
|
10580
|
+
),
|
|
10581
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10582
|
+
stroke: "none",
|
|
10583
|
+
d: "M0 0h24v24H0z",
|
|
10584
|
+
fill: "none"
|
|
10585
|
+
}),
|
|
10586
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10587
|
+
d: "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"
|
|
10588
|
+
}),
|
|
10589
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10590
|
+
d: "M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527"
|
|
10591
|
+
}),
|
|
10592
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10593
|
+
d: "M9 15c1.5 -1 4 -1 5 .5"
|
|
10594
|
+
}),
|
|
10595
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
10596
|
+
d: "M7 9c2 -1 6 -2 10 .5"
|
|
10597
|
+
})
|
|
10598
|
+
);
|
|
10599
|
+
});
|
|
10600
|
+
Spotify.displayName = "Spotify";
|
|
10601
|
+
|
|
9271
10602
|
var Square = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9272
10603
|
var _b = _a.color,
|
|
9273
10604
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -9696,6 +11027,36 @@ var Tag = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
9696
11027
|
});
|
|
9697
11028
|
Tag.displayName = "Tag";
|
|
9698
11029
|
|
|
11030
|
+
var TailwindCSS = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
11031
|
+
var _b = _a.color,
|
|
11032
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
11033
|
+
_c = _a.size,
|
|
11034
|
+
size = _c === void 0 ? 24 : _c,
|
|
11035
|
+
rest = __rest(_a, ["color", "size"]);
|
|
11036
|
+
return /*#__PURE__*/ React.createElement(
|
|
11037
|
+
"svg",
|
|
11038
|
+
__assign(
|
|
11039
|
+
{
|
|
11040
|
+
ref: ref,
|
|
11041
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11042
|
+
width: size,
|
|
11043
|
+
height: size,
|
|
11044
|
+
viewBox: "0 0 24 24",
|
|
11045
|
+
fill: "none",
|
|
11046
|
+
stroke: color,
|
|
11047
|
+
strokeWidth: "2",
|
|
11048
|
+
strokeLinecap: "round",
|
|
11049
|
+
strokeLinejoin: "round"
|
|
11050
|
+
},
|
|
11051
|
+
rest
|
|
11052
|
+
),
|
|
11053
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11054
|
+
d: "M12 6.036c-2.667 0-4.333 1.325-5 3.976 1-1.325 2.167-1.822 3.5-1.491.761.189 1.305.738 1.906 1.345C13.387 10.855 14.522 12 17 12c2.667 0 4.333-1.325 5-3.976-1 1.325-2.166 1.822-3.5 1.491-.761-.189-1.305-.738-1.907-1.345-.98-.99-2.114-2.134-4.593-2.134zM7 12c-2.667 0-4.333 1.325-5 3.976 1-1.326 2.167-1.822 3.5-1.491.761.189 1.305.738 1.907 1.345.98.989 2.115 2.134 4.594 2.134 2.667 0 4.333-1.325 5-3.976-1 1.325-2.167 1.822-3.5 1.491-.761-.189-1.305-.738-1.906-1.345C10.613 13.145 9.478 12 7 12z"
|
|
11055
|
+
})
|
|
11056
|
+
);
|
|
11057
|
+
});
|
|
11058
|
+
TailwindCSS.displayName = "TailwindCSS";
|
|
11059
|
+
|
|
9699
11060
|
var Target = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9700
11061
|
var _b = _a.color,
|
|
9701
11062
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -9774,6 +11135,123 @@ var Terminal = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
9774
11135
|
});
|
|
9775
11136
|
Terminal.displayName = "Terminal";
|
|
9776
11137
|
|
|
11138
|
+
var TextUp = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
11139
|
+
var _b = _a.color,
|
|
11140
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
11141
|
+
_c = _a.size,
|
|
11142
|
+
size = _c === void 0 ? 24 : _c,
|
|
11143
|
+
rest = __rest(_a, ["color", "size"]);
|
|
11144
|
+
return /*#__PURE__*/ React.createElement(
|
|
11145
|
+
"svg",
|
|
11146
|
+
__assign(
|
|
11147
|
+
{
|
|
11148
|
+
ref: ref,
|
|
11149
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11150
|
+
width: size,
|
|
11151
|
+
height: size,
|
|
11152
|
+
viewBox: "0 0 24 24",
|
|
11153
|
+
fill: "none",
|
|
11154
|
+
stroke: color,
|
|
11155
|
+
strokeWidth: "2",
|
|
11156
|
+
strokeLinecap: "round",
|
|
11157
|
+
strokeLinejoin: "round"
|
|
11158
|
+
},
|
|
11159
|
+
rest
|
|
11160
|
+
),
|
|
11161
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11162
|
+
d: "M3.5 13h6"
|
|
11163
|
+
}),
|
|
11164
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11165
|
+
d: "m2 16 4.5-9 4.5 9"
|
|
11166
|
+
}),
|
|
11167
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11168
|
+
d: "M18 16V7"
|
|
11169
|
+
}),
|
|
11170
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11171
|
+
d: "m14 11 4-4 4 4"
|
|
11172
|
+
})
|
|
11173
|
+
);
|
|
11174
|
+
});
|
|
11175
|
+
TextUp.displayName = "TextUp";
|
|
11176
|
+
|
|
11177
|
+
var TextDown = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
11178
|
+
var _b = _a.color,
|
|
11179
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
11180
|
+
_c = _a.size,
|
|
11181
|
+
size = _c === void 0 ? 24 : _c,
|
|
11182
|
+
rest = __rest(_a, ["color", "size"]);
|
|
11183
|
+
return /*#__PURE__*/ React.createElement(
|
|
11184
|
+
"svg",
|
|
11185
|
+
__assign(
|
|
11186
|
+
{
|
|
11187
|
+
ref: ref,
|
|
11188
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11189
|
+
width: size,
|
|
11190
|
+
height: size,
|
|
11191
|
+
viewBox: "0 0 24 24",
|
|
11192
|
+
fill: "none",
|
|
11193
|
+
stroke: color,
|
|
11194
|
+
strokeWidth: "2",
|
|
11195
|
+
strokeLinecap: "round",
|
|
11196
|
+
strokeLinejoin: "round"
|
|
11197
|
+
},
|
|
11198
|
+
rest
|
|
11199
|
+
),
|
|
11200
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11201
|
+
d: "M3.5 13h6"
|
|
11202
|
+
}),
|
|
11203
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11204
|
+
d: "m2 16 4.5-9 4.5 9"
|
|
11205
|
+
}),
|
|
11206
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11207
|
+
d: "M18 7v9"
|
|
11208
|
+
}),
|
|
11209
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11210
|
+
d: "m14 12 4 4 4-4"
|
|
11211
|
+
})
|
|
11212
|
+
);
|
|
11213
|
+
});
|
|
11214
|
+
TextDown.displayName = "TextDown";
|
|
11215
|
+
|
|
11216
|
+
var TextSize = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
11217
|
+
var _b = _a.color,
|
|
11218
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
11219
|
+
_c = _a.size,
|
|
11220
|
+
size = _c === void 0 ? 24 : _c,
|
|
11221
|
+
rest = __rest(_a, ["color", "size"]);
|
|
11222
|
+
return /*#__PURE__*/ React.createElement(
|
|
11223
|
+
"svg",
|
|
11224
|
+
__assign(
|
|
11225
|
+
{
|
|
11226
|
+
ref: ref,
|
|
11227
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11228
|
+
width: size,
|
|
11229
|
+
height: size,
|
|
11230
|
+
viewBox: "0 0 24 24",
|
|
11231
|
+
fill: "none",
|
|
11232
|
+
stroke: color,
|
|
11233
|
+
strokeWidth: "2",
|
|
11234
|
+
strokeLinecap: "round",
|
|
11235
|
+
strokeLinejoin: "round"
|
|
11236
|
+
},
|
|
11237
|
+
rest
|
|
11238
|
+
),
|
|
11239
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11240
|
+
d: "M21 14h-5"
|
|
11241
|
+
}),
|
|
11242
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11243
|
+
d: "M16 16v-3.5a2.5 2.5 0 0 1 5 0V16"
|
|
11244
|
+
}),
|
|
11245
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11246
|
+
d: "M4.5 13h6"
|
|
11247
|
+
}),
|
|
11248
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11249
|
+
d: "m3 16 4.5-9 4.5 9"
|
|
11250
|
+
})
|
|
11251
|
+
);
|
|
11252
|
+
});
|
|
11253
|
+
TextSize.displayName = "TextSize";
|
|
11254
|
+
|
|
9777
11255
|
var Thermometer = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
9778
11256
|
var _b = _a.color,
|
|
9779
11257
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -10381,6 +11859,56 @@ var Type = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
10381
11859
|
});
|
|
10382
11860
|
Type.displayName = "Type";
|
|
10383
11861
|
|
|
11862
|
+
var TypeScript = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
11863
|
+
var _b = _a.color,
|
|
11864
|
+
color = _b === void 0 ? "currentColor" : _b,
|
|
11865
|
+
_c = _a.size,
|
|
11866
|
+
size = _c === void 0 ? 24 : _c,
|
|
11867
|
+
rest = __rest(_a, ["color", "size"]);
|
|
11868
|
+
return /*#__PURE__*/ React.createElement(
|
|
11869
|
+
"svg",
|
|
11870
|
+
__assign(
|
|
11871
|
+
{
|
|
11872
|
+
ref: ref,
|
|
11873
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11874
|
+
width: size,
|
|
11875
|
+
height: size,
|
|
11876
|
+
viewBox: "0 0 24 24",
|
|
11877
|
+
fill: "none",
|
|
11878
|
+
stroke: color,
|
|
11879
|
+
strokeWidth: "2",
|
|
11880
|
+
strokeLinecap: "round",
|
|
11881
|
+
strokeLinejoin: "round"
|
|
11882
|
+
},
|
|
11883
|
+
rest
|
|
11884
|
+
),
|
|
11885
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11886
|
+
stroke: "none",
|
|
11887
|
+
d: "M0 0h24v24H0z",
|
|
11888
|
+
fill: "none"
|
|
11889
|
+
}),
|
|
11890
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11891
|
+
d: "M14 3v4a1 1 0 0 0 1 1h4"
|
|
11892
|
+
}),
|
|
11893
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11894
|
+
d: "M5 12v-7a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1"
|
|
11895
|
+
}),
|
|
11896
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11897
|
+
d: "M14 3v4a1 1 0 0 0 1 1h4"
|
|
11898
|
+
}),
|
|
11899
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11900
|
+
d: "M9 20.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75"
|
|
11901
|
+
}),
|
|
11902
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11903
|
+
d: "M3.5 15h3"
|
|
11904
|
+
}),
|
|
11905
|
+
/*#__PURE__*/ React.createElement("path", {
|
|
11906
|
+
d: "M5 15v6"
|
|
11907
|
+
})
|
|
11908
|
+
);
|
|
11909
|
+
});
|
|
11910
|
+
TypeScript.displayName = "TypeScript";
|
|
11911
|
+
|
|
10384
11912
|
var Umbrella = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
10385
11913
|
var _b = _a.color,
|
|
10386
11914
|
color = _b === void 0 ? "currentColor" : _b,
|
|
@@ -11657,8 +13185,22 @@ var ZoomOut = /*#__PURE__*/ forwardRef(function (_a, ref) {
|
|
|
11657
13185
|
ZoomOut.displayName = "ZoomOut";
|
|
11658
13186
|
|
|
11659
13187
|
export {
|
|
13188
|
+
Accessibility,
|
|
11660
13189
|
Activity,
|
|
13190
|
+
AirPlane,
|
|
13191
|
+
AirPlaneLanding,
|
|
13192
|
+
AirPlaneLanding2,
|
|
13193
|
+
AirPlaneMode,
|
|
13194
|
+
AirPlaneModeOff,
|
|
13195
|
+
AirPlaneSeat,
|
|
13196
|
+
AirPlaneTakeOff,
|
|
13197
|
+
AirPlaneTakeOff2,
|
|
11661
13198
|
Airplay,
|
|
13199
|
+
AlarmClock,
|
|
13200
|
+
AlarmClockCheck,
|
|
13201
|
+
AlarmClockMinus,
|
|
13202
|
+
AlarmClockOff,
|
|
13203
|
+
AlarmClockPlus,
|
|
11662
13204
|
AlertCircle,
|
|
11663
13205
|
AlertOctagon,
|
|
11664
13206
|
AlertTriangle,
|
|
@@ -11668,7 +13210,11 @@ export {
|
|
|
11668
13210
|
AlignRight,
|
|
11669
13211
|
Anchor,
|
|
11670
13212
|
Aperture,
|
|
13213
|
+
AppWindow,
|
|
13214
|
+
AppWindowMac,
|
|
13215
|
+
Apple,
|
|
11671
13216
|
Archive,
|
|
13217
|
+
ArchiveRestore,
|
|
11672
13218
|
ArrowDown,
|
|
11673
13219
|
ArrowDownCircle,
|
|
11674
13220
|
ArrowDownLeft,
|
|
@@ -11718,6 +13264,7 @@ export {
|
|
|
11718
13264
|
Clock,
|
|
11719
13265
|
Cloud,
|
|
11720
13266
|
CloudDrizzle,
|
|
13267
|
+
CloudFlare,
|
|
11721
13268
|
CloudLightning,
|
|
11722
13269
|
CloudOff,
|
|
11723
13270
|
CloudRain,
|
|
@@ -11729,6 +13276,7 @@ export {
|
|
|
11729
13276
|
Columns,
|
|
11730
13277
|
Command,
|
|
11731
13278
|
Compass,
|
|
13279
|
+
Cookie,
|
|
11732
13280
|
Copy,
|
|
11733
13281
|
CornerDownLeft,
|
|
11734
13282
|
CornerDownRight,
|
|
@@ -11744,7 +13292,9 @@ export {
|
|
|
11744
13292
|
Crosshair,
|
|
11745
13293
|
Database,
|
|
11746
13294
|
Delete,
|
|
13295
|
+
Deno,
|
|
11747
13296
|
Disc,
|
|
13297
|
+
Discord,
|
|
11748
13298
|
Divide,
|
|
11749
13299
|
DivideCircle,
|
|
11750
13300
|
DivideSquare,
|
|
@@ -11784,7 +13334,10 @@ export {
|
|
|
11784
13334
|
GitHub as Github,
|
|
11785
13335
|
Gitlab,
|
|
11786
13336
|
Globe,
|
|
13337
|
+
GoLang,
|
|
13338
|
+
Google,
|
|
11787
13339
|
Grid,
|
|
13340
|
+
HTML5,
|
|
11788
13341
|
HardDrive,
|
|
11789
13342
|
Hash,
|
|
11790
13343
|
Headphones,
|
|
@@ -11797,6 +13350,7 @@ export {
|
|
|
11797
13350
|
Info,
|
|
11798
13351
|
Instagram,
|
|
11799
13352
|
Italic,
|
|
13353
|
+
JavaScript,
|
|
11800
13354
|
Key,
|
|
11801
13355
|
Layers,
|
|
11802
13356
|
Layout,
|
|
@@ -11832,13 +13386,16 @@ export {
|
|
|
11832
13386
|
MousePointer,
|
|
11833
13387
|
Move,
|
|
11834
13388
|
Music,
|
|
13389
|
+
NPMJs,
|
|
11835
13390
|
Navigation,
|
|
11836
13391
|
Navigation2,
|
|
13392
|
+
NodeJs,
|
|
11837
13393
|
Octagon,
|
|
11838
13394
|
Package,
|
|
11839
13395
|
Paperclip,
|
|
11840
13396
|
Pause,
|
|
11841
13397
|
PauseCircle,
|
|
13398
|
+
PayPal,
|
|
11842
13399
|
PenTool,
|
|
11843
13400
|
Percent,
|
|
11844
13401
|
Phone,
|
|
@@ -11857,7 +13414,9 @@ export {
|
|
|
11857
13414
|
Pocket,
|
|
11858
13415
|
Power,
|
|
11859
13416
|
Printer,
|
|
13417
|
+
Python,
|
|
11860
13418
|
Radio,
|
|
13419
|
+
ReactJS,
|
|
11861
13420
|
RefreshCcw,
|
|
11862
13421
|
RefreshCw,
|
|
11863
13422
|
Repeat,
|
|
@@ -11886,9 +13445,11 @@ export {
|
|
|
11886
13445
|
Sliders,
|
|
11887
13446
|
Smartphone,
|
|
11888
13447
|
Smile,
|
|
13448
|
+
SoundCloud,
|
|
11889
13449
|
Sparkles,
|
|
11890
13450
|
Sparkles2,
|
|
11891
13451
|
Speaker,
|
|
13452
|
+
Spotify,
|
|
11892
13453
|
Square,
|
|
11893
13454
|
Star,
|
|
11894
13455
|
StopCircle,
|
|
@@ -11898,8 +13459,12 @@ export {
|
|
|
11898
13459
|
Table,
|
|
11899
13460
|
Tablet,
|
|
11900
13461
|
Tag,
|
|
13462
|
+
TailwindCSS,
|
|
11901
13463
|
Target,
|
|
11902
13464
|
Terminal,
|
|
13465
|
+
TextDown,
|
|
13466
|
+
TextSize,
|
|
13467
|
+
TextUp,
|
|
11903
13468
|
Thermometer,
|
|
11904
13469
|
ThumbsDown,
|
|
11905
13470
|
ThumbsUp,
|
|
@@ -11917,6 +13482,7 @@ export {
|
|
|
11917
13482
|
Twitch,
|
|
11918
13483
|
Twitter,
|
|
11919
13484
|
Type,
|
|
13485
|
+
TypeScript,
|
|
11920
13486
|
Umbrella,
|
|
11921
13487
|
Underline,
|
|
11922
13488
|
Unlock,
|