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.js
CHANGED
|
@@ -844,20 +844,121 @@ var init_Edit = __esm({
|
|
|
844
844
|
}
|
|
845
845
|
});
|
|
846
846
|
|
|
847
|
+
// src/react/ExploreFilled.tsx
|
|
848
|
+
var ExploreFilled_exports = {};
|
|
849
|
+
__export(ExploreFilled_exports, {
|
|
850
|
+
default: () => ExploreFilled_default
|
|
851
|
+
});
|
|
852
|
+
var React19, SvgExploreFilled, ExploreFilled_default;
|
|
853
|
+
var init_ExploreFilled = __esm({
|
|
854
|
+
"src/react/ExploreFilled.tsx"() {
|
|
855
|
+
"use strict";
|
|
856
|
+
React19 = __toESM(require("react"));
|
|
857
|
+
init_types();
|
|
858
|
+
SvgExploreFilled = ({ size = 16, ...props }) => {
|
|
859
|
+
const sizeValue = resolveSize(size);
|
|
860
|
+
return /* @__PURE__ */ React19.createElement(
|
|
861
|
+
"svg",
|
|
862
|
+
{
|
|
863
|
+
width: sizeValue,
|
|
864
|
+
height: sizeValue,
|
|
865
|
+
viewBox: "0 0 24 24",
|
|
866
|
+
fill: "none",
|
|
867
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
868
|
+
...props
|
|
869
|
+
},
|
|
870
|
+
/* @__PURE__ */ React19.createElement(
|
|
871
|
+
"path",
|
|
872
|
+
{
|
|
873
|
+
fillRule: "evenodd",
|
|
874
|
+
clipRule: "evenodd",
|
|
875
|
+
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",
|
|
876
|
+
fill: "currentColor"
|
|
877
|
+
}
|
|
878
|
+
),
|
|
879
|
+
/* @__PURE__ */ React19.createElement(
|
|
880
|
+
"path",
|
|
881
|
+
{
|
|
882
|
+
fillRule: "evenodd",
|
|
883
|
+
clipRule: "evenodd",
|
|
884
|
+
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",
|
|
885
|
+
fill: "currentColor"
|
|
886
|
+
}
|
|
887
|
+
),
|
|
888
|
+
/* @__PURE__ */ React19.createElement(
|
|
889
|
+
"path",
|
|
890
|
+
{
|
|
891
|
+
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",
|
|
892
|
+
fill: "currentColor"
|
|
893
|
+
}
|
|
894
|
+
)
|
|
895
|
+
);
|
|
896
|
+
};
|
|
897
|
+
ExploreFilled_default = SvgExploreFilled;
|
|
898
|
+
}
|
|
899
|
+
});
|
|
900
|
+
|
|
901
|
+
// src/react/ExploreLinear.tsx
|
|
902
|
+
var ExploreLinear_exports = {};
|
|
903
|
+
__export(ExploreLinear_exports, {
|
|
904
|
+
default: () => ExploreLinear_default
|
|
905
|
+
});
|
|
906
|
+
var React20, SvgExploreLinear, ExploreLinear_default;
|
|
907
|
+
var init_ExploreLinear = __esm({
|
|
908
|
+
"src/react/ExploreLinear.tsx"() {
|
|
909
|
+
"use strict";
|
|
910
|
+
React20 = __toESM(require("react"));
|
|
911
|
+
init_types();
|
|
912
|
+
SvgExploreLinear = ({ size = 16, ...props }) => {
|
|
913
|
+
const sizeValue = resolveSize(size);
|
|
914
|
+
return /* @__PURE__ */ React20.createElement(
|
|
915
|
+
"svg",
|
|
916
|
+
{
|
|
917
|
+
width: sizeValue,
|
|
918
|
+
height: sizeValue,
|
|
919
|
+
viewBox: "0 0 24 24",
|
|
920
|
+
fill: "none",
|
|
921
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
922
|
+
...props
|
|
923
|
+
},
|
|
924
|
+
/* @__PURE__ */ React20.createElement(
|
|
925
|
+
"path",
|
|
926
|
+
{
|
|
927
|
+
fillRule: "evenodd",
|
|
928
|
+
clipRule: "evenodd",
|
|
929
|
+
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",
|
|
930
|
+
fill: "currentColor"
|
|
931
|
+
}
|
|
932
|
+
),
|
|
933
|
+
/* @__PURE__ */ React20.createElement(
|
|
934
|
+
"path",
|
|
935
|
+
{
|
|
936
|
+
fillRule: "evenodd",
|
|
937
|
+
clipRule: "evenodd",
|
|
938
|
+
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",
|
|
939
|
+
fill: "currentColor"
|
|
940
|
+
}
|
|
941
|
+
)
|
|
942
|
+
);
|
|
943
|
+
};
|
|
944
|
+
ExploreLinear_default = SvgExploreLinear;
|
|
945
|
+
}
|
|
946
|
+
});
|
|
947
|
+
|
|
847
948
|
// src/react/EyeHidden.tsx
|
|
848
949
|
var EyeHidden_exports = {};
|
|
849
950
|
__export(EyeHidden_exports, {
|
|
850
951
|
default: () => EyeHidden_default
|
|
851
952
|
});
|
|
852
|
-
var
|
|
953
|
+
var React21, SvgEyeHidden, EyeHidden_default;
|
|
853
954
|
var init_EyeHidden = __esm({
|
|
854
955
|
"src/react/EyeHidden.tsx"() {
|
|
855
956
|
"use strict";
|
|
856
|
-
|
|
957
|
+
React21 = __toESM(require("react"));
|
|
857
958
|
init_types();
|
|
858
959
|
SvgEyeHidden = ({ size = 16, ...props }) => {
|
|
859
960
|
const sizeValue = resolveSize(size);
|
|
860
|
-
return /* @__PURE__ */
|
|
961
|
+
return /* @__PURE__ */ React21.createElement(
|
|
861
962
|
"svg",
|
|
862
963
|
{
|
|
863
964
|
width: sizeValue,
|
|
@@ -867,7 +968,7 @@ var init_EyeHidden = __esm({
|
|
|
867
968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
868
969
|
...props
|
|
869
970
|
},
|
|
870
|
-
/* @__PURE__ */
|
|
971
|
+
/* @__PURE__ */ React21.createElement(
|
|
871
972
|
"path",
|
|
872
973
|
{
|
|
873
974
|
fillRule: "evenodd",
|
|
@@ -876,7 +977,7 @@ var init_EyeHidden = __esm({
|
|
|
876
977
|
fill: "currentColor"
|
|
877
978
|
}
|
|
878
979
|
),
|
|
879
|
-
/* @__PURE__ */
|
|
980
|
+
/* @__PURE__ */ React21.createElement(
|
|
880
981
|
"path",
|
|
881
982
|
{
|
|
882
983
|
fillRule: "evenodd",
|
|
@@ -885,7 +986,7 @@ var init_EyeHidden = __esm({
|
|
|
885
986
|
fill: "currentColor"
|
|
886
987
|
}
|
|
887
988
|
),
|
|
888
|
-
/* @__PURE__ */
|
|
989
|
+
/* @__PURE__ */ React21.createElement(
|
|
889
990
|
"path",
|
|
890
991
|
{
|
|
891
992
|
fillRule: "evenodd",
|
|
@@ -905,15 +1006,15 @@ var EyeVisible_exports = {};
|
|
|
905
1006
|
__export(EyeVisible_exports, {
|
|
906
1007
|
default: () => EyeVisible_default
|
|
907
1008
|
});
|
|
908
|
-
var
|
|
1009
|
+
var React22, SvgEyeVisible, EyeVisible_default;
|
|
909
1010
|
var init_EyeVisible = __esm({
|
|
910
1011
|
"src/react/EyeVisible.tsx"() {
|
|
911
1012
|
"use strict";
|
|
912
|
-
|
|
1013
|
+
React22 = __toESM(require("react"));
|
|
913
1014
|
init_types();
|
|
914
1015
|
SvgEyeVisible = ({ size = 16, ...props }) => {
|
|
915
1016
|
const sizeValue = resolveSize(size);
|
|
916
|
-
return /* @__PURE__ */
|
|
1017
|
+
return /* @__PURE__ */ React22.createElement(
|
|
917
1018
|
"svg",
|
|
918
1019
|
{
|
|
919
1020
|
width: sizeValue,
|
|
@@ -923,7 +1024,7 @@ var init_EyeVisible = __esm({
|
|
|
923
1024
|
xmlns: "http://www.w3.org/2000/svg",
|
|
924
1025
|
...props
|
|
925
1026
|
},
|
|
926
|
-
/* @__PURE__ */
|
|
1027
|
+
/* @__PURE__ */ React22.createElement(
|
|
927
1028
|
"path",
|
|
928
1029
|
{
|
|
929
1030
|
fillRule: "evenodd",
|
|
@@ -932,7 +1033,7 @@ var init_EyeVisible = __esm({
|
|
|
932
1033
|
fill: "currentColor"
|
|
933
1034
|
}
|
|
934
1035
|
),
|
|
935
|
-
/* @__PURE__ */
|
|
1036
|
+
/* @__PURE__ */ React22.createElement(
|
|
936
1037
|
"path",
|
|
937
1038
|
{
|
|
938
1039
|
fillRule: "evenodd",
|
|
@@ -952,15 +1053,15 @@ var FileKey_exports = {};
|
|
|
952
1053
|
__export(FileKey_exports, {
|
|
953
1054
|
default: () => FileKey_default
|
|
954
1055
|
});
|
|
955
|
-
var
|
|
1056
|
+
var React23, SvgFileKey, FileKey_default;
|
|
956
1057
|
var init_FileKey = __esm({
|
|
957
1058
|
"src/react/FileKey.tsx"() {
|
|
958
1059
|
"use strict";
|
|
959
|
-
|
|
1060
|
+
React23 = __toESM(require("react"));
|
|
960
1061
|
init_types();
|
|
961
1062
|
SvgFileKey = ({ size = 16, ...props }) => {
|
|
962
1063
|
const sizeValue = resolveSize(size);
|
|
963
|
-
return /* @__PURE__ */
|
|
1064
|
+
return /* @__PURE__ */ React23.createElement(
|
|
964
1065
|
"svg",
|
|
965
1066
|
{
|
|
966
1067
|
width: sizeValue,
|
|
@@ -970,7 +1071,7 @@ var init_FileKey = __esm({
|
|
|
970
1071
|
xmlns: "http://www.w3.org/2000/svg",
|
|
971
1072
|
...props
|
|
972
1073
|
},
|
|
973
|
-
/* @__PURE__ */
|
|
1074
|
+
/* @__PURE__ */ React23.createElement(
|
|
974
1075
|
"path",
|
|
975
1076
|
{
|
|
976
1077
|
fillRule: "evenodd",
|
|
@@ -979,7 +1080,7 @@ var init_FileKey = __esm({
|
|
|
979
1080
|
fill: "currentColor"
|
|
980
1081
|
}
|
|
981
1082
|
),
|
|
982
|
-
/* @__PURE__ */
|
|
1083
|
+
/* @__PURE__ */ React23.createElement(
|
|
983
1084
|
"path",
|
|
984
1085
|
{
|
|
985
1086
|
fillRule: "evenodd",
|
|
@@ -988,7 +1089,7 @@ var init_FileKey = __esm({
|
|
|
988
1089
|
fill: "currentColor"
|
|
989
1090
|
}
|
|
990
1091
|
),
|
|
991
|
-
/* @__PURE__ */
|
|
1092
|
+
/* @__PURE__ */ React23.createElement(
|
|
992
1093
|
"path",
|
|
993
1094
|
{
|
|
994
1095
|
fillRule: "evenodd",
|
|
@@ -997,7 +1098,7 @@ var init_FileKey = __esm({
|
|
|
997
1098
|
fill: "currentColor"
|
|
998
1099
|
}
|
|
999
1100
|
),
|
|
1000
|
-
/* @__PURE__ */
|
|
1101
|
+
/* @__PURE__ */ React23.createElement(
|
|
1001
1102
|
"path",
|
|
1002
1103
|
{
|
|
1003
1104
|
fillRule: "evenodd",
|
|
@@ -1017,15 +1118,15 @@ var HomeFilled_exports = {};
|
|
|
1017
1118
|
__export(HomeFilled_exports, {
|
|
1018
1119
|
default: () => HomeFilled_default
|
|
1019
1120
|
});
|
|
1020
|
-
var
|
|
1121
|
+
var React24, SvgHomeFilled, HomeFilled_default;
|
|
1021
1122
|
var init_HomeFilled = __esm({
|
|
1022
1123
|
"src/react/HomeFilled.tsx"() {
|
|
1023
1124
|
"use strict";
|
|
1024
|
-
|
|
1125
|
+
React24 = __toESM(require("react"));
|
|
1025
1126
|
init_types();
|
|
1026
1127
|
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
1027
1128
|
const sizeValue = resolveSize(size);
|
|
1028
|
-
return /* @__PURE__ */
|
|
1129
|
+
return /* @__PURE__ */ React24.createElement(
|
|
1029
1130
|
"svg",
|
|
1030
1131
|
{
|
|
1031
1132
|
width: sizeValue,
|
|
@@ -1035,7 +1136,7 @@ var init_HomeFilled = __esm({
|
|
|
1035
1136
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1036
1137
|
...props
|
|
1037
1138
|
},
|
|
1038
|
-
/* @__PURE__ */
|
|
1139
|
+
/* @__PURE__ */ React24.createElement(
|
|
1039
1140
|
"path",
|
|
1040
1141
|
{
|
|
1041
1142
|
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",
|
|
@@ -1053,15 +1154,15 @@ var HomeLinear_exports = {};
|
|
|
1053
1154
|
__export(HomeLinear_exports, {
|
|
1054
1155
|
default: () => HomeLinear_default
|
|
1055
1156
|
});
|
|
1056
|
-
var
|
|
1157
|
+
var React25, SvgHomeLinear, HomeLinear_default;
|
|
1057
1158
|
var init_HomeLinear = __esm({
|
|
1058
1159
|
"src/react/HomeLinear.tsx"() {
|
|
1059
1160
|
"use strict";
|
|
1060
|
-
|
|
1161
|
+
React25 = __toESM(require("react"));
|
|
1061
1162
|
init_types();
|
|
1062
1163
|
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
1063
1164
|
const sizeValue = resolveSize(size);
|
|
1064
|
-
return /* @__PURE__ */
|
|
1165
|
+
return /* @__PURE__ */ React25.createElement(
|
|
1065
1166
|
"svg",
|
|
1066
1167
|
{
|
|
1067
1168
|
width: sizeValue,
|
|
@@ -1071,7 +1172,7 @@ var init_HomeLinear = __esm({
|
|
|
1071
1172
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1072
1173
|
...props
|
|
1073
1174
|
},
|
|
1074
|
-
/* @__PURE__ */
|
|
1175
|
+
/* @__PURE__ */ React25.createElement(
|
|
1075
1176
|
"path",
|
|
1076
1177
|
{
|
|
1077
1178
|
fillRule: "evenodd",
|
|
@@ -1091,15 +1192,15 @@ var IconSlot_exports = {};
|
|
|
1091
1192
|
__export(IconSlot_exports, {
|
|
1092
1193
|
default: () => IconSlot_default
|
|
1093
1194
|
});
|
|
1094
|
-
var
|
|
1195
|
+
var React26, SvgIconSlot, IconSlot_default;
|
|
1095
1196
|
var init_IconSlot = __esm({
|
|
1096
1197
|
"src/react/IconSlot.tsx"() {
|
|
1097
1198
|
"use strict";
|
|
1098
|
-
|
|
1199
|
+
React26 = __toESM(require("react"));
|
|
1099
1200
|
init_types();
|
|
1100
1201
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
1101
1202
|
const sizeValue = resolveSize(size);
|
|
1102
|
-
return /* @__PURE__ */
|
|
1203
|
+
return /* @__PURE__ */ React26.createElement(
|
|
1103
1204
|
"svg",
|
|
1104
1205
|
{
|
|
1105
1206
|
width: sizeValue,
|
|
@@ -1109,7 +1210,7 @@ var init_IconSlot = __esm({
|
|
|
1109
1210
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1110
1211
|
...props
|
|
1111
1212
|
},
|
|
1112
|
-
/* @__PURE__ */
|
|
1213
|
+
/* @__PURE__ */ React26.createElement(
|
|
1113
1214
|
"path",
|
|
1114
1215
|
{
|
|
1115
1216
|
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",
|
|
@@ -1127,15 +1228,15 @@ var Keys01_exports = {};
|
|
|
1127
1228
|
__export(Keys01_exports, {
|
|
1128
1229
|
default: () => Keys01_default
|
|
1129
1230
|
});
|
|
1130
|
-
var
|
|
1231
|
+
var React27, SvgKeys01, Keys01_default;
|
|
1131
1232
|
var init_Keys01 = __esm({
|
|
1132
1233
|
"src/react/Keys01.tsx"() {
|
|
1133
1234
|
"use strict";
|
|
1134
|
-
|
|
1235
|
+
React27 = __toESM(require("react"));
|
|
1135
1236
|
init_types();
|
|
1136
1237
|
SvgKeys01 = ({ size = 16, ...props }) => {
|
|
1137
1238
|
const sizeValue = resolveSize(size);
|
|
1138
|
-
return /* @__PURE__ */
|
|
1239
|
+
return /* @__PURE__ */ React27.createElement(
|
|
1139
1240
|
"svg",
|
|
1140
1241
|
{
|
|
1141
1242
|
width: sizeValue,
|
|
@@ -1145,7 +1246,7 @@ var init_Keys01 = __esm({
|
|
|
1145
1246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1146
1247
|
...props
|
|
1147
1248
|
},
|
|
1148
|
-
/* @__PURE__ */
|
|
1249
|
+
/* @__PURE__ */ React27.createElement(
|
|
1149
1250
|
"path",
|
|
1150
1251
|
{
|
|
1151
1252
|
fillRule: "evenodd",
|
|
@@ -1154,7 +1255,7 @@ var init_Keys01 = __esm({
|
|
|
1154
1255
|
fill: "currentColor"
|
|
1155
1256
|
}
|
|
1156
1257
|
),
|
|
1157
|
-
/* @__PURE__ */
|
|
1258
|
+
/* @__PURE__ */ React27.createElement(
|
|
1158
1259
|
"path",
|
|
1159
1260
|
{
|
|
1160
1261
|
fillRule: "evenodd",
|
|
@@ -1163,7 +1264,7 @@ var init_Keys01 = __esm({
|
|
|
1163
1264
|
fill: "currentColor"
|
|
1164
1265
|
}
|
|
1165
1266
|
),
|
|
1166
|
-
/* @__PURE__ */
|
|
1267
|
+
/* @__PURE__ */ React27.createElement(
|
|
1167
1268
|
"path",
|
|
1168
1269
|
{
|
|
1169
1270
|
fillRule: "evenodd",
|
|
@@ -1183,15 +1284,15 @@ var LeadsFilled_exports = {};
|
|
|
1183
1284
|
__export(LeadsFilled_exports, {
|
|
1184
1285
|
default: () => LeadsFilled_default
|
|
1185
1286
|
});
|
|
1186
|
-
var
|
|
1287
|
+
var React28, SvgLeadsFilled, LeadsFilled_default;
|
|
1187
1288
|
var init_LeadsFilled = __esm({
|
|
1188
1289
|
"src/react/LeadsFilled.tsx"() {
|
|
1189
1290
|
"use strict";
|
|
1190
|
-
|
|
1291
|
+
React28 = __toESM(require("react"));
|
|
1191
1292
|
init_types();
|
|
1192
1293
|
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
1193
1294
|
const sizeValue = resolveSize(size);
|
|
1194
|
-
return /* @__PURE__ */
|
|
1295
|
+
return /* @__PURE__ */ React28.createElement(
|
|
1195
1296
|
"svg",
|
|
1196
1297
|
{
|
|
1197
1298
|
width: sizeValue,
|
|
@@ -1201,7 +1302,7 @@ var init_LeadsFilled = __esm({
|
|
|
1201
1302
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1202
1303
|
...props
|
|
1203
1304
|
},
|
|
1204
|
-
/* @__PURE__ */
|
|
1305
|
+
/* @__PURE__ */ React28.createElement(
|
|
1205
1306
|
"path",
|
|
1206
1307
|
{
|
|
1207
1308
|
fillRule: "evenodd",
|
|
@@ -1210,7 +1311,7 @@ var init_LeadsFilled = __esm({
|
|
|
1210
1311
|
fill: "currentColor"
|
|
1211
1312
|
}
|
|
1212
1313
|
),
|
|
1213
|
-
/* @__PURE__ */
|
|
1314
|
+
/* @__PURE__ */ React28.createElement(
|
|
1214
1315
|
"path",
|
|
1215
1316
|
{
|
|
1216
1317
|
fillRule: "evenodd",
|
|
@@ -1219,7 +1320,7 @@ var init_LeadsFilled = __esm({
|
|
|
1219
1320
|
fill: "currentColor"
|
|
1220
1321
|
}
|
|
1221
1322
|
),
|
|
1222
|
-
/* @__PURE__ */
|
|
1323
|
+
/* @__PURE__ */ React28.createElement(
|
|
1223
1324
|
"path",
|
|
1224
1325
|
{
|
|
1225
1326
|
fillRule: "evenodd",
|
|
@@ -1228,7 +1329,7 @@ var init_LeadsFilled = __esm({
|
|
|
1228
1329
|
fill: "currentColor"
|
|
1229
1330
|
}
|
|
1230
1331
|
),
|
|
1231
|
-
/* @__PURE__ */
|
|
1332
|
+
/* @__PURE__ */ React28.createElement(
|
|
1232
1333
|
"path",
|
|
1233
1334
|
{
|
|
1234
1335
|
fillRule: "evenodd",
|
|
@@ -1248,15 +1349,15 @@ var LeadsLinear_exports = {};
|
|
|
1248
1349
|
__export(LeadsLinear_exports, {
|
|
1249
1350
|
default: () => LeadsLinear_default
|
|
1250
1351
|
});
|
|
1251
|
-
var
|
|
1352
|
+
var React29, SvgLeadsLinear, LeadsLinear_default;
|
|
1252
1353
|
var init_LeadsLinear = __esm({
|
|
1253
1354
|
"src/react/LeadsLinear.tsx"() {
|
|
1254
1355
|
"use strict";
|
|
1255
|
-
|
|
1356
|
+
React29 = __toESM(require("react"));
|
|
1256
1357
|
init_types();
|
|
1257
1358
|
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
1258
1359
|
const sizeValue = resolveSize(size);
|
|
1259
|
-
return /* @__PURE__ */
|
|
1360
|
+
return /* @__PURE__ */ React29.createElement(
|
|
1260
1361
|
"svg",
|
|
1261
1362
|
{
|
|
1262
1363
|
width: sizeValue,
|
|
@@ -1266,7 +1367,7 @@ var init_LeadsLinear = __esm({
|
|
|
1266
1367
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1267
1368
|
...props
|
|
1268
1369
|
},
|
|
1269
|
-
/* @__PURE__ */
|
|
1370
|
+
/* @__PURE__ */ React29.createElement(
|
|
1270
1371
|
"path",
|
|
1271
1372
|
{
|
|
1272
1373
|
fillRule: "evenodd",
|
|
@@ -1275,7 +1376,7 @@ var init_LeadsLinear = __esm({
|
|
|
1275
1376
|
fill: "currentColor"
|
|
1276
1377
|
}
|
|
1277
1378
|
),
|
|
1278
|
-
/* @__PURE__ */
|
|
1379
|
+
/* @__PURE__ */ React29.createElement(
|
|
1279
1380
|
"path",
|
|
1280
1381
|
{
|
|
1281
1382
|
fillRule: "evenodd",
|
|
@@ -1284,7 +1385,7 @@ var init_LeadsLinear = __esm({
|
|
|
1284
1385
|
fill: "currentColor"
|
|
1285
1386
|
}
|
|
1286
1387
|
),
|
|
1287
|
-
/* @__PURE__ */
|
|
1388
|
+
/* @__PURE__ */ React29.createElement(
|
|
1288
1389
|
"path",
|
|
1289
1390
|
{
|
|
1290
1391
|
fillRule: "evenodd",
|
|
@@ -1293,7 +1394,7 @@ var init_LeadsLinear = __esm({
|
|
|
1293
1394
|
fill: "currentColor"
|
|
1294
1395
|
}
|
|
1295
1396
|
),
|
|
1296
|
-
/* @__PURE__ */
|
|
1397
|
+
/* @__PURE__ */ React29.createElement(
|
|
1297
1398
|
"path",
|
|
1298
1399
|
{
|
|
1299
1400
|
fillRule: "evenodd",
|
|
@@ -1313,15 +1414,15 @@ var Mail_exports = {};
|
|
|
1313
1414
|
__export(Mail_exports, {
|
|
1314
1415
|
default: () => Mail_default
|
|
1315
1416
|
});
|
|
1316
|
-
var
|
|
1417
|
+
var React30, SvgMail, Mail_default;
|
|
1317
1418
|
var init_Mail = __esm({
|
|
1318
1419
|
"src/react/Mail.tsx"() {
|
|
1319
1420
|
"use strict";
|
|
1320
|
-
|
|
1421
|
+
React30 = __toESM(require("react"));
|
|
1321
1422
|
init_types();
|
|
1322
1423
|
SvgMail = ({ size = 16, ...props }) => {
|
|
1323
1424
|
const sizeValue = resolveSize(size);
|
|
1324
|
-
return /* @__PURE__ */
|
|
1425
|
+
return /* @__PURE__ */ React30.createElement(
|
|
1325
1426
|
"svg",
|
|
1326
1427
|
{
|
|
1327
1428
|
width: sizeValue,
|
|
@@ -1331,7 +1432,7 @@ var init_Mail = __esm({
|
|
|
1331
1432
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1332
1433
|
...props
|
|
1333
1434
|
},
|
|
1334
|
-
/* @__PURE__ */
|
|
1435
|
+
/* @__PURE__ */ React30.createElement(
|
|
1335
1436
|
"path",
|
|
1336
1437
|
{
|
|
1337
1438
|
fillRule: "evenodd",
|
|
@@ -1340,7 +1441,7 @@ var init_Mail = __esm({
|
|
|
1340
1441
|
fill: "currentColor"
|
|
1341
1442
|
}
|
|
1342
1443
|
),
|
|
1343
|
-
/* @__PURE__ */
|
|
1444
|
+
/* @__PURE__ */ React30.createElement(
|
|
1344
1445
|
"path",
|
|
1345
1446
|
{
|
|
1346
1447
|
fillRule: "evenodd",
|
|
@@ -1360,15 +1461,15 @@ var Mortgage_exports = {};
|
|
|
1360
1461
|
__export(Mortgage_exports, {
|
|
1361
1462
|
default: () => Mortgage_default
|
|
1362
1463
|
});
|
|
1363
|
-
var
|
|
1464
|
+
var React31, SvgMortgage, Mortgage_default;
|
|
1364
1465
|
var init_Mortgage = __esm({
|
|
1365
1466
|
"src/react/Mortgage.tsx"() {
|
|
1366
1467
|
"use strict";
|
|
1367
|
-
|
|
1468
|
+
React31 = __toESM(require("react"));
|
|
1368
1469
|
init_types();
|
|
1369
1470
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
1370
1471
|
const sizeValue = resolveSize(size);
|
|
1371
|
-
return /* @__PURE__ */
|
|
1472
|
+
return /* @__PURE__ */ React31.createElement(
|
|
1372
1473
|
"svg",
|
|
1373
1474
|
{
|
|
1374
1475
|
width: sizeValue,
|
|
@@ -1378,7 +1479,7 @@ var init_Mortgage = __esm({
|
|
|
1378
1479
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1379
1480
|
...props
|
|
1380
1481
|
},
|
|
1381
|
-
/* @__PURE__ */
|
|
1482
|
+
/* @__PURE__ */ React31.createElement(
|
|
1382
1483
|
"path",
|
|
1383
1484
|
{
|
|
1384
1485
|
fillRule: "evenodd",
|
|
@@ -1387,7 +1488,7 @@ var init_Mortgage = __esm({
|
|
|
1387
1488
|
fill: "currentColor"
|
|
1388
1489
|
}
|
|
1389
1490
|
),
|
|
1390
|
-
/* @__PURE__ */
|
|
1491
|
+
/* @__PURE__ */ React31.createElement(
|
|
1391
1492
|
"path",
|
|
1392
1493
|
{
|
|
1393
1494
|
fillRule: "evenodd",
|
|
@@ -1396,7 +1497,7 @@ var init_Mortgage = __esm({
|
|
|
1396
1497
|
fill: "currentColor"
|
|
1397
1498
|
}
|
|
1398
1499
|
),
|
|
1399
|
-
/* @__PURE__ */
|
|
1500
|
+
/* @__PURE__ */ React31.createElement(
|
|
1400
1501
|
"path",
|
|
1401
1502
|
{
|
|
1402
1503
|
fillRule: "evenodd",
|
|
@@ -1405,7 +1506,7 @@ var init_Mortgage = __esm({
|
|
|
1405
1506
|
fill: "currentColor"
|
|
1406
1507
|
}
|
|
1407
1508
|
),
|
|
1408
|
-
/* @__PURE__ */
|
|
1509
|
+
/* @__PURE__ */ React31.createElement(
|
|
1409
1510
|
"path",
|
|
1410
1511
|
{
|
|
1411
1512
|
fillRule: "evenodd",
|
|
@@ -1414,7 +1515,7 @@ var init_Mortgage = __esm({
|
|
|
1414
1515
|
fill: "currentColor"
|
|
1415
1516
|
}
|
|
1416
1517
|
),
|
|
1417
|
-
/* @__PURE__ */
|
|
1518
|
+
/* @__PURE__ */ React31.createElement(
|
|
1418
1519
|
"path",
|
|
1419
1520
|
{
|
|
1420
1521
|
fillRule: "evenodd",
|
|
@@ -1423,7 +1524,7 @@ var init_Mortgage = __esm({
|
|
|
1423
1524
|
fill: "currentColor"
|
|
1424
1525
|
}
|
|
1425
1526
|
),
|
|
1426
|
-
/* @__PURE__ */
|
|
1527
|
+
/* @__PURE__ */ React31.createElement(
|
|
1427
1528
|
"path",
|
|
1428
1529
|
{
|
|
1429
1530
|
fillRule: "evenodd",
|
|
@@ -1432,7 +1533,7 @@ var init_Mortgage = __esm({
|
|
|
1432
1533
|
fill: "currentColor"
|
|
1433
1534
|
}
|
|
1434
1535
|
),
|
|
1435
|
-
/* @__PURE__ */
|
|
1536
|
+
/* @__PURE__ */ React31.createElement(
|
|
1436
1537
|
"path",
|
|
1437
1538
|
{
|
|
1438
1539
|
fillRule: "evenodd",
|
|
@@ -1447,20 +1548,79 @@ var init_Mortgage = __esm({
|
|
|
1447
1548
|
}
|
|
1448
1549
|
});
|
|
1449
1550
|
|
|
1551
|
+
// src/react/Note.tsx
|
|
1552
|
+
var Note_exports = {};
|
|
1553
|
+
__export(Note_exports, {
|
|
1554
|
+
default: () => Note_default
|
|
1555
|
+
});
|
|
1556
|
+
var React32, SvgNote, Note_default;
|
|
1557
|
+
var init_Note = __esm({
|
|
1558
|
+
"src/react/Note.tsx"() {
|
|
1559
|
+
"use strict";
|
|
1560
|
+
React32 = __toESM(require("react"));
|
|
1561
|
+
init_types();
|
|
1562
|
+
SvgNote = ({ size = 16, ...props }) => {
|
|
1563
|
+
const sizeValue = resolveSize(size);
|
|
1564
|
+
return /* @__PURE__ */ React32.createElement(
|
|
1565
|
+
"svg",
|
|
1566
|
+
{
|
|
1567
|
+
width: sizeValue,
|
|
1568
|
+
height: sizeValue,
|
|
1569
|
+
viewBox: "0 0 28 28",
|
|
1570
|
+
fill: "none",
|
|
1571
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1572
|
+
...props
|
|
1573
|
+
},
|
|
1574
|
+
/* @__PURE__ */ React32.createElement(
|
|
1575
|
+
"path",
|
|
1576
|
+
{
|
|
1577
|
+
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",
|
|
1578
|
+
stroke: "#1A1A1A",
|
|
1579
|
+
strokeWidth: 2.1,
|
|
1580
|
+
strokeLinecap: "round",
|
|
1581
|
+
strokeLinejoin: "round"
|
|
1582
|
+
}
|
|
1583
|
+
),
|
|
1584
|
+
/* @__PURE__ */ React32.createElement(
|
|
1585
|
+
"path",
|
|
1586
|
+
{
|
|
1587
|
+
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",
|
|
1588
|
+
stroke: "#1A1A1A",
|
|
1589
|
+
strokeWidth: 2.1,
|
|
1590
|
+
strokeLinecap: "round",
|
|
1591
|
+
strokeLinejoin: "round"
|
|
1592
|
+
}
|
|
1593
|
+
),
|
|
1594
|
+
/* @__PURE__ */ React32.createElement(
|
|
1595
|
+
"path",
|
|
1596
|
+
{
|
|
1597
|
+
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",
|
|
1598
|
+
stroke: "#1A1A1A",
|
|
1599
|
+
strokeWidth: 2.1,
|
|
1600
|
+
strokeLinecap: "round",
|
|
1601
|
+
strokeLinejoin: "round"
|
|
1602
|
+
}
|
|
1603
|
+
)
|
|
1604
|
+
);
|
|
1605
|
+
};
|
|
1606
|
+
Note_default = SvgNote;
|
|
1607
|
+
}
|
|
1608
|
+
});
|
|
1609
|
+
|
|
1450
1610
|
// src/react/Payments.tsx
|
|
1451
1611
|
var Payments_exports = {};
|
|
1452
1612
|
__export(Payments_exports, {
|
|
1453
1613
|
default: () => Payments_default
|
|
1454
1614
|
});
|
|
1455
|
-
var
|
|
1615
|
+
var React33, SvgPayments, Payments_default;
|
|
1456
1616
|
var init_Payments = __esm({
|
|
1457
1617
|
"src/react/Payments.tsx"() {
|
|
1458
1618
|
"use strict";
|
|
1459
|
-
|
|
1619
|
+
React33 = __toESM(require("react"));
|
|
1460
1620
|
init_types();
|
|
1461
1621
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
1462
1622
|
const sizeValue = resolveSize(size);
|
|
1463
|
-
return /* @__PURE__ */
|
|
1623
|
+
return /* @__PURE__ */ React33.createElement(
|
|
1464
1624
|
"svg",
|
|
1465
1625
|
{
|
|
1466
1626
|
width: sizeValue,
|
|
@@ -1470,7 +1630,7 @@ var init_Payments = __esm({
|
|
|
1470
1630
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1471
1631
|
...props
|
|
1472
1632
|
},
|
|
1473
|
-
/* @__PURE__ */
|
|
1633
|
+
/* @__PURE__ */ React33.createElement(
|
|
1474
1634
|
"path",
|
|
1475
1635
|
{
|
|
1476
1636
|
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",
|
|
@@ -1483,20 +1643,56 @@ var init_Payments = __esm({
|
|
|
1483
1643
|
}
|
|
1484
1644
|
});
|
|
1485
1645
|
|
|
1646
|
+
// src/react/Plus.tsx
|
|
1647
|
+
var Plus_exports = {};
|
|
1648
|
+
__export(Plus_exports, {
|
|
1649
|
+
default: () => Plus_default
|
|
1650
|
+
});
|
|
1651
|
+
var React34, SvgPlus, Plus_default;
|
|
1652
|
+
var init_Plus = __esm({
|
|
1653
|
+
"src/react/Plus.tsx"() {
|
|
1654
|
+
"use strict";
|
|
1655
|
+
React34 = __toESM(require("react"));
|
|
1656
|
+
init_types();
|
|
1657
|
+
SvgPlus = ({ size = 16, ...props }) => {
|
|
1658
|
+
const sizeValue = resolveSize(size);
|
|
1659
|
+
return /* @__PURE__ */ React34.createElement(
|
|
1660
|
+
"svg",
|
|
1661
|
+
{
|
|
1662
|
+
width: sizeValue,
|
|
1663
|
+
height: sizeValue,
|
|
1664
|
+
viewBox: "0 0 16 16",
|
|
1665
|
+
fill: "none",
|
|
1666
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1667
|
+
...props
|
|
1668
|
+
},
|
|
1669
|
+
/* @__PURE__ */ React34.createElement(
|
|
1670
|
+
"path",
|
|
1671
|
+
{
|
|
1672
|
+
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",
|
|
1673
|
+
fill: "currentColor"
|
|
1674
|
+
}
|
|
1675
|
+
)
|
|
1676
|
+
);
|
|
1677
|
+
};
|
|
1678
|
+
Plus_default = SvgPlus;
|
|
1679
|
+
}
|
|
1680
|
+
});
|
|
1681
|
+
|
|
1486
1682
|
// src/react/PropertiesFilled.tsx
|
|
1487
1683
|
var PropertiesFilled_exports = {};
|
|
1488
1684
|
__export(PropertiesFilled_exports, {
|
|
1489
1685
|
default: () => PropertiesFilled_default
|
|
1490
1686
|
});
|
|
1491
|
-
var
|
|
1687
|
+
var React35, SvgPropertiesFilled, PropertiesFilled_default;
|
|
1492
1688
|
var init_PropertiesFilled = __esm({
|
|
1493
1689
|
"src/react/PropertiesFilled.tsx"() {
|
|
1494
1690
|
"use strict";
|
|
1495
|
-
|
|
1691
|
+
React35 = __toESM(require("react"));
|
|
1496
1692
|
init_types();
|
|
1497
1693
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
1498
1694
|
const sizeValue = resolveSize(size);
|
|
1499
|
-
return /* @__PURE__ */
|
|
1695
|
+
return /* @__PURE__ */ React35.createElement(
|
|
1500
1696
|
"svg",
|
|
1501
1697
|
{
|
|
1502
1698
|
width: sizeValue,
|
|
@@ -1506,7 +1702,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1506
1702
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1507
1703
|
...props
|
|
1508
1704
|
},
|
|
1509
|
-
/* @__PURE__ */
|
|
1705
|
+
/* @__PURE__ */ React35.createElement(
|
|
1510
1706
|
"path",
|
|
1511
1707
|
{
|
|
1512
1708
|
fillRule: "evenodd",
|
|
@@ -1515,7 +1711,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1515
1711
|
fill: "currentColor"
|
|
1516
1712
|
}
|
|
1517
1713
|
),
|
|
1518
|
-
/* @__PURE__ */
|
|
1714
|
+
/* @__PURE__ */ React35.createElement(
|
|
1519
1715
|
"path",
|
|
1520
1716
|
{
|
|
1521
1717
|
fillRule: "evenodd",
|
|
@@ -1524,7 +1720,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1524
1720
|
fill: "currentColor"
|
|
1525
1721
|
}
|
|
1526
1722
|
),
|
|
1527
|
-
/* @__PURE__ */
|
|
1723
|
+
/* @__PURE__ */ React35.createElement(
|
|
1528
1724
|
"path",
|
|
1529
1725
|
{
|
|
1530
1726
|
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",
|
|
@@ -1542,15 +1738,15 @@ var PropertiesLinear_exports = {};
|
|
|
1542
1738
|
__export(PropertiesLinear_exports, {
|
|
1543
1739
|
default: () => PropertiesLinear_default
|
|
1544
1740
|
});
|
|
1545
|
-
var
|
|
1741
|
+
var React36, SvgPropertiesLinear, PropertiesLinear_default;
|
|
1546
1742
|
var init_PropertiesLinear = __esm({
|
|
1547
1743
|
"src/react/PropertiesLinear.tsx"() {
|
|
1548
1744
|
"use strict";
|
|
1549
|
-
|
|
1745
|
+
React36 = __toESM(require("react"));
|
|
1550
1746
|
init_types();
|
|
1551
1747
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
1552
1748
|
const sizeValue = resolveSize(size);
|
|
1553
|
-
return /* @__PURE__ */
|
|
1749
|
+
return /* @__PURE__ */ React36.createElement(
|
|
1554
1750
|
"svg",
|
|
1555
1751
|
{
|
|
1556
1752
|
width: sizeValue,
|
|
@@ -1560,7 +1756,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1560
1756
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1561
1757
|
...props
|
|
1562
1758
|
},
|
|
1563
|
-
/* @__PURE__ */
|
|
1759
|
+
/* @__PURE__ */ React36.createElement(
|
|
1564
1760
|
"path",
|
|
1565
1761
|
{
|
|
1566
1762
|
fillRule: "evenodd",
|
|
@@ -1569,7 +1765,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1569
1765
|
fill: "currentColor"
|
|
1570
1766
|
}
|
|
1571
1767
|
),
|
|
1572
|
-
/* @__PURE__ */
|
|
1768
|
+
/* @__PURE__ */ React36.createElement(
|
|
1573
1769
|
"path",
|
|
1574
1770
|
{
|
|
1575
1771
|
fillRule: "evenodd",
|
|
@@ -1578,7 +1774,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1578
1774
|
fill: "currentColor"
|
|
1579
1775
|
}
|
|
1580
1776
|
),
|
|
1581
|
-
/* @__PURE__ */
|
|
1777
|
+
/* @__PURE__ */ React36.createElement(
|
|
1582
1778
|
"path",
|
|
1583
1779
|
{
|
|
1584
1780
|
fillRule: "evenodd",
|
|
@@ -1587,7 +1783,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1587
1783
|
fill: "currentColor"
|
|
1588
1784
|
}
|
|
1589
1785
|
),
|
|
1590
|
-
/* @__PURE__ */
|
|
1786
|
+
/* @__PURE__ */ React36.createElement(
|
|
1591
1787
|
"path",
|
|
1592
1788
|
{
|
|
1593
1789
|
fillRule: "evenodd",
|
|
@@ -1596,7 +1792,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1596
1792
|
fill: "currentColor"
|
|
1597
1793
|
}
|
|
1598
1794
|
),
|
|
1599
|
-
/* @__PURE__ */
|
|
1795
|
+
/* @__PURE__ */ React36.createElement(
|
|
1600
1796
|
"path",
|
|
1601
1797
|
{
|
|
1602
1798
|
fillRule: "evenodd",
|
|
@@ -1605,7 +1801,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1605
1801
|
fill: "currentColor"
|
|
1606
1802
|
}
|
|
1607
1803
|
),
|
|
1608
|
-
/* @__PURE__ */
|
|
1804
|
+
/* @__PURE__ */ React36.createElement(
|
|
1609
1805
|
"path",
|
|
1610
1806
|
{
|
|
1611
1807
|
fillRule: "evenodd",
|
|
@@ -1614,7 +1810,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1614
1810
|
fill: "currentColor"
|
|
1615
1811
|
}
|
|
1616
1812
|
),
|
|
1617
|
-
/* @__PURE__ */
|
|
1813
|
+
/* @__PURE__ */ React36.createElement(
|
|
1618
1814
|
"path",
|
|
1619
1815
|
{
|
|
1620
1816
|
fillRule: "evenodd",
|
|
@@ -1634,15 +1830,15 @@ var Rent_exports = {};
|
|
|
1634
1830
|
__export(Rent_exports, {
|
|
1635
1831
|
default: () => Rent_default
|
|
1636
1832
|
});
|
|
1637
|
-
var
|
|
1833
|
+
var React37, SvgRent, Rent_default;
|
|
1638
1834
|
var init_Rent = __esm({
|
|
1639
1835
|
"src/react/Rent.tsx"() {
|
|
1640
1836
|
"use strict";
|
|
1641
|
-
|
|
1837
|
+
React37 = __toESM(require("react"));
|
|
1642
1838
|
init_types();
|
|
1643
1839
|
SvgRent = ({ size = 16, ...props }) => {
|
|
1644
1840
|
const sizeValue = resolveSize(size);
|
|
1645
|
-
return /* @__PURE__ */
|
|
1841
|
+
return /* @__PURE__ */ React37.createElement(
|
|
1646
1842
|
"svg",
|
|
1647
1843
|
{
|
|
1648
1844
|
width: sizeValue,
|
|
@@ -1652,7 +1848,7 @@ var init_Rent = __esm({
|
|
|
1652
1848
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1653
1849
|
...props
|
|
1654
1850
|
},
|
|
1655
|
-
/* @__PURE__ */
|
|
1851
|
+
/* @__PURE__ */ React37.createElement(
|
|
1656
1852
|
"path",
|
|
1657
1853
|
{
|
|
1658
1854
|
fillRule: "evenodd",
|
|
@@ -1661,7 +1857,7 @@ var init_Rent = __esm({
|
|
|
1661
1857
|
fill: "currentColor"
|
|
1662
1858
|
}
|
|
1663
1859
|
),
|
|
1664
|
-
/* @__PURE__ */
|
|
1860
|
+
/* @__PURE__ */ React37.createElement(
|
|
1665
1861
|
"path",
|
|
1666
1862
|
{
|
|
1667
1863
|
fillRule: "evenodd",
|
|
@@ -1670,7 +1866,7 @@ var init_Rent = __esm({
|
|
|
1670
1866
|
fill: "currentColor"
|
|
1671
1867
|
}
|
|
1672
1868
|
),
|
|
1673
|
-
/* @__PURE__ */
|
|
1869
|
+
/* @__PURE__ */ React37.createElement(
|
|
1674
1870
|
"path",
|
|
1675
1871
|
{
|
|
1676
1872
|
fillRule: "evenodd",
|
|
@@ -1690,15 +1886,15 @@ var Search_exports = {};
|
|
|
1690
1886
|
__export(Search_exports, {
|
|
1691
1887
|
default: () => Search_default
|
|
1692
1888
|
});
|
|
1693
|
-
var
|
|
1889
|
+
var React38, SvgSearch, Search_default;
|
|
1694
1890
|
var init_Search = __esm({
|
|
1695
1891
|
"src/react/Search.tsx"() {
|
|
1696
1892
|
"use strict";
|
|
1697
|
-
|
|
1893
|
+
React38 = __toESM(require("react"));
|
|
1698
1894
|
init_types();
|
|
1699
1895
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
1700
1896
|
const sizeValue = resolveSize(size);
|
|
1701
|
-
return /* @__PURE__ */
|
|
1897
|
+
return /* @__PURE__ */ React38.createElement(
|
|
1702
1898
|
"svg",
|
|
1703
1899
|
{
|
|
1704
1900
|
width: sizeValue,
|
|
@@ -1708,7 +1904,7 @@ var init_Search = __esm({
|
|
|
1708
1904
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1709
1905
|
...props
|
|
1710
1906
|
},
|
|
1711
|
-
/* @__PURE__ */
|
|
1907
|
+
/* @__PURE__ */ React38.createElement(
|
|
1712
1908
|
"path",
|
|
1713
1909
|
{
|
|
1714
1910
|
fillRule: "evenodd",
|
|
@@ -1717,7 +1913,7 @@ var init_Search = __esm({
|
|
|
1717
1913
|
fill: "currentColor"
|
|
1718
1914
|
}
|
|
1719
1915
|
),
|
|
1720
|
-
/* @__PURE__ */
|
|
1916
|
+
/* @__PURE__ */ React38.createElement(
|
|
1721
1917
|
"path",
|
|
1722
1918
|
{
|
|
1723
1919
|
fillRule: "evenodd",
|
|
@@ -1737,15 +1933,15 @@ var SearchX_exports = {};
|
|
|
1737
1933
|
__export(SearchX_exports, {
|
|
1738
1934
|
default: () => SearchX_default
|
|
1739
1935
|
});
|
|
1740
|
-
var
|
|
1936
|
+
var React39, SvgSearchX, SearchX_default;
|
|
1741
1937
|
var init_SearchX = __esm({
|
|
1742
1938
|
"src/react/SearchX.tsx"() {
|
|
1743
1939
|
"use strict";
|
|
1744
|
-
|
|
1940
|
+
React39 = __toESM(require("react"));
|
|
1745
1941
|
init_types();
|
|
1746
1942
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
1747
1943
|
const sizeValue = resolveSize(size);
|
|
1748
|
-
return /* @__PURE__ */
|
|
1944
|
+
return /* @__PURE__ */ React39.createElement(
|
|
1749
1945
|
"svg",
|
|
1750
1946
|
{
|
|
1751
1947
|
width: sizeValue,
|
|
@@ -1755,7 +1951,7 @@ var init_SearchX = __esm({
|
|
|
1755
1951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1756
1952
|
...props
|
|
1757
1953
|
},
|
|
1758
|
-
/* @__PURE__ */
|
|
1954
|
+
/* @__PURE__ */ React39.createElement(
|
|
1759
1955
|
"path",
|
|
1760
1956
|
{
|
|
1761
1957
|
fillRule: "evenodd",
|
|
@@ -1764,7 +1960,7 @@ var init_SearchX = __esm({
|
|
|
1764
1960
|
fill: "currentColor"
|
|
1765
1961
|
}
|
|
1766
1962
|
),
|
|
1767
|
-
/* @__PURE__ */
|
|
1963
|
+
/* @__PURE__ */ React39.createElement(
|
|
1768
1964
|
"path",
|
|
1769
1965
|
{
|
|
1770
1966
|
fillRule: "evenodd",
|
|
@@ -1773,7 +1969,7 @@ var init_SearchX = __esm({
|
|
|
1773
1969
|
fill: "currentColor"
|
|
1774
1970
|
}
|
|
1775
1971
|
),
|
|
1776
|
-
/* @__PURE__ */
|
|
1972
|
+
/* @__PURE__ */ React39.createElement(
|
|
1777
1973
|
"path",
|
|
1778
1974
|
{
|
|
1779
1975
|
fillRule: "evenodd",
|
|
@@ -1782,7 +1978,7 @@ var init_SearchX = __esm({
|
|
|
1782
1978
|
fill: "currentColor"
|
|
1783
1979
|
}
|
|
1784
1980
|
),
|
|
1785
|
-
/* @__PURE__ */
|
|
1981
|
+
/* @__PURE__ */ React39.createElement(
|
|
1786
1982
|
"path",
|
|
1787
1983
|
{
|
|
1788
1984
|
fillRule: "evenodd",
|
|
@@ -1802,15 +1998,15 @@ var Share_exports = {};
|
|
|
1802
1998
|
__export(Share_exports, {
|
|
1803
1999
|
default: () => Share_default
|
|
1804
2000
|
});
|
|
1805
|
-
var
|
|
2001
|
+
var React40, SvgShare, Share_default;
|
|
1806
2002
|
var init_Share = __esm({
|
|
1807
2003
|
"src/react/Share.tsx"() {
|
|
1808
2004
|
"use strict";
|
|
1809
|
-
|
|
2005
|
+
React40 = __toESM(require("react"));
|
|
1810
2006
|
init_types();
|
|
1811
2007
|
SvgShare = ({ size = 16, ...props }) => {
|
|
1812
2008
|
const sizeValue = resolveSize(size);
|
|
1813
|
-
return /* @__PURE__ */
|
|
2009
|
+
return /* @__PURE__ */ React40.createElement(
|
|
1814
2010
|
"svg",
|
|
1815
2011
|
{
|
|
1816
2012
|
width: sizeValue,
|
|
@@ -1820,7 +2016,7 @@ var init_Share = __esm({
|
|
|
1820
2016
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1821
2017
|
...props
|
|
1822
2018
|
},
|
|
1823
|
-
/* @__PURE__ */
|
|
2019
|
+
/* @__PURE__ */ React40.createElement(
|
|
1824
2020
|
"path",
|
|
1825
2021
|
{
|
|
1826
2022
|
fillRule: "evenodd",
|
|
@@ -1829,7 +2025,7 @@ var init_Share = __esm({
|
|
|
1829
2025
|
fill: "currentColor"
|
|
1830
2026
|
}
|
|
1831
2027
|
),
|
|
1832
|
-
/* @__PURE__ */
|
|
2028
|
+
/* @__PURE__ */ React40.createElement(
|
|
1833
2029
|
"path",
|
|
1834
2030
|
{
|
|
1835
2031
|
fillRule: "evenodd",
|
|
@@ -1838,7 +2034,7 @@ var init_Share = __esm({
|
|
|
1838
2034
|
fill: "currentColor"
|
|
1839
2035
|
}
|
|
1840
2036
|
),
|
|
1841
|
-
/* @__PURE__ */
|
|
2037
|
+
/* @__PURE__ */ React40.createElement(
|
|
1842
2038
|
"path",
|
|
1843
2039
|
{
|
|
1844
2040
|
fillRule: "evenodd",
|
|
@@ -1853,20 +2049,94 @@ var init_Share = __esm({
|
|
|
1853
2049
|
}
|
|
1854
2050
|
});
|
|
1855
2051
|
|
|
2052
|
+
// src/react/Trash2.tsx
|
|
2053
|
+
var Trash2_exports = {};
|
|
2054
|
+
__export(Trash2_exports, {
|
|
2055
|
+
default: () => Trash2_default
|
|
2056
|
+
});
|
|
2057
|
+
var React41, SvgTrash2, Trash2_default;
|
|
2058
|
+
var init_Trash2 = __esm({
|
|
2059
|
+
"src/react/Trash2.tsx"() {
|
|
2060
|
+
"use strict";
|
|
2061
|
+
React41 = __toESM(require("react"));
|
|
2062
|
+
init_types();
|
|
2063
|
+
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
2064
|
+
const sizeValue = resolveSize(size);
|
|
2065
|
+
return /* @__PURE__ */ React41.createElement(
|
|
2066
|
+
"svg",
|
|
2067
|
+
{
|
|
2068
|
+
width: sizeValue,
|
|
2069
|
+
height: sizeValue,
|
|
2070
|
+
viewBox: "0 0 24 24",
|
|
2071
|
+
fill: "none",
|
|
2072
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2073
|
+
...props
|
|
2074
|
+
},
|
|
2075
|
+
/* @__PURE__ */ React41.createElement(
|
|
2076
|
+
"path",
|
|
2077
|
+
{
|
|
2078
|
+
fillRule: "evenodd",
|
|
2079
|
+
clipRule: "evenodd",
|
|
2080
|
+
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",
|
|
2081
|
+
fill: "currentColor"
|
|
2082
|
+
}
|
|
2083
|
+
),
|
|
2084
|
+
/* @__PURE__ */ React41.createElement(
|
|
2085
|
+
"path",
|
|
2086
|
+
{
|
|
2087
|
+
fillRule: "evenodd",
|
|
2088
|
+
clipRule: "evenodd",
|
|
2089
|
+
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",
|
|
2090
|
+
fill: "currentColor"
|
|
2091
|
+
}
|
|
2092
|
+
),
|
|
2093
|
+
/* @__PURE__ */ React41.createElement(
|
|
2094
|
+
"path",
|
|
2095
|
+
{
|
|
2096
|
+
fillRule: "evenodd",
|
|
2097
|
+
clipRule: "evenodd",
|
|
2098
|
+
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",
|
|
2099
|
+
fill: "currentColor"
|
|
2100
|
+
}
|
|
2101
|
+
),
|
|
2102
|
+
/* @__PURE__ */ React41.createElement(
|
|
2103
|
+
"path",
|
|
2104
|
+
{
|
|
2105
|
+
fillRule: "evenodd",
|
|
2106
|
+
clipRule: "evenodd",
|
|
2107
|
+
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",
|
|
2108
|
+
fill: "currentColor"
|
|
2109
|
+
}
|
|
2110
|
+
),
|
|
2111
|
+
/* @__PURE__ */ React41.createElement(
|
|
2112
|
+
"path",
|
|
2113
|
+
{
|
|
2114
|
+
fillRule: "evenodd",
|
|
2115
|
+
clipRule: "evenodd",
|
|
2116
|
+
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",
|
|
2117
|
+
fill: "currentColor"
|
|
2118
|
+
}
|
|
2119
|
+
)
|
|
2120
|
+
);
|
|
2121
|
+
};
|
|
2122
|
+
Trash2_default = SvgTrash2;
|
|
2123
|
+
}
|
|
2124
|
+
});
|
|
2125
|
+
|
|
1856
2126
|
// src/react/User.tsx
|
|
1857
2127
|
var User_exports = {};
|
|
1858
2128
|
__export(User_exports, {
|
|
1859
2129
|
default: () => User_default
|
|
1860
2130
|
});
|
|
1861
|
-
var
|
|
2131
|
+
var React42, SvgUser, User_default;
|
|
1862
2132
|
var init_User = __esm({
|
|
1863
2133
|
"src/react/User.tsx"() {
|
|
1864
2134
|
"use strict";
|
|
1865
|
-
|
|
2135
|
+
React42 = __toESM(require("react"));
|
|
1866
2136
|
init_types();
|
|
1867
2137
|
SvgUser = ({ size = 16, ...props }) => {
|
|
1868
2138
|
const sizeValue = resolveSize(size);
|
|
1869
|
-
return /* @__PURE__ */
|
|
2139
|
+
return /* @__PURE__ */ React42.createElement(
|
|
1870
2140
|
"svg",
|
|
1871
2141
|
{
|
|
1872
2142
|
width: sizeValue,
|
|
@@ -1876,7 +2146,7 @@ var init_User = __esm({
|
|
|
1876
2146
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1877
2147
|
...props
|
|
1878
2148
|
},
|
|
1879
|
-
/* @__PURE__ */
|
|
2149
|
+
/* @__PURE__ */ React42.createElement(
|
|
1880
2150
|
"path",
|
|
1881
2151
|
{
|
|
1882
2152
|
fillRule: "evenodd",
|
|
@@ -1885,7 +2155,7 @@ var init_User = __esm({
|
|
|
1885
2155
|
fill: "currentColor"
|
|
1886
2156
|
}
|
|
1887
2157
|
),
|
|
1888
|
-
/* @__PURE__ */
|
|
2158
|
+
/* @__PURE__ */ React42.createElement(
|
|
1889
2159
|
"path",
|
|
1890
2160
|
{
|
|
1891
2161
|
fillRule: "evenodd",
|
|
@@ -1905,15 +2175,15 @@ var Whatsapp_exports = {};
|
|
|
1905
2175
|
__export(Whatsapp_exports, {
|
|
1906
2176
|
default: () => Whatsapp_default
|
|
1907
2177
|
});
|
|
1908
|
-
var
|
|
2178
|
+
var React43, SvgWhatsapp, Whatsapp_default;
|
|
1909
2179
|
var init_Whatsapp = __esm({
|
|
1910
2180
|
"src/react/Whatsapp.tsx"() {
|
|
1911
2181
|
"use strict";
|
|
1912
|
-
|
|
2182
|
+
React43 = __toESM(require("react"));
|
|
1913
2183
|
init_types();
|
|
1914
2184
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
1915
2185
|
const sizeValue = resolveSize(size);
|
|
1916
|
-
return /* @__PURE__ */
|
|
2186
|
+
return /* @__PURE__ */ React43.createElement(
|
|
1917
2187
|
"svg",
|
|
1918
2188
|
{
|
|
1919
2189
|
width: sizeValue,
|
|
@@ -1923,7 +2193,7 @@ var init_Whatsapp = __esm({
|
|
|
1923
2193
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1924
2194
|
...props
|
|
1925
2195
|
},
|
|
1926
|
-
/* @__PURE__ */
|
|
2196
|
+
/* @__PURE__ */ React43.createElement(
|
|
1927
2197
|
"path",
|
|
1928
2198
|
{
|
|
1929
2199
|
fillRule: "evenodd",
|
|
@@ -1959,6 +2229,8 @@ __export(react_exports, {
|
|
|
1959
2229
|
ChevronRight: () => ChevronRight_default,
|
|
1960
2230
|
ChevronUp: () => ChevronUp_default,
|
|
1961
2231
|
Edit: () => Edit_default,
|
|
2232
|
+
ExploreFilled: () => ExploreFilled_default,
|
|
2233
|
+
ExploreLinear: () => ExploreLinear_default,
|
|
1962
2234
|
EyeHidden: () => EyeHidden_default,
|
|
1963
2235
|
EyeVisible: () => EyeVisible_default,
|
|
1964
2236
|
FileKey: () => FileKey_default,
|
|
@@ -1972,13 +2244,16 @@ __export(react_exports, {
|
|
|
1972
2244
|
LeadsLinear: () => LeadsLinear_default,
|
|
1973
2245
|
Mail: () => Mail_default,
|
|
1974
2246
|
Mortgage: () => Mortgage_default,
|
|
2247
|
+
Note: () => Note_default,
|
|
1975
2248
|
Payments: () => Payments_default,
|
|
2249
|
+
Plus: () => Plus_default,
|
|
1976
2250
|
PropertiesFilled: () => PropertiesFilled_default,
|
|
1977
2251
|
PropertiesLinear: () => PropertiesLinear_default,
|
|
1978
2252
|
Rent: () => Rent_default,
|
|
1979
2253
|
Search: () => Search_default,
|
|
1980
2254
|
SearchX: () => SearchX_default,
|
|
1981
2255
|
Share: () => Share_default,
|
|
2256
|
+
Trash2: () => Trash2_default,
|
|
1982
2257
|
User: () => User_default,
|
|
1983
2258
|
Whatsapp: () => Whatsapp_default,
|
|
1984
2259
|
resolveSize: () => resolveSize
|
|
@@ -2002,6 +2277,8 @@ init_ChevronLeft();
|
|
|
2002
2277
|
init_ChevronRight();
|
|
2003
2278
|
init_ChevronUp();
|
|
2004
2279
|
init_Edit();
|
|
2280
|
+
init_ExploreFilled();
|
|
2281
|
+
init_ExploreLinear();
|
|
2005
2282
|
init_EyeHidden();
|
|
2006
2283
|
init_EyeVisible();
|
|
2007
2284
|
init_FileKey();
|
|
@@ -2013,18 +2290,21 @@ init_LeadsFilled();
|
|
|
2013
2290
|
init_LeadsLinear();
|
|
2014
2291
|
init_Mail();
|
|
2015
2292
|
init_Mortgage();
|
|
2293
|
+
init_Note();
|
|
2016
2294
|
init_Payments();
|
|
2295
|
+
init_Plus();
|
|
2017
2296
|
init_PropertiesFilled();
|
|
2018
2297
|
init_PropertiesLinear();
|
|
2019
2298
|
init_Rent();
|
|
2020
2299
|
init_Search();
|
|
2021
2300
|
init_SearchX();
|
|
2022
2301
|
init_Share();
|
|
2302
|
+
init_Trash2();
|
|
2023
2303
|
init_User();
|
|
2024
2304
|
init_Whatsapp();
|
|
2025
2305
|
|
|
2026
2306
|
// src/react/Icon.tsx
|
|
2027
|
-
var
|
|
2307
|
+
var React44 = __toESM(require("react"));
|
|
2028
2308
|
function loadIcon(name) {
|
|
2029
2309
|
switch (name) {
|
|
2030
2310
|
case "alert-triangle":
|
|
@@ -2063,6 +2343,10 @@ function loadIcon(name) {
|
|
|
2063
2343
|
return Promise.resolve().then(() => (init_ChevronUp(), ChevronUp_exports)).then((m) => m.default);
|
|
2064
2344
|
case "edit":
|
|
2065
2345
|
return Promise.resolve().then(() => (init_Edit(), Edit_exports)).then((m) => m.default);
|
|
2346
|
+
case "explore-filled":
|
|
2347
|
+
return Promise.resolve().then(() => (init_ExploreFilled(), ExploreFilled_exports)).then((m) => m.default);
|
|
2348
|
+
case "explore-linear":
|
|
2349
|
+
return Promise.resolve().then(() => (init_ExploreLinear(), ExploreLinear_exports)).then((m) => m.default);
|
|
2066
2350
|
case "eye-hidden":
|
|
2067
2351
|
return Promise.resolve().then(() => (init_EyeHidden(), EyeHidden_exports)).then((m) => m.default);
|
|
2068
2352
|
case "eye-visible":
|
|
@@ -2085,8 +2369,12 @@ function loadIcon(name) {
|
|
|
2085
2369
|
return Promise.resolve().then(() => (init_Mail(), Mail_exports)).then((m) => m.default);
|
|
2086
2370
|
case "mortgage":
|
|
2087
2371
|
return Promise.resolve().then(() => (init_Mortgage(), Mortgage_exports)).then((m) => m.default);
|
|
2372
|
+
case "note":
|
|
2373
|
+
return Promise.resolve().then(() => (init_Note(), Note_exports)).then((m) => m.default);
|
|
2088
2374
|
case "payments":
|
|
2089
2375
|
return Promise.resolve().then(() => (init_Payments(), Payments_exports)).then((m) => m.default);
|
|
2376
|
+
case "plus":
|
|
2377
|
+
return Promise.resolve().then(() => (init_Plus(), Plus_exports)).then((m) => m.default);
|
|
2090
2378
|
case "properties-filled":
|
|
2091
2379
|
return Promise.resolve().then(() => (init_PropertiesFilled(), PropertiesFilled_exports)).then((m) => m.default);
|
|
2092
2380
|
case "properties-linear":
|
|
@@ -2099,6 +2387,8 @@ function loadIcon(name) {
|
|
|
2099
2387
|
return Promise.resolve().then(() => (init_SearchX(), SearchX_exports)).then((m) => m.default);
|
|
2100
2388
|
case "share":
|
|
2101
2389
|
return Promise.resolve().then(() => (init_Share(), Share_exports)).then((m) => m.default);
|
|
2390
|
+
case "trash2":
|
|
2391
|
+
return Promise.resolve().then(() => (init_Trash2(), Trash2_exports)).then((m) => m.default);
|
|
2102
2392
|
case "user":
|
|
2103
2393
|
return Promise.resolve().then(() => (init_User(), User_exports)).then((m) => m.default);
|
|
2104
2394
|
case "whatsapp":
|
|
@@ -2108,10 +2398,10 @@ function loadIcon(name) {
|
|
|
2108
2398
|
}
|
|
2109
2399
|
}
|
|
2110
2400
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
2111
|
-
const [IconComponent, setIconComponent] =
|
|
2112
|
-
const [loading, setLoading] =
|
|
2113
|
-
const [error, setError] =
|
|
2114
|
-
|
|
2401
|
+
const [IconComponent, setIconComponent] = React44.useState(null);
|
|
2402
|
+
const [loading, setLoading] = React44.useState(true);
|
|
2403
|
+
const [error, setError] = React44.useState(null);
|
|
2404
|
+
React44.useEffect(() => {
|
|
2115
2405
|
setLoading(true);
|
|
2116
2406
|
setError(null);
|
|
2117
2407
|
loadIcon(name).then((Component) => {
|
|
@@ -2130,7 +2420,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
2130
2420
|
return null;
|
|
2131
2421
|
}
|
|
2132
2422
|
const style = color ? { ...props.style, color } : props.style;
|
|
2133
|
-
return /* @__PURE__ */
|
|
2423
|
+
return /* @__PURE__ */ React44.createElement(IconComponent, { size, ...props, style });
|
|
2134
2424
|
};
|
|
2135
2425
|
var Icon_default = Icon;
|
|
2136
2426
|
|