huspy-icons 0.3.38 → 0.3.39
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 +157 -154
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +151 -150
- package/dist/fonts/HuspyIcons.ts +153 -150
- 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 +151 -150
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +4 -2
- package/dist/react/index.d.ts +4 -2
- package/dist/react/index.js +111 -51
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +103 -43
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +152 -151
- package/src/react/Icon.tsx +4 -1
- package/src/react/Upload.tsx +38 -0
- package/src/react/index.ts +1 -0
- package/src/react/index.tsx +1 -0
package/dist/react/index.mjs
CHANGED
|
@@ -8545,12 +8545,68 @@ var init_Trash2 = __esm({
|
|
|
8545
8545
|
}
|
|
8546
8546
|
});
|
|
8547
8547
|
|
|
8548
|
+
// src/react/Upload.tsx
|
|
8549
|
+
var Upload_exports = {};
|
|
8550
|
+
__export(Upload_exports, {
|
|
8551
|
+
default: () => Upload_default
|
|
8552
|
+
});
|
|
8553
|
+
import * as React151 from "react";
|
|
8554
|
+
var SvgUpload, Upload_default;
|
|
8555
|
+
var init_Upload = __esm({
|
|
8556
|
+
"src/react/Upload.tsx"() {
|
|
8557
|
+
"use strict";
|
|
8558
|
+
init_types();
|
|
8559
|
+
SvgUpload = ({ size = 16, ...props }) => {
|
|
8560
|
+
const sizeValue = resolveSize(size);
|
|
8561
|
+
return /* @__PURE__ */ React151.createElement(
|
|
8562
|
+
"svg",
|
|
8563
|
+
{
|
|
8564
|
+
width: sizeValue,
|
|
8565
|
+
height: sizeValue,
|
|
8566
|
+
viewBox: "0 0 24 24",
|
|
8567
|
+
fill: "none",
|
|
8568
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8569
|
+
...props
|
|
8570
|
+
},
|
|
8571
|
+
/* @__PURE__ */ React151.createElement(
|
|
8572
|
+
"path",
|
|
8573
|
+
{
|
|
8574
|
+
fillRule: "evenodd",
|
|
8575
|
+
clipRule: "evenodd",
|
|
8576
|
+
d: "M3 14C3.55228 14 4 14.4477 4 15V19C4 19.2652 4.10536 19.5196 4.29289 19.7071C4.48043 19.8946 4.73478 20 5 20H19C19.2652 20 19.5196 19.8946 19.7071 19.7071C19.8946 19.5196 20 19.2652 20 19V15C20 14.4477 20.4477 14 21 14C21.5523 14 22 14.4477 22 15V19C22 19.7957 21.6839 20.5587 21.1213 21.1213C20.5587 21.6839 19.7957 22 19 22H5C4.20435 22 3.44129 21.6839 2.87868 21.1213C2.31607 20.5587 2 19.7957 2 19V15C2 14.4477 2.44772 14 3 14Z",
|
|
8577
|
+
fill: "currentColor"
|
|
8578
|
+
}
|
|
8579
|
+
),
|
|
8580
|
+
/* @__PURE__ */ React151.createElement(
|
|
8581
|
+
"path",
|
|
8582
|
+
{
|
|
8583
|
+
fillRule: "evenodd",
|
|
8584
|
+
clipRule: "evenodd",
|
|
8585
|
+
d: "M11.2929 2.29289C11.6834 1.90237 12.3166 1.90237 12.7071 2.29289L17.7071 7.29289C18.0976 7.68342 18.0976 8.31658 17.7071 8.70711C17.3166 9.09763 16.6834 9.09763 16.2929 8.70711L12 4.41421L7.70711 8.70711C7.31658 9.09763 6.68342 9.09763 6.29289 8.70711C5.90237 8.31658 5.90237 7.68342 6.29289 7.29289L11.2929 2.29289Z",
|
|
8586
|
+
fill: "currentColor"
|
|
8587
|
+
}
|
|
8588
|
+
),
|
|
8589
|
+
/* @__PURE__ */ React151.createElement(
|
|
8590
|
+
"path",
|
|
8591
|
+
{
|
|
8592
|
+
fillRule: "evenodd",
|
|
8593
|
+
clipRule: "evenodd",
|
|
8594
|
+
d: "M12 2C12.5523 2 13 2.44772 13 3V15C13 15.5523 12.5523 16 12 16C11.4477 16 11 15.5523 11 15V3C11 2.44772 11.4477 2 12 2Z",
|
|
8595
|
+
fill: "currentColor"
|
|
8596
|
+
}
|
|
8597
|
+
)
|
|
8598
|
+
);
|
|
8599
|
+
};
|
|
8600
|
+
Upload_default = SvgUpload;
|
|
8601
|
+
}
|
|
8602
|
+
});
|
|
8603
|
+
|
|
8548
8604
|
// src/react/User.tsx
|
|
8549
8605
|
var User_exports = {};
|
|
8550
8606
|
__export(User_exports, {
|
|
8551
8607
|
default: () => User_default
|
|
8552
8608
|
});
|
|
8553
|
-
import * as
|
|
8609
|
+
import * as React152 from "react";
|
|
8554
8610
|
var SvgUser, User_default;
|
|
8555
8611
|
var init_User = __esm({
|
|
8556
8612
|
"src/react/User.tsx"() {
|
|
@@ -8558,7 +8614,7 @@ var init_User = __esm({
|
|
|
8558
8614
|
init_types();
|
|
8559
8615
|
SvgUser = ({ size = 16, ...props }) => {
|
|
8560
8616
|
const sizeValue = resolveSize(size);
|
|
8561
|
-
return /* @__PURE__ */
|
|
8617
|
+
return /* @__PURE__ */ React152.createElement(
|
|
8562
8618
|
"svg",
|
|
8563
8619
|
{
|
|
8564
8620
|
width: sizeValue,
|
|
@@ -8568,7 +8624,7 @@ var init_User = __esm({
|
|
|
8568
8624
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8569
8625
|
...props
|
|
8570
8626
|
},
|
|
8571
|
-
/* @__PURE__ */
|
|
8627
|
+
/* @__PURE__ */ React152.createElement(
|
|
8572
8628
|
"path",
|
|
8573
8629
|
{
|
|
8574
8630
|
fillRule: "evenodd",
|
|
@@ -8577,7 +8633,7 @@ var init_User = __esm({
|
|
|
8577
8633
|
fill: "currentColor"
|
|
8578
8634
|
}
|
|
8579
8635
|
),
|
|
8580
|
-
/* @__PURE__ */
|
|
8636
|
+
/* @__PURE__ */ React152.createElement(
|
|
8581
8637
|
"path",
|
|
8582
8638
|
{
|
|
8583
8639
|
fillRule: "evenodd",
|
|
@@ -8597,7 +8653,7 @@ var UserPlus_exports = {};
|
|
|
8597
8653
|
__export(UserPlus_exports, {
|
|
8598
8654
|
default: () => UserPlus_default
|
|
8599
8655
|
});
|
|
8600
|
-
import * as
|
|
8656
|
+
import * as React153 from "react";
|
|
8601
8657
|
var SvgUserPlus, UserPlus_default;
|
|
8602
8658
|
var init_UserPlus = __esm({
|
|
8603
8659
|
"src/react/UserPlus.tsx"() {
|
|
@@ -8605,7 +8661,7 @@ var init_UserPlus = __esm({
|
|
|
8605
8661
|
init_types();
|
|
8606
8662
|
SvgUserPlus = ({ size = 16, ...props }) => {
|
|
8607
8663
|
const sizeValue = resolveSize(size);
|
|
8608
|
-
return /* @__PURE__ */
|
|
8664
|
+
return /* @__PURE__ */ React153.createElement(
|
|
8609
8665
|
"svg",
|
|
8610
8666
|
{
|
|
8611
8667
|
width: sizeValue,
|
|
@@ -8615,7 +8671,7 @@ var init_UserPlus = __esm({
|
|
|
8615
8671
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8616
8672
|
...props
|
|
8617
8673
|
},
|
|
8618
|
-
/* @__PURE__ */
|
|
8674
|
+
/* @__PURE__ */ React153.createElement(
|
|
8619
8675
|
"path",
|
|
8620
8676
|
{
|
|
8621
8677
|
fillRule: "evenodd",
|
|
@@ -8624,7 +8680,7 @@ var init_UserPlus = __esm({
|
|
|
8624
8680
|
fill: "currentColor"
|
|
8625
8681
|
}
|
|
8626
8682
|
),
|
|
8627
|
-
/* @__PURE__ */
|
|
8683
|
+
/* @__PURE__ */ React153.createElement(
|
|
8628
8684
|
"path",
|
|
8629
8685
|
{
|
|
8630
8686
|
fillRule: "evenodd",
|
|
@@ -8633,7 +8689,7 @@ var init_UserPlus = __esm({
|
|
|
8633
8689
|
fill: "currentColor"
|
|
8634
8690
|
}
|
|
8635
8691
|
),
|
|
8636
|
-
/* @__PURE__ */
|
|
8692
|
+
/* @__PURE__ */ React153.createElement(
|
|
8637
8693
|
"path",
|
|
8638
8694
|
{
|
|
8639
8695
|
fillRule: "evenodd",
|
|
@@ -8642,7 +8698,7 @@ var init_UserPlus = __esm({
|
|
|
8642
8698
|
fill: "currentColor"
|
|
8643
8699
|
}
|
|
8644
8700
|
),
|
|
8645
|
-
/* @__PURE__ */
|
|
8701
|
+
/* @__PURE__ */ React153.createElement(
|
|
8646
8702
|
"path",
|
|
8647
8703
|
{
|
|
8648
8704
|
fillRule: "evenodd",
|
|
@@ -8662,7 +8718,7 @@ var UserSquare_exports = {};
|
|
|
8662
8718
|
__export(UserSquare_exports, {
|
|
8663
8719
|
default: () => UserSquare_default
|
|
8664
8720
|
});
|
|
8665
|
-
import * as
|
|
8721
|
+
import * as React154 from "react";
|
|
8666
8722
|
var SvgUserSquare, UserSquare_default;
|
|
8667
8723
|
var init_UserSquare = __esm({
|
|
8668
8724
|
"src/react/UserSquare.tsx"() {
|
|
@@ -8670,7 +8726,7 @@ var init_UserSquare = __esm({
|
|
|
8670
8726
|
init_types();
|
|
8671
8727
|
SvgUserSquare = ({ size = 16, ...props }) => {
|
|
8672
8728
|
const sizeValue = resolveSize(size);
|
|
8673
|
-
return /* @__PURE__ */
|
|
8729
|
+
return /* @__PURE__ */ React154.createElement(
|
|
8674
8730
|
"svg",
|
|
8675
8731
|
{
|
|
8676
8732
|
width: sizeValue,
|
|
@@ -8680,7 +8736,7 @@ var init_UserSquare = __esm({
|
|
|
8680
8736
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8681
8737
|
...props
|
|
8682
8738
|
},
|
|
8683
|
-
/* @__PURE__ */
|
|
8739
|
+
/* @__PURE__ */ React154.createElement(
|
|
8684
8740
|
"path",
|
|
8685
8741
|
{
|
|
8686
8742
|
d: "M19 2a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3zM5 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h1v-1a3 3 0 0 1 3-3h6a3 3 0 0 1 3 3v1h1a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1zm4 14a1 1 0 0 0-1 1v1h8v-1a1 1 0 0 0-1-1zm3-12a4 4 0 1 1 0 8 4 4 0 0 1 0-8m0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4",
|
|
@@ -8698,7 +8754,7 @@ var WalkInCloset_exports = {};
|
|
|
8698
8754
|
__export(WalkInCloset_exports, {
|
|
8699
8755
|
default: () => WalkInCloset_default
|
|
8700
8756
|
});
|
|
8701
|
-
import * as
|
|
8757
|
+
import * as React155 from "react";
|
|
8702
8758
|
var SvgWalkInCloset, WalkInCloset_default;
|
|
8703
8759
|
var init_WalkInCloset = __esm({
|
|
8704
8760
|
"src/react/WalkInCloset.tsx"() {
|
|
@@ -8706,7 +8762,7 @@ var init_WalkInCloset = __esm({
|
|
|
8706
8762
|
init_types();
|
|
8707
8763
|
SvgWalkInCloset = ({ size = 16, ...props }) => {
|
|
8708
8764
|
const sizeValue = resolveSize(size);
|
|
8709
|
-
return /* @__PURE__ */
|
|
8765
|
+
return /* @__PURE__ */ React155.createElement(
|
|
8710
8766
|
"svg",
|
|
8711
8767
|
{
|
|
8712
8768
|
width: sizeValue,
|
|
@@ -8716,7 +8772,7 @@ var init_WalkInCloset = __esm({
|
|
|
8716
8772
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8717
8773
|
...props
|
|
8718
8774
|
},
|
|
8719
|
-
/* @__PURE__ */
|
|
8775
|
+
/* @__PURE__ */ React155.createElement(
|
|
8720
8776
|
"path",
|
|
8721
8777
|
{
|
|
8722
8778
|
d: "M13.5576 2L13.7989 2.01465C14.0379 2.04381 14.2709 2.11613 14.4854 2.22852C14.7714 2.37846 15.0163 2.59589 15.2002 2.86133C15.3841 3.12676 15.5012 3.4325 15.541 3.75293C15.5809 4.07354 15.5431 4.39963 15.4297 4.70215L14.6504 6.77832L19.2403 11.8271C19.6117 12.2358 19.5815 12.8687 19.1729 13.2402C18.7642 13.6117 18.1313 13.5815 17.7598 13.1729L15.3184 10.4873L16.9756 17.7783C17.0518 18.1134 16.95 18.4641 16.7071 18.707L12.7071 22.707C12.3165 23.0976 11.6835 23.0976 11.293 22.707L7.293 18.707C7.05004 18.4641 6.94831 18.1134 7.02445 17.7783L9.45804 7.06934L8.57034 4.70215C8.45694 4.39963 8.41918 4.07354 8.45902 3.75293C8.49891 3.4325 8.61595 3.12676 8.79984 2.86133C8.98374 2.59589 9.22868 2.37846 9.51468 2.22852C9.80078 2.07861 10.1194 2.00016 10.4424 2H13.5576ZM9.09769 17.6836L12 20.5859L14.9014 17.6836L12.7012 8H11.2989L9.09769 17.6836ZM11.1934 6H12.8067L13.5567 4H10.4434L11.1934 6Z",
|
|
@@ -8734,7 +8790,7 @@ var Warehouse_exports = {};
|
|
|
8734
8790
|
__export(Warehouse_exports, {
|
|
8735
8791
|
default: () => Warehouse_default
|
|
8736
8792
|
});
|
|
8737
|
-
import * as
|
|
8793
|
+
import * as React156 from "react";
|
|
8738
8794
|
var SvgWarehouse, Warehouse_default;
|
|
8739
8795
|
var init_Warehouse = __esm({
|
|
8740
8796
|
"src/react/Warehouse.tsx"() {
|
|
@@ -8742,7 +8798,7 @@ var init_Warehouse = __esm({
|
|
|
8742
8798
|
init_types();
|
|
8743
8799
|
SvgWarehouse = ({ size = 16, ...props }) => {
|
|
8744
8800
|
const sizeValue = resolveSize(size);
|
|
8745
|
-
return /* @__PURE__ */
|
|
8801
|
+
return /* @__PURE__ */ React156.createElement(
|
|
8746
8802
|
"svg",
|
|
8747
8803
|
{
|
|
8748
8804
|
width: sizeValue,
|
|
@@ -8752,7 +8808,7 @@ var init_Warehouse = __esm({
|
|
|
8752
8808
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8753
8809
|
...props
|
|
8754
8810
|
},
|
|
8755
|
-
/* @__PURE__ */
|
|
8811
|
+
/* @__PURE__ */ React156.createElement(
|
|
8756
8812
|
"path",
|
|
8757
8813
|
{
|
|
8758
8814
|
fillRule: "evenodd",
|
|
@@ -8761,7 +8817,7 @@ var init_Warehouse = __esm({
|
|
|
8761
8817
|
fill: "currentColor"
|
|
8762
8818
|
}
|
|
8763
8819
|
),
|
|
8764
|
-
/* @__PURE__ */
|
|
8820
|
+
/* @__PURE__ */ React156.createElement(
|
|
8765
8821
|
"path",
|
|
8766
8822
|
{
|
|
8767
8823
|
fillRule: "evenodd",
|
|
@@ -8770,7 +8826,7 @@ var init_Warehouse = __esm({
|
|
|
8770
8826
|
fill: "currentColor"
|
|
8771
8827
|
}
|
|
8772
8828
|
),
|
|
8773
|
-
/* @__PURE__ */
|
|
8829
|
+
/* @__PURE__ */ React156.createElement(
|
|
8774
8830
|
"path",
|
|
8775
8831
|
{
|
|
8776
8832
|
fillRule: "evenodd",
|
|
@@ -8779,7 +8835,7 @@ var init_Warehouse = __esm({
|
|
|
8779
8835
|
fill: "currentColor"
|
|
8780
8836
|
}
|
|
8781
8837
|
),
|
|
8782
|
-
/* @__PURE__ */
|
|
8838
|
+
/* @__PURE__ */ React156.createElement(
|
|
8783
8839
|
"path",
|
|
8784
8840
|
{
|
|
8785
8841
|
fillRule: "evenodd",
|
|
@@ -8799,7 +8855,7 @@ var WashingMachine_exports = {};
|
|
|
8799
8855
|
__export(WashingMachine_exports, {
|
|
8800
8856
|
default: () => WashingMachine_default
|
|
8801
8857
|
});
|
|
8802
|
-
import * as
|
|
8858
|
+
import * as React157 from "react";
|
|
8803
8859
|
var SvgWashingMachine, WashingMachine_default;
|
|
8804
8860
|
var init_WashingMachine = __esm({
|
|
8805
8861
|
"src/react/WashingMachine.tsx"() {
|
|
@@ -8807,7 +8863,7 @@ var init_WashingMachine = __esm({
|
|
|
8807
8863
|
init_types();
|
|
8808
8864
|
SvgWashingMachine = ({ size = 16, ...props }) => {
|
|
8809
8865
|
const sizeValue = resolveSize(size);
|
|
8810
|
-
return /* @__PURE__ */
|
|
8866
|
+
return /* @__PURE__ */ React157.createElement(
|
|
8811
8867
|
"svg",
|
|
8812
8868
|
{
|
|
8813
8869
|
width: sizeValue,
|
|
@@ -8817,7 +8873,7 @@ var init_WashingMachine = __esm({
|
|
|
8817
8873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8818
8874
|
...props
|
|
8819
8875
|
},
|
|
8820
|
-
/* @__PURE__ */
|
|
8876
|
+
/* @__PURE__ */ React157.createElement(
|
|
8821
8877
|
"path",
|
|
8822
8878
|
{
|
|
8823
8879
|
fillRule: "evenodd",
|
|
@@ -8826,7 +8882,7 @@ var init_WashingMachine = __esm({
|
|
|
8826
8882
|
fill: "currentColor"
|
|
8827
8883
|
}
|
|
8828
8884
|
),
|
|
8829
|
-
/* @__PURE__ */
|
|
8885
|
+
/* @__PURE__ */ React157.createElement(
|
|
8830
8886
|
"path",
|
|
8831
8887
|
{
|
|
8832
8888
|
d: "M20.2002 9.24817H17.2969L17.0625 9.01379C15.7457 7.69561 13.9169 6.94348 12 6.94348C10.0825 6.94353 8.25519 7.69538 6.9375 9.01379L6.70312 9.24817H3.7998V19.92C3.7998 20.0261 3.842 20.1282 3.91699 20.2032C3.99201 20.2783 4.0941 20.3204 4.2002 20.3204H19.8008C19.9066 20.3203 20.0081 20.2781 20.083 20.2032C20.158 20.1282 20.2002 20.0261 20.2002 19.92V9.24817ZM15.7002 14.0001C15.7002 11.9565 14.0435 10.2999 12 10.2999C9.95648 10.2999 8.2998 11.9565 8.2998 14.0001C8.29989 16.0436 9.95654 17.7003 12 17.7003C14.0435 17.7003 15.7001 16.0436 15.7002 14.0001ZM20.2002 6.84192C20.0463 7.18906 19.778 7.47351 19.4424 7.64758H20.2002V6.84192ZM20.2002 5.04016C20.2002 4.93407 20.158 4.83198 20.083 4.75696C20.0081 4.68216 19.9066 4.63989 19.8008 4.63977H19.3438C19.7249 4.80659 20.0314 5.11126 20.2002 5.49133V5.04016ZM17.2998 14.0001C17.2997 16.9273 14.9271 19.2999 12 19.2999C9.0729 19.2999 6.70028 16.9273 6.7002 14.0001C6.7002 11.0729 9.07285 8.70032 12 8.70032C14.9272 8.70032 17.2998 11.0729 17.2998 14.0001ZM18.5996 6.16711C18.5996 6.20422 18.6299 6.23424 18.667 6.2345H18.6758C18.713 6.2345 18.7432 6.20438 18.7432 6.16711C18.7431 6.12991 18.713 6.09973 18.6758 6.09973H18.667C18.63 6.09999 18.5997 6.13007 18.5996 6.16711ZM3.7998 7.64758H6.05371C7.65435 6.17019 9.78349 5.34392 12 5.34387C13.9197 5.34387 15.7766 5.96348 17.2793 7.08997C17.1032 6.82564 17 6.50851 17 6.16711C17.0001 5.48373 17.4116 4.89726 18 4.63977H4.2002C4.0941 4.63977 3.99201 4.68194 3.91699 4.75696C3.84197 4.83198 3.7998 4.93407 3.7998 5.04016V7.64758ZM21.8008 19.92C21.8008 20.4503 21.5897 20.9591 21.2148 21.3341C20.8399 21.7091 20.3311 21.9199 19.8008 21.92H4.2002C3.66976 21.92 3.16121 21.7092 2.78613 21.3341C2.41108 20.959 2.2002 20.4505 2.2002 19.92V5.04016C2.2002 4.50972 2.41106 4.00118 2.78613 3.6261C3.16121 3.25102 3.66976 3.04016 4.2002 3.04016H19.8008C20.3311 3.04028 20.8399 3.25113 21.2148 3.6261C21.5897 4.00115 21.8008 4.50987 21.8008 5.04016V19.92Z",
|
|
@@ -8844,7 +8900,7 @@ var Whatsapp_exports = {};
|
|
|
8844
8900
|
__export(Whatsapp_exports, {
|
|
8845
8901
|
default: () => Whatsapp_default
|
|
8846
8902
|
});
|
|
8847
|
-
import * as
|
|
8903
|
+
import * as React158 from "react";
|
|
8848
8904
|
var SvgWhatsapp, Whatsapp_default;
|
|
8849
8905
|
var init_Whatsapp = __esm({
|
|
8850
8906
|
"src/react/Whatsapp.tsx"() {
|
|
@@ -8852,7 +8908,7 @@ var init_Whatsapp = __esm({
|
|
|
8852
8908
|
init_types();
|
|
8853
8909
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
8854
8910
|
const sizeValue = resolveSize(size);
|
|
8855
|
-
return /* @__PURE__ */
|
|
8911
|
+
return /* @__PURE__ */ React158.createElement(
|
|
8856
8912
|
"svg",
|
|
8857
8913
|
{
|
|
8858
8914
|
width: sizeValue,
|
|
@@ -8862,7 +8918,7 @@ var init_Whatsapp = __esm({
|
|
|
8862
8918
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8863
8919
|
...props
|
|
8864
8920
|
},
|
|
8865
|
-
/* @__PURE__ */
|
|
8921
|
+
/* @__PURE__ */ React158.createElement(
|
|
8866
8922
|
"path",
|
|
8867
8923
|
{
|
|
8868
8924
|
fillRule: "evenodd",
|
|
@@ -8882,7 +8938,7 @@ var Wifi_exports = {};
|
|
|
8882
8938
|
__export(Wifi_exports, {
|
|
8883
8939
|
default: () => Wifi_default
|
|
8884
8940
|
});
|
|
8885
|
-
import * as
|
|
8941
|
+
import * as React159 from "react";
|
|
8886
8942
|
var SvgWifi, Wifi_default;
|
|
8887
8943
|
var init_Wifi = __esm({
|
|
8888
8944
|
"src/react/Wifi.tsx"() {
|
|
@@ -8890,7 +8946,7 @@ var init_Wifi = __esm({
|
|
|
8890
8946
|
init_types();
|
|
8891
8947
|
SvgWifi = ({ size = 16, ...props }) => {
|
|
8892
8948
|
const sizeValue = resolveSize(size);
|
|
8893
|
-
return /* @__PURE__ */
|
|
8949
|
+
return /* @__PURE__ */ React159.createElement(
|
|
8894
8950
|
"svg",
|
|
8895
8951
|
{
|
|
8896
8952
|
width: sizeValue,
|
|
@@ -8900,7 +8956,7 @@ var init_Wifi = __esm({
|
|
|
8900
8956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8901
8957
|
...props
|
|
8902
8958
|
},
|
|
8903
|
-
/* @__PURE__ */
|
|
8959
|
+
/* @__PURE__ */ React159.createElement(
|
|
8904
8960
|
"path",
|
|
8905
8961
|
{
|
|
8906
8962
|
fillRule: "evenodd",
|
|
@@ -8909,7 +8965,7 @@ var init_Wifi = __esm({
|
|
|
8909
8965
|
fill: "currentColor"
|
|
8910
8966
|
}
|
|
8911
8967
|
),
|
|
8912
|
-
/* @__PURE__ */
|
|
8968
|
+
/* @__PURE__ */ React159.createElement(
|
|
8913
8969
|
"path",
|
|
8914
8970
|
{
|
|
8915
8971
|
fillRule: "evenodd",
|
|
@@ -8918,7 +8974,7 @@ var init_Wifi = __esm({
|
|
|
8918
8974
|
fill: "currentColor"
|
|
8919
8975
|
}
|
|
8920
8976
|
),
|
|
8921
|
-
/* @__PURE__ */
|
|
8977
|
+
/* @__PURE__ */ React159.createElement(
|
|
8922
8978
|
"path",
|
|
8923
8979
|
{
|
|
8924
8980
|
fillRule: "evenodd",
|
|
@@ -8927,7 +8983,7 @@ var init_Wifi = __esm({
|
|
|
8927
8983
|
fill: "currentColor"
|
|
8928
8984
|
}
|
|
8929
8985
|
),
|
|
8930
|
-
/* @__PURE__ */
|
|
8986
|
+
/* @__PURE__ */ React159.createElement(
|
|
8931
8987
|
"path",
|
|
8932
8988
|
{
|
|
8933
8989
|
fillRule: "evenodd",
|
|
@@ -8936,7 +8992,7 @@ var init_Wifi = __esm({
|
|
|
8936
8992
|
fill: "currentColor"
|
|
8937
8993
|
}
|
|
8938
8994
|
),
|
|
8939
|
-
/* @__PURE__ */
|
|
8995
|
+
/* @__PURE__ */ React159.createElement(
|
|
8940
8996
|
"path",
|
|
8941
8997
|
{
|
|
8942
8998
|
fillRule: "evenodd",
|
|
@@ -8945,7 +9001,7 @@ var init_Wifi = __esm({
|
|
|
8945
9001
|
fill: "currentColor"
|
|
8946
9002
|
}
|
|
8947
9003
|
),
|
|
8948
|
-
/* @__PURE__ */
|
|
9004
|
+
/* @__PURE__ */ React159.createElement(
|
|
8949
9005
|
"path",
|
|
8950
9006
|
{
|
|
8951
9007
|
fillRule: "evenodd",
|
|
@@ -9111,6 +9167,7 @@ init_TouchAndroid();
|
|
|
9111
9167
|
init_TouchIos();
|
|
9112
9168
|
init_Trash();
|
|
9113
9169
|
init_Trash2();
|
|
9170
|
+
init_Upload();
|
|
9114
9171
|
init_User();
|
|
9115
9172
|
init_UserPlus();
|
|
9116
9173
|
init_UserSquare();
|
|
@@ -9121,7 +9178,7 @@ init_Whatsapp();
|
|
|
9121
9178
|
init_Wifi();
|
|
9122
9179
|
|
|
9123
9180
|
// src/react/Icon.tsx
|
|
9124
|
-
import * as
|
|
9181
|
+
import * as React160 from "react";
|
|
9125
9182
|
function loadIcon(name) {
|
|
9126
9183
|
switch (name) {
|
|
9127
9184
|
case "accessibility":
|
|
@@ -9424,6 +9481,8 @@ function loadIcon(name) {
|
|
|
9424
9481
|
return Promise.resolve().then(() => (init_Trash(), Trash_exports)).then((m) => m.default);
|
|
9425
9482
|
case "trash2":
|
|
9426
9483
|
return Promise.resolve().then(() => (init_Trash2(), Trash2_exports)).then((m) => m.default);
|
|
9484
|
+
case "upload":
|
|
9485
|
+
return Promise.resolve().then(() => (init_Upload(), Upload_exports)).then((m) => m.default);
|
|
9427
9486
|
case "user":
|
|
9428
9487
|
return Promise.resolve().then(() => (init_User(), User_exports)).then((m) => m.default);
|
|
9429
9488
|
case "user-plus":
|
|
@@ -9445,10 +9504,10 @@ function loadIcon(name) {
|
|
|
9445
9504
|
}
|
|
9446
9505
|
}
|
|
9447
9506
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
9448
|
-
const [IconComponent, setIconComponent] =
|
|
9449
|
-
const [loading, setLoading] =
|
|
9450
|
-
const [error, setError] =
|
|
9451
|
-
|
|
9507
|
+
const [IconComponent, setIconComponent] = React160.useState(null);
|
|
9508
|
+
const [loading, setLoading] = React160.useState(true);
|
|
9509
|
+
const [error, setError] = React160.useState(null);
|
|
9510
|
+
React160.useEffect(() => {
|
|
9452
9511
|
setLoading(true);
|
|
9453
9512
|
setError(null);
|
|
9454
9513
|
loadIcon(name).then((Component) => {
|
|
@@ -9467,7 +9526,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
9467
9526
|
return null;
|
|
9468
9527
|
}
|
|
9469
9528
|
const style = color ? { ...props.style, color } : props.style;
|
|
9470
|
-
return /* @__PURE__ */
|
|
9529
|
+
return /* @__PURE__ */ React160.createElement(IconComponent, { size, ...props, style });
|
|
9471
9530
|
};
|
|
9472
9531
|
var Icon_default = Icon;
|
|
9473
9532
|
|
|
@@ -9626,6 +9685,7 @@ export {
|
|
|
9626
9685
|
TouchIos_default as TouchIos,
|
|
9627
9686
|
Trash_default as Trash,
|
|
9628
9687
|
Trash2_default as Trash2,
|
|
9688
|
+
Upload_default as Upload,
|
|
9629
9689
|
User_default as User,
|
|
9630
9690
|
UserPlus_default as UserPlus,
|
|
9631
9691
|
UserSquare_default as UserSquare,
|