huspy-icons 0.1.10 → 0.1.12
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 +55 -40
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +41 -36
- package/dist/fonts/HuspyIcons.ts +51 -36
- 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 +41 -36
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +12 -2
- package/dist/react/index.d.ts +12 -2
- package/dist/react/index.js +414 -124
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +394 -104
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +42 -37
- package/src/react/ExploreFilled.tsx +36 -0
- package/src/react/ExploreLinear.tsx +32 -0
- package/src/react/Icon.tsx +16 -1
- package/src/react/Note.tsx +41 -0
- package/src/react/Plus.tsx +24 -0
- package/src/react/Trash2.tsx +50 -0
- package/src/react/index.ts +5 -0
- package/src/react/index.tsx +5 -0
package/dist/react/index.mjs
CHANGED
|
@@ -822,12 +822,113 @@ var init_Edit = __esm({
|
|
|
822
822
|
}
|
|
823
823
|
});
|
|
824
824
|
|
|
825
|
+
// src/react/ExploreFilled.tsx
|
|
826
|
+
var ExploreFilled_exports = {};
|
|
827
|
+
__export(ExploreFilled_exports, {
|
|
828
|
+
default: () => ExploreFilled_default
|
|
829
|
+
});
|
|
830
|
+
import * as React19 from "react";
|
|
831
|
+
var SvgExploreFilled, ExploreFilled_default;
|
|
832
|
+
var init_ExploreFilled = __esm({
|
|
833
|
+
"src/react/ExploreFilled.tsx"() {
|
|
834
|
+
"use strict";
|
|
835
|
+
init_types();
|
|
836
|
+
SvgExploreFilled = ({ size = 16, ...props }) => {
|
|
837
|
+
const sizeValue = resolveSize(size);
|
|
838
|
+
return /* @__PURE__ */ React19.createElement(
|
|
839
|
+
"svg",
|
|
840
|
+
{
|
|
841
|
+
width: sizeValue,
|
|
842
|
+
height: sizeValue,
|
|
843
|
+
viewBox: "0 0 24 24",
|
|
844
|
+
fill: "none",
|
|
845
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
846
|
+
...props
|
|
847
|
+
},
|
|
848
|
+
/* @__PURE__ */ React19.createElement(
|
|
849
|
+
"path",
|
|
850
|
+
{
|
|
851
|
+
fillRule: "evenodd",
|
|
852
|
+
clipRule: "evenodd",
|
|
853
|
+
d: "M11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C14.866 18 18 14.866 18 11C18 7.13401 14.866 4 11 4ZM2 11C2 6.02944 6.02944 2 11 2C15.9706 2 20 6.02944 20 11C20 15.9706 15.9706 20 11 20C6.02944 20 2 15.9706 2 11Z",
|
|
854
|
+
fill: "currentColor"
|
|
855
|
+
}
|
|
856
|
+
),
|
|
857
|
+
/* @__PURE__ */ React19.createElement(
|
|
858
|
+
"path",
|
|
859
|
+
{
|
|
860
|
+
fillRule: "evenodd",
|
|
861
|
+
clipRule: "evenodd",
|
|
862
|
+
d: "M15.9929 15.9929C16.3834 15.6024 17.0166 15.6024 17.4071 15.9929L21.7071 20.2929C22.0976 20.6834 22.0976 21.3166 21.7071 21.7071C21.3166 22.0976 20.6834 22.0976 20.2929 21.7071L15.9929 17.4071C15.6024 17.0166 15.6024 16.3834 15.9929 15.9929Z",
|
|
863
|
+
fill: "currentColor"
|
|
864
|
+
}
|
|
865
|
+
),
|
|
866
|
+
/* @__PURE__ */ React19.createElement(
|
|
867
|
+
"path",
|
|
868
|
+
{
|
|
869
|
+
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",
|
|
870
|
+
fill: "currentColor"
|
|
871
|
+
}
|
|
872
|
+
)
|
|
873
|
+
);
|
|
874
|
+
};
|
|
875
|
+
ExploreFilled_default = SvgExploreFilled;
|
|
876
|
+
}
|
|
877
|
+
});
|
|
878
|
+
|
|
879
|
+
// src/react/ExploreLinear.tsx
|
|
880
|
+
var ExploreLinear_exports = {};
|
|
881
|
+
__export(ExploreLinear_exports, {
|
|
882
|
+
default: () => ExploreLinear_default
|
|
883
|
+
});
|
|
884
|
+
import * as React20 from "react";
|
|
885
|
+
var SvgExploreLinear, ExploreLinear_default;
|
|
886
|
+
var init_ExploreLinear = __esm({
|
|
887
|
+
"src/react/ExploreLinear.tsx"() {
|
|
888
|
+
"use strict";
|
|
889
|
+
init_types();
|
|
890
|
+
SvgExploreLinear = ({ size = 16, ...props }) => {
|
|
891
|
+
const sizeValue = resolveSize(size);
|
|
892
|
+
return /* @__PURE__ */ React20.createElement(
|
|
893
|
+
"svg",
|
|
894
|
+
{
|
|
895
|
+
width: sizeValue,
|
|
896
|
+
height: sizeValue,
|
|
897
|
+
viewBox: "0 0 24 24",
|
|
898
|
+
fill: "none",
|
|
899
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
900
|
+
...props
|
|
901
|
+
},
|
|
902
|
+
/* @__PURE__ */ React20.createElement(
|
|
903
|
+
"path",
|
|
904
|
+
{
|
|
905
|
+
fillRule: "evenodd",
|
|
906
|
+
clipRule: "evenodd",
|
|
907
|
+
d: "M11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C14.866 18 18 14.866 18 11C18 7.13401 14.866 4 11 4ZM2 11C2 6.02944 6.02944 2 11 2C15.9706 2 20 6.02944 20 11C20 15.9706 15.9706 20 11 20C6.02944 20 2 15.9706 2 11Z",
|
|
908
|
+
fill: "currentColor"
|
|
909
|
+
}
|
|
910
|
+
),
|
|
911
|
+
/* @__PURE__ */ React20.createElement(
|
|
912
|
+
"path",
|
|
913
|
+
{
|
|
914
|
+
fillRule: "evenodd",
|
|
915
|
+
clipRule: "evenodd",
|
|
916
|
+
d: "M15.9929 15.9929C16.3834 15.6024 17.0166 15.6024 17.4071 15.9929L21.7071 20.2929C22.0976 20.6834 22.0976 21.3166 21.7071 21.7071C21.3166 22.0976 20.6834 22.0976 20.2929 21.7071L15.9929 17.4071C15.6024 17.0166 15.6024 16.3834 15.9929 15.9929Z",
|
|
917
|
+
fill: "currentColor"
|
|
918
|
+
}
|
|
919
|
+
)
|
|
920
|
+
);
|
|
921
|
+
};
|
|
922
|
+
ExploreLinear_default = SvgExploreLinear;
|
|
923
|
+
}
|
|
924
|
+
});
|
|
925
|
+
|
|
825
926
|
// src/react/EyeHidden.tsx
|
|
826
927
|
var EyeHidden_exports = {};
|
|
827
928
|
__export(EyeHidden_exports, {
|
|
828
929
|
default: () => EyeHidden_default
|
|
829
930
|
});
|
|
830
|
-
import * as
|
|
931
|
+
import * as React21 from "react";
|
|
831
932
|
var SvgEyeHidden, EyeHidden_default;
|
|
832
933
|
var init_EyeHidden = __esm({
|
|
833
934
|
"src/react/EyeHidden.tsx"() {
|
|
@@ -835,7 +936,7 @@ var init_EyeHidden = __esm({
|
|
|
835
936
|
init_types();
|
|
836
937
|
SvgEyeHidden = ({ size = 16, ...props }) => {
|
|
837
938
|
const sizeValue = resolveSize(size);
|
|
838
|
-
return /* @__PURE__ */
|
|
939
|
+
return /* @__PURE__ */ React21.createElement(
|
|
839
940
|
"svg",
|
|
840
941
|
{
|
|
841
942
|
width: sizeValue,
|
|
@@ -845,7 +946,7 @@ var init_EyeHidden = __esm({
|
|
|
845
946
|
xmlns: "http://www.w3.org/2000/svg",
|
|
846
947
|
...props
|
|
847
948
|
},
|
|
848
|
-
/* @__PURE__ */
|
|
949
|
+
/* @__PURE__ */ React21.createElement(
|
|
849
950
|
"path",
|
|
850
951
|
{
|
|
851
952
|
fillRule: "evenodd",
|
|
@@ -854,7 +955,7 @@ var init_EyeHidden = __esm({
|
|
|
854
955
|
fill: "currentColor"
|
|
855
956
|
}
|
|
856
957
|
),
|
|
857
|
-
/* @__PURE__ */
|
|
958
|
+
/* @__PURE__ */ React21.createElement(
|
|
858
959
|
"path",
|
|
859
960
|
{
|
|
860
961
|
fillRule: "evenodd",
|
|
@@ -863,7 +964,7 @@ var init_EyeHidden = __esm({
|
|
|
863
964
|
fill: "currentColor"
|
|
864
965
|
}
|
|
865
966
|
),
|
|
866
|
-
/* @__PURE__ */
|
|
967
|
+
/* @__PURE__ */ React21.createElement(
|
|
867
968
|
"path",
|
|
868
969
|
{
|
|
869
970
|
fillRule: "evenodd",
|
|
@@ -883,7 +984,7 @@ var EyeVisible_exports = {};
|
|
|
883
984
|
__export(EyeVisible_exports, {
|
|
884
985
|
default: () => EyeVisible_default
|
|
885
986
|
});
|
|
886
|
-
import * as
|
|
987
|
+
import * as React22 from "react";
|
|
887
988
|
var SvgEyeVisible, EyeVisible_default;
|
|
888
989
|
var init_EyeVisible = __esm({
|
|
889
990
|
"src/react/EyeVisible.tsx"() {
|
|
@@ -891,7 +992,7 @@ var init_EyeVisible = __esm({
|
|
|
891
992
|
init_types();
|
|
892
993
|
SvgEyeVisible = ({ size = 16, ...props }) => {
|
|
893
994
|
const sizeValue = resolveSize(size);
|
|
894
|
-
return /* @__PURE__ */
|
|
995
|
+
return /* @__PURE__ */ React22.createElement(
|
|
895
996
|
"svg",
|
|
896
997
|
{
|
|
897
998
|
width: sizeValue,
|
|
@@ -901,7 +1002,7 @@ var init_EyeVisible = __esm({
|
|
|
901
1002
|
xmlns: "http://www.w3.org/2000/svg",
|
|
902
1003
|
...props
|
|
903
1004
|
},
|
|
904
|
-
/* @__PURE__ */
|
|
1005
|
+
/* @__PURE__ */ React22.createElement(
|
|
905
1006
|
"path",
|
|
906
1007
|
{
|
|
907
1008
|
fillRule: "evenodd",
|
|
@@ -910,7 +1011,7 @@ var init_EyeVisible = __esm({
|
|
|
910
1011
|
fill: "currentColor"
|
|
911
1012
|
}
|
|
912
1013
|
),
|
|
913
|
-
/* @__PURE__ */
|
|
1014
|
+
/* @__PURE__ */ React22.createElement(
|
|
914
1015
|
"path",
|
|
915
1016
|
{
|
|
916
1017
|
fillRule: "evenodd",
|
|
@@ -930,7 +1031,7 @@ var FileKey_exports = {};
|
|
|
930
1031
|
__export(FileKey_exports, {
|
|
931
1032
|
default: () => FileKey_default
|
|
932
1033
|
});
|
|
933
|
-
import * as
|
|
1034
|
+
import * as React23 from "react";
|
|
934
1035
|
var SvgFileKey, FileKey_default;
|
|
935
1036
|
var init_FileKey = __esm({
|
|
936
1037
|
"src/react/FileKey.tsx"() {
|
|
@@ -938,7 +1039,7 @@ var init_FileKey = __esm({
|
|
|
938
1039
|
init_types();
|
|
939
1040
|
SvgFileKey = ({ size = 16, ...props }) => {
|
|
940
1041
|
const sizeValue = resolveSize(size);
|
|
941
|
-
return /* @__PURE__ */
|
|
1042
|
+
return /* @__PURE__ */ React23.createElement(
|
|
942
1043
|
"svg",
|
|
943
1044
|
{
|
|
944
1045
|
width: sizeValue,
|
|
@@ -948,7 +1049,7 @@ var init_FileKey = __esm({
|
|
|
948
1049
|
xmlns: "http://www.w3.org/2000/svg",
|
|
949
1050
|
...props
|
|
950
1051
|
},
|
|
951
|
-
/* @__PURE__ */
|
|
1052
|
+
/* @__PURE__ */ React23.createElement(
|
|
952
1053
|
"path",
|
|
953
1054
|
{
|
|
954
1055
|
fillRule: "evenodd",
|
|
@@ -957,7 +1058,7 @@ var init_FileKey = __esm({
|
|
|
957
1058
|
fill: "currentColor"
|
|
958
1059
|
}
|
|
959
1060
|
),
|
|
960
|
-
/* @__PURE__ */
|
|
1061
|
+
/* @__PURE__ */ React23.createElement(
|
|
961
1062
|
"path",
|
|
962
1063
|
{
|
|
963
1064
|
fillRule: "evenodd",
|
|
@@ -966,7 +1067,7 @@ var init_FileKey = __esm({
|
|
|
966
1067
|
fill: "currentColor"
|
|
967
1068
|
}
|
|
968
1069
|
),
|
|
969
|
-
/* @__PURE__ */
|
|
1070
|
+
/* @__PURE__ */ React23.createElement(
|
|
970
1071
|
"path",
|
|
971
1072
|
{
|
|
972
1073
|
fillRule: "evenodd",
|
|
@@ -975,7 +1076,7 @@ var init_FileKey = __esm({
|
|
|
975
1076
|
fill: "currentColor"
|
|
976
1077
|
}
|
|
977
1078
|
),
|
|
978
|
-
/* @__PURE__ */
|
|
1079
|
+
/* @__PURE__ */ React23.createElement(
|
|
979
1080
|
"path",
|
|
980
1081
|
{
|
|
981
1082
|
fillRule: "evenodd",
|
|
@@ -995,7 +1096,7 @@ var HomeFilled_exports = {};
|
|
|
995
1096
|
__export(HomeFilled_exports, {
|
|
996
1097
|
default: () => HomeFilled_default
|
|
997
1098
|
});
|
|
998
|
-
import * as
|
|
1099
|
+
import * as React24 from "react";
|
|
999
1100
|
var SvgHomeFilled, HomeFilled_default;
|
|
1000
1101
|
var init_HomeFilled = __esm({
|
|
1001
1102
|
"src/react/HomeFilled.tsx"() {
|
|
@@ -1003,7 +1104,7 @@ var init_HomeFilled = __esm({
|
|
|
1003
1104
|
init_types();
|
|
1004
1105
|
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
1005
1106
|
const sizeValue = resolveSize(size);
|
|
1006
|
-
return /* @__PURE__ */
|
|
1107
|
+
return /* @__PURE__ */ React24.createElement(
|
|
1007
1108
|
"svg",
|
|
1008
1109
|
{
|
|
1009
1110
|
width: sizeValue,
|
|
@@ -1013,7 +1114,7 @@ var init_HomeFilled = __esm({
|
|
|
1013
1114
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1014
1115
|
...props
|
|
1015
1116
|
},
|
|
1016
|
-
/* @__PURE__ */
|
|
1117
|
+
/* @__PURE__ */ React24.createElement(
|
|
1017
1118
|
"path",
|
|
1018
1119
|
{
|
|
1019
1120
|
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",
|
|
@@ -1031,7 +1132,7 @@ var HomeLinear_exports = {};
|
|
|
1031
1132
|
__export(HomeLinear_exports, {
|
|
1032
1133
|
default: () => HomeLinear_default
|
|
1033
1134
|
});
|
|
1034
|
-
import * as
|
|
1135
|
+
import * as React25 from "react";
|
|
1035
1136
|
var SvgHomeLinear, HomeLinear_default;
|
|
1036
1137
|
var init_HomeLinear = __esm({
|
|
1037
1138
|
"src/react/HomeLinear.tsx"() {
|
|
@@ -1039,7 +1140,7 @@ var init_HomeLinear = __esm({
|
|
|
1039
1140
|
init_types();
|
|
1040
1141
|
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
1041
1142
|
const sizeValue = resolveSize(size);
|
|
1042
|
-
return /* @__PURE__ */
|
|
1143
|
+
return /* @__PURE__ */ React25.createElement(
|
|
1043
1144
|
"svg",
|
|
1044
1145
|
{
|
|
1045
1146
|
width: sizeValue,
|
|
@@ -1049,7 +1150,7 @@ var init_HomeLinear = __esm({
|
|
|
1049
1150
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1050
1151
|
...props
|
|
1051
1152
|
},
|
|
1052
|
-
/* @__PURE__ */
|
|
1153
|
+
/* @__PURE__ */ React25.createElement(
|
|
1053
1154
|
"path",
|
|
1054
1155
|
{
|
|
1055
1156
|
fillRule: "evenodd",
|
|
@@ -1069,7 +1170,7 @@ var IconSlot_exports = {};
|
|
|
1069
1170
|
__export(IconSlot_exports, {
|
|
1070
1171
|
default: () => IconSlot_default
|
|
1071
1172
|
});
|
|
1072
|
-
import * as
|
|
1173
|
+
import * as React26 from "react";
|
|
1073
1174
|
var SvgIconSlot, IconSlot_default;
|
|
1074
1175
|
var init_IconSlot = __esm({
|
|
1075
1176
|
"src/react/IconSlot.tsx"() {
|
|
@@ -1077,7 +1178,7 @@ var init_IconSlot = __esm({
|
|
|
1077
1178
|
init_types();
|
|
1078
1179
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
1079
1180
|
const sizeValue = resolveSize(size);
|
|
1080
|
-
return /* @__PURE__ */
|
|
1181
|
+
return /* @__PURE__ */ React26.createElement(
|
|
1081
1182
|
"svg",
|
|
1082
1183
|
{
|
|
1083
1184
|
width: sizeValue,
|
|
@@ -1087,7 +1188,7 @@ var init_IconSlot = __esm({
|
|
|
1087
1188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1088
1189
|
...props
|
|
1089
1190
|
},
|
|
1090
|
-
/* @__PURE__ */
|
|
1191
|
+
/* @__PURE__ */ React26.createElement(
|
|
1091
1192
|
"path",
|
|
1092
1193
|
{
|
|
1093
1194
|
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",
|
|
@@ -1105,7 +1206,7 @@ var Keys01_exports = {};
|
|
|
1105
1206
|
__export(Keys01_exports, {
|
|
1106
1207
|
default: () => Keys01_default
|
|
1107
1208
|
});
|
|
1108
|
-
import * as
|
|
1209
|
+
import * as React27 from "react";
|
|
1109
1210
|
var SvgKeys01, Keys01_default;
|
|
1110
1211
|
var init_Keys01 = __esm({
|
|
1111
1212
|
"src/react/Keys01.tsx"() {
|
|
@@ -1113,7 +1214,7 @@ var init_Keys01 = __esm({
|
|
|
1113
1214
|
init_types();
|
|
1114
1215
|
SvgKeys01 = ({ size = 16, ...props }) => {
|
|
1115
1216
|
const sizeValue = resolveSize(size);
|
|
1116
|
-
return /* @__PURE__ */
|
|
1217
|
+
return /* @__PURE__ */ React27.createElement(
|
|
1117
1218
|
"svg",
|
|
1118
1219
|
{
|
|
1119
1220
|
width: sizeValue,
|
|
@@ -1123,7 +1224,7 @@ var init_Keys01 = __esm({
|
|
|
1123
1224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1124
1225
|
...props
|
|
1125
1226
|
},
|
|
1126
|
-
/* @__PURE__ */
|
|
1227
|
+
/* @__PURE__ */ React27.createElement(
|
|
1127
1228
|
"path",
|
|
1128
1229
|
{
|
|
1129
1230
|
fillRule: "evenodd",
|
|
@@ -1132,7 +1233,7 @@ var init_Keys01 = __esm({
|
|
|
1132
1233
|
fill: "currentColor"
|
|
1133
1234
|
}
|
|
1134
1235
|
),
|
|
1135
|
-
/* @__PURE__ */
|
|
1236
|
+
/* @__PURE__ */ React27.createElement(
|
|
1136
1237
|
"path",
|
|
1137
1238
|
{
|
|
1138
1239
|
fillRule: "evenodd",
|
|
@@ -1141,7 +1242,7 @@ var init_Keys01 = __esm({
|
|
|
1141
1242
|
fill: "currentColor"
|
|
1142
1243
|
}
|
|
1143
1244
|
),
|
|
1144
|
-
/* @__PURE__ */
|
|
1245
|
+
/* @__PURE__ */ React27.createElement(
|
|
1145
1246
|
"path",
|
|
1146
1247
|
{
|
|
1147
1248
|
fillRule: "evenodd",
|
|
@@ -1161,7 +1262,7 @@ var LeadsFilled_exports = {};
|
|
|
1161
1262
|
__export(LeadsFilled_exports, {
|
|
1162
1263
|
default: () => LeadsFilled_default
|
|
1163
1264
|
});
|
|
1164
|
-
import * as
|
|
1265
|
+
import * as React28 from "react";
|
|
1165
1266
|
var SvgLeadsFilled, LeadsFilled_default;
|
|
1166
1267
|
var init_LeadsFilled = __esm({
|
|
1167
1268
|
"src/react/LeadsFilled.tsx"() {
|
|
@@ -1169,7 +1270,7 @@ var init_LeadsFilled = __esm({
|
|
|
1169
1270
|
init_types();
|
|
1170
1271
|
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
1171
1272
|
const sizeValue = resolveSize(size);
|
|
1172
|
-
return /* @__PURE__ */
|
|
1273
|
+
return /* @__PURE__ */ React28.createElement(
|
|
1173
1274
|
"svg",
|
|
1174
1275
|
{
|
|
1175
1276
|
width: sizeValue,
|
|
@@ -1179,7 +1280,7 @@ var init_LeadsFilled = __esm({
|
|
|
1179
1280
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1180
1281
|
...props
|
|
1181
1282
|
},
|
|
1182
|
-
/* @__PURE__ */
|
|
1283
|
+
/* @__PURE__ */ React28.createElement(
|
|
1183
1284
|
"path",
|
|
1184
1285
|
{
|
|
1185
1286
|
fillRule: "evenodd",
|
|
@@ -1188,7 +1289,7 @@ var init_LeadsFilled = __esm({
|
|
|
1188
1289
|
fill: "currentColor"
|
|
1189
1290
|
}
|
|
1190
1291
|
),
|
|
1191
|
-
/* @__PURE__ */
|
|
1292
|
+
/* @__PURE__ */ React28.createElement(
|
|
1192
1293
|
"path",
|
|
1193
1294
|
{
|
|
1194
1295
|
fillRule: "evenodd",
|
|
@@ -1197,7 +1298,7 @@ var init_LeadsFilled = __esm({
|
|
|
1197
1298
|
fill: "currentColor"
|
|
1198
1299
|
}
|
|
1199
1300
|
),
|
|
1200
|
-
/* @__PURE__ */
|
|
1301
|
+
/* @__PURE__ */ React28.createElement(
|
|
1201
1302
|
"path",
|
|
1202
1303
|
{
|
|
1203
1304
|
fillRule: "evenodd",
|
|
@@ -1206,7 +1307,7 @@ var init_LeadsFilled = __esm({
|
|
|
1206
1307
|
fill: "currentColor"
|
|
1207
1308
|
}
|
|
1208
1309
|
),
|
|
1209
|
-
/* @__PURE__ */
|
|
1310
|
+
/* @__PURE__ */ React28.createElement(
|
|
1210
1311
|
"path",
|
|
1211
1312
|
{
|
|
1212
1313
|
fillRule: "evenodd",
|
|
@@ -1226,7 +1327,7 @@ var LeadsLinear_exports = {};
|
|
|
1226
1327
|
__export(LeadsLinear_exports, {
|
|
1227
1328
|
default: () => LeadsLinear_default
|
|
1228
1329
|
});
|
|
1229
|
-
import * as
|
|
1330
|
+
import * as React29 from "react";
|
|
1230
1331
|
var SvgLeadsLinear, LeadsLinear_default;
|
|
1231
1332
|
var init_LeadsLinear = __esm({
|
|
1232
1333
|
"src/react/LeadsLinear.tsx"() {
|
|
@@ -1234,7 +1335,7 @@ var init_LeadsLinear = __esm({
|
|
|
1234
1335
|
init_types();
|
|
1235
1336
|
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
1236
1337
|
const sizeValue = resolveSize(size);
|
|
1237
|
-
return /* @__PURE__ */
|
|
1338
|
+
return /* @__PURE__ */ React29.createElement(
|
|
1238
1339
|
"svg",
|
|
1239
1340
|
{
|
|
1240
1341
|
width: sizeValue,
|
|
@@ -1244,7 +1345,7 @@ var init_LeadsLinear = __esm({
|
|
|
1244
1345
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1245
1346
|
...props
|
|
1246
1347
|
},
|
|
1247
|
-
/* @__PURE__ */
|
|
1348
|
+
/* @__PURE__ */ React29.createElement(
|
|
1248
1349
|
"path",
|
|
1249
1350
|
{
|
|
1250
1351
|
fillRule: "evenodd",
|
|
@@ -1253,7 +1354,7 @@ var init_LeadsLinear = __esm({
|
|
|
1253
1354
|
fill: "currentColor"
|
|
1254
1355
|
}
|
|
1255
1356
|
),
|
|
1256
|
-
/* @__PURE__ */
|
|
1357
|
+
/* @__PURE__ */ React29.createElement(
|
|
1257
1358
|
"path",
|
|
1258
1359
|
{
|
|
1259
1360
|
fillRule: "evenodd",
|
|
@@ -1262,7 +1363,7 @@ var init_LeadsLinear = __esm({
|
|
|
1262
1363
|
fill: "currentColor"
|
|
1263
1364
|
}
|
|
1264
1365
|
),
|
|
1265
|
-
/* @__PURE__ */
|
|
1366
|
+
/* @__PURE__ */ React29.createElement(
|
|
1266
1367
|
"path",
|
|
1267
1368
|
{
|
|
1268
1369
|
fillRule: "evenodd",
|
|
@@ -1271,7 +1372,7 @@ var init_LeadsLinear = __esm({
|
|
|
1271
1372
|
fill: "currentColor"
|
|
1272
1373
|
}
|
|
1273
1374
|
),
|
|
1274
|
-
/* @__PURE__ */
|
|
1375
|
+
/* @__PURE__ */ React29.createElement(
|
|
1275
1376
|
"path",
|
|
1276
1377
|
{
|
|
1277
1378
|
fillRule: "evenodd",
|
|
@@ -1291,7 +1392,7 @@ var Mail_exports = {};
|
|
|
1291
1392
|
__export(Mail_exports, {
|
|
1292
1393
|
default: () => Mail_default
|
|
1293
1394
|
});
|
|
1294
|
-
import * as
|
|
1395
|
+
import * as React30 from "react";
|
|
1295
1396
|
var SvgMail, Mail_default;
|
|
1296
1397
|
var init_Mail = __esm({
|
|
1297
1398
|
"src/react/Mail.tsx"() {
|
|
@@ -1299,7 +1400,7 @@ var init_Mail = __esm({
|
|
|
1299
1400
|
init_types();
|
|
1300
1401
|
SvgMail = ({ size = 16, ...props }) => {
|
|
1301
1402
|
const sizeValue = resolveSize(size);
|
|
1302
|
-
return /* @__PURE__ */
|
|
1403
|
+
return /* @__PURE__ */ React30.createElement(
|
|
1303
1404
|
"svg",
|
|
1304
1405
|
{
|
|
1305
1406
|
width: sizeValue,
|
|
@@ -1309,7 +1410,7 @@ var init_Mail = __esm({
|
|
|
1309
1410
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1310
1411
|
...props
|
|
1311
1412
|
},
|
|
1312
|
-
/* @__PURE__ */
|
|
1413
|
+
/* @__PURE__ */ React30.createElement(
|
|
1313
1414
|
"path",
|
|
1314
1415
|
{
|
|
1315
1416
|
fillRule: "evenodd",
|
|
@@ -1318,7 +1419,7 @@ var init_Mail = __esm({
|
|
|
1318
1419
|
fill: "currentColor"
|
|
1319
1420
|
}
|
|
1320
1421
|
),
|
|
1321
|
-
/* @__PURE__ */
|
|
1422
|
+
/* @__PURE__ */ React30.createElement(
|
|
1322
1423
|
"path",
|
|
1323
1424
|
{
|
|
1324
1425
|
fillRule: "evenodd",
|
|
@@ -1338,7 +1439,7 @@ var Mortgage_exports = {};
|
|
|
1338
1439
|
__export(Mortgage_exports, {
|
|
1339
1440
|
default: () => Mortgage_default
|
|
1340
1441
|
});
|
|
1341
|
-
import * as
|
|
1442
|
+
import * as React31 from "react";
|
|
1342
1443
|
var SvgMortgage, Mortgage_default;
|
|
1343
1444
|
var init_Mortgage = __esm({
|
|
1344
1445
|
"src/react/Mortgage.tsx"() {
|
|
@@ -1346,7 +1447,7 @@ var init_Mortgage = __esm({
|
|
|
1346
1447
|
init_types();
|
|
1347
1448
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
1348
1449
|
const sizeValue = resolveSize(size);
|
|
1349
|
-
return /* @__PURE__ */
|
|
1450
|
+
return /* @__PURE__ */ React31.createElement(
|
|
1350
1451
|
"svg",
|
|
1351
1452
|
{
|
|
1352
1453
|
width: sizeValue,
|
|
@@ -1356,7 +1457,7 @@ var init_Mortgage = __esm({
|
|
|
1356
1457
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1357
1458
|
...props
|
|
1358
1459
|
},
|
|
1359
|
-
/* @__PURE__ */
|
|
1460
|
+
/* @__PURE__ */ React31.createElement(
|
|
1360
1461
|
"path",
|
|
1361
1462
|
{
|
|
1362
1463
|
fillRule: "evenodd",
|
|
@@ -1365,7 +1466,7 @@ var init_Mortgage = __esm({
|
|
|
1365
1466
|
fill: "currentColor"
|
|
1366
1467
|
}
|
|
1367
1468
|
),
|
|
1368
|
-
/* @__PURE__ */
|
|
1469
|
+
/* @__PURE__ */ React31.createElement(
|
|
1369
1470
|
"path",
|
|
1370
1471
|
{
|
|
1371
1472
|
fillRule: "evenodd",
|
|
@@ -1374,7 +1475,7 @@ var init_Mortgage = __esm({
|
|
|
1374
1475
|
fill: "currentColor"
|
|
1375
1476
|
}
|
|
1376
1477
|
),
|
|
1377
|
-
/* @__PURE__ */
|
|
1478
|
+
/* @__PURE__ */ React31.createElement(
|
|
1378
1479
|
"path",
|
|
1379
1480
|
{
|
|
1380
1481
|
fillRule: "evenodd",
|
|
@@ -1383,7 +1484,7 @@ var init_Mortgage = __esm({
|
|
|
1383
1484
|
fill: "currentColor"
|
|
1384
1485
|
}
|
|
1385
1486
|
),
|
|
1386
|
-
/* @__PURE__ */
|
|
1487
|
+
/* @__PURE__ */ React31.createElement(
|
|
1387
1488
|
"path",
|
|
1388
1489
|
{
|
|
1389
1490
|
fillRule: "evenodd",
|
|
@@ -1392,7 +1493,7 @@ var init_Mortgage = __esm({
|
|
|
1392
1493
|
fill: "currentColor"
|
|
1393
1494
|
}
|
|
1394
1495
|
),
|
|
1395
|
-
/* @__PURE__ */
|
|
1496
|
+
/* @__PURE__ */ React31.createElement(
|
|
1396
1497
|
"path",
|
|
1397
1498
|
{
|
|
1398
1499
|
fillRule: "evenodd",
|
|
@@ -1401,7 +1502,7 @@ var init_Mortgage = __esm({
|
|
|
1401
1502
|
fill: "currentColor"
|
|
1402
1503
|
}
|
|
1403
1504
|
),
|
|
1404
|
-
/* @__PURE__ */
|
|
1505
|
+
/* @__PURE__ */ React31.createElement(
|
|
1405
1506
|
"path",
|
|
1406
1507
|
{
|
|
1407
1508
|
fillRule: "evenodd",
|
|
@@ -1410,7 +1511,7 @@ var init_Mortgage = __esm({
|
|
|
1410
1511
|
fill: "currentColor"
|
|
1411
1512
|
}
|
|
1412
1513
|
),
|
|
1413
|
-
/* @__PURE__ */
|
|
1514
|
+
/* @__PURE__ */ React31.createElement(
|
|
1414
1515
|
"path",
|
|
1415
1516
|
{
|
|
1416
1517
|
fillRule: "evenodd",
|
|
@@ -1425,12 +1526,71 @@ var init_Mortgage = __esm({
|
|
|
1425
1526
|
}
|
|
1426
1527
|
});
|
|
1427
1528
|
|
|
1529
|
+
// src/react/Note.tsx
|
|
1530
|
+
var Note_exports = {};
|
|
1531
|
+
__export(Note_exports, {
|
|
1532
|
+
default: () => Note_default
|
|
1533
|
+
});
|
|
1534
|
+
import * as React32 from "react";
|
|
1535
|
+
var SvgNote, Note_default;
|
|
1536
|
+
var init_Note = __esm({
|
|
1537
|
+
"src/react/Note.tsx"() {
|
|
1538
|
+
"use strict";
|
|
1539
|
+
init_types();
|
|
1540
|
+
SvgNote = ({ size = 16, ...props }) => {
|
|
1541
|
+
const sizeValue = resolveSize(size);
|
|
1542
|
+
return /* @__PURE__ */ React32.createElement(
|
|
1543
|
+
"svg",
|
|
1544
|
+
{
|
|
1545
|
+
width: sizeValue,
|
|
1546
|
+
height: sizeValue,
|
|
1547
|
+
viewBox: "0 0 28 28",
|
|
1548
|
+
fill: "none",
|
|
1549
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1550
|
+
...props
|
|
1551
|
+
},
|
|
1552
|
+
/* @__PURE__ */ React32.createElement(
|
|
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(
|
|
1573
|
+
"path",
|
|
1574
|
+
{
|
|
1575
|
+
d: "M23.9166 16.3334H19.8333C18.9051 16.3334 18.0148 16.7022 17.3584 17.3586C16.7021 18.0149 16.3333 18.9052 16.3333 19.8334V23.9168M9.33331 9.33344H18.0833M9.33331 14.0001H15.1666",
|
|
1576
|
+
stroke: "#1A1A1A",
|
|
1577
|
+
strokeWidth: 2.1,
|
|
1578
|
+
strokeLinecap: "round",
|
|
1579
|
+
strokeLinejoin: "round"
|
|
1580
|
+
}
|
|
1581
|
+
)
|
|
1582
|
+
);
|
|
1583
|
+
};
|
|
1584
|
+
Note_default = SvgNote;
|
|
1585
|
+
}
|
|
1586
|
+
});
|
|
1587
|
+
|
|
1428
1588
|
// src/react/Payments.tsx
|
|
1429
1589
|
var Payments_exports = {};
|
|
1430
1590
|
__export(Payments_exports, {
|
|
1431
1591
|
default: () => Payments_default
|
|
1432
1592
|
});
|
|
1433
|
-
import * as
|
|
1593
|
+
import * as React33 from "react";
|
|
1434
1594
|
var SvgPayments, Payments_default;
|
|
1435
1595
|
var init_Payments = __esm({
|
|
1436
1596
|
"src/react/Payments.tsx"() {
|
|
@@ -1438,7 +1598,7 @@ var init_Payments = __esm({
|
|
|
1438
1598
|
init_types();
|
|
1439
1599
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
1440
1600
|
const sizeValue = resolveSize(size);
|
|
1441
|
-
return /* @__PURE__ */
|
|
1601
|
+
return /* @__PURE__ */ React33.createElement(
|
|
1442
1602
|
"svg",
|
|
1443
1603
|
{
|
|
1444
1604
|
width: sizeValue,
|
|
@@ -1448,7 +1608,7 @@ var init_Payments = __esm({
|
|
|
1448
1608
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1449
1609
|
...props
|
|
1450
1610
|
},
|
|
1451
|
-
/* @__PURE__ */
|
|
1611
|
+
/* @__PURE__ */ React33.createElement(
|
|
1452
1612
|
"path",
|
|
1453
1613
|
{
|
|
1454
1614
|
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",
|
|
@@ -1461,12 +1621,48 @@ var init_Payments = __esm({
|
|
|
1461
1621
|
}
|
|
1462
1622
|
});
|
|
1463
1623
|
|
|
1624
|
+
// src/react/Plus.tsx
|
|
1625
|
+
var Plus_exports = {};
|
|
1626
|
+
__export(Plus_exports, {
|
|
1627
|
+
default: () => Plus_default
|
|
1628
|
+
});
|
|
1629
|
+
import * as React34 from "react";
|
|
1630
|
+
var SvgPlus, Plus_default;
|
|
1631
|
+
var init_Plus = __esm({
|
|
1632
|
+
"src/react/Plus.tsx"() {
|
|
1633
|
+
"use strict";
|
|
1634
|
+
init_types();
|
|
1635
|
+
SvgPlus = ({ size = 16, ...props }) => {
|
|
1636
|
+
const sizeValue = resolveSize(size);
|
|
1637
|
+
return /* @__PURE__ */ React34.createElement(
|
|
1638
|
+
"svg",
|
|
1639
|
+
{
|
|
1640
|
+
width: sizeValue,
|
|
1641
|
+
height: sizeValue,
|
|
1642
|
+
viewBox: "0 0 16 16",
|
|
1643
|
+
fill: "none",
|
|
1644
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1645
|
+
...props
|
|
1646
|
+
},
|
|
1647
|
+
/* @__PURE__ */ React34.createElement(
|
|
1648
|
+
"path",
|
|
1649
|
+
{
|
|
1650
|
+
d: "M7 15V9H1C0.447715 9 0 8.55229 0 8C0 7.44772 0.447715 7 1 7H7V1C7 0.447715 7.44772 0 8 0C8.55229 0 9 0.447715 9 1V7H15C15.5523 7 16 7.44772 16 8C16 8.55229 15.5523 9 15 9H9V15C9 15.5523 8.55229 16 8 16C7.44772 16 7 15.5523 7 15Z",
|
|
1651
|
+
fill: "currentColor"
|
|
1652
|
+
}
|
|
1653
|
+
)
|
|
1654
|
+
);
|
|
1655
|
+
};
|
|
1656
|
+
Plus_default = SvgPlus;
|
|
1657
|
+
}
|
|
1658
|
+
});
|
|
1659
|
+
|
|
1464
1660
|
// src/react/PropertiesFilled.tsx
|
|
1465
1661
|
var PropertiesFilled_exports = {};
|
|
1466
1662
|
__export(PropertiesFilled_exports, {
|
|
1467
1663
|
default: () => PropertiesFilled_default
|
|
1468
1664
|
});
|
|
1469
|
-
import * as
|
|
1665
|
+
import * as React35 from "react";
|
|
1470
1666
|
var SvgPropertiesFilled, PropertiesFilled_default;
|
|
1471
1667
|
var init_PropertiesFilled = __esm({
|
|
1472
1668
|
"src/react/PropertiesFilled.tsx"() {
|
|
@@ -1474,7 +1670,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1474
1670
|
init_types();
|
|
1475
1671
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
1476
1672
|
const sizeValue = resolveSize(size);
|
|
1477
|
-
return /* @__PURE__ */
|
|
1673
|
+
return /* @__PURE__ */ React35.createElement(
|
|
1478
1674
|
"svg",
|
|
1479
1675
|
{
|
|
1480
1676
|
width: sizeValue,
|
|
@@ -1484,7 +1680,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1484
1680
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1485
1681
|
...props
|
|
1486
1682
|
},
|
|
1487
|
-
/* @__PURE__ */
|
|
1683
|
+
/* @__PURE__ */ React35.createElement(
|
|
1488
1684
|
"path",
|
|
1489
1685
|
{
|
|
1490
1686
|
fillRule: "evenodd",
|
|
@@ -1493,7 +1689,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1493
1689
|
fill: "currentColor"
|
|
1494
1690
|
}
|
|
1495
1691
|
),
|
|
1496
|
-
/* @__PURE__ */
|
|
1692
|
+
/* @__PURE__ */ React35.createElement(
|
|
1497
1693
|
"path",
|
|
1498
1694
|
{
|
|
1499
1695
|
fillRule: "evenodd",
|
|
@@ -1502,7 +1698,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1502
1698
|
fill: "currentColor"
|
|
1503
1699
|
}
|
|
1504
1700
|
),
|
|
1505
|
-
/* @__PURE__ */
|
|
1701
|
+
/* @__PURE__ */ React35.createElement(
|
|
1506
1702
|
"path",
|
|
1507
1703
|
{
|
|
1508
1704
|
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",
|
|
@@ -1520,7 +1716,7 @@ var PropertiesLinear_exports = {};
|
|
|
1520
1716
|
__export(PropertiesLinear_exports, {
|
|
1521
1717
|
default: () => PropertiesLinear_default
|
|
1522
1718
|
});
|
|
1523
|
-
import * as
|
|
1719
|
+
import * as React36 from "react";
|
|
1524
1720
|
var SvgPropertiesLinear, PropertiesLinear_default;
|
|
1525
1721
|
var init_PropertiesLinear = __esm({
|
|
1526
1722
|
"src/react/PropertiesLinear.tsx"() {
|
|
@@ -1528,7 +1724,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1528
1724
|
init_types();
|
|
1529
1725
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
1530
1726
|
const sizeValue = resolveSize(size);
|
|
1531
|
-
return /* @__PURE__ */
|
|
1727
|
+
return /* @__PURE__ */ React36.createElement(
|
|
1532
1728
|
"svg",
|
|
1533
1729
|
{
|
|
1534
1730
|
width: sizeValue,
|
|
@@ -1538,7 +1734,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1538
1734
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1539
1735
|
...props
|
|
1540
1736
|
},
|
|
1541
|
-
/* @__PURE__ */
|
|
1737
|
+
/* @__PURE__ */ React36.createElement(
|
|
1542
1738
|
"path",
|
|
1543
1739
|
{
|
|
1544
1740
|
fillRule: "evenodd",
|
|
@@ -1547,7 +1743,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1547
1743
|
fill: "currentColor"
|
|
1548
1744
|
}
|
|
1549
1745
|
),
|
|
1550
|
-
/* @__PURE__ */
|
|
1746
|
+
/* @__PURE__ */ React36.createElement(
|
|
1551
1747
|
"path",
|
|
1552
1748
|
{
|
|
1553
1749
|
fillRule: "evenodd",
|
|
@@ -1556,7 +1752,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1556
1752
|
fill: "currentColor"
|
|
1557
1753
|
}
|
|
1558
1754
|
),
|
|
1559
|
-
/* @__PURE__ */
|
|
1755
|
+
/* @__PURE__ */ React36.createElement(
|
|
1560
1756
|
"path",
|
|
1561
1757
|
{
|
|
1562
1758
|
fillRule: "evenodd",
|
|
@@ -1565,7 +1761,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1565
1761
|
fill: "currentColor"
|
|
1566
1762
|
}
|
|
1567
1763
|
),
|
|
1568
|
-
/* @__PURE__ */
|
|
1764
|
+
/* @__PURE__ */ React36.createElement(
|
|
1569
1765
|
"path",
|
|
1570
1766
|
{
|
|
1571
1767
|
fillRule: "evenodd",
|
|
@@ -1574,7 +1770,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1574
1770
|
fill: "currentColor"
|
|
1575
1771
|
}
|
|
1576
1772
|
),
|
|
1577
|
-
/* @__PURE__ */
|
|
1773
|
+
/* @__PURE__ */ React36.createElement(
|
|
1578
1774
|
"path",
|
|
1579
1775
|
{
|
|
1580
1776
|
fillRule: "evenodd",
|
|
@@ -1583,7 +1779,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1583
1779
|
fill: "currentColor"
|
|
1584
1780
|
}
|
|
1585
1781
|
),
|
|
1586
|
-
/* @__PURE__ */
|
|
1782
|
+
/* @__PURE__ */ React36.createElement(
|
|
1587
1783
|
"path",
|
|
1588
1784
|
{
|
|
1589
1785
|
fillRule: "evenodd",
|
|
@@ -1592,7 +1788,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1592
1788
|
fill: "currentColor"
|
|
1593
1789
|
}
|
|
1594
1790
|
),
|
|
1595
|
-
/* @__PURE__ */
|
|
1791
|
+
/* @__PURE__ */ React36.createElement(
|
|
1596
1792
|
"path",
|
|
1597
1793
|
{
|
|
1598
1794
|
fillRule: "evenodd",
|
|
@@ -1612,7 +1808,7 @@ var Rent_exports = {};
|
|
|
1612
1808
|
__export(Rent_exports, {
|
|
1613
1809
|
default: () => Rent_default
|
|
1614
1810
|
});
|
|
1615
|
-
import * as
|
|
1811
|
+
import * as React37 from "react";
|
|
1616
1812
|
var SvgRent, Rent_default;
|
|
1617
1813
|
var init_Rent = __esm({
|
|
1618
1814
|
"src/react/Rent.tsx"() {
|
|
@@ -1620,7 +1816,7 @@ var init_Rent = __esm({
|
|
|
1620
1816
|
init_types();
|
|
1621
1817
|
SvgRent = ({ size = 16, ...props }) => {
|
|
1622
1818
|
const sizeValue = resolveSize(size);
|
|
1623
|
-
return /* @__PURE__ */
|
|
1819
|
+
return /* @__PURE__ */ React37.createElement(
|
|
1624
1820
|
"svg",
|
|
1625
1821
|
{
|
|
1626
1822
|
width: sizeValue,
|
|
@@ -1630,7 +1826,7 @@ var init_Rent = __esm({
|
|
|
1630
1826
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1631
1827
|
...props
|
|
1632
1828
|
},
|
|
1633
|
-
/* @__PURE__ */
|
|
1829
|
+
/* @__PURE__ */ React37.createElement(
|
|
1634
1830
|
"path",
|
|
1635
1831
|
{
|
|
1636
1832
|
fillRule: "evenodd",
|
|
@@ -1639,7 +1835,7 @@ var init_Rent = __esm({
|
|
|
1639
1835
|
fill: "currentColor"
|
|
1640
1836
|
}
|
|
1641
1837
|
),
|
|
1642
|
-
/* @__PURE__ */
|
|
1838
|
+
/* @__PURE__ */ React37.createElement(
|
|
1643
1839
|
"path",
|
|
1644
1840
|
{
|
|
1645
1841
|
fillRule: "evenodd",
|
|
@@ -1648,7 +1844,7 @@ var init_Rent = __esm({
|
|
|
1648
1844
|
fill: "currentColor"
|
|
1649
1845
|
}
|
|
1650
1846
|
),
|
|
1651
|
-
/* @__PURE__ */
|
|
1847
|
+
/* @__PURE__ */ React37.createElement(
|
|
1652
1848
|
"path",
|
|
1653
1849
|
{
|
|
1654
1850
|
fillRule: "evenodd",
|
|
@@ -1668,7 +1864,7 @@ var Search_exports = {};
|
|
|
1668
1864
|
__export(Search_exports, {
|
|
1669
1865
|
default: () => Search_default
|
|
1670
1866
|
});
|
|
1671
|
-
import * as
|
|
1867
|
+
import * as React38 from "react";
|
|
1672
1868
|
var SvgSearch, Search_default;
|
|
1673
1869
|
var init_Search = __esm({
|
|
1674
1870
|
"src/react/Search.tsx"() {
|
|
@@ -1676,7 +1872,7 @@ var init_Search = __esm({
|
|
|
1676
1872
|
init_types();
|
|
1677
1873
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
1678
1874
|
const sizeValue = resolveSize(size);
|
|
1679
|
-
return /* @__PURE__ */
|
|
1875
|
+
return /* @__PURE__ */ React38.createElement(
|
|
1680
1876
|
"svg",
|
|
1681
1877
|
{
|
|
1682
1878
|
width: sizeValue,
|
|
@@ -1686,7 +1882,7 @@ var init_Search = __esm({
|
|
|
1686
1882
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1687
1883
|
...props
|
|
1688
1884
|
},
|
|
1689
|
-
/* @__PURE__ */
|
|
1885
|
+
/* @__PURE__ */ React38.createElement(
|
|
1690
1886
|
"path",
|
|
1691
1887
|
{
|
|
1692
1888
|
fillRule: "evenodd",
|
|
@@ -1695,7 +1891,7 @@ var init_Search = __esm({
|
|
|
1695
1891
|
fill: "currentColor"
|
|
1696
1892
|
}
|
|
1697
1893
|
),
|
|
1698
|
-
/* @__PURE__ */
|
|
1894
|
+
/* @__PURE__ */ React38.createElement(
|
|
1699
1895
|
"path",
|
|
1700
1896
|
{
|
|
1701
1897
|
fillRule: "evenodd",
|
|
@@ -1715,7 +1911,7 @@ var SearchX_exports = {};
|
|
|
1715
1911
|
__export(SearchX_exports, {
|
|
1716
1912
|
default: () => SearchX_default
|
|
1717
1913
|
});
|
|
1718
|
-
import * as
|
|
1914
|
+
import * as React39 from "react";
|
|
1719
1915
|
var SvgSearchX, SearchX_default;
|
|
1720
1916
|
var init_SearchX = __esm({
|
|
1721
1917
|
"src/react/SearchX.tsx"() {
|
|
@@ -1723,7 +1919,7 @@ var init_SearchX = __esm({
|
|
|
1723
1919
|
init_types();
|
|
1724
1920
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
1725
1921
|
const sizeValue = resolveSize(size);
|
|
1726
|
-
return /* @__PURE__ */
|
|
1922
|
+
return /* @__PURE__ */ React39.createElement(
|
|
1727
1923
|
"svg",
|
|
1728
1924
|
{
|
|
1729
1925
|
width: sizeValue,
|
|
@@ -1733,7 +1929,7 @@ var init_SearchX = __esm({
|
|
|
1733
1929
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1734
1930
|
...props
|
|
1735
1931
|
},
|
|
1736
|
-
/* @__PURE__ */
|
|
1932
|
+
/* @__PURE__ */ React39.createElement(
|
|
1737
1933
|
"path",
|
|
1738
1934
|
{
|
|
1739
1935
|
fillRule: "evenodd",
|
|
@@ -1742,7 +1938,7 @@ var init_SearchX = __esm({
|
|
|
1742
1938
|
fill: "currentColor"
|
|
1743
1939
|
}
|
|
1744
1940
|
),
|
|
1745
|
-
/* @__PURE__ */
|
|
1941
|
+
/* @__PURE__ */ React39.createElement(
|
|
1746
1942
|
"path",
|
|
1747
1943
|
{
|
|
1748
1944
|
fillRule: "evenodd",
|
|
@@ -1751,7 +1947,7 @@ var init_SearchX = __esm({
|
|
|
1751
1947
|
fill: "currentColor"
|
|
1752
1948
|
}
|
|
1753
1949
|
),
|
|
1754
|
-
/* @__PURE__ */
|
|
1950
|
+
/* @__PURE__ */ React39.createElement(
|
|
1755
1951
|
"path",
|
|
1756
1952
|
{
|
|
1757
1953
|
fillRule: "evenodd",
|
|
@@ -1760,7 +1956,7 @@ var init_SearchX = __esm({
|
|
|
1760
1956
|
fill: "currentColor"
|
|
1761
1957
|
}
|
|
1762
1958
|
),
|
|
1763
|
-
/* @__PURE__ */
|
|
1959
|
+
/* @__PURE__ */ React39.createElement(
|
|
1764
1960
|
"path",
|
|
1765
1961
|
{
|
|
1766
1962
|
fillRule: "evenodd",
|
|
@@ -1780,7 +1976,7 @@ var Share_exports = {};
|
|
|
1780
1976
|
__export(Share_exports, {
|
|
1781
1977
|
default: () => Share_default
|
|
1782
1978
|
});
|
|
1783
|
-
import * as
|
|
1979
|
+
import * as React40 from "react";
|
|
1784
1980
|
var SvgShare, Share_default;
|
|
1785
1981
|
var init_Share = __esm({
|
|
1786
1982
|
"src/react/Share.tsx"() {
|
|
@@ -1788,7 +1984,7 @@ var init_Share = __esm({
|
|
|
1788
1984
|
init_types();
|
|
1789
1985
|
SvgShare = ({ size = 16, ...props }) => {
|
|
1790
1986
|
const sizeValue = resolveSize(size);
|
|
1791
|
-
return /* @__PURE__ */
|
|
1987
|
+
return /* @__PURE__ */ React40.createElement(
|
|
1792
1988
|
"svg",
|
|
1793
1989
|
{
|
|
1794
1990
|
width: sizeValue,
|
|
@@ -1798,7 +1994,7 @@ var init_Share = __esm({
|
|
|
1798
1994
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1799
1995
|
...props
|
|
1800
1996
|
},
|
|
1801
|
-
/* @__PURE__ */
|
|
1997
|
+
/* @__PURE__ */ React40.createElement(
|
|
1802
1998
|
"path",
|
|
1803
1999
|
{
|
|
1804
2000
|
fillRule: "evenodd",
|
|
@@ -1807,7 +2003,7 @@ var init_Share = __esm({
|
|
|
1807
2003
|
fill: "currentColor"
|
|
1808
2004
|
}
|
|
1809
2005
|
),
|
|
1810
|
-
/* @__PURE__ */
|
|
2006
|
+
/* @__PURE__ */ React40.createElement(
|
|
1811
2007
|
"path",
|
|
1812
2008
|
{
|
|
1813
2009
|
fillRule: "evenodd",
|
|
@@ -1816,7 +2012,7 @@ var init_Share = __esm({
|
|
|
1816
2012
|
fill: "currentColor"
|
|
1817
2013
|
}
|
|
1818
2014
|
),
|
|
1819
|
-
/* @__PURE__ */
|
|
2015
|
+
/* @__PURE__ */ React40.createElement(
|
|
1820
2016
|
"path",
|
|
1821
2017
|
{
|
|
1822
2018
|
fillRule: "evenodd",
|
|
@@ -1831,12 +2027,86 @@ var init_Share = __esm({
|
|
|
1831
2027
|
}
|
|
1832
2028
|
});
|
|
1833
2029
|
|
|
2030
|
+
// src/react/Trash2.tsx
|
|
2031
|
+
var Trash2_exports = {};
|
|
2032
|
+
__export(Trash2_exports, {
|
|
2033
|
+
default: () => Trash2_default
|
|
2034
|
+
});
|
|
2035
|
+
import * as React41 from "react";
|
|
2036
|
+
var SvgTrash2, Trash2_default;
|
|
2037
|
+
var init_Trash2 = __esm({
|
|
2038
|
+
"src/react/Trash2.tsx"() {
|
|
2039
|
+
"use strict";
|
|
2040
|
+
init_types();
|
|
2041
|
+
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
2042
|
+
const sizeValue = resolveSize(size);
|
|
2043
|
+
return /* @__PURE__ */ React41.createElement(
|
|
2044
|
+
"svg",
|
|
2045
|
+
{
|
|
2046
|
+
width: sizeValue,
|
|
2047
|
+
height: sizeValue,
|
|
2048
|
+
viewBox: "0 0 24 24",
|
|
2049
|
+
fill: "none",
|
|
2050
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2051
|
+
...props
|
|
2052
|
+
},
|
|
2053
|
+
/* @__PURE__ */ React41.createElement(
|
|
2054
|
+
"path",
|
|
2055
|
+
{
|
|
2056
|
+
fillRule: "evenodd",
|
|
2057
|
+
clipRule: "evenodd",
|
|
2058
|
+
d: "M2 6C2 5.44772 2.44772 5 3 5H21C21.5523 5 22 5.44772 22 6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6Z",
|
|
2059
|
+
fill: "currentColor"
|
|
2060
|
+
}
|
|
2061
|
+
),
|
|
2062
|
+
/* @__PURE__ */ React41.createElement(
|
|
2063
|
+
"path",
|
|
2064
|
+
{
|
|
2065
|
+
fillRule: "evenodd",
|
|
2066
|
+
clipRule: "evenodd",
|
|
2067
|
+
d: "M5 5C5.55228 5 6 5.44772 6 6V20C6 20.1748 6.09745 20.4332 6.33211 20.6679C6.56676 20.9025 6.82523 21 7 21H17C17.1748 21 17.4332 20.9025 17.6679 20.6679C17.9025 20.4332 18 20.1748 18 20V6C18 5.44772 18.4477 5 19 5C19.5523 5 20 5.44772 20 6V20C20 20.8252 19.5975 21.5668 19.0821 22.0821C18.5668 22.5975 17.8252 23 17 23H7C6.17477 23 5.43324 22.5975 4.91789 22.0821C4.40255 21.5668 4 20.8252 4 20V6C4 5.44772 4.44772 5 5 5Z",
|
|
2068
|
+
fill: "currentColor"
|
|
2069
|
+
}
|
|
2070
|
+
),
|
|
2071
|
+
/* @__PURE__ */ React41.createElement(
|
|
2072
|
+
"path",
|
|
2073
|
+
{
|
|
2074
|
+
fillRule: "evenodd",
|
|
2075
|
+
clipRule: "evenodd",
|
|
2076
|
+
d: "M9.33211 3.33211C9.09745 3.56676 9 3.82523 9 4V6C9 6.55228 8.55228 7 8 7C7.44772 7 7 6.55228 7 6V4C7 3.17477 7.40255 2.43324 7.91789 1.91789C8.43324 1.40255 9.17477 1 10 1H14C14.8252 1 15.5668 1.40255 16.0821 1.91789C16.5975 2.43324 17 3.17477 17 4V6C17 6.55228 16.5523 7 16 7C15.4477 7 15 6.55228 15 6V4C15 3.82523 14.9025 3.56676 14.6679 3.33211C14.4332 3.09745 14.1748 3 14 3H10C9.82523 3 9.56676 3.09745 9.33211 3.33211Z",
|
|
2077
|
+
fill: "currentColor"
|
|
2078
|
+
}
|
|
2079
|
+
),
|
|
2080
|
+
/* @__PURE__ */ React41.createElement(
|
|
2081
|
+
"path",
|
|
2082
|
+
{
|
|
2083
|
+
fillRule: "evenodd",
|
|
2084
|
+
clipRule: "evenodd",
|
|
2085
|
+
d: "M10 10C10.5523 10 11 10.4477 11 11V17C11 17.5523 10.5523 18 10 18C9.44772 18 9 17.5523 9 17V11C9 10.4477 9.44772 10 10 10Z",
|
|
2086
|
+
fill: "currentColor"
|
|
2087
|
+
}
|
|
2088
|
+
),
|
|
2089
|
+
/* @__PURE__ */ React41.createElement(
|
|
2090
|
+
"path",
|
|
2091
|
+
{
|
|
2092
|
+
fillRule: "evenodd",
|
|
2093
|
+
clipRule: "evenodd",
|
|
2094
|
+
d: "M14 10C14.5523 10 15 10.4477 15 11V17C15 17.5523 14.5523 18 14 18C13.4477 18 13 17.5523 13 17V11C13 10.4477 13.4477 10 14 10Z",
|
|
2095
|
+
fill: "currentColor"
|
|
2096
|
+
}
|
|
2097
|
+
)
|
|
2098
|
+
);
|
|
2099
|
+
};
|
|
2100
|
+
Trash2_default = SvgTrash2;
|
|
2101
|
+
}
|
|
2102
|
+
});
|
|
2103
|
+
|
|
1834
2104
|
// src/react/User.tsx
|
|
1835
2105
|
var User_exports = {};
|
|
1836
2106
|
__export(User_exports, {
|
|
1837
2107
|
default: () => User_default
|
|
1838
2108
|
});
|
|
1839
|
-
import * as
|
|
2109
|
+
import * as React42 from "react";
|
|
1840
2110
|
var SvgUser, User_default;
|
|
1841
2111
|
var init_User = __esm({
|
|
1842
2112
|
"src/react/User.tsx"() {
|
|
@@ -1844,7 +2114,7 @@ var init_User = __esm({
|
|
|
1844
2114
|
init_types();
|
|
1845
2115
|
SvgUser = ({ size = 16, ...props }) => {
|
|
1846
2116
|
const sizeValue = resolveSize(size);
|
|
1847
|
-
return /* @__PURE__ */
|
|
2117
|
+
return /* @__PURE__ */ React42.createElement(
|
|
1848
2118
|
"svg",
|
|
1849
2119
|
{
|
|
1850
2120
|
width: sizeValue,
|
|
@@ -1854,7 +2124,7 @@ var init_User = __esm({
|
|
|
1854
2124
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1855
2125
|
...props
|
|
1856
2126
|
},
|
|
1857
|
-
/* @__PURE__ */
|
|
2127
|
+
/* @__PURE__ */ React42.createElement(
|
|
1858
2128
|
"path",
|
|
1859
2129
|
{
|
|
1860
2130
|
fillRule: "evenodd",
|
|
@@ -1863,7 +2133,7 @@ var init_User = __esm({
|
|
|
1863
2133
|
fill: "currentColor"
|
|
1864
2134
|
}
|
|
1865
2135
|
),
|
|
1866
|
-
/* @__PURE__ */
|
|
2136
|
+
/* @__PURE__ */ React42.createElement(
|
|
1867
2137
|
"path",
|
|
1868
2138
|
{
|
|
1869
2139
|
fillRule: "evenodd",
|
|
@@ -1883,7 +2153,7 @@ var Whatsapp_exports = {};
|
|
|
1883
2153
|
__export(Whatsapp_exports, {
|
|
1884
2154
|
default: () => Whatsapp_default
|
|
1885
2155
|
});
|
|
1886
|
-
import * as
|
|
2156
|
+
import * as React43 from "react";
|
|
1887
2157
|
var SvgWhatsapp, Whatsapp_default;
|
|
1888
2158
|
var init_Whatsapp = __esm({
|
|
1889
2159
|
"src/react/Whatsapp.tsx"() {
|
|
@@ -1891,7 +2161,7 @@ var init_Whatsapp = __esm({
|
|
|
1891
2161
|
init_types();
|
|
1892
2162
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
1893
2163
|
const sizeValue = resolveSize(size);
|
|
1894
|
-
return /* @__PURE__ */
|
|
2164
|
+
return /* @__PURE__ */ React43.createElement(
|
|
1895
2165
|
"svg",
|
|
1896
2166
|
{
|
|
1897
2167
|
width: sizeValue,
|
|
@@ -1901,7 +2171,7 @@ var init_Whatsapp = __esm({
|
|
|
1901
2171
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1902
2172
|
...props
|
|
1903
2173
|
},
|
|
1904
|
-
/* @__PURE__ */
|
|
2174
|
+
/* @__PURE__ */ React43.createElement(
|
|
1905
2175
|
"path",
|
|
1906
2176
|
{
|
|
1907
2177
|
fillRule: "evenodd",
|
|
@@ -1935,6 +2205,8 @@ init_ChevronLeft();
|
|
|
1935
2205
|
init_ChevronRight();
|
|
1936
2206
|
init_ChevronUp();
|
|
1937
2207
|
init_Edit();
|
|
2208
|
+
init_ExploreFilled();
|
|
2209
|
+
init_ExploreLinear();
|
|
1938
2210
|
init_EyeHidden();
|
|
1939
2211
|
init_EyeVisible();
|
|
1940
2212
|
init_FileKey();
|
|
@@ -1946,18 +2218,21 @@ init_LeadsFilled();
|
|
|
1946
2218
|
init_LeadsLinear();
|
|
1947
2219
|
init_Mail();
|
|
1948
2220
|
init_Mortgage();
|
|
2221
|
+
init_Note();
|
|
1949
2222
|
init_Payments();
|
|
2223
|
+
init_Plus();
|
|
1950
2224
|
init_PropertiesFilled();
|
|
1951
2225
|
init_PropertiesLinear();
|
|
1952
2226
|
init_Rent();
|
|
1953
2227
|
init_Search();
|
|
1954
2228
|
init_SearchX();
|
|
1955
2229
|
init_Share();
|
|
2230
|
+
init_Trash2();
|
|
1956
2231
|
init_User();
|
|
1957
2232
|
init_Whatsapp();
|
|
1958
2233
|
|
|
1959
2234
|
// src/react/Icon.tsx
|
|
1960
|
-
import * as
|
|
2235
|
+
import * as React44 from "react";
|
|
1961
2236
|
function loadIcon(name) {
|
|
1962
2237
|
switch (name) {
|
|
1963
2238
|
case "alert-triangle":
|
|
@@ -1996,6 +2271,10 @@ function loadIcon(name) {
|
|
|
1996
2271
|
return Promise.resolve().then(() => (init_ChevronUp(), ChevronUp_exports)).then((m) => m.default);
|
|
1997
2272
|
case "edit":
|
|
1998
2273
|
return Promise.resolve().then(() => (init_Edit(), Edit_exports)).then((m) => m.default);
|
|
2274
|
+
case "explore-filled":
|
|
2275
|
+
return Promise.resolve().then(() => (init_ExploreFilled(), ExploreFilled_exports)).then((m) => m.default);
|
|
2276
|
+
case "explore-linear":
|
|
2277
|
+
return Promise.resolve().then(() => (init_ExploreLinear(), ExploreLinear_exports)).then((m) => m.default);
|
|
1999
2278
|
case "eye-hidden":
|
|
2000
2279
|
return Promise.resolve().then(() => (init_EyeHidden(), EyeHidden_exports)).then((m) => m.default);
|
|
2001
2280
|
case "eye-visible":
|
|
@@ -2018,8 +2297,12 @@ function loadIcon(name) {
|
|
|
2018
2297
|
return Promise.resolve().then(() => (init_Mail(), Mail_exports)).then((m) => m.default);
|
|
2019
2298
|
case "mortgage":
|
|
2020
2299
|
return Promise.resolve().then(() => (init_Mortgage(), Mortgage_exports)).then((m) => m.default);
|
|
2300
|
+
case "note":
|
|
2301
|
+
return Promise.resolve().then(() => (init_Note(), Note_exports)).then((m) => m.default);
|
|
2021
2302
|
case "payments":
|
|
2022
2303
|
return Promise.resolve().then(() => (init_Payments(), Payments_exports)).then((m) => m.default);
|
|
2304
|
+
case "plus":
|
|
2305
|
+
return Promise.resolve().then(() => (init_Plus(), Plus_exports)).then((m) => m.default);
|
|
2023
2306
|
case "properties-filled":
|
|
2024
2307
|
return Promise.resolve().then(() => (init_PropertiesFilled(), PropertiesFilled_exports)).then((m) => m.default);
|
|
2025
2308
|
case "properties-linear":
|
|
@@ -2032,6 +2315,8 @@ function loadIcon(name) {
|
|
|
2032
2315
|
return Promise.resolve().then(() => (init_SearchX(), SearchX_exports)).then((m) => m.default);
|
|
2033
2316
|
case "share":
|
|
2034
2317
|
return Promise.resolve().then(() => (init_Share(), Share_exports)).then((m) => m.default);
|
|
2318
|
+
case "trash2":
|
|
2319
|
+
return Promise.resolve().then(() => (init_Trash2(), Trash2_exports)).then((m) => m.default);
|
|
2035
2320
|
case "user":
|
|
2036
2321
|
return Promise.resolve().then(() => (init_User(), User_exports)).then((m) => m.default);
|
|
2037
2322
|
case "whatsapp":
|
|
@@ -2041,10 +2326,10 @@ function loadIcon(name) {
|
|
|
2041
2326
|
}
|
|
2042
2327
|
}
|
|
2043
2328
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
2044
|
-
const [IconComponent, setIconComponent] =
|
|
2045
|
-
const [loading, setLoading] =
|
|
2046
|
-
const [error, setError] =
|
|
2047
|
-
|
|
2329
|
+
const [IconComponent, setIconComponent] = React44.useState(null);
|
|
2330
|
+
const [loading, setLoading] = React44.useState(true);
|
|
2331
|
+
const [error, setError] = React44.useState(null);
|
|
2332
|
+
React44.useEffect(() => {
|
|
2048
2333
|
setLoading(true);
|
|
2049
2334
|
setError(null);
|
|
2050
2335
|
loadIcon(name).then((Component) => {
|
|
@@ -2063,7 +2348,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
2063
2348
|
return null;
|
|
2064
2349
|
}
|
|
2065
2350
|
const style = color ? { ...props.style, color } : props.style;
|
|
2066
|
-
return /* @__PURE__ */
|
|
2351
|
+
return /* @__PURE__ */ React44.createElement(IconComponent, { size, ...props, style });
|
|
2067
2352
|
};
|
|
2068
2353
|
var Icon_default = Icon;
|
|
2069
2354
|
|
|
@@ -2088,6 +2373,8 @@ export {
|
|
|
2088
2373
|
ChevronRight_default as ChevronRight,
|
|
2089
2374
|
ChevronUp_default as ChevronUp,
|
|
2090
2375
|
Edit_default as Edit,
|
|
2376
|
+
ExploreFilled_default as ExploreFilled,
|
|
2377
|
+
ExploreLinear_default as ExploreLinear,
|
|
2091
2378
|
EyeHidden_default as EyeHidden,
|
|
2092
2379
|
EyeVisible_default as EyeVisible,
|
|
2093
2380
|
FileKey_default as FileKey,
|
|
@@ -2101,13 +2388,16 @@ export {
|
|
|
2101
2388
|
LeadsLinear_default as LeadsLinear,
|
|
2102
2389
|
Mail_default as Mail,
|
|
2103
2390
|
Mortgage_default as Mortgage,
|
|
2391
|
+
Note_default as Note,
|
|
2104
2392
|
Payments_default as Payments,
|
|
2393
|
+
Plus_default as Plus,
|
|
2105
2394
|
PropertiesFilled_default as PropertiesFilled,
|
|
2106
2395
|
PropertiesLinear_default as PropertiesLinear,
|
|
2107
2396
|
Rent_default as Rent,
|
|
2108
2397
|
Search_default as Search,
|
|
2109
2398
|
SearchX_default as SearchX,
|
|
2110
2399
|
Share_default as Share,
|
|
2400
|
+
Trash2_default as Trash2,
|
|
2111
2401
|
User_default as User,
|
|
2112
2402
|
Whatsapp_default as Whatsapp,
|
|
2113
2403
|
resolveSize
|