randmarcomps 1.500.0 → 1.501.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/randmarcomps.js +323 -255
- package/dist/randmarcomps.umd.cjs +183 -183
- package/package.json +34 -34
package/dist/randmarcomps.js
CHANGED
|
@@ -201,14 +201,24 @@ var Nt = `
|
|
|
201
201
|
}
|
|
202
202
|
}`;
|
|
203
203
|
/**
|
|
204
|
-
* @license lucide-react v0.
|
|
204
|
+
* @license lucide-react v0.561.0 - ISC
|
|
205
205
|
*
|
|
206
206
|
* This source code is licensed under the ISC license.
|
|
207
207
|
* See the LICENSE file in the root directory of this source tree.
|
|
208
208
|
*/
|
|
209
|
-
const toKebabCase = (t) => t.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(),
|
|
209
|
+
const toKebabCase = (t) => t.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), toCamelCase = (t) => t.replace(
|
|
210
|
+
/^([A-Z])|[\s-_]+(\w)/g,
|
|
211
|
+
(e, n, o) => o ? o.toUpperCase() : n.toLowerCase()
|
|
212
|
+
), toPascalCase = (t) => {
|
|
213
|
+
const e = toCamelCase(t);
|
|
214
|
+
return e.charAt(0).toUpperCase() + e.slice(1);
|
|
215
|
+
}, mergeClasses = (...t) => t.filter((e, n, o) => !!e && e.trim() !== "" && o.indexOf(e) === n).join(" ").trim(), hasA11yProp = (t) => {
|
|
216
|
+
for (const e in t)
|
|
217
|
+
if (e.startsWith("aria-") || e === "role" || e === "title")
|
|
218
|
+
return !0;
|
|
219
|
+
};
|
|
210
220
|
/**
|
|
211
|
-
* @license lucide-react v0.
|
|
221
|
+
* @license lucide-react v0.561.0 - ISC
|
|
212
222
|
*
|
|
213
223
|
* This source code is licensed under the ISC license.
|
|
214
224
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -225,7 +235,7 @@ var defaultAttributes = {
|
|
|
225
235
|
strokeLinejoin: "round"
|
|
226
236
|
};
|
|
227
237
|
/**
|
|
228
|
-
* @license lucide-react v0.
|
|
238
|
+
* @license lucide-react v0.561.0 - ISC
|
|
229
239
|
*
|
|
230
240
|
* This source code is licensed under the ISC license.
|
|
231
241
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -250,6 +260,7 @@ const Icon$1 = forwardRef(
|
|
|
250
260
|
stroke: t,
|
|
251
261
|
strokeWidth: o ? Number(n) * 24 / Number(e) : n,
|
|
252
262
|
className: mergeClasses("lucide", l),
|
|
263
|
+
...!d && !hasA11yProp(g) && { "aria-hidden": "true" },
|
|
253
264
|
...g
|
|
254
265
|
},
|
|
255
266
|
[
|
|
@@ -259,7 +270,7 @@ const Icon$1 = forwardRef(
|
|
|
259
270
|
)
|
|
260
271
|
);
|
|
261
272
|
/**
|
|
262
|
-
* @license lucide-react v0.
|
|
273
|
+
* @license lucide-react v0.561.0 - ISC
|
|
263
274
|
*
|
|
264
275
|
* This source code is licensed under the ISC license.
|
|
265
276
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -269,14 +280,18 @@ const createLucideIcon = (t, e) => {
|
|
|
269
280
|
({ className: o, ...l }, d) => createElement(Icon$1, {
|
|
270
281
|
ref: d,
|
|
271
282
|
iconNode: e,
|
|
272
|
-
className: mergeClasses(
|
|
283
|
+
className: mergeClasses(
|
|
284
|
+
`lucide-${toKebabCase(toPascalCase(t))}`,
|
|
285
|
+
`lucide-${t}`,
|
|
286
|
+
o
|
|
287
|
+
),
|
|
273
288
|
...l
|
|
274
289
|
})
|
|
275
290
|
);
|
|
276
|
-
return n.displayName =
|
|
291
|
+
return n.displayName = toPascalCase(t), n;
|
|
277
292
|
};
|
|
278
293
|
/**
|
|
279
|
-
* @license lucide-react v0.
|
|
294
|
+
* @license lucide-react v0.561.0 - ISC
|
|
280
295
|
*
|
|
281
296
|
* This source code is licensed under the ISC license.
|
|
282
297
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -284,9 +299,9 @@ const createLucideIcon = (t, e) => {
|
|
|
284
299
|
const __iconNode$1m = [
|
|
285
300
|
["path", { d: "M12 5v14", key: "s699le" }],
|
|
286
301
|
["path", { d: "m19 12-7 7-7-7", key: "1idqje" }]
|
|
287
|
-
], ArrowDown = createLucideIcon("
|
|
302
|
+
], ArrowDown = createLucideIcon("arrow-down", __iconNode$1m);
|
|
288
303
|
/**
|
|
289
|
-
* @license lucide-react v0.
|
|
304
|
+
* @license lucide-react v0.561.0 - ISC
|
|
290
305
|
*
|
|
291
306
|
* This source code is licensed under the ISC license.
|
|
292
307
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -296,9 +311,9 @@ const __iconNode$1l = [
|
|
|
296
311
|
["path", { d: "M17 20V4", key: "1ejh1v" }],
|
|
297
312
|
["path", { d: "m3 8 4-4 4 4", key: "11wl7u" }],
|
|
298
313
|
["path", { d: "M7 4v16", key: "1glfcx" }]
|
|
299
|
-
], ArrowUpDown = createLucideIcon("
|
|
314
|
+
], ArrowUpDown = createLucideIcon("arrow-up-down", __iconNode$1l);
|
|
300
315
|
/**
|
|
301
|
-
* @license lucide-react v0.
|
|
316
|
+
* @license lucide-react v0.561.0 - ISC
|
|
302
317
|
*
|
|
303
318
|
* This source code is licensed under the ISC license.
|
|
304
319
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -306,9 +321,9 @@ const __iconNode$1l = [
|
|
|
306
321
|
const __iconNode$1k = [
|
|
307
322
|
["path", { d: "m5 12 7-7 7 7", key: "hav0vg" }],
|
|
308
323
|
["path", { d: "M12 19V5", key: "x0mq9r" }]
|
|
309
|
-
], ArrowUp = createLucideIcon("
|
|
324
|
+
], ArrowUp = createLucideIcon("arrow-up", __iconNode$1k);
|
|
310
325
|
/**
|
|
311
|
-
* @license lucide-react v0.
|
|
326
|
+
* @license lucide-react v0.561.0 - ISC
|
|
312
327
|
*
|
|
313
328
|
* This source code is licensed under the ISC license.
|
|
314
329
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -322,9 +337,9 @@ const __iconNode$1j = [
|
|
|
322
337
|
}
|
|
323
338
|
],
|
|
324
339
|
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
|
|
325
|
-
], BadgeCheck = createLucideIcon("
|
|
340
|
+
], BadgeCheck = createLucideIcon("badge-check", __iconNode$1j);
|
|
326
341
|
/**
|
|
327
|
-
* @license lucide-react v0.
|
|
342
|
+
* @license lucide-react v0.561.0 - ISC
|
|
328
343
|
*
|
|
329
344
|
* This source code is licensed under the ISC license.
|
|
330
345
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -333,9 +348,9 @@ const __iconNode$1i = [
|
|
|
333
348
|
["rect", { width: "20", height: "12", x: "2", y: "6", rx: "2", key: "9lu3g6" }],
|
|
334
349
|
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }],
|
|
335
350
|
["path", { d: "M6 12h.01M18 12h.01", key: "113zkx" }]
|
|
336
|
-
], Banknote = createLucideIcon("
|
|
351
|
+
], Banknote = createLucideIcon("banknote", __iconNode$1i);
|
|
337
352
|
/**
|
|
338
|
-
* @license lucide-react v0.
|
|
353
|
+
* @license lucide-react v0.561.0 - ISC
|
|
339
354
|
*
|
|
340
355
|
* This source code is licensed under the ISC license.
|
|
341
356
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -345,9 +360,9 @@ const __iconNode$1h = [
|
|
|
345
360
|
"path",
|
|
346
361
|
{ d: "M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8", key: "mg9rjx" }
|
|
347
362
|
]
|
|
348
|
-
], Bold$1 = createLucideIcon("
|
|
363
|
+
], Bold$1 = createLucideIcon("bold", __iconNode$1h);
|
|
349
364
|
/**
|
|
350
|
-
* @license lucide-react v0.
|
|
365
|
+
* @license lucide-react v0.561.0 - ISC
|
|
351
366
|
*
|
|
352
367
|
* This source code is licensed under the ISC license.
|
|
353
368
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -361,9 +376,9 @@ const __iconNode$1g = [
|
|
|
361
376
|
key: "ruj8y"
|
|
362
377
|
}
|
|
363
378
|
]
|
|
364
|
-
], BookOpen = createLucideIcon("
|
|
379
|
+
], BookOpen = createLucideIcon("book-open", __iconNode$1g);
|
|
365
380
|
/**
|
|
366
|
-
* @license lucide-react v0.
|
|
381
|
+
* @license lucide-react v0.561.0 - ISC
|
|
367
382
|
*
|
|
368
383
|
* This source code is licensed under the ISC license.
|
|
369
384
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -375,9 +390,9 @@ const __iconNode$1f = [
|
|
|
375
390
|
["path", { d: "M20 14h2", key: "4cs60a" }],
|
|
376
391
|
["path", { d: "M15 13v2", key: "1xurst" }],
|
|
377
392
|
["path", { d: "M9 13v2", key: "rq6x2g" }]
|
|
378
|
-
], Bot = createLucideIcon("
|
|
393
|
+
], Bot = createLucideIcon("bot", __iconNode$1f);
|
|
379
394
|
/**
|
|
380
|
-
* @license lucide-react v0.
|
|
395
|
+
* @license lucide-react v0.561.0 - ISC
|
|
381
396
|
*
|
|
382
397
|
* This source code is licensed under the ISC license.
|
|
383
398
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -393,9 +408,9 @@ const __iconNode$1e = [
|
|
|
393
408
|
["path", { d: "M8 18h.01", key: "lrp35t" }],
|
|
394
409
|
["path", { d: "M12 18h.01", key: "mhygvu" }],
|
|
395
410
|
["path", { d: "M16 18h.01", key: "kzsmim" }]
|
|
396
|
-
], CalendarDays = createLucideIcon("
|
|
411
|
+
], CalendarDays = createLucideIcon("calendar-days", __iconNode$1e);
|
|
397
412
|
/**
|
|
398
|
-
* @license lucide-react v0.
|
|
413
|
+
* @license lucide-react v0.561.0 - ISC
|
|
399
414
|
*
|
|
400
415
|
* This source code is licensed under the ISC license.
|
|
401
416
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -409,9 +424,9 @@ const __iconNode$1d = [
|
|
|
409
424
|
["path", { d: "M13 18H7", key: "bb0bb7" }],
|
|
410
425
|
["path", { d: "M7 14h.01", key: "1qa3f1" }],
|
|
411
426
|
["path", { d: "M17 18h.01", key: "1bdyru" }]
|
|
412
|
-
], CalendarRange = createLucideIcon("
|
|
427
|
+
], CalendarRange = createLucideIcon("calendar-range", __iconNode$1d);
|
|
413
428
|
/**
|
|
414
|
-
* @license lucide-react v0.
|
|
429
|
+
* @license lucide-react v0.561.0 - ISC
|
|
415
430
|
*
|
|
416
431
|
* This source code is licensed under the ISC license.
|
|
417
432
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -421,9 +436,9 @@ const __iconNode$1c = [
|
|
|
421
436
|
["path", { d: "M16 2v4", key: "4m81vk" }],
|
|
422
437
|
["rect", { width: "18", height: "18", x: "3", y: "4", rx: "2", key: "1hopcy" }],
|
|
423
438
|
["path", { d: "M3 10h18", key: "8toen8" }]
|
|
424
|
-
], Calendar$1 = createLucideIcon("
|
|
439
|
+
], Calendar$1 = createLucideIcon("calendar", __iconNode$1c);
|
|
425
440
|
/**
|
|
426
|
-
* @license lucide-react v0.
|
|
441
|
+
* @license lucide-react v0.561.0 - ISC
|
|
427
442
|
*
|
|
428
443
|
* This source code is licensed under the ISC license.
|
|
429
444
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -431,55 +446,55 @@ const __iconNode$1c = [
|
|
|
431
446
|
const __iconNode$1b = [
|
|
432
447
|
["path", { d: "M3 3v16a2 2 0 0 0 2 2h16", key: "c24i48" }],
|
|
433
448
|
["path", { d: "m19 9-5 5-4-4-3 3", key: "2osh9i" }]
|
|
434
|
-
], ChartLine = createLucideIcon("
|
|
449
|
+
], ChartLine = createLucideIcon("chart-line", __iconNode$1b);
|
|
435
450
|
/**
|
|
436
|
-
* @license lucide-react v0.
|
|
451
|
+
* @license lucide-react v0.561.0 - ISC
|
|
437
452
|
*
|
|
438
453
|
* This source code is licensed under the ISC license.
|
|
439
454
|
* See the LICENSE file in the root directory of this source tree.
|
|
440
455
|
*/
|
|
441
456
|
const __iconNode$1a = [
|
|
442
|
-
["
|
|
443
|
-
["
|
|
444
|
-
["
|
|
445
|
-
], ChartNoAxesColumnIncreasing = createLucideIcon("
|
|
457
|
+
["path", { d: "M5 21v-6", key: "1hz6c0" }],
|
|
458
|
+
["path", { d: "M12 21V9", key: "uvy0l4" }],
|
|
459
|
+
["path", { d: "M19 21V3", key: "11j9sm" }]
|
|
460
|
+
], ChartNoAxesColumnIncreasing = createLucideIcon("chart-no-axes-column-increasing", __iconNode$1a);
|
|
446
461
|
/**
|
|
447
|
-
* @license lucide-react v0.
|
|
462
|
+
* @license lucide-react v0.561.0 - ISC
|
|
448
463
|
*
|
|
449
464
|
* This source code is licensed under the ISC license.
|
|
450
465
|
* See the LICENSE file in the root directory of this source tree.
|
|
451
466
|
*/
|
|
452
|
-
const __iconNode$19 = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]], Check = createLucideIcon("
|
|
467
|
+
const __iconNode$19 = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]], Check = createLucideIcon("check", __iconNode$19);
|
|
453
468
|
/**
|
|
454
|
-
* @license lucide-react v0.
|
|
469
|
+
* @license lucide-react v0.561.0 - ISC
|
|
455
470
|
*
|
|
456
471
|
* This source code is licensed under the ISC license.
|
|
457
472
|
* See the LICENSE file in the root directory of this source tree.
|
|
458
473
|
*/
|
|
459
|
-
const __iconNode$18 = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]], ChevronDown = createLucideIcon("
|
|
474
|
+
const __iconNode$18 = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]], ChevronDown = createLucideIcon("chevron-down", __iconNode$18);
|
|
460
475
|
/**
|
|
461
|
-
* @license lucide-react v0.
|
|
476
|
+
* @license lucide-react v0.561.0 - ISC
|
|
462
477
|
*
|
|
463
478
|
* This source code is licensed under the ISC license.
|
|
464
479
|
* See the LICENSE file in the root directory of this source tree.
|
|
465
480
|
*/
|
|
466
|
-
const __iconNode$17 = [["path", { d: "m15 18-6-6 6-6", key: "1wnfg3" }]], ChevronLeft = createLucideIcon("
|
|
481
|
+
const __iconNode$17 = [["path", { d: "m15 18-6-6 6-6", key: "1wnfg3" }]], ChevronLeft = createLucideIcon("chevron-left", __iconNode$17);
|
|
467
482
|
/**
|
|
468
|
-
* @license lucide-react v0.
|
|
483
|
+
* @license lucide-react v0.561.0 - ISC
|
|
469
484
|
*
|
|
470
485
|
* This source code is licensed under the ISC license.
|
|
471
486
|
* See the LICENSE file in the root directory of this source tree.
|
|
472
487
|
*/
|
|
473
|
-
const __iconNode$16 = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]], ChevronRight = createLucideIcon("
|
|
488
|
+
const __iconNode$16 = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]], ChevronRight = createLucideIcon("chevron-right", __iconNode$16);
|
|
474
489
|
/**
|
|
475
|
-
* @license lucide-react v0.
|
|
490
|
+
* @license lucide-react v0.561.0 - ISC
|
|
476
491
|
*
|
|
477
492
|
* This source code is licensed under the ISC license.
|
|
478
493
|
* See the LICENSE file in the root directory of this source tree.
|
|
479
494
|
*/
|
|
480
|
-
const __iconNode$15 = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]], ChevronUp = createLucideIcon("
|
|
495
|
+
const __iconNode$15 = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]], ChevronUp = createLucideIcon("chevron-up", __iconNode$15);
|
|
481
496
|
/**
|
|
482
|
-
* @license lucide-react v0.
|
|
497
|
+
* @license lucide-react v0.561.0 - ISC
|
|
483
498
|
*
|
|
484
499
|
* This source code is licensed under the ISC license.
|
|
485
500
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -487,9 +502,9 @@ const __iconNode$15 = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]], Chevro
|
|
|
487
502
|
const __iconNode$14 = [
|
|
488
503
|
["path", { d: "m11 17-5-5 5-5", key: "13zhaf" }],
|
|
489
504
|
["path", { d: "m18 17-5-5 5-5", key: "h8a8et" }]
|
|
490
|
-
], ChevronsLeft = createLucideIcon("
|
|
505
|
+
], ChevronsLeft = createLucideIcon("chevrons-left", __iconNode$14);
|
|
491
506
|
/**
|
|
492
|
-
* @license lucide-react v0.
|
|
507
|
+
* @license lucide-react v0.561.0 - ISC
|
|
493
508
|
*
|
|
494
509
|
* This source code is licensed under the ISC license.
|
|
495
510
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -497,9 +512,9 @@ const __iconNode$14 = [
|
|
|
497
512
|
const __iconNode$13 = [
|
|
498
513
|
["path", { d: "m6 17 5-5-5-5", key: "xnjwq" }],
|
|
499
514
|
["path", { d: "m13 17 5-5-5-5", key: "17xmmf" }]
|
|
500
|
-
], ChevronsRight = createLucideIcon("
|
|
515
|
+
], ChevronsRight = createLucideIcon("chevrons-right", __iconNode$13);
|
|
501
516
|
/**
|
|
502
|
-
* @license lucide-react v0.
|
|
517
|
+
* @license lucide-react v0.561.0 - ISC
|
|
503
518
|
*
|
|
504
519
|
* This source code is licensed under the ISC license.
|
|
505
520
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -507,9 +522,9 @@ const __iconNode$13 = [
|
|
|
507
522
|
const __iconNode$12 = [
|
|
508
523
|
["path", { d: "m7 15 5 5 5-5", key: "1hf1tw" }],
|
|
509
524
|
["path", { d: "m7 9 5-5 5 5", key: "sgt6xg" }]
|
|
510
|
-
], ChevronsUpDown = createLucideIcon("
|
|
525
|
+
], ChevronsUpDown = createLucideIcon("chevrons-up-down", __iconNode$12);
|
|
511
526
|
/**
|
|
512
|
-
* @license lucide-react v0.
|
|
527
|
+
* @license lucide-react v0.561.0 - ISC
|
|
513
528
|
*
|
|
514
529
|
* This source code is licensed under the ISC license.
|
|
515
530
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -518,9 +533,9 @@ const __iconNode$11 = [
|
|
|
518
533
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
519
534
|
["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
|
|
520
535
|
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
|
|
521
|
-
], CircleAlert = createLucideIcon("
|
|
536
|
+
], CircleAlert = createLucideIcon("circle-alert", __iconNode$11);
|
|
522
537
|
/**
|
|
523
|
-
* @license lucide-react v0.
|
|
538
|
+
* @license lucide-react v0.561.0 - ISC
|
|
524
539
|
*
|
|
525
540
|
* This source code is licensed under the ISC license.
|
|
526
541
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -528,9 +543,9 @@ const __iconNode$11 = [
|
|
|
528
543
|
const __iconNode$10 = [
|
|
529
544
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
530
545
|
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
|
|
531
|
-
], CircleCheck = createLucideIcon("
|
|
546
|
+
], CircleCheck = createLucideIcon("circle-check", __iconNode$10);
|
|
532
547
|
/**
|
|
533
|
-
* @license lucide-react v0.
|
|
548
|
+
* @license lucide-react v0.561.0 - ISC
|
|
534
549
|
*
|
|
535
550
|
* This source code is licensed under the ISC license.
|
|
536
551
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -544,16 +559,16 @@ const __iconNode$$ = [
|
|
|
544
559
|
["path", { d: "M21.818 10.1a10 10 0 0 1 0 3.8", key: "qkgqxc" }],
|
|
545
560
|
["path", { d: "M3.721 6.391a10 10 0 0 1 2.7-2.69", key: "1mcia2" }],
|
|
546
561
|
["path", { d: "M6.391 20.279a10 10 0 0 1-2.69-2.7", key: "1fvljs" }]
|
|
547
|
-
], CircleDashed = createLucideIcon("
|
|
562
|
+
], CircleDashed = createLucideIcon("circle-dashed", __iconNode$$);
|
|
548
563
|
/**
|
|
549
|
-
* @license lucide-react v0.
|
|
564
|
+
* @license lucide-react v0.561.0 - ISC
|
|
550
565
|
*
|
|
551
566
|
* This source code is licensed under the ISC license.
|
|
552
567
|
* See the LICENSE file in the root directory of this source tree.
|
|
553
568
|
*/
|
|
554
|
-
const __iconNode$_ = [["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]], Circle = createLucideIcon("
|
|
569
|
+
const __iconNode$_ = [["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]], Circle = createLucideIcon("circle", __iconNode$_);
|
|
555
570
|
/**
|
|
556
|
-
* @license lucide-react v0.
|
|
571
|
+
* @license lucide-react v0.561.0 - ISC
|
|
557
572
|
*
|
|
558
573
|
* This source code is licensed under the ISC license.
|
|
559
574
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -571,9 +586,9 @@ const __iconNode$Z = [
|
|
|
571
586
|
["path", { d: "M12 16h4", key: "n85exb" }],
|
|
572
587
|
["path", { d: "M8 11h.01", key: "1dfujw" }],
|
|
573
588
|
["path", { d: "M8 16h.01", key: "18s6g9" }]
|
|
574
|
-
], ClipboardList = createLucideIcon("
|
|
589
|
+
], ClipboardList = createLucideIcon("clipboard-list", __iconNode$Z);
|
|
575
590
|
/**
|
|
576
|
-
* @license lucide-react v0.
|
|
591
|
+
* @license lucide-react v0.561.0 - ISC
|
|
577
592
|
*
|
|
578
593
|
* This source code is licensed under the ISC license.
|
|
579
594
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -582,19 +597,19 @@ const __iconNode$Y = [
|
|
|
582
597
|
["path", { d: "m18 16 4-4-4-4", key: "1inbqp" }],
|
|
583
598
|
["path", { d: "m6 8-4 4 4 4", key: "15zrgr" }],
|
|
584
599
|
["path", { d: "m14.5 4-5 16", key: "e7oirm" }]
|
|
585
|
-
], CodeXml = createLucideIcon("
|
|
600
|
+
], CodeXml = createLucideIcon("code-xml", __iconNode$Y);
|
|
586
601
|
/**
|
|
587
|
-
* @license lucide-react v0.
|
|
602
|
+
* @license lucide-react v0.561.0 - ISC
|
|
588
603
|
*
|
|
589
604
|
* This source code is licensed under the ISC license.
|
|
590
605
|
* See the LICENSE file in the root directory of this source tree.
|
|
591
606
|
*/
|
|
592
607
|
const __iconNode$X = [
|
|
593
|
-
["
|
|
594
|
-
["
|
|
595
|
-
], Code$1 = createLucideIcon("
|
|
608
|
+
["path", { d: "m16 18 6-6-6-6", key: "eg8j8" }],
|
|
609
|
+
["path", { d: "m8 6-6 6 6 6", key: "ppft3o" }]
|
|
610
|
+
], Code$1 = createLucideIcon("code", __iconNode$X);
|
|
596
611
|
/**
|
|
597
|
-
* @license lucide-react v0.
|
|
612
|
+
* @license lucide-react v0.561.0 - ISC
|
|
598
613
|
*
|
|
599
614
|
* This source code is licensed under the ISC license.
|
|
600
615
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -602,9 +617,9 @@ const __iconNode$X = [
|
|
|
602
617
|
const __iconNode$W = [
|
|
603
618
|
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
|
|
604
619
|
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
|
|
605
|
-
], Copy = createLucideIcon("
|
|
620
|
+
], Copy = createLucideIcon("copy", __iconNode$W);
|
|
606
621
|
/**
|
|
607
|
-
* @license lucide-react v0.
|
|
622
|
+
* @license lucide-react v0.561.0 - ISC
|
|
608
623
|
*
|
|
609
624
|
* This source code is licensed under the ISC license.
|
|
610
625
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -612,9 +627,9 @@ const __iconNode$W = [
|
|
|
612
627
|
const __iconNode$V = [
|
|
613
628
|
["rect", { width: "20", height: "14", x: "2", y: "5", rx: "2", key: "ynyp8z" }],
|
|
614
629
|
["line", { x1: "2", x2: "22", y1: "10", y2: "10", key: "1b3vmo" }]
|
|
615
|
-
], CreditCard = createLucideIcon("
|
|
630
|
+
], CreditCard = createLucideIcon("credit-card", __iconNode$V);
|
|
616
631
|
/**
|
|
617
|
-
* @license lucide-react v0.
|
|
632
|
+
* @license lucide-react v0.561.0 - ISC
|
|
618
633
|
*
|
|
619
634
|
* This source code is licensed under the ISC license.
|
|
620
635
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -622,20 +637,20 @@ const __iconNode$V = [
|
|
|
622
637
|
const __iconNode$U = [
|
|
623
638
|
["line", { x1: "12", x2: "12", y1: "2", y2: "22", key: "7eqyqh" }],
|
|
624
639
|
["path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6", key: "1b0p4s" }]
|
|
625
|
-
], DollarSign = createLucideIcon("
|
|
640
|
+
], DollarSign = createLucideIcon("dollar-sign", __iconNode$U);
|
|
626
641
|
/**
|
|
627
|
-
* @license lucide-react v0.
|
|
642
|
+
* @license lucide-react v0.561.0 - ISC
|
|
628
643
|
*
|
|
629
644
|
* This source code is licensed under the ISC license.
|
|
630
645
|
* See the LICENSE file in the root directory of this source tree.
|
|
631
646
|
*/
|
|
632
647
|
const __iconNode$T = [
|
|
648
|
+
["path", { d: "M12 15V3", key: "m9g1x1" }],
|
|
633
649
|
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }],
|
|
634
|
-
["
|
|
635
|
-
|
|
636
|
-
], Download = createLucideIcon("Download", __iconNode$T);
|
|
650
|
+
["path", { d: "m7 10 5 5 5-5", key: "brsn70" }]
|
|
651
|
+
], Download = createLucideIcon("download", __iconNode$T);
|
|
637
652
|
/**
|
|
638
|
-
* @license lucide-react v0.
|
|
653
|
+
* @license lucide-react v0.561.0 - ISC
|
|
639
654
|
*
|
|
640
655
|
* This source code is licensed under the ISC license.
|
|
641
656
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -644,9 +659,9 @@ const __iconNode$S = [
|
|
|
644
659
|
["path", { d: "M15 3h6v6", key: "1q9fwt" }],
|
|
645
660
|
["path", { d: "M10 14 21 3", key: "gplh6r" }],
|
|
646
661
|
["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6", key: "a6xqqp" }]
|
|
647
|
-
], ExternalLink = createLucideIcon("
|
|
662
|
+
], ExternalLink = createLucideIcon("external-link", __iconNode$S);
|
|
648
663
|
/**
|
|
649
|
-
* @license lucide-react v0.
|
|
664
|
+
* @license lucide-react v0.561.0 - ISC
|
|
650
665
|
*
|
|
651
666
|
* This source code is licensed under the ISC license.
|
|
652
667
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -660,41 +675,59 @@ const __iconNode$R = [
|
|
|
660
675
|
}
|
|
661
676
|
],
|
|
662
677
|
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
663
|
-
], Eye = createLucideIcon("
|
|
678
|
+
], Eye = createLucideIcon("eye", __iconNode$R);
|
|
664
679
|
/**
|
|
665
|
-
* @license lucide-react v0.
|
|
680
|
+
* @license lucide-react v0.561.0 - ISC
|
|
666
681
|
*
|
|
667
682
|
* This source code is licensed under the ISC license.
|
|
668
683
|
* See the LICENSE file in the root directory of this source tree.
|
|
669
684
|
*/
|
|
670
685
|
const __iconNode$Q = [
|
|
671
|
-
[
|
|
672
|
-
|
|
686
|
+
[
|
|
687
|
+
"path",
|
|
688
|
+
{
|
|
689
|
+
d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
|
|
690
|
+
key: "1oefj6"
|
|
691
|
+
}
|
|
692
|
+
],
|
|
693
|
+
["path", { d: "M14 2v5a1 1 0 0 0 1 1h5", key: "wfsgrz" }],
|
|
673
694
|
["path", { d: "M10 9H8", key: "b1mrlr" }],
|
|
674
695
|
["path", { d: "M16 13H8", key: "t4e002" }],
|
|
675
696
|
["path", { d: "M16 17H8", key: "z1uh3a" }]
|
|
676
|
-
], FileText = createLucideIcon("
|
|
697
|
+
], FileText = createLucideIcon("file-text", __iconNode$Q);
|
|
677
698
|
/**
|
|
678
|
-
* @license lucide-react v0.
|
|
699
|
+
* @license lucide-react v0.561.0 - ISC
|
|
679
700
|
*
|
|
680
701
|
* This source code is licensed under the ISC license.
|
|
681
702
|
* See the LICENSE file in the root directory of this source tree.
|
|
682
703
|
*/
|
|
683
704
|
const __iconNode$P = [
|
|
684
|
-
[
|
|
685
|
-
|
|
686
|
-
|
|
705
|
+
[
|
|
706
|
+
"path",
|
|
707
|
+
{
|
|
708
|
+
d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
|
|
709
|
+
key: "1oefj6"
|
|
710
|
+
}
|
|
711
|
+
],
|
|
712
|
+
["path", { d: "M14 2v5a1 1 0 0 0 1 1h5", key: "wfsgrz" }]
|
|
713
|
+
], File$1 = createLucideIcon("file", __iconNode$P);
|
|
687
714
|
/**
|
|
688
|
-
* @license lucide-react v0.
|
|
715
|
+
* @license lucide-react v0.561.0 - ISC
|
|
689
716
|
*
|
|
690
717
|
* This source code is licensed under the ISC license.
|
|
691
718
|
* See the LICENSE file in the root directory of this source tree.
|
|
692
719
|
*/
|
|
693
720
|
const __iconNode$O = [
|
|
694
|
-
[
|
|
695
|
-
|
|
721
|
+
[
|
|
722
|
+
"path",
|
|
723
|
+
{
|
|
724
|
+
d: "M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",
|
|
725
|
+
key: "sc7q7i"
|
|
726
|
+
}
|
|
727
|
+
]
|
|
728
|
+
], Funnel = createLucideIcon("funnel", __iconNode$O);
|
|
696
729
|
/**
|
|
697
|
-
* @license lucide-react v0.
|
|
730
|
+
* @license lucide-react v0.561.0 - ISC
|
|
698
731
|
*
|
|
699
732
|
* This source code is licensed under the ISC license.
|
|
700
733
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -703,9 +736,9 @@ const __iconNode$N = [
|
|
|
703
736
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
704
737
|
["path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20", key: "13o1zl" }],
|
|
705
738
|
["path", { d: "M2 12h20", key: "9i4pu4" }]
|
|
706
|
-
], Globe = createLucideIcon("
|
|
739
|
+
], Globe = createLucideIcon("globe", __iconNode$N);
|
|
707
740
|
/**
|
|
708
|
-
* @license lucide-react v0.
|
|
741
|
+
* @license lucide-react v0.561.0 - ISC
|
|
709
742
|
*
|
|
710
743
|
* This source code is licensed under the ISC license.
|
|
711
744
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -722,9 +755,9 @@ const __iconNode$M = [
|
|
|
722
755
|
["path", { d: "m21 3 1 11h-2", key: "1tisrp" }],
|
|
723
756
|
["path", { d: "M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3", key: "1uvwmv" }],
|
|
724
757
|
["path", { d: "M3 4h8", key: "1ep09j" }]
|
|
725
|
-
], Handshake = createLucideIcon("
|
|
758
|
+
], Handshake = createLucideIcon("handshake", __iconNode$M);
|
|
726
759
|
/**
|
|
727
|
-
* @license lucide-react v0.
|
|
760
|
+
* @license lucide-react v0.561.0 - ISC
|
|
728
761
|
*
|
|
729
762
|
* This source code is licensed under the ISC license.
|
|
730
763
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -734,9 +767,9 @@ const __iconNode$L = [
|
|
|
734
767
|
["path", { d: "M14 6a6 6 0 0 1 6 6v3", key: "1hnv84" }],
|
|
735
768
|
["path", { d: "M4 15v-3a6 6 0 0 1 6-6", key: "9ciidu" }],
|
|
736
769
|
["rect", { x: "2", y: "15", width: "20", height: "4", rx: "1", key: "g3x8cw" }]
|
|
737
|
-
], HardHat = createLucideIcon("
|
|
770
|
+
], HardHat = createLucideIcon("hard-hat", __iconNode$L);
|
|
738
771
|
/**
|
|
739
|
-
* @license lucide-react v0.
|
|
772
|
+
* @license lucide-react v0.561.0 - ISC
|
|
740
773
|
*
|
|
741
774
|
* This source code is licensed under the ISC license.
|
|
742
775
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -754,9 +787,9 @@ const __iconNode$K = [
|
|
|
754
787
|
}
|
|
755
788
|
],
|
|
756
789
|
["path", { d: "M21 15V5a2 2 0 0 0-2-2H9", key: "43el77" }]
|
|
757
|
-
], ImageOff = createLucideIcon("
|
|
790
|
+
], ImageOff = createLucideIcon("image-off", __iconNode$K);
|
|
758
791
|
/**
|
|
759
|
-
* @license lucide-react v0.
|
|
792
|
+
* @license lucide-react v0.561.0 - ISC
|
|
760
793
|
*
|
|
761
794
|
* This source code is licensed under the ISC license.
|
|
762
795
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -765,9 +798,9 @@ const __iconNode$J = [
|
|
|
765
798
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
766
799
|
["path", { d: "M12 16v-4", key: "1dtifu" }],
|
|
767
800
|
["path", { d: "M12 8h.01", key: "e9boi3" }]
|
|
768
|
-
], Info = createLucideIcon("
|
|
801
|
+
], Info = createLucideIcon("info", __iconNode$J);
|
|
769
802
|
/**
|
|
770
|
-
* @license lucide-react v0.
|
|
803
|
+
* @license lucide-react v0.561.0 - ISC
|
|
771
804
|
*
|
|
772
805
|
* This source code is licensed under the ISC license.
|
|
773
806
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -776,125 +809,149 @@ const __iconNode$I = [
|
|
|
776
809
|
["line", { x1: "19", x2: "10", y1: "4", y2: "4", key: "15jd3p" }],
|
|
777
810
|
["line", { x1: "14", x2: "5", y1: "20", y2: "20", key: "bu0au3" }],
|
|
778
811
|
["line", { x1: "15", x2: "9", y1: "4", y2: "20", key: "uljnxc" }]
|
|
779
|
-
], Italic$1 = createLucideIcon("
|
|
812
|
+
], Italic$1 = createLucideIcon("italic", __iconNode$I);
|
|
780
813
|
/**
|
|
781
|
-
* @license lucide-react v0.
|
|
814
|
+
* @license lucide-react v0.561.0 - ISC
|
|
782
815
|
*
|
|
783
816
|
* This source code is licensed under the ISC license.
|
|
784
817
|
* See the LICENSE file in the root directory of this source tree.
|
|
785
818
|
*/
|
|
786
819
|
const __iconNode$H = [
|
|
787
|
-
["path", { d: "
|
|
788
|
-
["path", { d: "
|
|
789
|
-
["path", { d: "
|
|
790
|
-
["path", { d: "M4
|
|
791
|
-
["path", { d: "M4
|
|
792
|
-
["path", { d: "M6
|
|
793
|
-
], ListOrdered = createLucideIcon("
|
|
820
|
+
["path", { d: "M11 5h10", key: "1cz7ny" }],
|
|
821
|
+
["path", { d: "M11 12h10", key: "1438ji" }],
|
|
822
|
+
["path", { d: "M11 19h10", key: "11t30w" }],
|
|
823
|
+
["path", { d: "M4 4h1v5", key: "10yrso" }],
|
|
824
|
+
["path", { d: "M4 9h2", key: "r1h2o0" }],
|
|
825
|
+
["path", { d: "M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02", key: "xtkcd5" }]
|
|
826
|
+
], ListOrdered = createLucideIcon("list-ordered", __iconNode$H);
|
|
794
827
|
/**
|
|
795
|
-
* @license lucide-react v0.
|
|
828
|
+
* @license lucide-react v0.561.0 - ISC
|
|
796
829
|
*
|
|
797
830
|
* This source code is licensed under the ISC license.
|
|
798
831
|
* See the LICENSE file in the root directory of this source tree.
|
|
799
832
|
*/
|
|
800
833
|
const __iconNode$G = [
|
|
834
|
+
["path", { d: "M3 5h.01", key: "18ugdj" }],
|
|
801
835
|
["path", { d: "M3 12h.01", key: "nlz23k" }],
|
|
802
|
-
["path", { d: "M3
|
|
803
|
-
["path", { d: "
|
|
836
|
+
["path", { d: "M3 19h.01", key: "noohij" }],
|
|
837
|
+
["path", { d: "M8 5h13", key: "1pao27" }],
|
|
804
838
|
["path", { d: "M8 12h13", key: "1za7za" }],
|
|
805
|
-
["path", { d: "M8
|
|
806
|
-
|
|
807
|
-
], List$1 = createLucideIcon("List", __iconNode$G);
|
|
839
|
+
["path", { d: "M8 19h13", key: "m83p4d" }]
|
|
840
|
+
], List$1 = createLucideIcon("list", __iconNode$G);
|
|
808
841
|
/**
|
|
809
|
-
* @license lucide-react v0.
|
|
842
|
+
* @license lucide-react v0.561.0 - ISC
|
|
810
843
|
*
|
|
811
844
|
* This source code is licensed under the ISC license.
|
|
812
845
|
* See the LICENSE file in the root directory of this source tree.
|
|
813
846
|
*/
|
|
814
|
-
const __iconNode$F = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]], LoaderCircle = createLucideIcon("
|
|
847
|
+
const __iconNode$F = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]], LoaderCircle = createLucideIcon("loader-circle", __iconNode$F);
|
|
815
848
|
/**
|
|
816
|
-
* @license lucide-react v0.
|
|
849
|
+
* @license lucide-react v0.561.0 - ISC
|
|
817
850
|
*
|
|
818
851
|
* This source code is licensed under the ISC license.
|
|
819
852
|
* See the LICENSE file in the root directory of this source tree.
|
|
820
853
|
*/
|
|
821
854
|
const __iconNode$E = [
|
|
822
|
-
["path", { d: "
|
|
823
|
-
["
|
|
824
|
-
["
|
|
825
|
-
], LogOut = createLucideIcon("
|
|
855
|
+
["path", { d: "m16 17 5-5-5-5", key: "1bji2h" }],
|
|
856
|
+
["path", { d: "M21 12H9", key: "dn1m92" }],
|
|
857
|
+
["path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4", key: "1uf3rs" }]
|
|
858
|
+
], LogOut = createLucideIcon("log-out", __iconNode$E);
|
|
826
859
|
/**
|
|
827
|
-
* @license lucide-react v0.
|
|
860
|
+
* @license lucide-react v0.561.0 - ISC
|
|
828
861
|
*
|
|
829
862
|
* This source code is licensed under the ISC license.
|
|
830
863
|
* See the LICENSE file in the root directory of this source tree.
|
|
831
864
|
*/
|
|
832
865
|
const __iconNode$D = [
|
|
833
|
-
["
|
|
834
|
-
["
|
|
835
|
-
], Mail = createLucideIcon("
|
|
866
|
+
["path", { d: "m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7", key: "132q7q" }],
|
|
867
|
+
["rect", { x: "2", y: "4", width: "20", height: "16", rx: "2", key: "izxlao" }]
|
|
868
|
+
], Mail = createLucideIcon("mail", __iconNode$D);
|
|
836
869
|
/**
|
|
837
|
-
* @license lucide-react v0.
|
|
870
|
+
* @license lucide-react v0.561.0 - ISC
|
|
838
871
|
*
|
|
839
872
|
* This source code is licensed under the ISC license.
|
|
840
873
|
* See the LICENSE file in the root directory of this source tree.
|
|
841
874
|
*/
|
|
842
875
|
const __iconNode$C = [
|
|
843
|
-
["
|
|
844
|
-
["
|
|
845
|
-
["
|
|
846
|
-
], Menu$1 = createLucideIcon("
|
|
876
|
+
["path", { d: "M4 5h16", key: "1tepv9" }],
|
|
877
|
+
["path", { d: "M4 12h16", key: "1lakjw" }],
|
|
878
|
+
["path", { d: "M4 19h16", key: "1djgab" }]
|
|
879
|
+
], Menu$1 = createLucideIcon("menu", __iconNode$C);
|
|
847
880
|
/**
|
|
848
|
-
* @license lucide-react v0.
|
|
881
|
+
* @license lucide-react v0.561.0 - ISC
|
|
849
882
|
*
|
|
850
883
|
* This source code is licensed under the ISC license.
|
|
851
884
|
* See the LICENSE file in the root directory of this source tree.
|
|
852
885
|
*/
|
|
853
886
|
const __iconNode$B = [
|
|
854
|
-
[
|
|
887
|
+
[
|
|
888
|
+
"path",
|
|
889
|
+
{
|
|
890
|
+
d: "M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",
|
|
891
|
+
key: "1sd12s"
|
|
892
|
+
}
|
|
893
|
+
],
|
|
855
894
|
["path", { d: "m15 9-6 6", key: "1uzhvr" }],
|
|
856
895
|
["path", { d: "m9 9 6 6", key: "z0biqf" }]
|
|
857
|
-
], MessageCircleX = createLucideIcon("
|
|
896
|
+
], MessageCircleX = createLucideIcon("message-circle-x", __iconNode$B);
|
|
858
897
|
/**
|
|
859
|
-
* @license lucide-react v0.
|
|
898
|
+
* @license lucide-react v0.561.0 - ISC
|
|
860
899
|
*
|
|
861
900
|
* This source code is licensed under the ISC license.
|
|
862
901
|
* See the LICENSE file in the root directory of this source tree.
|
|
863
902
|
*/
|
|
864
903
|
const __iconNode$A = [
|
|
865
|
-
[
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
904
|
+
[
|
|
905
|
+
"path",
|
|
906
|
+
{
|
|
907
|
+
d: "M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10",
|
|
908
|
+
key: "fu6chl"
|
|
909
|
+
}
|
|
910
|
+
],
|
|
911
|
+
["path", { d: "M20 15v-2a2 2 0 0 0-4 0v2", key: "vl8a78" }],
|
|
912
|
+
["rect", { x: "14", y: "15", width: "8", height: "5", rx: "1", key: "37aafw" }]
|
|
913
|
+
], MessageSquareLock = createLucideIcon("message-square-lock", __iconNode$A);
|
|
869
914
|
/**
|
|
870
|
-
* @license lucide-react v0.
|
|
915
|
+
* @license lucide-react v0.561.0 - ISC
|
|
871
916
|
*
|
|
872
917
|
* This source code is licensed under the ISC license.
|
|
873
918
|
* See the LICENSE file in the root directory of this source tree.
|
|
874
919
|
*/
|
|
875
920
|
const __iconNode$z = [
|
|
876
|
-
[
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
921
|
+
[
|
|
922
|
+
"path",
|
|
923
|
+
{
|
|
924
|
+
d: "M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4",
|
|
925
|
+
key: "11da1y"
|
|
926
|
+
}
|
|
927
|
+
],
|
|
928
|
+
["path", { d: "M16 3h6v6", key: "1bx56c" }],
|
|
929
|
+
["path", { d: "m16 9 6-6", key: "m4dnic" }]
|
|
930
|
+
], MessageSquareShare = createLucideIcon("message-square-share", __iconNode$z);
|
|
880
931
|
/**
|
|
881
|
-
* @license lucide-react v0.
|
|
932
|
+
* @license lucide-react v0.561.0 - ISC
|
|
882
933
|
*
|
|
883
934
|
* This source code is licensed under the ISC license.
|
|
884
935
|
* See the LICENSE file in the root directory of this source tree.
|
|
885
936
|
*/
|
|
886
937
|
const __iconNode$y = [
|
|
887
|
-
[
|
|
888
|
-
|
|
938
|
+
[
|
|
939
|
+
"path",
|
|
940
|
+
{
|
|
941
|
+
d: "M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",
|
|
942
|
+
key: "18887p"
|
|
943
|
+
}
|
|
944
|
+
]
|
|
945
|
+
], MessageSquare = createLucideIcon("message-square", __iconNode$y);
|
|
889
946
|
/**
|
|
890
|
-
* @license lucide-react v0.
|
|
947
|
+
* @license lucide-react v0.561.0 - ISC
|
|
891
948
|
*
|
|
892
949
|
* This source code is licensed under the ISC license.
|
|
893
950
|
* See the LICENSE file in the root directory of this source tree.
|
|
894
951
|
*/
|
|
895
|
-
const __iconNode$x = [["path", { d: "M5 12h14", key: "1ays0h" }]], Minus = createLucideIcon("
|
|
952
|
+
const __iconNode$x = [["path", { d: "M5 12h14", key: "1ays0h" }]], Minus = createLucideIcon("minus", __iconNode$x);
|
|
896
953
|
/**
|
|
897
|
-
* @license lucide-react v0.
|
|
954
|
+
* @license lucide-react v0.561.0 - ISC
|
|
898
955
|
*
|
|
899
956
|
* This source code is licensed under the ISC license.
|
|
900
957
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -911,20 +968,26 @@ const __iconNode$w = [
|
|
|
911
968
|
key: "s0h3yz"
|
|
912
969
|
}
|
|
913
970
|
]
|
|
914
|
-
], MousePointerClick = createLucideIcon("
|
|
971
|
+
], MousePointerClick = createLucideIcon("mouse-pointer-click", __iconNode$w);
|
|
915
972
|
/**
|
|
916
|
-
* @license lucide-react v0.
|
|
973
|
+
* @license lucide-react v0.561.0 - ISC
|
|
917
974
|
*
|
|
918
975
|
* This source code is licensed under the ISC license.
|
|
919
976
|
* See the LICENSE file in the root directory of this source tree.
|
|
920
977
|
*/
|
|
921
978
|
const __iconNode$v = [
|
|
922
|
-
["path", { d: "
|
|
923
|
-
[
|
|
924
|
-
|
|
925
|
-
|
|
979
|
+
["path", { d: "M12 3v6", key: "1holv5" }],
|
|
980
|
+
[
|
|
981
|
+
"path",
|
|
982
|
+
{
|
|
983
|
+
d: "M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z",
|
|
984
|
+
key: "187q7i"
|
|
985
|
+
}
|
|
986
|
+
],
|
|
987
|
+
["path", { d: "M3.054 9.013h17.893", key: "grwhos" }]
|
|
988
|
+
], Package2 = createLucideIcon("package-2", __iconNode$v);
|
|
926
989
|
/**
|
|
927
|
-
* @license lucide-react v0.
|
|
990
|
+
* @license lucide-react v0.561.0 - ISC
|
|
928
991
|
*
|
|
929
992
|
* This source code is licensed under the ISC license.
|
|
930
993
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -940,9 +1003,9 @@ const __iconNode$u = [
|
|
|
940
1003
|
["path", { d: "M12 22V12", key: "d0xqtd" }],
|
|
941
1004
|
["polyline", { points: "3.29 7 12 12 20.71 7", key: "ousv84" }],
|
|
942
1005
|
["path", { d: "m7.5 4.27 9 5.15", key: "1c824w" }]
|
|
943
|
-
], Package = createLucideIcon("
|
|
1006
|
+
], Package = createLucideIcon("package", __iconNode$u);
|
|
944
1007
|
/**
|
|
945
|
-
* @license lucide-react v0.
|
|
1008
|
+
* @license lucide-react v0.561.0 - ISC
|
|
946
1009
|
*
|
|
947
1010
|
* This source code is licensed under the ISC license.
|
|
948
1011
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -950,25 +1013,24 @@ const __iconNode$u = [
|
|
|
950
1013
|
const __iconNode$t = [
|
|
951
1014
|
["rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", key: "afitv7" }],
|
|
952
1015
|
["path", { d: "M9 3v18", key: "fh3hqa" }]
|
|
953
|
-
], PanelLeft = createLucideIcon("
|
|
1016
|
+
], PanelLeft = createLucideIcon("panel-left", __iconNode$t);
|
|
954
1017
|
/**
|
|
955
|
-
* @license lucide-react v0.
|
|
1018
|
+
* @license lucide-react v0.561.0 - ISC
|
|
956
1019
|
*
|
|
957
1020
|
* This source code is licensed under the ISC license.
|
|
958
1021
|
* See the LICENSE file in the root directory of this source tree.
|
|
959
1022
|
*/
|
|
960
1023
|
const __iconNode$s = [
|
|
961
|
-
["path", { d: "M13.234 20.252 21 12.3", key: "1cbrk9" }],
|
|
962
1024
|
[
|
|
963
1025
|
"path",
|
|
964
1026
|
{
|
|
965
|
-
d: "m16 6-8.414 8.586a2 2 0 0 0
|
|
966
|
-
key: "
|
|
1027
|
+
d: "m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",
|
|
1028
|
+
key: "1miecu"
|
|
967
1029
|
}
|
|
968
1030
|
]
|
|
969
|
-
], Paperclip = createLucideIcon("
|
|
1031
|
+
], Paperclip = createLucideIcon("paperclip", __iconNode$s);
|
|
970
1032
|
/**
|
|
971
|
-
* @license lucide-react v0.
|
|
1033
|
+
* @license lucide-react v0.561.0 - ISC
|
|
972
1034
|
*
|
|
973
1035
|
* This source code is licensed under the ISC license.
|
|
974
1036
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -977,20 +1039,28 @@ const __iconNode$r = [
|
|
|
977
1039
|
[
|
|
978
1040
|
"path",
|
|
979
1041
|
{
|
|
980
|
-
d: "
|
|
981
|
-
key: "
|
|
1042
|
+
d: "M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384",
|
|
1043
|
+
key: "9njp5v"
|
|
982
1044
|
}
|
|
983
1045
|
]
|
|
984
|
-
], Phone = createLucideIcon("
|
|
1046
|
+
], Phone = createLucideIcon("phone", __iconNode$r);
|
|
985
1047
|
/**
|
|
986
|
-
* @license lucide-react v0.
|
|
1048
|
+
* @license lucide-react v0.561.0 - ISC
|
|
987
1049
|
*
|
|
988
1050
|
* This source code is licensed under the ISC license.
|
|
989
1051
|
* See the LICENSE file in the root directory of this source tree.
|
|
990
1052
|
*/
|
|
991
|
-
const __iconNode$q = [
|
|
1053
|
+
const __iconNode$q = [
|
|
1054
|
+
[
|
|
1055
|
+
"path",
|
|
1056
|
+
{
|
|
1057
|
+
d: "M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z",
|
|
1058
|
+
key: "10ikf1"
|
|
1059
|
+
}
|
|
1060
|
+
]
|
|
1061
|
+
], Play = createLucideIcon("play", __iconNode$q);
|
|
992
1062
|
/**
|
|
993
|
-
* @license lucide-react v0.
|
|
1063
|
+
* @license lucide-react v0.561.0 - ISC
|
|
994
1064
|
*
|
|
995
1065
|
* This source code is licensed under the ISC license.
|
|
996
1066
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1005,9 +1075,9 @@ const __iconNode$p = [
|
|
|
1005
1075
|
],
|
|
1006
1076
|
["path", { d: "M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6", key: "1itne7" }],
|
|
1007
1077
|
["rect", { x: "6", y: "14", width: "12", height: "8", rx: "1", key: "1ue0tg" }]
|
|
1008
|
-
], Printer = createLucideIcon("
|
|
1078
|
+
], Printer = createLucideIcon("printer", __iconNode$p);
|
|
1009
1079
|
/**
|
|
1010
|
-
* @license lucide-react v0.
|
|
1080
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1011
1081
|
*
|
|
1012
1082
|
* This source code is licensed under the ISC license.
|
|
1013
1083
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1025,9 +1095,9 @@ const __iconNode$o = [
|
|
|
1025
1095
|
["path", { d: "M16 12h1", key: "1slzba" }],
|
|
1026
1096
|
["path", { d: "M21 12v.01", key: "1lwtk9" }],
|
|
1027
1097
|
["path", { d: "M12 21v-1", key: "1880an" }]
|
|
1028
|
-
], QrCode = createLucideIcon("
|
|
1098
|
+
], QrCode = createLucideIcon("qr-code", __iconNode$o);
|
|
1029
1099
|
/**
|
|
1030
|
-
* @license lucide-react v0.
|
|
1100
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1031
1101
|
*
|
|
1032
1102
|
* This source code is licensed under the ISC license.
|
|
1033
1103
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1037,9 +1107,9 @@ const __iconNode$n = [
|
|
|
1037
1107
|
["path", { d: "M3 3v5h5", key: "1xhq8a" }],
|
|
1038
1108
|
["path", { d: "M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16", key: "1hlbsb" }],
|
|
1039
1109
|
["path", { d: "M16 16h5v5", key: "ccwih5" }]
|
|
1040
|
-
], RefreshCcw = createLucideIcon("
|
|
1110
|
+
], RefreshCcw = createLucideIcon("refresh-ccw", __iconNode$n);
|
|
1041
1111
|
/**
|
|
1042
|
-
* @license lucide-react v0.
|
|
1112
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1043
1113
|
*
|
|
1044
1114
|
* This source code is licensed under the ISC license.
|
|
1045
1115
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1052,9 +1122,9 @@ const __iconNode$m = [
|
|
|
1052
1122
|
["path", { d: "M21 12c0 1-.16 1.97-.47 2.87", key: "4w8emr" }],
|
|
1053
1123
|
["path", { d: "M21 3v5h-5", key: "1q7to0" }],
|
|
1054
1124
|
["path", { d: "M22 22 2 2", key: "1r8tn9" }]
|
|
1055
|
-
], RefreshCwOff = createLucideIcon("
|
|
1125
|
+
], RefreshCwOff = createLucideIcon("refresh-cw-off", __iconNode$m);
|
|
1056
1126
|
/**
|
|
1057
|
-
* @license lucide-react v0.
|
|
1127
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1058
1128
|
*
|
|
1059
1129
|
* This source code is licensed under the ISC license.
|
|
1060
1130
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1064,9 +1134,9 @@ const __iconNode$l = [
|
|
|
1064
1134
|
["path", { d: "M21 3v5h-5", key: "1q7to0" }],
|
|
1065
1135
|
["path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16", key: "3uifl3" }],
|
|
1066
1136
|
["path", { d: "M8 16H3v5", key: "1cv678" }]
|
|
1067
|
-
], RefreshCw = createLucideIcon("
|
|
1137
|
+
], RefreshCw = createLucideIcon("refresh-cw", __iconNode$l);
|
|
1068
1138
|
/**
|
|
1069
|
-
* @license lucide-react v0.
|
|
1139
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1070
1140
|
*
|
|
1071
1141
|
* This source code is licensed under the ISC license.
|
|
1072
1142
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1082,9 +1152,9 @@ const __iconNode$k = [
|
|
|
1082
1152
|
key: "1ph1d7"
|
|
1083
1153
|
}
|
|
1084
1154
|
]
|
|
1085
|
-
], ScrollText = createLucideIcon("
|
|
1155
|
+
], ScrollText = createLucideIcon("scroll-text", __iconNode$k);
|
|
1086
1156
|
/**
|
|
1087
|
-
* @license lucide-react v0.
|
|
1157
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1088
1158
|
*
|
|
1089
1159
|
* This source code is licensed under the ISC license.
|
|
1090
1160
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1094,19 +1164,19 @@ const __iconNode$j = [
|
|
|
1094
1164
|
["path", { d: "m8.5 8.5 5 5", key: "a8mexj" }],
|
|
1095
1165
|
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }],
|
|
1096
1166
|
["path", { d: "m21 21-4.3-4.3", key: "1qie3q" }]
|
|
1097
|
-
], SearchX = createLucideIcon("
|
|
1167
|
+
], SearchX = createLucideIcon("search-x", __iconNode$j);
|
|
1098
1168
|
/**
|
|
1099
|
-
* @license lucide-react v0.
|
|
1169
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1100
1170
|
*
|
|
1101
1171
|
* This source code is licensed under the ISC license.
|
|
1102
1172
|
* See the LICENSE file in the root directory of this source tree.
|
|
1103
1173
|
*/
|
|
1104
1174
|
const __iconNode$i = [
|
|
1105
|
-
["
|
|
1106
|
-
["
|
|
1107
|
-
], Search = createLucideIcon("
|
|
1175
|
+
["path", { d: "m21 21-4.34-4.34", key: "14j7rj" }],
|
|
1176
|
+
["circle", { cx: "11", cy: "11", r: "8", key: "4ej97u" }]
|
|
1177
|
+
], Search = createLucideIcon("search", __iconNode$i);
|
|
1108
1178
|
/**
|
|
1109
|
-
* @license lucide-react v0.
|
|
1179
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1110
1180
|
*
|
|
1111
1181
|
* This source code is licensed under the ISC license.
|
|
1112
1182
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1120,9 +1190,9 @@ const __iconNode$h = [
|
|
|
1120
1190
|
}
|
|
1121
1191
|
],
|
|
1122
1192
|
["path", { d: "m21.854 2.147-10.94 10.939", key: "12cjpa" }]
|
|
1123
|
-
], Send = createLucideIcon("
|
|
1193
|
+
], Send = createLucideIcon("send", __iconNode$h);
|
|
1124
1194
|
/**
|
|
1125
|
-
* @license lucide-react v0.
|
|
1195
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1126
1196
|
*
|
|
1127
1197
|
* This source code is licensed under the ISC license.
|
|
1128
1198
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1131,14 +1201,14 @@ const __iconNode$g = [
|
|
|
1131
1201
|
[
|
|
1132
1202
|
"path",
|
|
1133
1203
|
{
|
|
1134
|
-
d: "
|
|
1135
|
-
key: "
|
|
1204
|
+
d: "M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",
|
|
1205
|
+
key: "1i5ecw"
|
|
1136
1206
|
}
|
|
1137
1207
|
],
|
|
1138
1208
|
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
1139
|
-
], Settings = createLucideIcon("
|
|
1209
|
+
], Settings = createLucideIcon("settings", __iconNode$g);
|
|
1140
1210
|
/**
|
|
1141
|
-
* @license lucide-react v0.
|
|
1211
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1142
1212
|
*
|
|
1143
1213
|
* This source code is licensed under the ISC license.
|
|
1144
1214
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1152,9 +1222,9 @@ const __iconNode$f = [
|
|
|
1152
1222
|
}
|
|
1153
1223
|
],
|
|
1154
1224
|
["path", { d: "m9 12 2 2 4-4", key: "dzmm74" }]
|
|
1155
|
-
], ShieldCheck = createLucideIcon("
|
|
1225
|
+
], ShieldCheck = createLucideIcon("shield-check", __iconNode$f);
|
|
1156
1226
|
/**
|
|
1157
|
-
* @license lucide-react v0.
|
|
1227
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1158
1228
|
*
|
|
1159
1229
|
* This source code is licensed under the ISC license.
|
|
1160
1230
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1169,9 +1239,9 @@ const __iconNode$e = [
|
|
|
1169
1239
|
key: "9zh506"
|
|
1170
1240
|
}
|
|
1171
1241
|
]
|
|
1172
|
-
], ShoppingCart = createLucideIcon("
|
|
1242
|
+
], ShoppingCart = createLucideIcon("shopping-cart", __iconNode$e);
|
|
1173
1243
|
/**
|
|
1174
|
-
* @license lucide-react v0.
|
|
1244
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1175
1245
|
*
|
|
1176
1246
|
* This source code is licensed under the ISC license.
|
|
1177
1247
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1185,9 +1255,9 @@ const __iconNode$d = [
|
|
|
1185
1255
|
key: "ohrbg2"
|
|
1186
1256
|
}
|
|
1187
1257
|
]
|
|
1188
|
-
], SquarePen = createLucideIcon("
|
|
1258
|
+
], SquarePen = createLucideIcon("square-pen", __iconNode$d);
|
|
1189
1259
|
/**
|
|
1190
|
-
* @license lucide-react v0.
|
|
1260
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1191
1261
|
*
|
|
1192
1262
|
* This source code is licensed under the ISC license.
|
|
1193
1263
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1200,28 +1270,26 @@ const __iconNode$c = [
|
|
|
1200
1270
|
key: "r04s7s"
|
|
1201
1271
|
}
|
|
1202
1272
|
]
|
|
1203
|
-
], Star = createLucideIcon("
|
|
1273
|
+
], Star = createLucideIcon("star", __iconNode$c);
|
|
1204
1274
|
/**
|
|
1205
|
-
* @license lucide-react v0.
|
|
1275
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1206
1276
|
*
|
|
1207
1277
|
* This source code is licensed under the ISC license.
|
|
1208
1278
|
* See the LICENSE file in the root directory of this source tree.
|
|
1209
1279
|
*/
|
|
1210
1280
|
const __iconNode$b = [
|
|
1211
|
-
["path", { d: "
|
|
1212
|
-
["path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8", key: "1b2hhj" }],
|
|
1213
|
-
["path", { d: "M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4", key: "2ebpfo" }],
|
|
1214
|
-
["path", { d: "M2 7h20", key: "1fcdvo" }],
|
|
1281
|
+
["path", { d: "M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5", key: "slp6dd" }],
|
|
1215
1282
|
[
|
|
1216
1283
|
"path",
|
|
1217
1284
|
{
|
|
1218
|
-
d: "
|
|
1219
|
-
key: "
|
|
1285
|
+
d: "M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244",
|
|
1286
|
+
key: "o0xfot"
|
|
1220
1287
|
}
|
|
1221
|
-
]
|
|
1222
|
-
|
|
1288
|
+
],
|
|
1289
|
+
["path", { d: "M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05", key: "wn3emo" }]
|
|
1290
|
+
], Store = createLucideIcon("store", __iconNode$b);
|
|
1223
1291
|
/**
|
|
1224
|
-
* @license lucide-react v0.
|
|
1292
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1225
1293
|
*
|
|
1226
1294
|
* This source code is licensed under the ISC license.
|
|
1227
1295
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1230,9 +1298,9 @@ const __iconNode$a = [
|
|
|
1230
1298
|
["path", { d: "M16 4H9a3 3 0 0 0-2.83 4", key: "43sutm" }],
|
|
1231
1299
|
["path", { d: "M14 12a4 4 0 0 1 0 8H6", key: "nlfj13" }],
|
|
1232
1300
|
["line", { x1: "4", x2: "20", y1: "12", y2: "12", key: "1e0a9i" }]
|
|
1233
|
-
], Strikethrough = createLucideIcon("
|
|
1301
|
+
], Strikethrough = createLucideIcon("strikethrough", __iconNode$a);
|
|
1234
1302
|
/**
|
|
1235
|
-
* @license lucide-react v0.
|
|
1303
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1236
1304
|
*
|
|
1237
1305
|
* This source code is licensed under the ISC license.
|
|
1238
1306
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1257,59 +1325,59 @@ const __iconNode$9 = [
|
|
|
1257
1325
|
["path", { d: "m6.158 8.633 1.114 4.456", key: "74o979" }],
|
|
1258
1326
|
["path", { d: "m8 21 3.105-6.21", key: "1fvxut" }],
|
|
1259
1327
|
["circle", { cx: "12", cy: "13", r: "2", key: "1c1ljs" }]
|
|
1260
|
-
], Telescope = createLucideIcon("
|
|
1328
|
+
], Telescope = createLucideIcon("telescope", __iconNode$9);
|
|
1261
1329
|
/**
|
|
1262
|
-
* @license lucide-react v0.
|
|
1330
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1263
1331
|
*
|
|
1264
1332
|
* This source code is licensed under the ISC license.
|
|
1265
1333
|
* See the LICENSE file in the root directory of this source tree.
|
|
1266
1334
|
*/
|
|
1267
1335
|
const __iconNode$8 = [
|
|
1268
|
-
["path", { d: "M17 14V2", key: "8ymqnk" }],
|
|
1269
1336
|
[
|
|
1270
1337
|
"path",
|
|
1271
1338
|
{
|
|
1272
1339
|
d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z",
|
|
1273
1340
|
key: "m61m77"
|
|
1274
1341
|
}
|
|
1275
|
-
]
|
|
1276
|
-
|
|
1342
|
+
],
|
|
1343
|
+
["path", { d: "M17 14V2", key: "8ymqnk" }]
|
|
1344
|
+
], ThumbsDown = createLucideIcon("thumbs-down", __iconNode$8);
|
|
1277
1345
|
/**
|
|
1278
|
-
* @license lucide-react v0.
|
|
1346
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1279
1347
|
*
|
|
1280
1348
|
* This source code is licensed under the ISC license.
|
|
1281
1349
|
* See the LICENSE file in the root directory of this source tree.
|
|
1282
1350
|
*/
|
|
1283
1351
|
const __iconNode$7 = [
|
|
1352
|
+
["path", { d: "M10 11v6", key: "nco0om" }],
|
|
1353
|
+
["path", { d: "M14 11v6", key: "outv1u" }],
|
|
1354
|
+
["path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6", key: "miytrc" }],
|
|
1284
1355
|
["path", { d: "M3 6h18", key: "d0wm0j" }],
|
|
1285
|
-
["path", { d: "
|
|
1286
|
-
|
|
1287
|
-
["line", { x1: "10", x2: "10", y1: "11", y2: "17", key: "1uufr5" }],
|
|
1288
|
-
["line", { x1: "14", x2: "14", y1: "11", y2: "17", key: "xtxkd" }]
|
|
1289
|
-
], Trash2 = createLucideIcon("Trash2", __iconNode$7);
|
|
1356
|
+
["path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2", key: "e791ji" }]
|
|
1357
|
+
], Trash2 = createLucideIcon("trash-2", __iconNode$7);
|
|
1290
1358
|
/**
|
|
1291
|
-
* @license lucide-react v0.
|
|
1359
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1292
1360
|
*
|
|
1293
1361
|
* This source code is licensed under the ISC license.
|
|
1294
1362
|
* See the LICENSE file in the root directory of this source tree.
|
|
1295
1363
|
*/
|
|
1296
1364
|
const __iconNode$6 = [
|
|
1365
|
+
["path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6", key: "miytrc" }],
|
|
1297
1366
|
["path", { d: "M3 6h18", key: "d0wm0j" }],
|
|
1298
|
-
["path", { d: "
|
|
1299
|
-
|
|
1300
|
-
], Trash = createLucideIcon("Trash", __iconNode$6);
|
|
1367
|
+
["path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2", key: "e791ji" }]
|
|
1368
|
+
], Trash = createLucideIcon("trash", __iconNode$6);
|
|
1301
1369
|
/**
|
|
1302
|
-
* @license lucide-react v0.
|
|
1370
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1303
1371
|
*
|
|
1304
1372
|
* This source code is licensed under the ISC license.
|
|
1305
1373
|
* See the LICENSE file in the root directory of this source tree.
|
|
1306
1374
|
*/
|
|
1307
1375
|
const __iconNode$5 = [
|
|
1308
|
-
["
|
|
1309
|
-
["
|
|
1310
|
-
], TrendingUp = createLucideIcon("
|
|
1376
|
+
["path", { d: "M16 7h6v6", key: "box55l" }],
|
|
1377
|
+
["path", { d: "m22 7-8.5 8.5-5-5L2 17", key: "1t1m79" }]
|
|
1378
|
+
], TrendingUp = createLucideIcon("trending-up", __iconNode$5);
|
|
1311
1379
|
/**
|
|
1312
|
-
* @license lucide-react v0.
|
|
1380
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1313
1381
|
*
|
|
1314
1382
|
* This source code is licensed under the ISC license.
|
|
1315
1383
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1326,9 +1394,9 @@ const __iconNode$4 = [
|
|
|
1326
1394
|
],
|
|
1327
1395
|
["circle", { cx: "17", cy: "18", r: "2", key: "332jqn" }],
|
|
1328
1396
|
["circle", { cx: "7", cy: "18", r: "2", key: "19iecd" }]
|
|
1329
|
-
], Truck = createLucideIcon("
|
|
1397
|
+
], Truck = createLucideIcon("truck", __iconNode$4);
|
|
1330
1398
|
/**
|
|
1331
|
-
* @license lucide-react v0.
|
|
1399
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1332
1400
|
*
|
|
1333
1401
|
* This source code is licensed under the ISC license.
|
|
1334
1402
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1336,9 +1404,9 @@ const __iconNode$4 = [
|
|
|
1336
1404
|
const __iconNode$3 = [
|
|
1337
1405
|
["path", { d: "M6 4v6a6 6 0 0 0 12 0V4", key: "9kb039" }],
|
|
1338
1406
|
["line", { x1: "4", x2: "20", y1: "20", y2: "20", key: "nun2al" }]
|
|
1339
|
-
], Underline$1 = createLucideIcon("
|
|
1407
|
+
], Underline$1 = createLucideIcon("underline", __iconNode$3);
|
|
1340
1408
|
/**
|
|
1341
|
-
* @license lucide-react v0.
|
|
1409
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1342
1410
|
*
|
|
1343
1411
|
* This source code is licensed under the ISC license.
|
|
1344
1412
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1352,27 +1420,27 @@ const __iconNode$2 = [
|
|
|
1352
1420
|
}
|
|
1353
1421
|
],
|
|
1354
1422
|
["rect", { x: "2", y: "6", width: "14", height: "12", rx: "2", key: "158x01" }]
|
|
1355
|
-
], Video = createLucideIcon("
|
|
1423
|
+
], Video = createLucideIcon("video", __iconNode$2);
|
|
1356
1424
|
/**
|
|
1357
|
-
* @license lucide-react v0.
|
|
1425
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1358
1426
|
*
|
|
1359
1427
|
* This source code is licensed under the ISC license.
|
|
1360
1428
|
* See the LICENSE file in the root directory of this source tree.
|
|
1361
1429
|
*/
|
|
1362
1430
|
const __iconNode$1 = [
|
|
1431
|
+
["path", { d: "M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11", key: "pb2vm6" }],
|
|
1363
1432
|
[
|
|
1364
1433
|
"path",
|
|
1365
1434
|
{
|
|
1366
|
-
d: "M22
|
|
1367
|
-
key: "
|
|
1435
|
+
d: "M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z",
|
|
1436
|
+
key: "doq5xv"
|
|
1368
1437
|
}
|
|
1369
1438
|
],
|
|
1370
|
-
["path", { d: "M6
|
|
1371
|
-
["path", { d: "M6
|
|
1372
|
-
|
|
1373
|
-
], Warehouse = createLucideIcon("Warehouse", __iconNode$1);
|
|
1439
|
+
["path", { d: "M6 13h12", key: "yf64js" }],
|
|
1440
|
+
["path", { d: "M6 17h12", key: "1jwigz" }]
|
|
1441
|
+
], Warehouse = createLucideIcon("warehouse", __iconNode$1);
|
|
1374
1442
|
/**
|
|
1375
|
-
* @license lucide-react v0.
|
|
1443
|
+
* @license lucide-react v0.561.0 - ISC
|
|
1376
1444
|
*
|
|
1377
1445
|
* This source code is licensed under the ISC license.
|
|
1378
1446
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -1380,7 +1448,7 @@ const __iconNode$1 = [
|
|
|
1380
1448
|
const __iconNode = [
|
|
1381
1449
|
["path", { d: "M18 6 6 18", key: "1bl5f8" }],
|
|
1382
1450
|
["path", { d: "m6 6 12 12", key: "d8bk6v" }]
|
|
1383
|
-
], X$1 = createLucideIcon("
|
|
1451
|
+
], X$1 = createLucideIcon("x", __iconNode);
|
|
1384
1452
|
function r(t) {
|
|
1385
1453
|
var e, n, o = "";
|
|
1386
1454
|
if (typeof t == "string" || typeof t == "number") o += t;
|
|
@@ -18606,7 +18674,7 @@ function ExploreManufacturers({ appID: t, manufPath: e, withBot: n }) {
|
|
|
18606
18674
|
}, [V]), Q = useCallback(() => {
|
|
18607
18675
|
l(!0);
|
|
18608
18676
|
}, []), te = useMemo(() => /* @__PURE__ */ jsxs(Button$1, { onClick: Q, children: [
|
|
18609
|
-
/* @__PURE__ */ jsx(
|
|
18677
|
+
/* @__PURE__ */ jsx(Funnel, {}),
|
|
18610
18678
|
" Filter"
|
|
18611
18679
|
] }), [Q]);
|
|
18612
18680
|
return /* @__PURE__ */ jsxs(Fragment$1, { children: [
|
|
@@ -70968,7 +71036,7 @@ function DataTable({
|
|
|
70968
71036
|
children: [
|
|
70969
71037
|
/* @__PURE__ */ jsx(PopoverTrigger, { asChild: !0, children: /* @__PURE__ */ jsxs(Button$1, { variant: "ghost", className: "pl-0", children: [
|
|
70970
71038
|
flexRender(q.column.columnDef.header, q.getContext()),
|
|
70971
|
-
q.column.getIsFiltered() ? /* @__PURE__ */ jsx(
|
|
71039
|
+
q.column.getIsFiltered() ? /* @__PURE__ */ jsx(Funnel, { className: "ml-2 h-4 w-4" }) : q.column.getIsSorted() === "asc" ? /* @__PURE__ */ jsx(ArrowUp, { className: "ml-2 h-4 w-4" }) : q.column.getIsSorted() === "desc" ? /* @__PURE__ */ jsx(ArrowDown, { className: "ml-2 h-4 w-4" }) : /* @__PURE__ */ jsx(ArrowUpDown, { className: "ml-2 h-4 w-4" })
|
|
70972
71040
|
] }) }),
|
|
70973
71041
|
/* @__PURE__ */ jsx(PopoverContent, { className: "w-56", children: /* @__PURE__ */ jsxs("div", { className: "space-y-2", children: [
|
|
70974
71042
|
q.column.getCanSort() && /* @__PURE__ */ jsxs(Fragment$1, { children: [
|