huspy-icons 0.1.13 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fonts/HuspyIcons.css +54 -33
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +36 -29
- package/dist/fonts/HuspyIcons.ts +50 -29
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +36 -29
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +16 -2
- package/dist/react/index.d.ts +16 -2
- package/dist/react/index.js +655 -231
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +618 -194
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +37 -30
- package/src/react/ArrowUpDown.tsx +44 -0
- package/src/react/FileCheck.tsx +38 -0
- package/src/react/FileLock.tsx +38 -0
- package/src/react/FileSpreadsheet.tsx +56 -0
- package/src/react/HelpCircle.tsx +38 -0
- package/src/react/Icon.tsx +22 -1
- package/src/react/Lock.tsx +32 -0
- package/src/react/Logout.tsx +38 -0
- package/src/react/Note.tsx +3 -20
- package/src/react/Plus.tsx +2 -2
- package/src/react/index.ts +7 -0
- package/src/react/index.tsx +7 -0
package/dist/react/index.mjs
CHANGED
|
@@ -367,12 +367,77 @@ var init_ArrowUp = __esm({
|
|
|
367
367
|
}
|
|
368
368
|
});
|
|
369
369
|
|
|
370
|
+
// src/react/ArrowUpDown.tsx
|
|
371
|
+
var ArrowUpDown_exports = {};
|
|
372
|
+
__export(ArrowUpDown_exports, {
|
|
373
|
+
default: () => ArrowUpDown_default
|
|
374
|
+
});
|
|
375
|
+
import * as React8 from "react";
|
|
376
|
+
var SvgArrowUpDown, ArrowUpDown_default;
|
|
377
|
+
var init_ArrowUpDown = __esm({
|
|
378
|
+
"src/react/ArrowUpDown.tsx"() {
|
|
379
|
+
"use strict";
|
|
380
|
+
init_types();
|
|
381
|
+
SvgArrowUpDown = ({ size = 16, ...props }) => {
|
|
382
|
+
const sizeValue = resolveSize(size);
|
|
383
|
+
return /* @__PURE__ */ React8.createElement(
|
|
384
|
+
"svg",
|
|
385
|
+
{
|
|
386
|
+
width: sizeValue,
|
|
387
|
+
height: sizeValue,
|
|
388
|
+
viewBox: "0 0 24 24",
|
|
389
|
+
fill: "none",
|
|
390
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
391
|
+
...props
|
|
392
|
+
},
|
|
393
|
+
/* @__PURE__ */ React8.createElement(
|
|
394
|
+
"path",
|
|
395
|
+
{
|
|
396
|
+
fillRule: "evenodd",
|
|
397
|
+
clipRule: "evenodd",
|
|
398
|
+
d: "M12.2929 15.2929C12.6834 14.9024 13.3166 14.9024 13.7071 15.2929L17 18.5858L20.2929 15.2929C20.6834 14.9024 21.3166 14.9024 21.7071 15.2929C22.0976 15.6834 22.0976 16.3166 21.7071 16.7071L17.7071 20.7071C17.3166 21.0976 16.6834 21.0976 16.2929 20.7071L12.2929 16.7071C11.9024 16.3166 11.9024 15.6834 12.2929 15.2929Z",
|
|
399
|
+
fill: "currentColor"
|
|
400
|
+
}
|
|
401
|
+
),
|
|
402
|
+
/* @__PURE__ */ React8.createElement(
|
|
403
|
+
"path",
|
|
404
|
+
{
|
|
405
|
+
fillRule: "evenodd",
|
|
406
|
+
clipRule: "evenodd",
|
|
407
|
+
d: "M17 3C17.5523 3 18 3.44772 18 4V20C18 20.5523 17.5523 21 17 21C16.4477 21 16 20.5523 16 20V4C16 3.44772 16.4477 3 17 3Z",
|
|
408
|
+
fill: "currentColor"
|
|
409
|
+
}
|
|
410
|
+
),
|
|
411
|
+
/* @__PURE__ */ React8.createElement(
|
|
412
|
+
"path",
|
|
413
|
+
{
|
|
414
|
+
fillRule: "evenodd",
|
|
415
|
+
clipRule: "evenodd",
|
|
416
|
+
d: "M6.29289 3.29289C6.68342 2.90237 7.31658 2.90237 7.70711 3.29289L11.7071 7.29289C12.0976 7.68342 12.0976 8.31658 11.7071 8.70711C11.3166 9.09763 10.6834 9.09763 10.2929 8.70711L7 5.41421L3.70711 8.70711C3.31658 9.09763 2.68342 9.09763 2.29289 8.70711C1.90237 8.31658 1.90237 7.68342 2.29289 7.29289L6.29289 3.29289Z",
|
|
417
|
+
fill: "currentColor"
|
|
418
|
+
}
|
|
419
|
+
),
|
|
420
|
+
/* @__PURE__ */ React8.createElement(
|
|
421
|
+
"path",
|
|
422
|
+
{
|
|
423
|
+
fillRule: "evenodd",
|
|
424
|
+
clipRule: "evenodd",
|
|
425
|
+
d: "M7 3C7.55228 3 8 3.44772 8 4V20C8 20.5523 7.55228 21 7 21C6.44772 21 6 20.5523 6 20V4C6 3.44772 6.44772 3 7 3Z",
|
|
426
|
+
fill: "currentColor"
|
|
427
|
+
}
|
|
428
|
+
)
|
|
429
|
+
);
|
|
430
|
+
};
|
|
431
|
+
ArrowUpDown_default = SvgArrowUpDown;
|
|
432
|
+
}
|
|
433
|
+
});
|
|
434
|
+
|
|
370
435
|
// src/react/ArrowUpLeft.tsx
|
|
371
436
|
var ArrowUpLeft_exports = {};
|
|
372
437
|
__export(ArrowUpLeft_exports, {
|
|
373
438
|
default: () => ArrowUpLeft_default
|
|
374
439
|
});
|
|
375
|
-
import * as
|
|
440
|
+
import * as React9 from "react";
|
|
376
441
|
var SvgArrowUpLeft, ArrowUpLeft_default;
|
|
377
442
|
var init_ArrowUpLeft = __esm({
|
|
378
443
|
"src/react/ArrowUpLeft.tsx"() {
|
|
@@ -380,7 +445,7 @@ var init_ArrowUpLeft = __esm({
|
|
|
380
445
|
init_types();
|
|
381
446
|
SvgArrowUpLeft = ({ size = 16, ...props }) => {
|
|
382
447
|
const sizeValue = resolveSize(size);
|
|
383
|
-
return /* @__PURE__ */
|
|
448
|
+
return /* @__PURE__ */ React9.createElement(
|
|
384
449
|
"svg",
|
|
385
450
|
{
|
|
386
451
|
width: sizeValue,
|
|
@@ -390,7 +455,7 @@ var init_ArrowUpLeft = __esm({
|
|
|
390
455
|
xmlns: "http://www.w3.org/2000/svg",
|
|
391
456
|
...props
|
|
392
457
|
},
|
|
393
|
-
/* @__PURE__ */
|
|
458
|
+
/* @__PURE__ */ React9.createElement(
|
|
394
459
|
"path",
|
|
395
460
|
{
|
|
396
461
|
fillRule: "evenodd",
|
|
@@ -399,7 +464,7 @@ var init_ArrowUpLeft = __esm({
|
|
|
399
464
|
fill: "currentColor"
|
|
400
465
|
}
|
|
401
466
|
),
|
|
402
|
-
/* @__PURE__ */
|
|
467
|
+
/* @__PURE__ */ React9.createElement(
|
|
403
468
|
"path",
|
|
404
469
|
{
|
|
405
470
|
fillRule: "evenodd",
|
|
@@ -419,7 +484,7 @@ var ArrowUpRight_exports = {};
|
|
|
419
484
|
__export(ArrowUpRight_exports, {
|
|
420
485
|
default: () => ArrowUpRight_default
|
|
421
486
|
});
|
|
422
|
-
import * as
|
|
487
|
+
import * as React10 from "react";
|
|
423
488
|
var SvgArrowUpRight, ArrowUpRight_default;
|
|
424
489
|
var init_ArrowUpRight = __esm({
|
|
425
490
|
"src/react/ArrowUpRight.tsx"() {
|
|
@@ -427,7 +492,7 @@ var init_ArrowUpRight = __esm({
|
|
|
427
492
|
init_types();
|
|
428
493
|
SvgArrowUpRight = ({ size = 16, ...props }) => {
|
|
429
494
|
const sizeValue = resolveSize(size);
|
|
430
|
-
return /* @__PURE__ */
|
|
495
|
+
return /* @__PURE__ */ React10.createElement(
|
|
431
496
|
"svg",
|
|
432
497
|
{
|
|
433
498
|
width: sizeValue,
|
|
@@ -437,7 +502,7 @@ var init_ArrowUpRight = __esm({
|
|
|
437
502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
438
503
|
...props
|
|
439
504
|
},
|
|
440
|
-
/* @__PURE__ */
|
|
505
|
+
/* @__PURE__ */ React10.createElement(
|
|
441
506
|
"path",
|
|
442
507
|
{
|
|
443
508
|
fillRule: "evenodd",
|
|
@@ -446,7 +511,7 @@ var init_ArrowUpRight = __esm({
|
|
|
446
511
|
fill: "currentColor"
|
|
447
512
|
}
|
|
448
513
|
),
|
|
449
|
-
/* @__PURE__ */
|
|
514
|
+
/* @__PURE__ */ React10.createElement(
|
|
450
515
|
"path",
|
|
451
516
|
{
|
|
452
517
|
fillRule: "evenodd",
|
|
@@ -466,7 +531,7 @@ var Bell_exports = {};
|
|
|
466
531
|
__export(Bell_exports, {
|
|
467
532
|
default: () => Bell_default
|
|
468
533
|
});
|
|
469
|
-
import * as
|
|
534
|
+
import * as React11 from "react";
|
|
470
535
|
var SvgBell, Bell_default;
|
|
471
536
|
var init_Bell = __esm({
|
|
472
537
|
"src/react/Bell.tsx"() {
|
|
@@ -474,7 +539,7 @@ var init_Bell = __esm({
|
|
|
474
539
|
init_types();
|
|
475
540
|
SvgBell = ({ size = 16, ...props }) => {
|
|
476
541
|
const sizeValue = resolveSize(size);
|
|
477
|
-
return /* @__PURE__ */
|
|
542
|
+
return /* @__PURE__ */ React11.createElement(
|
|
478
543
|
"svg",
|
|
479
544
|
{
|
|
480
545
|
width: sizeValue,
|
|
@@ -484,7 +549,7 @@ var init_Bell = __esm({
|
|
|
484
549
|
xmlns: "http://www.w3.org/2000/svg",
|
|
485
550
|
...props
|
|
486
551
|
},
|
|
487
|
-
/* @__PURE__ */
|
|
552
|
+
/* @__PURE__ */ React11.createElement(
|
|
488
553
|
"path",
|
|
489
554
|
{
|
|
490
555
|
fillRule: "evenodd",
|
|
@@ -493,7 +558,7 @@ var init_Bell = __esm({
|
|
|
493
558
|
fill: "currentColor"
|
|
494
559
|
}
|
|
495
560
|
),
|
|
496
|
-
/* @__PURE__ */
|
|
561
|
+
/* @__PURE__ */ React11.createElement(
|
|
497
562
|
"path",
|
|
498
563
|
{
|
|
499
564
|
fillRule: "evenodd",
|
|
@@ -513,7 +578,7 @@ var Cancel_exports = {};
|
|
|
513
578
|
__export(Cancel_exports, {
|
|
514
579
|
default: () => Cancel_default
|
|
515
580
|
});
|
|
516
|
-
import * as
|
|
581
|
+
import * as React12 from "react";
|
|
517
582
|
var SvgCancel, Cancel_default;
|
|
518
583
|
var init_Cancel = __esm({
|
|
519
584
|
"src/react/Cancel.tsx"() {
|
|
@@ -521,7 +586,7 @@ var init_Cancel = __esm({
|
|
|
521
586
|
init_types();
|
|
522
587
|
SvgCancel = ({ size = 16, ...props }) => {
|
|
523
588
|
const sizeValue = resolveSize(size);
|
|
524
|
-
return /* @__PURE__ */
|
|
589
|
+
return /* @__PURE__ */ React12.createElement(
|
|
525
590
|
"svg",
|
|
526
591
|
{
|
|
527
592
|
width: sizeValue,
|
|
@@ -531,7 +596,7 @@ var init_Cancel = __esm({
|
|
|
531
596
|
xmlns: "http://www.w3.org/2000/svg",
|
|
532
597
|
...props
|
|
533
598
|
},
|
|
534
|
-
/* @__PURE__ */
|
|
599
|
+
/* @__PURE__ */ React12.createElement(
|
|
535
600
|
"path",
|
|
536
601
|
{
|
|
537
602
|
fillRule: "evenodd",
|
|
@@ -540,7 +605,7 @@ var init_Cancel = __esm({
|
|
|
540
605
|
fill: "currentColor"
|
|
541
606
|
}
|
|
542
607
|
),
|
|
543
|
-
/* @__PURE__ */
|
|
608
|
+
/* @__PURE__ */ React12.createElement(
|
|
544
609
|
"path",
|
|
545
610
|
{
|
|
546
611
|
fillRule: "evenodd",
|
|
@@ -560,7 +625,7 @@ var CancelCircleSolid_exports = {};
|
|
|
560
625
|
__export(CancelCircleSolid_exports, {
|
|
561
626
|
default: () => CancelCircleSolid_default
|
|
562
627
|
});
|
|
563
|
-
import * as
|
|
628
|
+
import * as React13 from "react";
|
|
564
629
|
var SvgCancelCircleSolid, CancelCircleSolid_default;
|
|
565
630
|
var init_CancelCircleSolid = __esm({
|
|
566
631
|
"src/react/CancelCircleSolid.tsx"() {
|
|
@@ -568,7 +633,7 @@ var init_CancelCircleSolid = __esm({
|
|
|
568
633
|
init_types();
|
|
569
634
|
SvgCancelCircleSolid = ({ size = 16, ...props }) => {
|
|
570
635
|
const sizeValue = resolveSize(size);
|
|
571
|
-
return /* @__PURE__ */
|
|
636
|
+
return /* @__PURE__ */ React13.createElement(
|
|
572
637
|
"svg",
|
|
573
638
|
{
|
|
574
639
|
width: sizeValue,
|
|
@@ -578,7 +643,7 @@ var init_CancelCircleSolid = __esm({
|
|
|
578
643
|
xmlns: "http://www.w3.org/2000/svg",
|
|
579
644
|
...props
|
|
580
645
|
},
|
|
581
|
-
/* @__PURE__ */
|
|
646
|
+
/* @__PURE__ */ React13.createElement(
|
|
582
647
|
"path",
|
|
583
648
|
{
|
|
584
649
|
fillRule: "evenodd",
|
|
@@ -598,7 +663,7 @@ var Check_exports = {};
|
|
|
598
663
|
__export(Check_exports, {
|
|
599
664
|
default: () => Check_default
|
|
600
665
|
});
|
|
601
|
-
import * as
|
|
666
|
+
import * as React14 from "react";
|
|
602
667
|
var SvgCheck, Check_default;
|
|
603
668
|
var init_Check = __esm({
|
|
604
669
|
"src/react/Check.tsx"() {
|
|
@@ -606,7 +671,7 @@ var init_Check = __esm({
|
|
|
606
671
|
init_types();
|
|
607
672
|
SvgCheck = ({ size = 16, ...props }) => {
|
|
608
673
|
const sizeValue = resolveSize(size);
|
|
609
|
-
return /* @__PURE__ */
|
|
674
|
+
return /* @__PURE__ */ React14.createElement(
|
|
610
675
|
"svg",
|
|
611
676
|
{
|
|
612
677
|
width: sizeValue,
|
|
@@ -616,7 +681,7 @@ var init_Check = __esm({
|
|
|
616
681
|
xmlns: "http://www.w3.org/2000/svg",
|
|
617
682
|
...props
|
|
618
683
|
},
|
|
619
|
-
/* @__PURE__ */
|
|
684
|
+
/* @__PURE__ */ React14.createElement(
|
|
620
685
|
"path",
|
|
621
686
|
{
|
|
622
687
|
fillRule: "evenodd",
|
|
@@ -636,7 +701,7 @@ var ChevronDown_exports = {};
|
|
|
636
701
|
__export(ChevronDown_exports, {
|
|
637
702
|
default: () => ChevronDown_default
|
|
638
703
|
});
|
|
639
|
-
import * as
|
|
704
|
+
import * as React15 from "react";
|
|
640
705
|
var SvgChevronDown, ChevronDown_default;
|
|
641
706
|
var init_ChevronDown = __esm({
|
|
642
707
|
"src/react/ChevronDown.tsx"() {
|
|
@@ -644,7 +709,7 @@ var init_ChevronDown = __esm({
|
|
|
644
709
|
init_types();
|
|
645
710
|
SvgChevronDown = ({ size = 16, ...props }) => {
|
|
646
711
|
const sizeValue = resolveSize(size);
|
|
647
|
-
return /* @__PURE__ */
|
|
712
|
+
return /* @__PURE__ */ React15.createElement(
|
|
648
713
|
"svg",
|
|
649
714
|
{
|
|
650
715
|
width: sizeValue,
|
|
@@ -654,7 +719,7 @@ var init_ChevronDown = __esm({
|
|
|
654
719
|
xmlns: "http://www.w3.org/2000/svg",
|
|
655
720
|
...props
|
|
656
721
|
},
|
|
657
|
-
/* @__PURE__ */
|
|
722
|
+
/* @__PURE__ */ React15.createElement(
|
|
658
723
|
"path",
|
|
659
724
|
{
|
|
660
725
|
d: "M5.33203 9.6216C5.05614 9.32026 5.07568 8.87557 5.39062 8.59451C5.72691 8.29477 6.27309 8.29477 6.60937 8.59451L12.1992 13.5777L17.791 8.59451C18.1273 8.29477 18.6725 8.29477 19.0088 8.59451C19.345 8.89425 19.345 9.38021 19.0088 9.67992L12.8086 15.2062C12.4723 15.5056 11.927 15.5057 11.5908 15.2062L5.39062 9.67992L5.33203 9.6216Z",
|
|
@@ -672,7 +737,7 @@ var ChevronLeft_exports = {};
|
|
|
672
737
|
__export(ChevronLeft_exports, {
|
|
673
738
|
default: () => ChevronLeft_default
|
|
674
739
|
});
|
|
675
|
-
import * as
|
|
740
|
+
import * as React16 from "react";
|
|
676
741
|
var SvgChevronLeft, ChevronLeft_default;
|
|
677
742
|
var init_ChevronLeft = __esm({
|
|
678
743
|
"src/react/ChevronLeft.tsx"() {
|
|
@@ -680,7 +745,7 @@ var init_ChevronLeft = __esm({
|
|
|
680
745
|
init_types();
|
|
681
746
|
SvgChevronLeft = ({ size = 16, ...props }) => {
|
|
682
747
|
const sizeValue = resolveSize(size);
|
|
683
|
-
return /* @__PURE__ */
|
|
748
|
+
return /* @__PURE__ */ React16.createElement(
|
|
684
749
|
"svg",
|
|
685
750
|
{
|
|
686
751
|
width: sizeValue,
|
|
@@ -690,7 +755,7 @@ var init_ChevronLeft = __esm({
|
|
|
690
755
|
xmlns: "http://www.w3.org/2000/svg",
|
|
691
756
|
...props
|
|
692
757
|
},
|
|
693
|
-
/* @__PURE__ */
|
|
758
|
+
/* @__PURE__ */ React16.createElement(
|
|
694
759
|
"path",
|
|
695
760
|
{
|
|
696
761
|
d: "M13.6932 4.09302C14.0837 3.70259 14.7167 3.70252 15.1072 4.09302C15.4976 4.48351 15.4976 5.11658 15.1072 5.50708L8.61407 12.0002L15.1072 18.4934L15.1756 18.5686C15.4962 18.9614 15.4734 19.5413 15.1072 19.9075C14.741 20.2736 14.1611 20.2964 13.7684 19.9758L13.6932 19.9075L6.49298 12.7073C6.10249 12.3168 6.10255 11.6837 6.49298 11.2932L13.6932 4.09302Z",
|
|
@@ -708,7 +773,7 @@ var ChevronRight_exports = {};
|
|
|
708
773
|
__export(ChevronRight_exports, {
|
|
709
774
|
default: () => ChevronRight_default
|
|
710
775
|
});
|
|
711
|
-
import * as
|
|
776
|
+
import * as React17 from "react";
|
|
712
777
|
var SvgChevronRight, ChevronRight_default;
|
|
713
778
|
var init_ChevronRight = __esm({
|
|
714
779
|
"src/react/ChevronRight.tsx"() {
|
|
@@ -716,7 +781,7 @@ var init_ChevronRight = __esm({
|
|
|
716
781
|
init_types();
|
|
717
782
|
SvgChevronRight = ({ size = 16, ...props }) => {
|
|
718
783
|
const sizeValue = resolveSize(size);
|
|
719
|
-
return /* @__PURE__ */
|
|
784
|
+
return /* @__PURE__ */ React17.createElement(
|
|
720
785
|
"svg",
|
|
721
786
|
{
|
|
722
787
|
width: sizeValue,
|
|
@@ -726,7 +791,7 @@ var init_ChevronRight = __esm({
|
|
|
726
791
|
xmlns: "http://www.w3.org/2000/svg",
|
|
727
792
|
...props
|
|
728
793
|
},
|
|
729
|
-
/* @__PURE__ */
|
|
794
|
+
/* @__PURE__ */ React17.createElement(
|
|
730
795
|
"path",
|
|
731
796
|
{
|
|
732
797
|
d: "M9.10694 4.09302C8.7164 3.70259 8.08337 3.70252 7.69287 4.09302C7.30248 4.48351 7.30248 5.11658 7.69287 5.50708L14.186 12.0002L7.69287 18.4934L7.62451 18.5686C7.30395 18.9614 7.32668 19.5413 7.69287 19.9075C8.05908 20.2736 8.639 20.2964 9.03174 19.9758L9.10694 19.9075L16.3071 12.7073C16.6976 12.3168 16.6976 11.6837 16.3071 11.2932L9.10694 4.09302Z",
|
|
@@ -744,7 +809,7 @@ var ChevronUp_exports = {};
|
|
|
744
809
|
__export(ChevronUp_exports, {
|
|
745
810
|
default: () => ChevronUp_default
|
|
746
811
|
});
|
|
747
|
-
import * as
|
|
812
|
+
import * as React18 from "react";
|
|
748
813
|
var SvgChevronUp, ChevronUp_default;
|
|
749
814
|
var init_ChevronUp = __esm({
|
|
750
815
|
"src/react/ChevronUp.tsx"() {
|
|
@@ -752,7 +817,7 @@ var init_ChevronUp = __esm({
|
|
|
752
817
|
init_types();
|
|
753
818
|
SvgChevronUp = ({ size = 16, ...props }) => {
|
|
754
819
|
const sizeValue = resolveSize(size);
|
|
755
|
-
return /* @__PURE__ */
|
|
820
|
+
return /* @__PURE__ */ React18.createElement(
|
|
756
821
|
"svg",
|
|
757
822
|
{
|
|
758
823
|
width: sizeValue,
|
|
@@ -762,7 +827,7 @@ var init_ChevronUp = __esm({
|
|
|
762
827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
763
828
|
...props
|
|
764
829
|
},
|
|
765
|
-
/* @__PURE__ */
|
|
830
|
+
/* @__PURE__ */ React18.createElement(
|
|
766
831
|
"path",
|
|
767
832
|
{
|
|
768
833
|
d: "M5.33203 14.1783C5.05614 14.4797 5.07568 14.9244 5.39062 15.2054C5.72691 15.5052 6.27309 15.5052 6.60937 15.2054L12.1992 10.2223L17.791 15.2054C18.1273 15.5052 18.6725 15.5052 19.0088 15.2054C19.345 14.9057 19.345 14.4197 19.0088 14.12L12.8086 8.59372C12.4723 8.29437 11.927 8.29419 11.5908 8.59372L5.39062 14.12L5.33203 14.1783Z",
|
|
@@ -780,7 +845,7 @@ var Edit_exports = {};
|
|
|
780
845
|
__export(Edit_exports, {
|
|
781
846
|
default: () => Edit_default
|
|
782
847
|
});
|
|
783
|
-
import * as
|
|
848
|
+
import * as React19 from "react";
|
|
784
849
|
var SvgEdit, Edit_default;
|
|
785
850
|
var init_Edit = __esm({
|
|
786
851
|
"src/react/Edit.tsx"() {
|
|
@@ -788,7 +853,7 @@ var init_Edit = __esm({
|
|
|
788
853
|
init_types();
|
|
789
854
|
SvgEdit = ({ size = 16, ...props }) => {
|
|
790
855
|
const sizeValue = resolveSize(size);
|
|
791
|
-
return /* @__PURE__ */
|
|
856
|
+
return /* @__PURE__ */ React19.createElement(
|
|
792
857
|
"svg",
|
|
793
858
|
{
|
|
794
859
|
width: sizeValue,
|
|
@@ -798,7 +863,7 @@ var init_Edit = __esm({
|
|
|
798
863
|
xmlns: "http://www.w3.org/2000/svg",
|
|
799
864
|
...props
|
|
800
865
|
},
|
|
801
|
-
/* @__PURE__ */
|
|
866
|
+
/* @__PURE__ */ React19.createElement(
|
|
802
867
|
"path",
|
|
803
868
|
{
|
|
804
869
|
fillRule: "evenodd",
|
|
@@ -807,7 +872,7 @@ var init_Edit = __esm({
|
|
|
807
872
|
fill: "currentColor"
|
|
808
873
|
}
|
|
809
874
|
),
|
|
810
|
-
/* @__PURE__ */
|
|
875
|
+
/* @__PURE__ */ React19.createElement(
|
|
811
876
|
"path",
|
|
812
877
|
{
|
|
813
878
|
fillRule: "evenodd",
|
|
@@ -827,7 +892,7 @@ var ExploreFilled_exports = {};
|
|
|
827
892
|
__export(ExploreFilled_exports, {
|
|
828
893
|
default: () => ExploreFilled_default
|
|
829
894
|
});
|
|
830
|
-
import * as
|
|
895
|
+
import * as React20 from "react";
|
|
831
896
|
var SvgExploreFilled, ExploreFilled_default;
|
|
832
897
|
var init_ExploreFilled = __esm({
|
|
833
898
|
"src/react/ExploreFilled.tsx"() {
|
|
@@ -835,7 +900,7 @@ var init_ExploreFilled = __esm({
|
|
|
835
900
|
init_types();
|
|
836
901
|
SvgExploreFilled = ({ size = 16, ...props }) => {
|
|
837
902
|
const sizeValue = resolveSize(size);
|
|
838
|
-
return /* @__PURE__ */
|
|
903
|
+
return /* @__PURE__ */ React20.createElement(
|
|
839
904
|
"svg",
|
|
840
905
|
{
|
|
841
906
|
width: sizeValue,
|
|
@@ -845,7 +910,7 @@ var init_ExploreFilled = __esm({
|
|
|
845
910
|
xmlns: "http://www.w3.org/2000/svg",
|
|
846
911
|
...props
|
|
847
912
|
},
|
|
848
|
-
/* @__PURE__ */
|
|
913
|
+
/* @__PURE__ */ React20.createElement(
|
|
849
914
|
"path",
|
|
850
915
|
{
|
|
851
916
|
fillRule: "evenodd",
|
|
@@ -854,7 +919,7 @@ var init_ExploreFilled = __esm({
|
|
|
854
919
|
fill: "currentColor"
|
|
855
920
|
}
|
|
856
921
|
),
|
|
857
|
-
/* @__PURE__ */
|
|
922
|
+
/* @__PURE__ */ React20.createElement(
|
|
858
923
|
"path",
|
|
859
924
|
{
|
|
860
925
|
fillRule: "evenodd",
|
|
@@ -863,7 +928,7 @@ var init_ExploreFilled = __esm({
|
|
|
863
928
|
fill: "currentColor"
|
|
864
929
|
}
|
|
865
930
|
),
|
|
866
|
-
/* @__PURE__ */
|
|
931
|
+
/* @__PURE__ */ React20.createElement(
|
|
867
932
|
"path",
|
|
868
933
|
{
|
|
869
934
|
d: "M16.1046 11.1024C16.1046 13.9203 13.8202 16.2047 11.0022 16.2047C8.1843 16.2047 5.8999 13.9203 5.8999 11.1024C5.8999 8.28445 8.1843 6.00005 11.0022 6.00005C13.8202 6.00005 16.1046 8.28445 16.1046 11.1024Z",
|
|
@@ -881,7 +946,7 @@ var ExploreLinear_exports = {};
|
|
|
881
946
|
__export(ExploreLinear_exports, {
|
|
882
947
|
default: () => ExploreLinear_default
|
|
883
948
|
});
|
|
884
|
-
import * as
|
|
949
|
+
import * as React21 from "react";
|
|
885
950
|
var SvgExploreLinear, ExploreLinear_default;
|
|
886
951
|
var init_ExploreLinear = __esm({
|
|
887
952
|
"src/react/ExploreLinear.tsx"() {
|
|
@@ -889,7 +954,7 @@ var init_ExploreLinear = __esm({
|
|
|
889
954
|
init_types();
|
|
890
955
|
SvgExploreLinear = ({ size = 16, ...props }) => {
|
|
891
956
|
const sizeValue = resolveSize(size);
|
|
892
|
-
return /* @__PURE__ */
|
|
957
|
+
return /* @__PURE__ */ React21.createElement(
|
|
893
958
|
"svg",
|
|
894
959
|
{
|
|
895
960
|
width: sizeValue,
|
|
@@ -899,7 +964,7 @@ var init_ExploreLinear = __esm({
|
|
|
899
964
|
xmlns: "http://www.w3.org/2000/svg",
|
|
900
965
|
...props
|
|
901
966
|
},
|
|
902
|
-
/* @__PURE__ */
|
|
967
|
+
/* @__PURE__ */ React21.createElement(
|
|
903
968
|
"path",
|
|
904
969
|
{
|
|
905
970
|
fillRule: "evenodd",
|
|
@@ -908,7 +973,7 @@ var init_ExploreLinear = __esm({
|
|
|
908
973
|
fill: "currentColor"
|
|
909
974
|
}
|
|
910
975
|
),
|
|
911
|
-
/* @__PURE__ */
|
|
976
|
+
/* @__PURE__ */ React21.createElement(
|
|
912
977
|
"path",
|
|
913
978
|
{
|
|
914
979
|
fillRule: "evenodd",
|
|
@@ -928,7 +993,7 @@ var EyeHidden_exports = {};
|
|
|
928
993
|
__export(EyeHidden_exports, {
|
|
929
994
|
default: () => EyeHidden_default
|
|
930
995
|
});
|
|
931
|
-
import * as
|
|
996
|
+
import * as React22 from "react";
|
|
932
997
|
var SvgEyeHidden, EyeHidden_default;
|
|
933
998
|
var init_EyeHidden = __esm({
|
|
934
999
|
"src/react/EyeHidden.tsx"() {
|
|
@@ -936,7 +1001,7 @@ var init_EyeHidden = __esm({
|
|
|
936
1001
|
init_types();
|
|
937
1002
|
SvgEyeHidden = ({ size = 16, ...props }) => {
|
|
938
1003
|
const sizeValue = resolveSize(size);
|
|
939
|
-
return /* @__PURE__ */
|
|
1004
|
+
return /* @__PURE__ */ React22.createElement(
|
|
940
1005
|
"svg",
|
|
941
1006
|
{
|
|
942
1007
|
width: sizeValue,
|
|
@@ -946,7 +1011,7 @@ var init_EyeHidden = __esm({
|
|
|
946
1011
|
xmlns: "http://www.w3.org/2000/svg",
|
|
947
1012
|
...props
|
|
948
1013
|
},
|
|
949
|
-
/* @__PURE__ */
|
|
1014
|
+
/* @__PURE__ */ React22.createElement(
|
|
950
1015
|
"path",
|
|
951
1016
|
{
|
|
952
1017
|
fillRule: "evenodd",
|
|
@@ -955,7 +1020,7 @@ var init_EyeHidden = __esm({
|
|
|
955
1020
|
fill: "currentColor"
|
|
956
1021
|
}
|
|
957
1022
|
),
|
|
958
|
-
/* @__PURE__ */
|
|
1023
|
+
/* @__PURE__ */ React22.createElement(
|
|
959
1024
|
"path",
|
|
960
1025
|
{
|
|
961
1026
|
fillRule: "evenodd",
|
|
@@ -964,7 +1029,7 @@ var init_EyeHidden = __esm({
|
|
|
964
1029
|
fill: "currentColor"
|
|
965
1030
|
}
|
|
966
1031
|
),
|
|
967
|
-
/* @__PURE__ */
|
|
1032
|
+
/* @__PURE__ */ React22.createElement(
|
|
968
1033
|
"path",
|
|
969
1034
|
{
|
|
970
1035
|
fillRule: "evenodd",
|
|
@@ -984,7 +1049,7 @@ var EyeVisible_exports = {};
|
|
|
984
1049
|
__export(EyeVisible_exports, {
|
|
985
1050
|
default: () => EyeVisible_default
|
|
986
1051
|
});
|
|
987
|
-
import * as
|
|
1052
|
+
import * as React23 from "react";
|
|
988
1053
|
var SvgEyeVisible, EyeVisible_default;
|
|
989
1054
|
var init_EyeVisible = __esm({
|
|
990
1055
|
"src/react/EyeVisible.tsx"() {
|
|
@@ -992,7 +1057,7 @@ var init_EyeVisible = __esm({
|
|
|
992
1057
|
init_types();
|
|
993
1058
|
SvgEyeVisible = ({ size = 16, ...props }) => {
|
|
994
1059
|
const sizeValue = resolveSize(size);
|
|
995
|
-
return /* @__PURE__ */
|
|
1060
|
+
return /* @__PURE__ */ React23.createElement(
|
|
996
1061
|
"svg",
|
|
997
1062
|
{
|
|
998
1063
|
width: sizeValue,
|
|
@@ -1002,7 +1067,7 @@ var init_EyeVisible = __esm({
|
|
|
1002
1067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1003
1068
|
...props
|
|
1004
1069
|
},
|
|
1005
|
-
/* @__PURE__ */
|
|
1070
|
+
/* @__PURE__ */ React23.createElement(
|
|
1006
1071
|
"path",
|
|
1007
1072
|
{
|
|
1008
1073
|
fillRule: "evenodd",
|
|
@@ -1011,7 +1076,7 @@ var init_EyeVisible = __esm({
|
|
|
1011
1076
|
fill: "currentColor"
|
|
1012
1077
|
}
|
|
1013
1078
|
),
|
|
1014
|
-
/* @__PURE__ */
|
|
1079
|
+
/* @__PURE__ */ React23.createElement(
|
|
1015
1080
|
"path",
|
|
1016
1081
|
{
|
|
1017
1082
|
fillRule: "evenodd",
|
|
@@ -1026,12 +1091,68 @@ var init_EyeVisible = __esm({
|
|
|
1026
1091
|
}
|
|
1027
1092
|
});
|
|
1028
1093
|
|
|
1094
|
+
// src/react/FileCheck.tsx
|
|
1095
|
+
var FileCheck_exports = {};
|
|
1096
|
+
__export(FileCheck_exports, {
|
|
1097
|
+
default: () => FileCheck_default
|
|
1098
|
+
});
|
|
1099
|
+
import * as React24 from "react";
|
|
1100
|
+
var SvgFileCheck, FileCheck_default;
|
|
1101
|
+
var init_FileCheck = __esm({
|
|
1102
|
+
"src/react/FileCheck.tsx"() {
|
|
1103
|
+
"use strict";
|
|
1104
|
+
init_types();
|
|
1105
|
+
SvgFileCheck = ({ size = 16, ...props }) => {
|
|
1106
|
+
const sizeValue = resolveSize(size);
|
|
1107
|
+
return /* @__PURE__ */ React24.createElement(
|
|
1108
|
+
"svg",
|
|
1109
|
+
{
|
|
1110
|
+
width: sizeValue,
|
|
1111
|
+
height: sizeValue,
|
|
1112
|
+
viewBox: "0 0 24 24",
|
|
1113
|
+
fill: "none",
|
|
1114
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1115
|
+
...props
|
|
1116
|
+
},
|
|
1117
|
+
/* @__PURE__ */ React24.createElement(
|
|
1118
|
+
"path",
|
|
1119
|
+
{
|
|
1120
|
+
fillRule: "evenodd",
|
|
1121
|
+
clipRule: "evenodd",
|
|
1122
|
+
d: "M3.87865 1.87868C4.44126 1.31607 5.20432 1 5.99997 1H14.5C14.7652 1 15.0195 1.10536 15.2071 1.29289L20.7071 6.79289C20.8946 6.98043 21 7.23478 21 7.5V20C21 20.7957 20.6839 21.5587 20.1213 22.1213C19.5587 22.6839 18.7956 23 18 23H3.99997C3.44769 23 2.99997 22.5523 2.99997 22C2.99997 21.4477 3.44769 21 3.99997 21H18C18.2652 21 18.5195 20.8946 18.7071 20.7071C18.8946 20.5196 19 20.2652 19 20V7.91421L14.0858 3H5.99997C5.73476 3 5.4804 3.10536 5.29287 3.29289C5.10533 3.48043 4.99997 3.73478 4.99997 4V8C4.99997 8.55228 4.55226 9 3.99997 9C3.44769 9 2.99997 8.55228 2.99997 8V4C2.99997 3.20435 3.31604 2.44129 3.87865 1.87868Z",
|
|
1123
|
+
fill: "currentColor"
|
|
1124
|
+
}
|
|
1125
|
+
),
|
|
1126
|
+
/* @__PURE__ */ React24.createElement(
|
|
1127
|
+
"path",
|
|
1128
|
+
{
|
|
1129
|
+
fillRule: "evenodd",
|
|
1130
|
+
clipRule: "evenodd",
|
|
1131
|
+
d: "M14 1C14.5523 1 15 1.44772 15 2V7H20C20.5523 7 21 7.44772 21 8C21 8.55228 20.5523 9 20 9H14C13.4477 9 13 8.55228 13 8V2C13 1.44772 13.4477 1 14 1Z",
|
|
1132
|
+
fill: "currentColor"
|
|
1133
|
+
}
|
|
1134
|
+
),
|
|
1135
|
+
/* @__PURE__ */ React24.createElement(
|
|
1136
|
+
"path",
|
|
1137
|
+
{
|
|
1138
|
+
fillRule: "evenodd",
|
|
1139
|
+
clipRule: "evenodd",
|
|
1140
|
+
d: "M10.4142 12.3402C10.8047 12.7307 10.8047 13.3639 10.4142 13.7544L6.41421 17.7544C6.02369 18.1449 5.39052 18.1449 5 17.7544L3 15.7544C2.60948 15.3639 2.60948 14.7307 3 14.3402C3.39052 13.9496 4.02369 13.9496 4.41421 14.3402L5.70711 15.6331L9 12.3402C9.39052 11.9496 10.0237 11.9496 10.4142 12.3402Z",
|
|
1141
|
+
fill: "currentColor"
|
|
1142
|
+
}
|
|
1143
|
+
)
|
|
1144
|
+
);
|
|
1145
|
+
};
|
|
1146
|
+
FileCheck_default = SvgFileCheck;
|
|
1147
|
+
}
|
|
1148
|
+
});
|
|
1149
|
+
|
|
1029
1150
|
// src/react/FileKey.tsx
|
|
1030
1151
|
var FileKey_exports = {};
|
|
1031
1152
|
__export(FileKey_exports, {
|
|
1032
1153
|
default: () => FileKey_default
|
|
1033
1154
|
});
|
|
1034
|
-
import * as
|
|
1155
|
+
import * as React25 from "react";
|
|
1035
1156
|
var SvgFileKey, FileKey_default;
|
|
1036
1157
|
var init_FileKey = __esm({
|
|
1037
1158
|
"src/react/FileKey.tsx"() {
|
|
@@ -1039,7 +1160,7 @@ var init_FileKey = __esm({
|
|
|
1039
1160
|
init_types();
|
|
1040
1161
|
SvgFileKey = ({ size = 16, ...props }) => {
|
|
1041
1162
|
const sizeValue = resolveSize(size);
|
|
1042
|
-
return /* @__PURE__ */
|
|
1163
|
+
return /* @__PURE__ */ React25.createElement(
|
|
1043
1164
|
"svg",
|
|
1044
1165
|
{
|
|
1045
1166
|
width: sizeValue,
|
|
@@ -1049,7 +1170,7 @@ var init_FileKey = __esm({
|
|
|
1049
1170
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1050
1171
|
...props
|
|
1051
1172
|
},
|
|
1052
|
-
/* @__PURE__ */
|
|
1173
|
+
/* @__PURE__ */ React25.createElement(
|
|
1053
1174
|
"path",
|
|
1054
1175
|
{
|
|
1055
1176
|
fillRule: "evenodd",
|
|
@@ -1058,7 +1179,7 @@ var init_FileKey = __esm({
|
|
|
1058
1179
|
fill: "currentColor"
|
|
1059
1180
|
}
|
|
1060
1181
|
),
|
|
1061
|
-
/* @__PURE__ */
|
|
1182
|
+
/* @__PURE__ */ React25.createElement(
|
|
1062
1183
|
"path",
|
|
1063
1184
|
{
|
|
1064
1185
|
fillRule: "evenodd",
|
|
@@ -1067,7 +1188,7 @@ var init_FileKey = __esm({
|
|
|
1067
1188
|
fill: "currentColor"
|
|
1068
1189
|
}
|
|
1069
1190
|
),
|
|
1070
|
-
/* @__PURE__ */
|
|
1191
|
+
/* @__PURE__ */ React25.createElement(
|
|
1071
1192
|
"path",
|
|
1072
1193
|
{
|
|
1073
1194
|
fillRule: "evenodd",
|
|
@@ -1076,18 +1197,213 @@ var init_FileKey = __esm({
|
|
|
1076
1197
|
fill: "currentColor"
|
|
1077
1198
|
}
|
|
1078
1199
|
),
|
|
1079
|
-
/* @__PURE__ */
|
|
1200
|
+
/* @__PURE__ */ React25.createElement(
|
|
1201
|
+
"path",
|
|
1202
|
+
{
|
|
1203
|
+
fillRule: "evenodd",
|
|
1204
|
+
clipRule: "evenodd",
|
|
1205
|
+
d: "M14.2929 10.2929C14.6834 9.90237 15.3166 9.90237 15.7071 10.2929L16.7071 11.2929C17.0976 11.6834 17.0976 12.3166 16.7071 12.7071C16.3166 13.0976 15.6834 13.0976 15.2929 12.7071L14.2929 11.7071C13.9024 11.3166 13.9024 10.6834 14.2929 10.2929Z",
|
|
1206
|
+
fill: "currentColor"
|
|
1207
|
+
}
|
|
1208
|
+
)
|
|
1209
|
+
);
|
|
1210
|
+
};
|
|
1211
|
+
FileKey_default = SvgFileKey;
|
|
1212
|
+
}
|
|
1213
|
+
});
|
|
1214
|
+
|
|
1215
|
+
// src/react/FileLock.tsx
|
|
1216
|
+
var FileLock_exports = {};
|
|
1217
|
+
__export(FileLock_exports, {
|
|
1218
|
+
default: () => FileLock_default
|
|
1219
|
+
});
|
|
1220
|
+
import * as React26 from "react";
|
|
1221
|
+
var SvgFileLock, FileLock_default;
|
|
1222
|
+
var init_FileLock = __esm({
|
|
1223
|
+
"src/react/FileLock.tsx"() {
|
|
1224
|
+
"use strict";
|
|
1225
|
+
init_types();
|
|
1226
|
+
SvgFileLock = ({ size = 16, ...props }) => {
|
|
1227
|
+
const sizeValue = resolveSize(size);
|
|
1228
|
+
return /* @__PURE__ */ React26.createElement(
|
|
1229
|
+
"svg",
|
|
1230
|
+
{
|
|
1231
|
+
width: sizeValue,
|
|
1232
|
+
height: sizeValue,
|
|
1233
|
+
viewBox: "0 0 24 24",
|
|
1234
|
+
fill: "none",
|
|
1235
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1236
|
+
...props
|
|
1237
|
+
},
|
|
1238
|
+
/* @__PURE__ */ React26.createElement(
|
|
1239
|
+
"path",
|
|
1240
|
+
{
|
|
1241
|
+
fillRule: "evenodd",
|
|
1242
|
+
clipRule: "evenodd",
|
|
1243
|
+
d: "M3.87868 1.87868C4.44129 1.31607 5.20435 1 6 1H14.5C14.7652 1 15.0196 1.10536 15.2071 1.29289L20.7071 6.79289C20.8946 6.98043 21 7.23478 21 7.5V20C21 20.7957 20.6839 21.5587 20.1213 22.1213C19.5587 22.6839 18.7957 23 18 23H6C5.20435 23 4.44129 22.6839 3.87868 22.1213C3.31607 21.5587 3 20.7957 3 20V4C3 3.20435 3.31607 2.44129 3.87868 1.87868ZM6 3C5.73478 3 5.48043 3.10536 5.29289 3.29289C5.10536 3.48043 5 3.73478 5 4V20C5 20.2652 5.10536 20.5196 5.29289 20.7071C5.48043 20.8946 5.73478 21 6 21H18C18.2652 21 18.5196 20.8946 18.7071 20.7071C18.8946 20.5196 19 20.2652 19 20V7.91421L14.0858 3H6Z",
|
|
1244
|
+
fill: "currentColor"
|
|
1245
|
+
}
|
|
1246
|
+
),
|
|
1247
|
+
/* @__PURE__ */ React26.createElement(
|
|
1248
|
+
"path",
|
|
1249
|
+
{
|
|
1250
|
+
fillRule: "evenodd",
|
|
1251
|
+
clipRule: "evenodd",
|
|
1252
|
+
d: "M7 13C7 11.8954 7.89543 11 9 11H15C16.1046 11 17 11.8954 17 13V17C17 18.1046 16.1046 19 15 19H9C7.89543 19 7 18.1046 7 17V13ZM15 13H9V17H15V13Z",
|
|
1253
|
+
fill: "currentColor"
|
|
1254
|
+
}
|
|
1255
|
+
),
|
|
1256
|
+
/* @__PURE__ */ React26.createElement(
|
|
1257
|
+
"path",
|
|
1258
|
+
{
|
|
1259
|
+
fillRule: "evenodd",
|
|
1260
|
+
clipRule: "evenodd",
|
|
1261
|
+
d: "M9.17157 7.17157C9.92172 6.42143 10.9391 6 12 6C13.0609 6 14.0783 6.42143 14.8284 7.17157C15.5786 7.92172 16 8.93913 16 10V12C16 12.5523 15.5523 13 15 13C14.4477 13 14 12.5523 14 12V10C14 9.46957 13.7893 8.96086 13.4142 8.58579C13.0391 8.21071 12.5304 8 12 8C11.4696 8 10.9609 8.21071 10.5858 8.58579C10.2107 8.96086 10 9.46957 10 10V12C10 12.5523 9.55228 13 9 13C8.44772 13 8 12.5523 8 12V10C8 8.93913 8.42143 7.92172 9.17157 7.17157Z",
|
|
1262
|
+
fill: "currentColor"
|
|
1263
|
+
}
|
|
1264
|
+
)
|
|
1265
|
+
);
|
|
1266
|
+
};
|
|
1267
|
+
FileLock_default = SvgFileLock;
|
|
1268
|
+
}
|
|
1269
|
+
});
|
|
1270
|
+
|
|
1271
|
+
// src/react/FileSpreadsheet.tsx
|
|
1272
|
+
var FileSpreadsheet_exports = {};
|
|
1273
|
+
__export(FileSpreadsheet_exports, {
|
|
1274
|
+
default: () => FileSpreadsheet_default
|
|
1275
|
+
});
|
|
1276
|
+
import * as React27 from "react";
|
|
1277
|
+
var SvgFileSpreadsheet, FileSpreadsheet_default;
|
|
1278
|
+
var init_FileSpreadsheet = __esm({
|
|
1279
|
+
"src/react/FileSpreadsheet.tsx"() {
|
|
1280
|
+
"use strict";
|
|
1281
|
+
init_types();
|
|
1282
|
+
SvgFileSpreadsheet = ({ size = 16, ...props }) => {
|
|
1283
|
+
const sizeValue = resolveSize(size);
|
|
1284
|
+
return /* @__PURE__ */ React27.createElement(
|
|
1285
|
+
"svg",
|
|
1286
|
+
{
|
|
1287
|
+
width: sizeValue,
|
|
1288
|
+
height: sizeValue,
|
|
1289
|
+
viewBox: "0 0 24 24",
|
|
1290
|
+
fill: "none",
|
|
1291
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1292
|
+
...props
|
|
1293
|
+
},
|
|
1294
|
+
/* @__PURE__ */ React27.createElement(
|
|
1295
|
+
"path",
|
|
1296
|
+
{
|
|
1297
|
+
fillRule: "evenodd",
|
|
1298
|
+
clipRule: "evenodd",
|
|
1299
|
+
d: "M3.87868 1.87868C4.44129 1.31607 5.20435 1 6 1H14.5C14.7652 1 15.0196 1.10536 15.2071 1.29289L20.7071 6.79289C20.8946 6.98043 21 7.23478 21 7.5V20C21 20.7957 20.6839 21.5587 20.1213 22.1213C19.5587 22.6839 18.7957 23 18 23H6C5.20435 23 4.44129 22.6839 3.87868 22.1213C3.31607 21.5587 3 20.7957 3 20V4C3 3.20435 3.31607 2.44129 3.87868 1.87868ZM6 3C5.73478 3 5.48043 3.10536 5.29289 3.29289C5.10536 3.48043 5 3.73478 5 4V20C5 20.2652 5.10536 20.5196 5.29289 20.7071C5.48043 20.8946 5.73478 21 6 21H18C18.2652 21 18.5196 20.8946 18.7071 20.7071C18.8946 20.5196 19 20.2652 19 20V7.91421L14.0858 3H6Z",
|
|
1300
|
+
fill: "currentColor"
|
|
1301
|
+
}
|
|
1302
|
+
),
|
|
1303
|
+
/* @__PURE__ */ React27.createElement(
|
|
1304
|
+
"path",
|
|
1305
|
+
{
|
|
1306
|
+
fillRule: "evenodd",
|
|
1307
|
+
clipRule: "evenodd",
|
|
1308
|
+
d: "M14 1C14.5523 1 15 1.44772 15 2V7H20C20.5523 7 21 7.44772 21 8C21 8.55228 20.5523 9 20 9H14C13.4477 9 13 8.55228 13 8V2C13 1.44772 13.4477 1 14 1Z",
|
|
1309
|
+
fill: "currentColor"
|
|
1310
|
+
}
|
|
1311
|
+
),
|
|
1312
|
+
/* @__PURE__ */ React27.createElement(
|
|
1313
|
+
"path",
|
|
1314
|
+
{
|
|
1315
|
+
fillRule: "evenodd",
|
|
1316
|
+
clipRule: "evenodd",
|
|
1317
|
+
d: "M7 13C7 12.4477 7.44772 12 8 12H10C10.5523 12 11 12.4477 11 13C11 13.5523 10.5523 14 10 14H8C7.44772 14 7 13.5523 7 13Z",
|
|
1318
|
+
fill: "currentColor"
|
|
1319
|
+
}
|
|
1320
|
+
),
|
|
1321
|
+
/* @__PURE__ */ React27.createElement(
|
|
1322
|
+
"path",
|
|
1323
|
+
{
|
|
1324
|
+
fillRule: "evenodd",
|
|
1325
|
+
clipRule: "evenodd",
|
|
1326
|
+
d: "M7 17C7 16.4477 7.44772 16 8 16H10C10.5523 16 11 16.4477 11 17C11 17.5523 10.5523 18 10 18H8C7.44772 18 7 17.5523 7 17Z",
|
|
1327
|
+
fill: "currentColor"
|
|
1328
|
+
}
|
|
1329
|
+
),
|
|
1330
|
+
/* @__PURE__ */ React27.createElement(
|
|
1331
|
+
"path",
|
|
1332
|
+
{
|
|
1333
|
+
fillRule: "evenodd",
|
|
1334
|
+
clipRule: "evenodd",
|
|
1335
|
+
d: "M13 13C13 12.4477 13.4477 12 14 12H16C16.5523 12 17 12.4477 17 13C17 13.5523 16.5523 14 16 14H14C13.4477 14 13 13.5523 13 13Z",
|
|
1336
|
+
fill: "currentColor"
|
|
1337
|
+
}
|
|
1338
|
+
),
|
|
1339
|
+
/* @__PURE__ */ React27.createElement(
|
|
1340
|
+
"path",
|
|
1341
|
+
{
|
|
1342
|
+
fillRule: "evenodd",
|
|
1343
|
+
clipRule: "evenodd",
|
|
1344
|
+
d: "M13 17C13 16.4477 13.4477 16 14 16H16C16.5523 16 17 16.4477 17 17C17 17.5523 16.5523 18 16 18H14C13.4477 18 13 17.5523 13 17Z",
|
|
1345
|
+
fill: "currentColor"
|
|
1346
|
+
}
|
|
1347
|
+
)
|
|
1348
|
+
);
|
|
1349
|
+
};
|
|
1350
|
+
FileSpreadsheet_default = SvgFileSpreadsheet;
|
|
1351
|
+
}
|
|
1352
|
+
});
|
|
1353
|
+
|
|
1354
|
+
// src/react/HelpCircle.tsx
|
|
1355
|
+
var HelpCircle_exports = {};
|
|
1356
|
+
__export(HelpCircle_exports, {
|
|
1357
|
+
default: () => HelpCircle_default
|
|
1358
|
+
});
|
|
1359
|
+
import * as React28 from "react";
|
|
1360
|
+
var SvgHelpCircle, HelpCircle_default;
|
|
1361
|
+
var init_HelpCircle = __esm({
|
|
1362
|
+
"src/react/HelpCircle.tsx"() {
|
|
1363
|
+
"use strict";
|
|
1364
|
+
init_types();
|
|
1365
|
+
SvgHelpCircle = ({ size = 16, ...props }) => {
|
|
1366
|
+
const sizeValue = resolveSize(size);
|
|
1367
|
+
return /* @__PURE__ */ React28.createElement(
|
|
1368
|
+
"svg",
|
|
1369
|
+
{
|
|
1370
|
+
width: sizeValue,
|
|
1371
|
+
height: sizeValue,
|
|
1372
|
+
viewBox: "0 0 24 24",
|
|
1373
|
+
fill: "none",
|
|
1374
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1375
|
+
...props
|
|
1376
|
+
},
|
|
1377
|
+
/* @__PURE__ */ React28.createElement(
|
|
1378
|
+
"path",
|
|
1379
|
+
{
|
|
1380
|
+
fillRule: "evenodd",
|
|
1381
|
+
clipRule: "evenodd",
|
|
1382
|
+
d: "M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM23 12C23 18.0751 18.0751 23 12 23C5.92487 23 0.999999 18.0751 1 12C1 5.92487 5.92487 0.999999 12 1C18.0751 1 23 5.92487 23 12Z",
|
|
1383
|
+
fill: "currentColor"
|
|
1384
|
+
}
|
|
1385
|
+
),
|
|
1386
|
+
/* @__PURE__ */ React28.createElement(
|
|
1387
|
+
"path",
|
|
1388
|
+
{
|
|
1389
|
+
fillRule: "evenodd",
|
|
1390
|
+
clipRule: "evenodd",
|
|
1391
|
+
d: "M12.2581 8.0244C11.7926 7.94455 11.3138 8.03203 10.9066 8.27135C10.4994 8.51066 10.1901 8.88637 10.0333 9.33193C9.85006 9.85292 9.27914 10.1267 8.75815 9.94342C8.23716 9.76014 7.96339 9.18923 8.14666 8.66824C8.46013 7.77713 9.07886 7.02571 9.89327 6.54708C10.7077 6.06845 11.6652 5.89349 12.5962 6.05319C13.5273 6.21289 14.3717 6.69694 14.9801 7.41961C15.5883 8.14213 15.9213 9.05656 15.92 10.001C15.9195 11.5314 14.7849 12.542 13.9747 13.0821C13.5391 13.3726 13.1105 13.5861 12.7949 13.7264C12.6356 13.7972 12.5015 13.8509 12.4049 13.8877C12.3565 13.9061 12.3173 13.9204 12.2887 13.9306L12.254 13.9427L12.2429 13.9465L12.239 13.9478L12.2375 13.9483C12.2372 13.9484 12.2362 13.9488 11.92 13.0001L12.2362 13.9488C11.7123 14.1234 11.146 13.8403 10.9713 13.3163C10.7968 12.7927 11.0794 12.2268 11.6027 12.0517L11.6014 12.0522C11.6015 12.0521 11.6016 12.0521 11.6027 12.0517L11.6187 12.0461C11.6341 12.0407 11.6593 12.0315 11.6929 12.0187C11.7603 11.993 11.8606 11.953 11.9826 11.8988C12.2294 11.7891 12.5509 11.6276 12.8653 11.418C13.5549 10.9583 13.92 10.4692 13.92 10.0001L13.92 9.99859C13.9207 9.52627 13.7542 9.06895 13.45 8.70761C13.1459 8.34628 12.7236 8.10425 12.2581 8.0244Z",
|
|
1392
|
+
fill: "currentColor"
|
|
1393
|
+
}
|
|
1394
|
+
),
|
|
1395
|
+
/* @__PURE__ */ React28.createElement(
|
|
1080
1396
|
"path",
|
|
1081
1397
|
{
|
|
1082
1398
|
fillRule: "evenodd",
|
|
1083
1399
|
clipRule: "evenodd",
|
|
1084
|
-
d: "
|
|
1400
|
+
d: "M11 17C11 16.4477 11.4477 16 12 16H12.01C12.5623 16 13.01 16.4477 13.01 17C13.01 17.5523 12.5623 18 12.01 18H12C11.4477 18 11 17.5523 11 17Z",
|
|
1085
1401
|
fill: "currentColor"
|
|
1086
1402
|
}
|
|
1087
1403
|
)
|
|
1088
1404
|
);
|
|
1089
1405
|
};
|
|
1090
|
-
|
|
1406
|
+
HelpCircle_default = SvgHelpCircle;
|
|
1091
1407
|
}
|
|
1092
1408
|
});
|
|
1093
1409
|
|
|
@@ -1096,7 +1412,7 @@ var HomeFilled_exports = {};
|
|
|
1096
1412
|
__export(HomeFilled_exports, {
|
|
1097
1413
|
default: () => HomeFilled_default
|
|
1098
1414
|
});
|
|
1099
|
-
import * as
|
|
1415
|
+
import * as React29 from "react";
|
|
1100
1416
|
var SvgHomeFilled, HomeFilled_default;
|
|
1101
1417
|
var init_HomeFilled = __esm({
|
|
1102
1418
|
"src/react/HomeFilled.tsx"() {
|
|
@@ -1104,7 +1420,7 @@ var init_HomeFilled = __esm({
|
|
|
1104
1420
|
init_types();
|
|
1105
1421
|
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
1106
1422
|
const sizeValue = resolveSize(size);
|
|
1107
|
-
return /* @__PURE__ */
|
|
1423
|
+
return /* @__PURE__ */ React29.createElement(
|
|
1108
1424
|
"svg",
|
|
1109
1425
|
{
|
|
1110
1426
|
width: sizeValue,
|
|
@@ -1114,7 +1430,7 @@ var init_HomeFilled = __esm({
|
|
|
1114
1430
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1115
1431
|
...props
|
|
1116
1432
|
},
|
|
1117
|
-
/* @__PURE__ */
|
|
1433
|
+
/* @__PURE__ */ React29.createElement(
|
|
1118
1434
|
"path",
|
|
1119
1435
|
{
|
|
1120
1436
|
d: "M9.78125 3.47949C11.1248 2.58376 12.8752 2.58376 14.2188 3.47949L19.2188 6.8125C20.3315 7.5543 20.9999 8.80333 21 10.1406V18C21 20.2091 19.2091 22 17 22H7C4.79086 22 3 20.2091 3 18V10.1406C3.00011 8.80333 3.66855 7.5543 4.78125 6.8125L9.78125 3.47949ZM11 11.5928C9.89548 11.5928 9.00008 12.4883 9 13.5928V18.9629C9 19.5152 9.44772 19.9629 10 19.9629H14C14.5523 19.9629 15 19.5152 15 18.9629V13.5928C14.9999 12.4883 14.1045 11.5928 13 11.5928H11Z",
|
|
@@ -1132,7 +1448,7 @@ var HomeLinear_exports = {};
|
|
|
1132
1448
|
__export(HomeLinear_exports, {
|
|
1133
1449
|
default: () => HomeLinear_default
|
|
1134
1450
|
});
|
|
1135
|
-
import * as
|
|
1451
|
+
import * as React30 from "react";
|
|
1136
1452
|
var SvgHomeLinear, HomeLinear_default;
|
|
1137
1453
|
var init_HomeLinear = __esm({
|
|
1138
1454
|
"src/react/HomeLinear.tsx"() {
|
|
@@ -1140,7 +1456,7 @@ var init_HomeLinear = __esm({
|
|
|
1140
1456
|
init_types();
|
|
1141
1457
|
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
1142
1458
|
const sizeValue = resolveSize(size);
|
|
1143
|
-
return /* @__PURE__ */
|
|
1459
|
+
return /* @__PURE__ */ React30.createElement(
|
|
1144
1460
|
"svg",
|
|
1145
1461
|
{
|
|
1146
1462
|
width: sizeValue,
|
|
@@ -1150,7 +1466,7 @@ var init_HomeLinear = __esm({
|
|
|
1150
1466
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1151
1467
|
...props
|
|
1152
1468
|
},
|
|
1153
|
-
/* @__PURE__ */
|
|
1469
|
+
/* @__PURE__ */ React30.createElement(
|
|
1154
1470
|
"path",
|
|
1155
1471
|
{
|
|
1156
1472
|
fillRule: "evenodd",
|
|
@@ -1170,7 +1486,7 @@ var IconSlot_exports = {};
|
|
|
1170
1486
|
__export(IconSlot_exports, {
|
|
1171
1487
|
default: () => IconSlot_default
|
|
1172
1488
|
});
|
|
1173
|
-
import * as
|
|
1489
|
+
import * as React31 from "react";
|
|
1174
1490
|
var SvgIconSlot, IconSlot_default;
|
|
1175
1491
|
var init_IconSlot = __esm({
|
|
1176
1492
|
"src/react/IconSlot.tsx"() {
|
|
@@ -1178,7 +1494,7 @@ var init_IconSlot = __esm({
|
|
|
1178
1494
|
init_types();
|
|
1179
1495
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
1180
1496
|
const sizeValue = resolveSize(size);
|
|
1181
|
-
return /* @__PURE__ */
|
|
1497
|
+
return /* @__PURE__ */ React31.createElement(
|
|
1182
1498
|
"svg",
|
|
1183
1499
|
{
|
|
1184
1500
|
width: sizeValue,
|
|
@@ -1188,7 +1504,7 @@ var init_IconSlot = __esm({
|
|
|
1188
1504
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1189
1505
|
...props
|
|
1190
1506
|
},
|
|
1191
|
-
/* @__PURE__ */
|
|
1507
|
+
/* @__PURE__ */ React31.createElement(
|
|
1192
1508
|
"path",
|
|
1193
1509
|
{
|
|
1194
1510
|
d: "M21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12ZM23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12Z",
|
|
@@ -1206,7 +1522,7 @@ var Keys01_exports = {};
|
|
|
1206
1522
|
__export(Keys01_exports, {
|
|
1207
1523
|
default: () => Keys01_default
|
|
1208
1524
|
});
|
|
1209
|
-
import * as
|
|
1525
|
+
import * as React32 from "react";
|
|
1210
1526
|
var SvgKeys01, Keys01_default;
|
|
1211
1527
|
var init_Keys01 = __esm({
|
|
1212
1528
|
"src/react/Keys01.tsx"() {
|
|
@@ -1214,7 +1530,7 @@ var init_Keys01 = __esm({
|
|
|
1214
1530
|
init_types();
|
|
1215
1531
|
SvgKeys01 = ({ size = 16, ...props }) => {
|
|
1216
1532
|
const sizeValue = resolveSize(size);
|
|
1217
|
-
return /* @__PURE__ */
|
|
1533
|
+
return /* @__PURE__ */ React32.createElement(
|
|
1218
1534
|
"svg",
|
|
1219
1535
|
{
|
|
1220
1536
|
width: sizeValue,
|
|
@@ -1224,7 +1540,7 @@ var init_Keys01 = __esm({
|
|
|
1224
1540
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1225
1541
|
...props
|
|
1226
1542
|
},
|
|
1227
|
-
/* @__PURE__ */
|
|
1543
|
+
/* @__PURE__ */ React32.createElement(
|
|
1228
1544
|
"path",
|
|
1229
1545
|
{
|
|
1230
1546
|
fillRule: "evenodd",
|
|
@@ -1233,7 +1549,7 @@ var init_Keys01 = __esm({
|
|
|
1233
1549
|
fill: "currentColor"
|
|
1234
1550
|
}
|
|
1235
1551
|
),
|
|
1236
|
-
/* @__PURE__ */
|
|
1552
|
+
/* @__PURE__ */ React32.createElement(
|
|
1237
1553
|
"path",
|
|
1238
1554
|
{
|
|
1239
1555
|
fillRule: "evenodd",
|
|
@@ -1242,7 +1558,7 @@ var init_Keys01 = __esm({
|
|
|
1242
1558
|
fill: "currentColor"
|
|
1243
1559
|
}
|
|
1244
1560
|
),
|
|
1245
|
-
/* @__PURE__ */
|
|
1561
|
+
/* @__PURE__ */ React32.createElement(
|
|
1246
1562
|
"path",
|
|
1247
1563
|
{
|
|
1248
1564
|
fillRule: "evenodd",
|
|
@@ -1262,7 +1578,7 @@ var LeadsFilled_exports = {};
|
|
|
1262
1578
|
__export(LeadsFilled_exports, {
|
|
1263
1579
|
default: () => LeadsFilled_default
|
|
1264
1580
|
});
|
|
1265
|
-
import * as
|
|
1581
|
+
import * as React33 from "react";
|
|
1266
1582
|
var SvgLeadsFilled, LeadsFilled_default;
|
|
1267
1583
|
var init_LeadsFilled = __esm({
|
|
1268
1584
|
"src/react/LeadsFilled.tsx"() {
|
|
@@ -1270,7 +1586,7 @@ var init_LeadsFilled = __esm({
|
|
|
1270
1586
|
init_types();
|
|
1271
1587
|
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
1272
1588
|
const sizeValue = resolveSize(size);
|
|
1273
|
-
return /* @__PURE__ */
|
|
1589
|
+
return /* @__PURE__ */ React33.createElement(
|
|
1274
1590
|
"svg",
|
|
1275
1591
|
{
|
|
1276
1592
|
width: sizeValue,
|
|
@@ -1280,7 +1596,7 @@ var init_LeadsFilled = __esm({
|
|
|
1280
1596
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1281
1597
|
...props
|
|
1282
1598
|
},
|
|
1283
|
-
/* @__PURE__ */
|
|
1599
|
+
/* @__PURE__ */ React33.createElement(
|
|
1284
1600
|
"path",
|
|
1285
1601
|
{
|
|
1286
1602
|
fillRule: "evenodd",
|
|
@@ -1289,7 +1605,7 @@ var init_LeadsFilled = __esm({
|
|
|
1289
1605
|
fill: "currentColor"
|
|
1290
1606
|
}
|
|
1291
1607
|
),
|
|
1292
|
-
/* @__PURE__ */
|
|
1608
|
+
/* @__PURE__ */ React33.createElement(
|
|
1293
1609
|
"path",
|
|
1294
1610
|
{
|
|
1295
1611
|
fillRule: "evenodd",
|
|
@@ -1298,7 +1614,7 @@ var init_LeadsFilled = __esm({
|
|
|
1298
1614
|
fill: "currentColor"
|
|
1299
1615
|
}
|
|
1300
1616
|
),
|
|
1301
|
-
/* @__PURE__ */
|
|
1617
|
+
/* @__PURE__ */ React33.createElement(
|
|
1302
1618
|
"path",
|
|
1303
1619
|
{
|
|
1304
1620
|
fillRule: "evenodd",
|
|
@@ -1307,7 +1623,7 @@ var init_LeadsFilled = __esm({
|
|
|
1307
1623
|
fill: "currentColor"
|
|
1308
1624
|
}
|
|
1309
1625
|
),
|
|
1310
|
-
/* @__PURE__ */
|
|
1626
|
+
/* @__PURE__ */ React33.createElement(
|
|
1311
1627
|
"path",
|
|
1312
1628
|
{
|
|
1313
1629
|
fillRule: "evenodd",
|
|
@@ -1327,7 +1643,7 @@ var LeadsLinear_exports = {};
|
|
|
1327
1643
|
__export(LeadsLinear_exports, {
|
|
1328
1644
|
default: () => LeadsLinear_default
|
|
1329
1645
|
});
|
|
1330
|
-
import * as
|
|
1646
|
+
import * as React34 from "react";
|
|
1331
1647
|
var SvgLeadsLinear, LeadsLinear_default;
|
|
1332
1648
|
var init_LeadsLinear = __esm({
|
|
1333
1649
|
"src/react/LeadsLinear.tsx"() {
|
|
@@ -1335,7 +1651,7 @@ var init_LeadsLinear = __esm({
|
|
|
1335
1651
|
init_types();
|
|
1336
1652
|
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
1337
1653
|
const sizeValue = resolveSize(size);
|
|
1338
|
-
return /* @__PURE__ */
|
|
1654
|
+
return /* @__PURE__ */ React34.createElement(
|
|
1339
1655
|
"svg",
|
|
1340
1656
|
{
|
|
1341
1657
|
width: sizeValue,
|
|
@@ -1345,7 +1661,7 @@ var init_LeadsLinear = __esm({
|
|
|
1345
1661
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1346
1662
|
...props
|
|
1347
1663
|
},
|
|
1348
|
-
/* @__PURE__ */
|
|
1664
|
+
/* @__PURE__ */ React34.createElement(
|
|
1349
1665
|
"path",
|
|
1350
1666
|
{
|
|
1351
1667
|
fillRule: "evenodd",
|
|
@@ -1354,7 +1670,7 @@ var init_LeadsLinear = __esm({
|
|
|
1354
1670
|
fill: "currentColor"
|
|
1355
1671
|
}
|
|
1356
1672
|
),
|
|
1357
|
-
/* @__PURE__ */
|
|
1673
|
+
/* @__PURE__ */ React34.createElement(
|
|
1358
1674
|
"path",
|
|
1359
1675
|
{
|
|
1360
1676
|
fillRule: "evenodd",
|
|
@@ -1363,7 +1679,7 @@ var init_LeadsLinear = __esm({
|
|
|
1363
1679
|
fill: "currentColor"
|
|
1364
1680
|
}
|
|
1365
1681
|
),
|
|
1366
|
-
/* @__PURE__ */
|
|
1682
|
+
/* @__PURE__ */ React34.createElement(
|
|
1367
1683
|
"path",
|
|
1368
1684
|
{
|
|
1369
1685
|
fillRule: "evenodd",
|
|
@@ -1372,7 +1688,7 @@ var init_LeadsLinear = __esm({
|
|
|
1372
1688
|
fill: "currentColor"
|
|
1373
1689
|
}
|
|
1374
1690
|
),
|
|
1375
|
-
/* @__PURE__ */
|
|
1691
|
+
/* @__PURE__ */ React34.createElement(
|
|
1376
1692
|
"path",
|
|
1377
1693
|
{
|
|
1378
1694
|
fillRule: "evenodd",
|
|
@@ -1387,12 +1703,115 @@ var init_LeadsLinear = __esm({
|
|
|
1387
1703
|
}
|
|
1388
1704
|
});
|
|
1389
1705
|
|
|
1706
|
+
// src/react/Lock.tsx
|
|
1707
|
+
var Lock_exports = {};
|
|
1708
|
+
__export(Lock_exports, {
|
|
1709
|
+
default: () => Lock_default
|
|
1710
|
+
});
|
|
1711
|
+
import * as React35 from "react";
|
|
1712
|
+
var SvgLock, Lock_default;
|
|
1713
|
+
var init_Lock = __esm({
|
|
1714
|
+
"src/react/Lock.tsx"() {
|
|
1715
|
+
"use strict";
|
|
1716
|
+
init_types();
|
|
1717
|
+
SvgLock = ({ size = 16, ...props }) => {
|
|
1718
|
+
const sizeValue = resolveSize(size);
|
|
1719
|
+
return /* @__PURE__ */ React35.createElement(
|
|
1720
|
+
"svg",
|
|
1721
|
+
{
|
|
1722
|
+
width: sizeValue,
|
|
1723
|
+
height: sizeValue,
|
|
1724
|
+
viewBox: "0 0 24 24",
|
|
1725
|
+
fill: "none",
|
|
1726
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1727
|
+
...props
|
|
1728
|
+
},
|
|
1729
|
+
/* @__PURE__ */ React35.createElement(
|
|
1730
|
+
"path",
|
|
1731
|
+
{
|
|
1732
|
+
fillRule: "evenodd",
|
|
1733
|
+
clipRule: "evenodd",
|
|
1734
|
+
d: "M6.24415 11.1048C5.64691 11.1048 5.16276 11.589 5.16276 12.1862V19.7559C5.16276 20.3531 5.64691 20.8372 6.24415 20.8372H18.1393C18.7366 20.8372 19.2207 20.3531 19.2207 19.7559V12.1862C19.2207 11.589 18.7366 11.1048 18.1393 11.1048H6.24415ZM3 12.1862C3 10.3945 4.45245 8.94204 6.24415 8.94204H18.1393C19.931 8.94204 21.3835 10.3945 21.3835 12.1862V19.7559C21.3835 21.5475 19.931 23 18.1393 23H6.24415C4.45245 23 3 21.5475 3 19.7559V12.1862Z",
|
|
1735
|
+
fill: "currentColor"
|
|
1736
|
+
}
|
|
1737
|
+
),
|
|
1738
|
+
/* @__PURE__ */ React35.createElement(
|
|
1739
|
+
"path",
|
|
1740
|
+
{
|
|
1741
|
+
fillRule: "evenodd",
|
|
1742
|
+
clipRule: "evenodd",
|
|
1743
|
+
d: "M12.1917 3.16276C11.0445 3.16276 9.94433 3.61849 9.13314 4.42968C8.32194 5.24087 7.86622 6.34109 7.86622 7.48829V10.0234C7.86622 10.6206 7.38207 11.1048 6.78484 11.1048C6.18761 11.1048 5.70345 10.6206 5.70345 10.0234V7.48829C5.70345 5.76749 6.38704 4.11717 7.60383 2.90038C8.82062 1.68359 10.4709 1 12.1917 1C13.9125 1 15.5629 1.68359 16.7797 2.90038C17.9965 4.11717 18.68 5.76749 18.68 7.48829V10.0234C18.68 10.6206 18.1959 11.1048 17.5987 11.1048C17.0014 11.1048 16.5173 10.6206 16.5173 10.0234V7.48829C16.5173 6.34109 16.0615 5.24087 15.2504 4.42968C14.4392 3.61849 13.3389 3.16276 12.1917 3.16276Z",
|
|
1744
|
+
fill: "currentColor"
|
|
1745
|
+
}
|
|
1746
|
+
)
|
|
1747
|
+
);
|
|
1748
|
+
};
|
|
1749
|
+
Lock_default = SvgLock;
|
|
1750
|
+
}
|
|
1751
|
+
});
|
|
1752
|
+
|
|
1753
|
+
// src/react/Logout.tsx
|
|
1754
|
+
var Logout_exports = {};
|
|
1755
|
+
__export(Logout_exports, {
|
|
1756
|
+
default: () => Logout_default
|
|
1757
|
+
});
|
|
1758
|
+
import * as React36 from "react";
|
|
1759
|
+
var SvgLogout, Logout_default;
|
|
1760
|
+
var init_Logout = __esm({
|
|
1761
|
+
"src/react/Logout.tsx"() {
|
|
1762
|
+
"use strict";
|
|
1763
|
+
init_types();
|
|
1764
|
+
SvgLogout = ({ size = 16, ...props }) => {
|
|
1765
|
+
const sizeValue = resolveSize(size);
|
|
1766
|
+
return /* @__PURE__ */ React36.createElement(
|
|
1767
|
+
"svg",
|
|
1768
|
+
{
|
|
1769
|
+
width: sizeValue,
|
|
1770
|
+
height: sizeValue,
|
|
1771
|
+
viewBox: "0 0 24 24",
|
|
1772
|
+
fill: "none",
|
|
1773
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1774
|
+
...props
|
|
1775
|
+
},
|
|
1776
|
+
/* @__PURE__ */ React36.createElement(
|
|
1777
|
+
"path",
|
|
1778
|
+
{
|
|
1779
|
+
fillRule: "evenodd",
|
|
1780
|
+
clipRule: "evenodd",
|
|
1781
|
+
d: "M5 4C4.73478 4 4.48043 4.10536 4.29289 4.29289C4.10536 4.48043 4 4.73478 4 5V19C4 19.2652 4.10536 19.5196 4.29289 19.7071C4.48043 19.8946 4.73478 20 5 20H9C9.55228 20 10 20.4477 10 21C10 21.5523 9.55228 22 9 22H5C4.20435 22 3.44129 21.6839 2.87868 21.1213C2.31607 20.5587 2 19.7957 2 19V5C2 4.20435 2.31607 3.44129 2.87868 2.87868C3.44129 2.31607 4.20435 2 5 2H9C9.55228 2 10 2.44772 10 3C10 3.55228 9.55228 4 9 4H5Z",
|
|
1782
|
+
fill: "currentColor"
|
|
1783
|
+
}
|
|
1784
|
+
),
|
|
1785
|
+
/* @__PURE__ */ React36.createElement(
|
|
1786
|
+
"path",
|
|
1787
|
+
{
|
|
1788
|
+
fillRule: "evenodd",
|
|
1789
|
+
clipRule: "evenodd",
|
|
1790
|
+
d: "M15.2929 6.29289C15.6834 5.90237 16.3166 5.90237 16.7071 6.29289L21.7071 11.2929C22.0976 11.6834 22.0976 12.3166 21.7071 12.7071L16.7071 17.7071C16.3166 18.0976 15.6834 18.0976 15.2929 17.7071C14.9024 17.3166 14.9024 16.6834 15.2929 16.2929L19.5858 12L15.2929 7.70711C14.9024 7.31658 14.9024 6.68342 15.2929 6.29289Z",
|
|
1791
|
+
fill: "currentColor"
|
|
1792
|
+
}
|
|
1793
|
+
),
|
|
1794
|
+
/* @__PURE__ */ React36.createElement(
|
|
1795
|
+
"path",
|
|
1796
|
+
{
|
|
1797
|
+
fillRule: "evenodd",
|
|
1798
|
+
clipRule: "evenodd",
|
|
1799
|
+
d: "M8 12C8 11.4477 8.44772 11 9 11H21C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13H9C8.44772 13 8 12.5523 8 12Z",
|
|
1800
|
+
fill: "currentColor"
|
|
1801
|
+
}
|
|
1802
|
+
)
|
|
1803
|
+
);
|
|
1804
|
+
};
|
|
1805
|
+
Logout_default = SvgLogout;
|
|
1806
|
+
}
|
|
1807
|
+
});
|
|
1808
|
+
|
|
1390
1809
|
// src/react/Mail.tsx
|
|
1391
1810
|
var Mail_exports = {};
|
|
1392
1811
|
__export(Mail_exports, {
|
|
1393
1812
|
default: () => Mail_default
|
|
1394
1813
|
});
|
|
1395
|
-
import * as
|
|
1814
|
+
import * as React37 from "react";
|
|
1396
1815
|
var SvgMail, Mail_default;
|
|
1397
1816
|
var init_Mail = __esm({
|
|
1398
1817
|
"src/react/Mail.tsx"() {
|
|
@@ -1400,7 +1819,7 @@ var init_Mail = __esm({
|
|
|
1400
1819
|
init_types();
|
|
1401
1820
|
SvgMail = ({ size = 16, ...props }) => {
|
|
1402
1821
|
const sizeValue = resolveSize(size);
|
|
1403
|
-
return /* @__PURE__ */
|
|
1822
|
+
return /* @__PURE__ */ React37.createElement(
|
|
1404
1823
|
"svg",
|
|
1405
1824
|
{
|
|
1406
1825
|
width: sizeValue,
|
|
@@ -1410,7 +1829,7 @@ var init_Mail = __esm({
|
|
|
1410
1829
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1411
1830
|
...props
|
|
1412
1831
|
},
|
|
1413
|
-
/* @__PURE__ */
|
|
1832
|
+
/* @__PURE__ */ React37.createElement(
|
|
1414
1833
|
"path",
|
|
1415
1834
|
{
|
|
1416
1835
|
fillRule: "evenodd",
|
|
@@ -1419,7 +1838,7 @@ var init_Mail = __esm({
|
|
|
1419
1838
|
fill: "currentColor"
|
|
1420
1839
|
}
|
|
1421
1840
|
),
|
|
1422
|
-
/* @__PURE__ */
|
|
1841
|
+
/* @__PURE__ */ React37.createElement(
|
|
1423
1842
|
"path",
|
|
1424
1843
|
{
|
|
1425
1844
|
fillRule: "evenodd",
|
|
@@ -1439,7 +1858,7 @@ var Mortgage_exports = {};
|
|
|
1439
1858
|
__export(Mortgage_exports, {
|
|
1440
1859
|
default: () => Mortgage_default
|
|
1441
1860
|
});
|
|
1442
|
-
import * as
|
|
1861
|
+
import * as React38 from "react";
|
|
1443
1862
|
var SvgMortgage, Mortgage_default;
|
|
1444
1863
|
var init_Mortgage = __esm({
|
|
1445
1864
|
"src/react/Mortgage.tsx"() {
|
|
@@ -1447,7 +1866,7 @@ var init_Mortgage = __esm({
|
|
|
1447
1866
|
init_types();
|
|
1448
1867
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
1449
1868
|
const sizeValue = resolveSize(size);
|
|
1450
|
-
return /* @__PURE__ */
|
|
1869
|
+
return /* @__PURE__ */ React38.createElement(
|
|
1451
1870
|
"svg",
|
|
1452
1871
|
{
|
|
1453
1872
|
width: sizeValue,
|
|
@@ -1457,7 +1876,7 @@ var init_Mortgage = __esm({
|
|
|
1457
1876
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1458
1877
|
...props
|
|
1459
1878
|
},
|
|
1460
|
-
/* @__PURE__ */
|
|
1879
|
+
/* @__PURE__ */ React38.createElement(
|
|
1461
1880
|
"path",
|
|
1462
1881
|
{
|
|
1463
1882
|
fillRule: "evenodd",
|
|
@@ -1466,7 +1885,7 @@ var init_Mortgage = __esm({
|
|
|
1466
1885
|
fill: "currentColor"
|
|
1467
1886
|
}
|
|
1468
1887
|
),
|
|
1469
|
-
/* @__PURE__ */
|
|
1888
|
+
/* @__PURE__ */ React38.createElement(
|
|
1470
1889
|
"path",
|
|
1471
1890
|
{
|
|
1472
1891
|
fillRule: "evenodd",
|
|
@@ -1475,7 +1894,7 @@ var init_Mortgage = __esm({
|
|
|
1475
1894
|
fill: "currentColor"
|
|
1476
1895
|
}
|
|
1477
1896
|
),
|
|
1478
|
-
/* @__PURE__ */
|
|
1897
|
+
/* @__PURE__ */ React38.createElement(
|
|
1479
1898
|
"path",
|
|
1480
1899
|
{
|
|
1481
1900
|
fillRule: "evenodd",
|
|
@@ -1484,7 +1903,7 @@ var init_Mortgage = __esm({
|
|
|
1484
1903
|
fill: "currentColor"
|
|
1485
1904
|
}
|
|
1486
1905
|
),
|
|
1487
|
-
/* @__PURE__ */
|
|
1906
|
+
/* @__PURE__ */ React38.createElement(
|
|
1488
1907
|
"path",
|
|
1489
1908
|
{
|
|
1490
1909
|
fillRule: "evenodd",
|
|
@@ -1493,7 +1912,7 @@ var init_Mortgage = __esm({
|
|
|
1493
1912
|
fill: "currentColor"
|
|
1494
1913
|
}
|
|
1495
1914
|
),
|
|
1496
|
-
/* @__PURE__ */
|
|
1915
|
+
/* @__PURE__ */ React38.createElement(
|
|
1497
1916
|
"path",
|
|
1498
1917
|
{
|
|
1499
1918
|
fillRule: "evenodd",
|
|
@@ -1502,7 +1921,7 @@ var init_Mortgage = __esm({
|
|
|
1502
1921
|
fill: "currentColor"
|
|
1503
1922
|
}
|
|
1504
1923
|
),
|
|
1505
|
-
/* @__PURE__ */
|
|
1924
|
+
/* @__PURE__ */ React38.createElement(
|
|
1506
1925
|
"path",
|
|
1507
1926
|
{
|
|
1508
1927
|
fillRule: "evenodd",
|
|
@@ -1511,7 +1930,7 @@ var init_Mortgage = __esm({
|
|
|
1511
1930
|
fill: "currentColor"
|
|
1512
1931
|
}
|
|
1513
1932
|
),
|
|
1514
|
-
/* @__PURE__ */
|
|
1933
|
+
/* @__PURE__ */ React38.createElement(
|
|
1515
1934
|
"path",
|
|
1516
1935
|
{
|
|
1517
1936
|
fillRule: "evenodd",
|
|
@@ -1531,7 +1950,7 @@ var Note_exports = {};
|
|
|
1531
1950
|
__export(Note_exports, {
|
|
1532
1951
|
default: () => Note_default
|
|
1533
1952
|
});
|
|
1534
|
-
import * as
|
|
1953
|
+
import * as React39 from "react";
|
|
1535
1954
|
var SvgNote, Note_default;
|
|
1536
1955
|
var init_Note = __esm({
|
|
1537
1956
|
"src/react/Note.tsx"() {
|
|
@@ -1539,44 +1958,21 @@ var init_Note = __esm({
|
|
|
1539
1958
|
init_types();
|
|
1540
1959
|
SvgNote = ({ size = 16, ...props }) => {
|
|
1541
1960
|
const sizeValue = resolveSize(size);
|
|
1542
|
-
return /* @__PURE__ */
|
|
1961
|
+
return /* @__PURE__ */ React39.createElement(
|
|
1543
1962
|
"svg",
|
|
1544
1963
|
{
|
|
1545
1964
|
width: sizeValue,
|
|
1546
1965
|
height: sizeValue,
|
|
1547
|
-
viewBox: "0 0
|
|
1966
|
+
viewBox: "0 0 24 24",
|
|
1548
1967
|
fill: "none",
|
|
1549
1968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1550
1969
|
...props
|
|
1551
1970
|
},
|
|
1552
|
-
/* @__PURE__ */
|
|
1553
|
-
"path",
|
|
1554
|
-
{
|
|
1555
|
-
d: "M4.66666 18.0834V9.33342C4.66666 8.09574 5.15832 6.90875 6.03349 6.03358C6.90866 5.15841 8.09565 4.66675 9.33332 4.66675H19.25C20.4877 4.66675 21.6747 5.15841 22.5498 6.03358C23.425 6.90875 23.9167 8.09574 23.9167 9.33342",
|
|
1556
|
-
stroke: "#1A1A1A",
|
|
1557
|
-
strokeWidth: 2.1,
|
|
1558
|
-
strokeLinecap: "round",
|
|
1559
|
-
strokeLinejoin: "round"
|
|
1560
|
-
}
|
|
1561
|
-
),
|
|
1562
|
-
/* @__PURE__ */ React32.createElement(
|
|
1563
|
-
"path",
|
|
1564
|
-
{
|
|
1565
|
-
d: "M19.25 4.66675H9.33332C8.09565 4.66675 6.90866 5.15841 6.03349 6.03358C5.15832 6.90875 4.66666 8.09574 4.66666 9.33342V19.2501C4.66666 20.4878 5.15832 21.6747 6.03349 22.5499C6.90866 23.4251 8.09565 23.9167 9.33332 23.9167H17.3168C17.9298 23.9168 18.5368 23.796 19.1031 23.5614C19.6694 23.3268 20.1839 22.9829 20.6173 22.5494L22.5493 20.6174C22.9828 20.184 23.3267 19.6695 23.5613 19.1032C23.7959 18.5369 23.9167 17.9299 23.9167 17.3169V9.33342C23.9167 8.09574 23.425 6.90875 22.5498 6.03358C21.6747 5.15841 20.4877 4.66675 19.25 4.66675Z",
|
|
1566
|
-
stroke: "#1A1A1A",
|
|
1567
|
-
strokeWidth: 2.1,
|
|
1568
|
-
strokeLinecap: "round",
|
|
1569
|
-
strokeLinejoin: "round"
|
|
1570
|
-
}
|
|
1571
|
-
),
|
|
1572
|
-
/* @__PURE__ */ React32.createElement(
|
|
1971
|
+
/* @__PURE__ */ React39.createElement(
|
|
1573
1972
|
"path",
|
|
1574
1973
|
{
|
|
1575
|
-
d: "
|
|
1576
|
-
|
|
1577
|
-
strokeWidth: 2.1,
|
|
1578
|
-
strokeLinecap: "round",
|
|
1579
|
-
strokeLinejoin: "round"
|
|
1974
|
+
d: "M2.09961 19V5C2.09961 4.23087 2.40536 3.49307 2.94922 2.94922C3.49307 2.40536 4.23087 2.09961 5 2.09961H16L16.0889 2.10449C16.2949 2.12493 16.489 2.21558 16.6367 2.36328L21.6367 7.36328C21.8055 7.53206 21.9004 7.76131 21.9004 8V19C21.9004 19.7691 21.5946 20.5069 21.0508 21.0508C20.5069 21.5946 19.7691 21.9004 19 21.9004H5C4.23087 21.9004 3.49307 21.5946 2.94922 21.0508C2.40536 20.5069 2.09961 19.7691 2.09961 19ZM15.9004 7C15.9004 7.29174 16.0164 7.57105 16.2227 7.77734C16.4289 7.98363 16.7083 8.09961 17 8.09961H19.8262L15.9004 4.17383V7ZM3.90039 19C3.90039 19.2917 4.01637 19.5711 4.22266 19.7773C4.42895 19.9836 4.70826 20.0996 5 20.0996H19C19.2917 20.0996 19.5711 19.9836 19.7773 19.7773C19.9836 19.5711 20.0996 19.2917 20.0996 19V9.90039H17C16.2309 9.90039 15.4931 9.59464 14.9492 9.05078C14.4054 8.50693 14.0996 7.76913 14.0996 7V3.90039H5C4.70826 3.90039 4.42895 4.01637 4.22266 4.22266C4.01637 4.42895 3.90039 4.70826 3.90039 5V19Z",
|
|
1975
|
+
fill: "currentColor"
|
|
1580
1976
|
}
|
|
1581
1977
|
)
|
|
1582
1978
|
);
|
|
@@ -1590,7 +1986,7 @@ var Payments_exports = {};
|
|
|
1590
1986
|
__export(Payments_exports, {
|
|
1591
1987
|
default: () => Payments_default
|
|
1592
1988
|
});
|
|
1593
|
-
import * as
|
|
1989
|
+
import * as React40 from "react";
|
|
1594
1990
|
var SvgPayments, Payments_default;
|
|
1595
1991
|
var init_Payments = __esm({
|
|
1596
1992
|
"src/react/Payments.tsx"() {
|
|
@@ -1598,7 +1994,7 @@ var init_Payments = __esm({
|
|
|
1598
1994
|
init_types();
|
|
1599
1995
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
1600
1996
|
const sizeValue = resolveSize(size);
|
|
1601
|
-
return /* @__PURE__ */
|
|
1997
|
+
return /* @__PURE__ */ React40.createElement(
|
|
1602
1998
|
"svg",
|
|
1603
1999
|
{
|
|
1604
2000
|
width: sizeValue,
|
|
@@ -1608,7 +2004,7 @@ var init_Payments = __esm({
|
|
|
1608
2004
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1609
2005
|
...props
|
|
1610
2006
|
},
|
|
1611
|
-
/* @__PURE__ */
|
|
2007
|
+
/* @__PURE__ */ React40.createElement(
|
|
1612
2008
|
"path",
|
|
1613
2009
|
{
|
|
1614
2010
|
d: "M14 13C13.1667 13 12.4583 12.7083 11.875 12.125C11.2917 11.5417 11 10.8333 11 10C11 9.16667 11.2917 8.45833 11.875 7.875C12.4583 7.29167 13.1667 7 14 7C14.8333 7 15.5417 7.29167 16.125 7.875C16.7083 8.45833 17 9.16667 17 10C17 10.8333 16.7083 11.5417 16.125 12.125C15.5417 12.7083 14.8333 13 14 13ZM7 16C6.45 16 5.97917 15.8042 5.5875 15.4125C5.19583 15.0208 5 14.55 5 14V6C5 5.45 5.19583 4.97917 5.5875 4.5875C5.97917 4.19583 6.45 4 7 4H21C21.55 4 22.0208 4.19583 22.4125 4.5875C22.8042 4.97917 23 5.45 23 6V14C23 14.55 22.8042 15.0208 22.4125 15.4125C22.0208 15.8042 21.55 16 21 16H7ZM9 14H19C19 13.45 19.1958 12.9792 19.5875 12.5875C19.9792 12.1958 20.45 12 21 12V8C20.45 8 19.9792 7.80417 19.5875 7.4125C19.1958 7.02083 19 6.55 19 6H9C9 6.55 8.80417 7.02083 8.4125 7.4125C8.02083 7.80417 7.55 8 7 8V12C7.55 12 8.02083 12.1958 8.4125 12.5875C8.80417 12.9792 9 13.45 9 14ZM20 20H3C2.45 20 1.97917 19.8042 1.5875 19.4125C1.19583 19.0208 1 18.55 1 18V7H3V18H20V20Z",
|
|
@@ -1626,7 +2022,7 @@ var Plus_exports = {};
|
|
|
1626
2022
|
__export(Plus_exports, {
|
|
1627
2023
|
default: () => Plus_default
|
|
1628
2024
|
});
|
|
1629
|
-
import * as
|
|
2025
|
+
import * as React41 from "react";
|
|
1630
2026
|
var SvgPlus, Plus_default;
|
|
1631
2027
|
var init_Plus = __esm({
|
|
1632
2028
|
"src/react/Plus.tsx"() {
|
|
@@ -1634,20 +2030,20 @@ var init_Plus = __esm({
|
|
|
1634
2030
|
init_types();
|
|
1635
2031
|
SvgPlus = ({ size = 16, ...props }) => {
|
|
1636
2032
|
const sizeValue = resolveSize(size);
|
|
1637
|
-
return /* @__PURE__ */
|
|
2033
|
+
return /* @__PURE__ */ React41.createElement(
|
|
1638
2034
|
"svg",
|
|
1639
2035
|
{
|
|
1640
2036
|
width: sizeValue,
|
|
1641
2037
|
height: sizeValue,
|
|
1642
|
-
viewBox: "0 0
|
|
2038
|
+
viewBox: "0 0 24 24",
|
|
1643
2039
|
fill: "none",
|
|
1644
2040
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1645
2041
|
...props
|
|
1646
2042
|
},
|
|
1647
|
-
/* @__PURE__ */
|
|
2043
|
+
/* @__PURE__ */ React41.createElement(
|
|
1648
2044
|
"path",
|
|
1649
2045
|
{
|
|
1650
|
-
d: "
|
|
2046
|
+
d: "M11 19V13H5C4.44772 13 4 12.5523 4 12C4 11.4477 4.44772 11 5 11H11V5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5V11H19C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H13V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19Z",
|
|
1651
2047
|
fill: "currentColor"
|
|
1652
2048
|
}
|
|
1653
2049
|
)
|
|
@@ -1662,7 +2058,7 @@ var PropertiesFilled_exports = {};
|
|
|
1662
2058
|
__export(PropertiesFilled_exports, {
|
|
1663
2059
|
default: () => PropertiesFilled_default
|
|
1664
2060
|
});
|
|
1665
|
-
import * as
|
|
2061
|
+
import * as React42 from "react";
|
|
1666
2062
|
var SvgPropertiesFilled, PropertiesFilled_default;
|
|
1667
2063
|
var init_PropertiesFilled = __esm({
|
|
1668
2064
|
"src/react/PropertiesFilled.tsx"() {
|
|
@@ -1670,7 +2066,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1670
2066
|
init_types();
|
|
1671
2067
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
1672
2068
|
const sizeValue = resolveSize(size);
|
|
1673
|
-
return /* @__PURE__ */
|
|
2069
|
+
return /* @__PURE__ */ React42.createElement(
|
|
1674
2070
|
"svg",
|
|
1675
2071
|
{
|
|
1676
2072
|
width: sizeValue,
|
|
@@ -1680,7 +2076,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1680
2076
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1681
2077
|
...props
|
|
1682
2078
|
},
|
|
1683
|
-
/* @__PURE__ */
|
|
2079
|
+
/* @__PURE__ */ React42.createElement(
|
|
1684
2080
|
"path",
|
|
1685
2081
|
{
|
|
1686
2082
|
fillRule: "evenodd",
|
|
@@ -1689,7 +2085,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1689
2085
|
fill: "currentColor"
|
|
1690
2086
|
}
|
|
1691
2087
|
),
|
|
1692
|
-
/* @__PURE__ */
|
|
2088
|
+
/* @__PURE__ */ React42.createElement(
|
|
1693
2089
|
"path",
|
|
1694
2090
|
{
|
|
1695
2091
|
fillRule: "evenodd",
|
|
@@ -1698,7 +2094,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1698
2094
|
fill: "currentColor"
|
|
1699
2095
|
}
|
|
1700
2096
|
),
|
|
1701
|
-
/* @__PURE__ */
|
|
2097
|
+
/* @__PURE__ */ React42.createElement(
|
|
1702
2098
|
"path",
|
|
1703
2099
|
{
|
|
1704
2100
|
d: "M16.0356 0.902344C17.6923 0.902608 19.0356 2.24565 19.0356 3.90234V19.999C19.0356 21.6559 17.6915 22.999 16.0347 22.999H8.00049C6.34363 22.999 5.00049 21.6559 5.00049 19.999V3.90234C5.00049 2.24549 6.34363 0.902344 8.00049 0.902344H16.0356ZM10.0005 17C9.4482 17 9.00049 17.4477 9.00049 18C9.00051 18.5523 9.44822 19 10.0005 19H14.0005C14.5525 18.9997 15.0005 18.5521 15.0005 18C15.0005 17.4479 14.5525 17.0003 14.0005 17H10.0005ZM10.0005 13C9.4482 13 9.00049 13.4477 9.00049 14C9.00051 14.5523 9.44822 15 10.0005 15H14.0005C14.5525 14.9997 15.0005 14.5521 15.0005 14C15.0005 13.4479 14.5525 13.0003 14.0005 13H10.0005ZM10.0005 9C9.4482 9 9.00049 9.44771 9.00049 10C9.00051 10.5523 9.44822 11 10.0005 11H14.0005C14.5525 10.9997 15.0005 10.5521 15.0005 10C15.0005 9.44788 14.5525 9.00026 14.0005 9H10.0005ZM10.0005 5C9.4482 5 9.00049 5.44772 9.00049 6C9.00051 6.55226 9.44822 7 10.0005 7H14.0005C14.5525 6.99974 15.0005 6.5521 15.0005 6C15.0005 5.44788 14.5525 5.00026 14.0005 5H10.0005Z",
|
|
@@ -1716,7 +2112,7 @@ var PropertiesLinear_exports = {};
|
|
|
1716
2112
|
__export(PropertiesLinear_exports, {
|
|
1717
2113
|
default: () => PropertiesLinear_default
|
|
1718
2114
|
});
|
|
1719
|
-
import * as
|
|
2115
|
+
import * as React43 from "react";
|
|
1720
2116
|
var SvgPropertiesLinear, PropertiesLinear_default;
|
|
1721
2117
|
var init_PropertiesLinear = __esm({
|
|
1722
2118
|
"src/react/PropertiesLinear.tsx"() {
|
|
@@ -1724,7 +2120,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1724
2120
|
init_types();
|
|
1725
2121
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
1726
2122
|
const sizeValue = resolveSize(size);
|
|
1727
|
-
return /* @__PURE__ */
|
|
2123
|
+
return /* @__PURE__ */ React43.createElement(
|
|
1728
2124
|
"svg",
|
|
1729
2125
|
{
|
|
1730
2126
|
width: sizeValue,
|
|
@@ -1734,7 +2130,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1734
2130
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1735
2131
|
...props
|
|
1736
2132
|
},
|
|
1737
|
-
/* @__PURE__ */
|
|
2133
|
+
/* @__PURE__ */ React43.createElement(
|
|
1738
2134
|
"path",
|
|
1739
2135
|
{
|
|
1740
2136
|
fillRule: "evenodd",
|
|
@@ -1743,7 +2139,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1743
2139
|
fill: "currentColor"
|
|
1744
2140
|
}
|
|
1745
2141
|
),
|
|
1746
|
-
/* @__PURE__ */
|
|
2142
|
+
/* @__PURE__ */ React43.createElement(
|
|
1747
2143
|
"path",
|
|
1748
2144
|
{
|
|
1749
2145
|
fillRule: "evenodd",
|
|
@@ -1752,7 +2148,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1752
2148
|
fill: "currentColor"
|
|
1753
2149
|
}
|
|
1754
2150
|
),
|
|
1755
|
-
/* @__PURE__ */
|
|
2151
|
+
/* @__PURE__ */ React43.createElement(
|
|
1756
2152
|
"path",
|
|
1757
2153
|
{
|
|
1758
2154
|
fillRule: "evenodd",
|
|
@@ -1761,7 +2157,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1761
2157
|
fill: "currentColor"
|
|
1762
2158
|
}
|
|
1763
2159
|
),
|
|
1764
|
-
/* @__PURE__ */
|
|
2160
|
+
/* @__PURE__ */ React43.createElement(
|
|
1765
2161
|
"path",
|
|
1766
2162
|
{
|
|
1767
2163
|
fillRule: "evenodd",
|
|
@@ -1770,7 +2166,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1770
2166
|
fill: "currentColor"
|
|
1771
2167
|
}
|
|
1772
2168
|
),
|
|
1773
|
-
/* @__PURE__ */
|
|
2169
|
+
/* @__PURE__ */ React43.createElement(
|
|
1774
2170
|
"path",
|
|
1775
2171
|
{
|
|
1776
2172
|
fillRule: "evenodd",
|
|
@@ -1779,7 +2175,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1779
2175
|
fill: "currentColor"
|
|
1780
2176
|
}
|
|
1781
2177
|
),
|
|
1782
|
-
/* @__PURE__ */
|
|
2178
|
+
/* @__PURE__ */ React43.createElement(
|
|
1783
2179
|
"path",
|
|
1784
2180
|
{
|
|
1785
2181
|
fillRule: "evenodd",
|
|
@@ -1788,7 +2184,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1788
2184
|
fill: "currentColor"
|
|
1789
2185
|
}
|
|
1790
2186
|
),
|
|
1791
|
-
/* @__PURE__ */
|
|
2187
|
+
/* @__PURE__ */ React43.createElement(
|
|
1792
2188
|
"path",
|
|
1793
2189
|
{
|
|
1794
2190
|
fillRule: "evenodd",
|
|
@@ -1808,7 +2204,7 @@ var Rent_exports = {};
|
|
|
1808
2204
|
__export(Rent_exports, {
|
|
1809
2205
|
default: () => Rent_default
|
|
1810
2206
|
});
|
|
1811
|
-
import * as
|
|
2207
|
+
import * as React44 from "react";
|
|
1812
2208
|
var SvgRent, Rent_default;
|
|
1813
2209
|
var init_Rent = __esm({
|
|
1814
2210
|
"src/react/Rent.tsx"() {
|
|
@@ -1816,7 +2212,7 @@ var init_Rent = __esm({
|
|
|
1816
2212
|
init_types();
|
|
1817
2213
|
SvgRent = ({ size = 16, ...props }) => {
|
|
1818
2214
|
const sizeValue = resolveSize(size);
|
|
1819
|
-
return /* @__PURE__ */
|
|
2215
|
+
return /* @__PURE__ */ React44.createElement(
|
|
1820
2216
|
"svg",
|
|
1821
2217
|
{
|
|
1822
2218
|
width: sizeValue,
|
|
@@ -1826,7 +2222,7 @@ var init_Rent = __esm({
|
|
|
1826
2222
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1827
2223
|
...props
|
|
1828
2224
|
},
|
|
1829
|
-
/* @__PURE__ */
|
|
2225
|
+
/* @__PURE__ */ React44.createElement(
|
|
1830
2226
|
"path",
|
|
1831
2227
|
{
|
|
1832
2228
|
fillRule: "evenodd",
|
|
@@ -1835,7 +2231,7 @@ var init_Rent = __esm({
|
|
|
1835
2231
|
fill: "currentColor"
|
|
1836
2232
|
}
|
|
1837
2233
|
),
|
|
1838
|
-
/* @__PURE__ */
|
|
2234
|
+
/* @__PURE__ */ React44.createElement(
|
|
1839
2235
|
"path",
|
|
1840
2236
|
{
|
|
1841
2237
|
fillRule: "evenodd",
|
|
@@ -1844,7 +2240,7 @@ var init_Rent = __esm({
|
|
|
1844
2240
|
fill: "currentColor"
|
|
1845
2241
|
}
|
|
1846
2242
|
),
|
|
1847
|
-
/* @__PURE__ */
|
|
2243
|
+
/* @__PURE__ */ React44.createElement(
|
|
1848
2244
|
"path",
|
|
1849
2245
|
{
|
|
1850
2246
|
fillRule: "evenodd",
|
|
@@ -1864,7 +2260,7 @@ var Search_exports = {};
|
|
|
1864
2260
|
__export(Search_exports, {
|
|
1865
2261
|
default: () => Search_default
|
|
1866
2262
|
});
|
|
1867
|
-
import * as
|
|
2263
|
+
import * as React45 from "react";
|
|
1868
2264
|
var SvgSearch, Search_default;
|
|
1869
2265
|
var init_Search = __esm({
|
|
1870
2266
|
"src/react/Search.tsx"() {
|
|
@@ -1872,7 +2268,7 @@ var init_Search = __esm({
|
|
|
1872
2268
|
init_types();
|
|
1873
2269
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
1874
2270
|
const sizeValue = resolveSize(size);
|
|
1875
|
-
return /* @__PURE__ */
|
|
2271
|
+
return /* @__PURE__ */ React45.createElement(
|
|
1876
2272
|
"svg",
|
|
1877
2273
|
{
|
|
1878
2274
|
width: sizeValue,
|
|
@@ -1882,7 +2278,7 @@ var init_Search = __esm({
|
|
|
1882
2278
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1883
2279
|
...props
|
|
1884
2280
|
},
|
|
1885
|
-
/* @__PURE__ */
|
|
2281
|
+
/* @__PURE__ */ React45.createElement(
|
|
1886
2282
|
"path",
|
|
1887
2283
|
{
|
|
1888
2284
|
fillRule: "evenodd",
|
|
@@ -1891,7 +2287,7 @@ var init_Search = __esm({
|
|
|
1891
2287
|
fill: "currentColor"
|
|
1892
2288
|
}
|
|
1893
2289
|
),
|
|
1894
|
-
/* @__PURE__ */
|
|
2290
|
+
/* @__PURE__ */ React45.createElement(
|
|
1895
2291
|
"path",
|
|
1896
2292
|
{
|
|
1897
2293
|
fillRule: "evenodd",
|
|
@@ -1911,7 +2307,7 @@ var SearchX_exports = {};
|
|
|
1911
2307
|
__export(SearchX_exports, {
|
|
1912
2308
|
default: () => SearchX_default
|
|
1913
2309
|
});
|
|
1914
|
-
import * as
|
|
2310
|
+
import * as React46 from "react";
|
|
1915
2311
|
var SvgSearchX, SearchX_default;
|
|
1916
2312
|
var init_SearchX = __esm({
|
|
1917
2313
|
"src/react/SearchX.tsx"() {
|
|
@@ -1919,7 +2315,7 @@ var init_SearchX = __esm({
|
|
|
1919
2315
|
init_types();
|
|
1920
2316
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
1921
2317
|
const sizeValue = resolveSize(size);
|
|
1922
|
-
return /* @__PURE__ */
|
|
2318
|
+
return /* @__PURE__ */ React46.createElement(
|
|
1923
2319
|
"svg",
|
|
1924
2320
|
{
|
|
1925
2321
|
width: sizeValue,
|
|
@@ -1929,7 +2325,7 @@ var init_SearchX = __esm({
|
|
|
1929
2325
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1930
2326
|
...props
|
|
1931
2327
|
},
|
|
1932
|
-
/* @__PURE__ */
|
|
2328
|
+
/* @__PURE__ */ React46.createElement(
|
|
1933
2329
|
"path",
|
|
1934
2330
|
{
|
|
1935
2331
|
fillRule: "evenodd",
|
|
@@ -1938,7 +2334,7 @@ var init_SearchX = __esm({
|
|
|
1938
2334
|
fill: "currentColor"
|
|
1939
2335
|
}
|
|
1940
2336
|
),
|
|
1941
|
-
/* @__PURE__ */
|
|
2337
|
+
/* @__PURE__ */ React46.createElement(
|
|
1942
2338
|
"path",
|
|
1943
2339
|
{
|
|
1944
2340
|
fillRule: "evenodd",
|
|
@@ -1947,7 +2343,7 @@ var init_SearchX = __esm({
|
|
|
1947
2343
|
fill: "currentColor"
|
|
1948
2344
|
}
|
|
1949
2345
|
),
|
|
1950
|
-
/* @__PURE__ */
|
|
2346
|
+
/* @__PURE__ */ React46.createElement(
|
|
1951
2347
|
"path",
|
|
1952
2348
|
{
|
|
1953
2349
|
fillRule: "evenodd",
|
|
@@ -1956,7 +2352,7 @@ var init_SearchX = __esm({
|
|
|
1956
2352
|
fill: "currentColor"
|
|
1957
2353
|
}
|
|
1958
2354
|
),
|
|
1959
|
-
/* @__PURE__ */
|
|
2355
|
+
/* @__PURE__ */ React46.createElement(
|
|
1960
2356
|
"path",
|
|
1961
2357
|
{
|
|
1962
2358
|
fillRule: "evenodd",
|
|
@@ -1976,7 +2372,7 @@ var Share_exports = {};
|
|
|
1976
2372
|
__export(Share_exports, {
|
|
1977
2373
|
default: () => Share_default
|
|
1978
2374
|
});
|
|
1979
|
-
import * as
|
|
2375
|
+
import * as React47 from "react";
|
|
1980
2376
|
var SvgShare, Share_default;
|
|
1981
2377
|
var init_Share = __esm({
|
|
1982
2378
|
"src/react/Share.tsx"() {
|
|
@@ -1984,7 +2380,7 @@ var init_Share = __esm({
|
|
|
1984
2380
|
init_types();
|
|
1985
2381
|
SvgShare = ({ size = 16, ...props }) => {
|
|
1986
2382
|
const sizeValue = resolveSize(size);
|
|
1987
|
-
return /* @__PURE__ */
|
|
2383
|
+
return /* @__PURE__ */ React47.createElement(
|
|
1988
2384
|
"svg",
|
|
1989
2385
|
{
|
|
1990
2386
|
width: sizeValue,
|
|
@@ -1994,7 +2390,7 @@ var init_Share = __esm({
|
|
|
1994
2390
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1995
2391
|
...props
|
|
1996
2392
|
},
|
|
1997
|
-
/* @__PURE__ */
|
|
2393
|
+
/* @__PURE__ */ React47.createElement(
|
|
1998
2394
|
"path",
|
|
1999
2395
|
{
|
|
2000
2396
|
fillRule: "evenodd",
|
|
@@ -2003,7 +2399,7 @@ var init_Share = __esm({
|
|
|
2003
2399
|
fill: "currentColor"
|
|
2004
2400
|
}
|
|
2005
2401
|
),
|
|
2006
|
-
/* @__PURE__ */
|
|
2402
|
+
/* @__PURE__ */ React47.createElement(
|
|
2007
2403
|
"path",
|
|
2008
2404
|
{
|
|
2009
2405
|
fillRule: "evenodd",
|
|
@@ -2012,7 +2408,7 @@ var init_Share = __esm({
|
|
|
2012
2408
|
fill: "currentColor"
|
|
2013
2409
|
}
|
|
2014
2410
|
),
|
|
2015
|
-
/* @__PURE__ */
|
|
2411
|
+
/* @__PURE__ */ React47.createElement(
|
|
2016
2412
|
"path",
|
|
2017
2413
|
{
|
|
2018
2414
|
fillRule: "evenodd",
|
|
@@ -2032,7 +2428,7 @@ var Trash2_exports = {};
|
|
|
2032
2428
|
__export(Trash2_exports, {
|
|
2033
2429
|
default: () => Trash2_default
|
|
2034
2430
|
});
|
|
2035
|
-
import * as
|
|
2431
|
+
import * as React48 from "react";
|
|
2036
2432
|
var SvgTrash2, Trash2_default;
|
|
2037
2433
|
var init_Trash2 = __esm({
|
|
2038
2434
|
"src/react/Trash2.tsx"() {
|
|
@@ -2040,7 +2436,7 @@ var init_Trash2 = __esm({
|
|
|
2040
2436
|
init_types();
|
|
2041
2437
|
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
2042
2438
|
const sizeValue = resolveSize(size);
|
|
2043
|
-
return /* @__PURE__ */
|
|
2439
|
+
return /* @__PURE__ */ React48.createElement(
|
|
2044
2440
|
"svg",
|
|
2045
2441
|
{
|
|
2046
2442
|
width: sizeValue,
|
|
@@ -2050,7 +2446,7 @@ var init_Trash2 = __esm({
|
|
|
2050
2446
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2051
2447
|
...props
|
|
2052
2448
|
},
|
|
2053
|
-
/* @__PURE__ */
|
|
2449
|
+
/* @__PURE__ */ React48.createElement(
|
|
2054
2450
|
"path",
|
|
2055
2451
|
{
|
|
2056
2452
|
fillRule: "evenodd",
|
|
@@ -2059,7 +2455,7 @@ var init_Trash2 = __esm({
|
|
|
2059
2455
|
fill: "currentColor"
|
|
2060
2456
|
}
|
|
2061
2457
|
),
|
|
2062
|
-
/* @__PURE__ */
|
|
2458
|
+
/* @__PURE__ */ React48.createElement(
|
|
2063
2459
|
"path",
|
|
2064
2460
|
{
|
|
2065
2461
|
fillRule: "evenodd",
|
|
@@ -2068,7 +2464,7 @@ var init_Trash2 = __esm({
|
|
|
2068
2464
|
fill: "currentColor"
|
|
2069
2465
|
}
|
|
2070
2466
|
),
|
|
2071
|
-
/* @__PURE__ */
|
|
2467
|
+
/* @__PURE__ */ React48.createElement(
|
|
2072
2468
|
"path",
|
|
2073
2469
|
{
|
|
2074
2470
|
fillRule: "evenodd",
|
|
@@ -2077,7 +2473,7 @@ var init_Trash2 = __esm({
|
|
|
2077
2473
|
fill: "currentColor"
|
|
2078
2474
|
}
|
|
2079
2475
|
),
|
|
2080
|
-
/* @__PURE__ */
|
|
2476
|
+
/* @__PURE__ */ React48.createElement(
|
|
2081
2477
|
"path",
|
|
2082
2478
|
{
|
|
2083
2479
|
fillRule: "evenodd",
|
|
@@ -2086,7 +2482,7 @@ var init_Trash2 = __esm({
|
|
|
2086
2482
|
fill: "currentColor"
|
|
2087
2483
|
}
|
|
2088
2484
|
),
|
|
2089
|
-
/* @__PURE__ */
|
|
2485
|
+
/* @__PURE__ */ React48.createElement(
|
|
2090
2486
|
"path",
|
|
2091
2487
|
{
|
|
2092
2488
|
fillRule: "evenodd",
|
|
@@ -2106,7 +2502,7 @@ var User_exports = {};
|
|
|
2106
2502
|
__export(User_exports, {
|
|
2107
2503
|
default: () => User_default
|
|
2108
2504
|
});
|
|
2109
|
-
import * as
|
|
2505
|
+
import * as React49 from "react";
|
|
2110
2506
|
var SvgUser, User_default;
|
|
2111
2507
|
var init_User = __esm({
|
|
2112
2508
|
"src/react/User.tsx"() {
|
|
@@ -2114,7 +2510,7 @@ var init_User = __esm({
|
|
|
2114
2510
|
init_types();
|
|
2115
2511
|
SvgUser = ({ size = 16, ...props }) => {
|
|
2116
2512
|
const sizeValue = resolveSize(size);
|
|
2117
|
-
return /* @__PURE__ */
|
|
2513
|
+
return /* @__PURE__ */ React49.createElement(
|
|
2118
2514
|
"svg",
|
|
2119
2515
|
{
|
|
2120
2516
|
width: sizeValue,
|
|
@@ -2124,7 +2520,7 @@ var init_User = __esm({
|
|
|
2124
2520
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2125
2521
|
...props
|
|
2126
2522
|
},
|
|
2127
|
-
/* @__PURE__ */
|
|
2523
|
+
/* @__PURE__ */ React49.createElement(
|
|
2128
2524
|
"path",
|
|
2129
2525
|
{
|
|
2130
2526
|
fillRule: "evenodd",
|
|
@@ -2133,7 +2529,7 @@ var init_User = __esm({
|
|
|
2133
2529
|
fill: "currentColor"
|
|
2134
2530
|
}
|
|
2135
2531
|
),
|
|
2136
|
-
/* @__PURE__ */
|
|
2532
|
+
/* @__PURE__ */ React49.createElement(
|
|
2137
2533
|
"path",
|
|
2138
2534
|
{
|
|
2139
2535
|
fillRule: "evenodd",
|
|
@@ -2153,7 +2549,7 @@ var Whatsapp_exports = {};
|
|
|
2153
2549
|
__export(Whatsapp_exports, {
|
|
2154
2550
|
default: () => Whatsapp_default
|
|
2155
2551
|
});
|
|
2156
|
-
import * as
|
|
2552
|
+
import * as React50 from "react";
|
|
2157
2553
|
var SvgWhatsapp, Whatsapp_default;
|
|
2158
2554
|
var init_Whatsapp = __esm({
|
|
2159
2555
|
"src/react/Whatsapp.tsx"() {
|
|
@@ -2161,7 +2557,7 @@ var init_Whatsapp = __esm({
|
|
|
2161
2557
|
init_types();
|
|
2162
2558
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
2163
2559
|
const sizeValue = resolveSize(size);
|
|
2164
|
-
return /* @__PURE__ */
|
|
2560
|
+
return /* @__PURE__ */ React50.createElement(
|
|
2165
2561
|
"svg",
|
|
2166
2562
|
{
|
|
2167
2563
|
width: sizeValue,
|
|
@@ -2171,7 +2567,7 @@ var init_Whatsapp = __esm({
|
|
|
2171
2567
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2172
2568
|
...props
|
|
2173
2569
|
},
|
|
2174
|
-
/* @__PURE__ */
|
|
2570
|
+
/* @__PURE__ */ React50.createElement(
|
|
2175
2571
|
"path",
|
|
2176
2572
|
{
|
|
2177
2573
|
fillRule: "evenodd",
|
|
@@ -2194,6 +2590,7 @@ init_ArrowDownRight();
|
|
|
2194
2590
|
init_ArrowLeft();
|
|
2195
2591
|
init_ArrowRight();
|
|
2196
2592
|
init_ArrowUp();
|
|
2593
|
+
init_ArrowUpDown();
|
|
2197
2594
|
init_ArrowUpLeft();
|
|
2198
2595
|
init_ArrowUpRight();
|
|
2199
2596
|
init_Bell();
|
|
@@ -2209,13 +2606,19 @@ init_ExploreFilled();
|
|
|
2209
2606
|
init_ExploreLinear();
|
|
2210
2607
|
init_EyeHidden();
|
|
2211
2608
|
init_EyeVisible();
|
|
2609
|
+
init_FileCheck();
|
|
2212
2610
|
init_FileKey();
|
|
2611
|
+
init_FileLock();
|
|
2612
|
+
init_FileSpreadsheet();
|
|
2613
|
+
init_HelpCircle();
|
|
2213
2614
|
init_HomeFilled();
|
|
2214
2615
|
init_HomeLinear();
|
|
2215
2616
|
init_IconSlot();
|
|
2216
2617
|
init_Keys01();
|
|
2217
2618
|
init_LeadsFilled();
|
|
2218
2619
|
init_LeadsLinear();
|
|
2620
|
+
init_Lock();
|
|
2621
|
+
init_Logout();
|
|
2219
2622
|
init_Mail();
|
|
2220
2623
|
init_Mortgage();
|
|
2221
2624
|
init_Note();
|
|
@@ -2232,7 +2635,7 @@ init_User();
|
|
|
2232
2635
|
init_Whatsapp();
|
|
2233
2636
|
|
|
2234
2637
|
// src/react/Icon.tsx
|
|
2235
|
-
import * as
|
|
2638
|
+
import * as React51 from "react";
|
|
2236
2639
|
function loadIcon(name) {
|
|
2237
2640
|
switch (name) {
|
|
2238
2641
|
case "alert-triangle":
|
|
@@ -2249,6 +2652,8 @@ function loadIcon(name) {
|
|
|
2249
2652
|
return Promise.resolve().then(() => (init_ArrowRight(), ArrowRight_exports)).then((m) => m.default);
|
|
2250
2653
|
case "arrow-up":
|
|
2251
2654
|
return Promise.resolve().then(() => (init_ArrowUp(), ArrowUp_exports)).then((m) => m.default);
|
|
2655
|
+
case "arrow-up-down":
|
|
2656
|
+
return Promise.resolve().then(() => (init_ArrowUpDown(), ArrowUpDown_exports)).then((m) => m.default);
|
|
2252
2657
|
case "arrow-up-left":
|
|
2253
2658
|
return Promise.resolve().then(() => (init_ArrowUpLeft(), ArrowUpLeft_exports)).then((m) => m.default);
|
|
2254
2659
|
case "arrow-up-right":
|
|
@@ -2279,8 +2684,16 @@ function loadIcon(name) {
|
|
|
2279
2684
|
return Promise.resolve().then(() => (init_EyeHidden(), EyeHidden_exports)).then((m) => m.default);
|
|
2280
2685
|
case "eye-visible":
|
|
2281
2686
|
return Promise.resolve().then(() => (init_EyeVisible(), EyeVisible_exports)).then((m) => m.default);
|
|
2687
|
+
case "file-check":
|
|
2688
|
+
return Promise.resolve().then(() => (init_FileCheck(), FileCheck_exports)).then((m) => m.default);
|
|
2282
2689
|
case "file-key":
|
|
2283
2690
|
return Promise.resolve().then(() => (init_FileKey(), FileKey_exports)).then((m) => m.default);
|
|
2691
|
+
case "file-lock":
|
|
2692
|
+
return Promise.resolve().then(() => (init_FileLock(), FileLock_exports)).then((m) => m.default);
|
|
2693
|
+
case "file-spreadsheet":
|
|
2694
|
+
return Promise.resolve().then(() => (init_FileSpreadsheet(), FileSpreadsheet_exports)).then((m) => m.default);
|
|
2695
|
+
case "help-circle":
|
|
2696
|
+
return Promise.resolve().then(() => (init_HelpCircle(), HelpCircle_exports)).then((m) => m.default);
|
|
2284
2697
|
case "home-filled":
|
|
2285
2698
|
return Promise.resolve().then(() => (init_HomeFilled(), HomeFilled_exports)).then((m) => m.default);
|
|
2286
2699
|
case "home-linear":
|
|
@@ -2293,6 +2706,10 @@ function loadIcon(name) {
|
|
|
2293
2706
|
return Promise.resolve().then(() => (init_LeadsFilled(), LeadsFilled_exports)).then((m) => m.default);
|
|
2294
2707
|
case "leads-linear":
|
|
2295
2708
|
return Promise.resolve().then(() => (init_LeadsLinear(), LeadsLinear_exports)).then((m) => m.default);
|
|
2709
|
+
case "lock":
|
|
2710
|
+
return Promise.resolve().then(() => (init_Lock(), Lock_exports)).then((m) => m.default);
|
|
2711
|
+
case "logout":
|
|
2712
|
+
return Promise.resolve().then(() => (init_Logout(), Logout_exports)).then((m) => m.default);
|
|
2296
2713
|
case "mail":
|
|
2297
2714
|
return Promise.resolve().then(() => (init_Mail(), Mail_exports)).then((m) => m.default);
|
|
2298
2715
|
case "mortgage":
|
|
@@ -2326,10 +2743,10 @@ function loadIcon(name) {
|
|
|
2326
2743
|
}
|
|
2327
2744
|
}
|
|
2328
2745
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
2329
|
-
const [IconComponent, setIconComponent] =
|
|
2330
|
-
const [loading, setLoading] =
|
|
2331
|
-
const [error, setError] =
|
|
2332
|
-
|
|
2746
|
+
const [IconComponent, setIconComponent] = React51.useState(null);
|
|
2747
|
+
const [loading, setLoading] = React51.useState(true);
|
|
2748
|
+
const [error, setError] = React51.useState(null);
|
|
2749
|
+
React51.useEffect(() => {
|
|
2333
2750
|
setLoading(true);
|
|
2334
2751
|
setError(null);
|
|
2335
2752
|
loadIcon(name).then((Component) => {
|
|
@@ -2348,7 +2765,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
2348
2765
|
return null;
|
|
2349
2766
|
}
|
|
2350
2767
|
const style = color ? { ...props.style, color } : props.style;
|
|
2351
|
-
return /* @__PURE__ */
|
|
2768
|
+
return /* @__PURE__ */ React51.createElement(IconComponent, { size, ...props, style });
|
|
2352
2769
|
};
|
|
2353
2770
|
var Icon_default = Icon;
|
|
2354
2771
|
|
|
@@ -2362,6 +2779,7 @@ export {
|
|
|
2362
2779
|
ArrowLeft_default as ArrowLeft,
|
|
2363
2780
|
ArrowRight_default as ArrowRight,
|
|
2364
2781
|
ArrowUp_default as ArrowUp,
|
|
2782
|
+
ArrowUpDown_default as ArrowUpDown,
|
|
2365
2783
|
ArrowUpLeft_default as ArrowUpLeft,
|
|
2366
2784
|
ArrowUpRight_default as ArrowUpRight,
|
|
2367
2785
|
Bell_default as Bell,
|
|
@@ -2377,7 +2795,11 @@ export {
|
|
|
2377
2795
|
ExploreLinear_default as ExploreLinear,
|
|
2378
2796
|
EyeHidden_default as EyeHidden,
|
|
2379
2797
|
EyeVisible_default as EyeVisible,
|
|
2798
|
+
FileCheck_default as FileCheck,
|
|
2380
2799
|
FileKey_default as FileKey,
|
|
2800
|
+
FileLock_default as FileLock,
|
|
2801
|
+
FileSpreadsheet_default as FileSpreadsheet,
|
|
2802
|
+
HelpCircle_default as HelpCircle,
|
|
2381
2803
|
HomeFilled_default as HomeFilled,
|
|
2382
2804
|
HomeLinear_default as HomeLinear,
|
|
2383
2805
|
ICON_SIZES,
|
|
@@ -2386,6 +2808,8 @@ export {
|
|
|
2386
2808
|
Keys01_default as Keys01,
|
|
2387
2809
|
LeadsFilled_default as LeadsFilled,
|
|
2388
2810
|
LeadsLinear_default as LeadsLinear,
|
|
2811
|
+
Lock_default as Lock,
|
|
2812
|
+
Logout_default as Logout,
|
|
2389
2813
|
Mail_default as Mail,
|
|
2390
2814
|
Mortgage_default as Mortgage,
|
|
2391
2815
|
Note_default as Note,
|