huspy-icons 0.1.12 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fonts/HuspyIcons.css +51 -33
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +35 -29
- package/dist/fonts/HuspyIcons.ts +47 -29
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +35 -29
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +14 -2
- package/dist/react/index.d.ts +14 -2
- package/dist/react/index.js +512 -157
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +491 -136
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +36 -30
- package/src/react/FileCheck.tsx +38 -0
- package/src/react/FileLock.tsx +38 -0
- package/src/react/FileSpreadsheet.tsx +56 -0
- package/src/react/HelpCircle.tsx +38 -0
- package/src/react/Icon.tsx +19 -1
- package/src/react/Lock.tsx +32 -0
- package/src/react/Logout.tsx +38 -0
- package/src/react/Note.tsx +3 -20
- package/src/react/Plus.tsx +2 -2
- package/src/react/index.ts +6 -0
- package/src/react/index.tsx +6 -0
package/dist/react/index.js
CHANGED
|
@@ -1048,20 +1048,76 @@ var init_EyeVisible = __esm({
|
|
|
1048
1048
|
}
|
|
1049
1049
|
});
|
|
1050
1050
|
|
|
1051
|
+
// src/react/FileCheck.tsx
|
|
1052
|
+
var FileCheck_exports = {};
|
|
1053
|
+
__export(FileCheck_exports, {
|
|
1054
|
+
default: () => FileCheck_default
|
|
1055
|
+
});
|
|
1056
|
+
var React23, SvgFileCheck, FileCheck_default;
|
|
1057
|
+
var init_FileCheck = __esm({
|
|
1058
|
+
"src/react/FileCheck.tsx"() {
|
|
1059
|
+
"use strict";
|
|
1060
|
+
React23 = __toESM(require("react"));
|
|
1061
|
+
init_types();
|
|
1062
|
+
SvgFileCheck = ({ size = 16, ...props }) => {
|
|
1063
|
+
const sizeValue = resolveSize(size);
|
|
1064
|
+
return /* @__PURE__ */ React23.createElement(
|
|
1065
|
+
"svg",
|
|
1066
|
+
{
|
|
1067
|
+
width: sizeValue,
|
|
1068
|
+
height: sizeValue,
|
|
1069
|
+
viewBox: "0 0 24 24",
|
|
1070
|
+
fill: "none",
|
|
1071
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1072
|
+
...props
|
|
1073
|
+
},
|
|
1074
|
+
/* @__PURE__ */ React23.createElement(
|
|
1075
|
+
"path",
|
|
1076
|
+
{
|
|
1077
|
+
fillRule: "evenodd",
|
|
1078
|
+
clipRule: "evenodd",
|
|
1079
|
+
d: "M3.87865 1.87868C4.44126 1.31607 5.20432 1 5.99997 1H14.5C14.7652 1 15.0195 1.10536 15.2071 1.29289L20.7071 6.79289C20.8946 6.98043 21 7.23478 21 7.5V20C21 20.7957 20.6839 21.5587 20.1213 22.1213C19.5587 22.6839 18.7956 23 18 23H3.99997C3.44769 23 2.99997 22.5523 2.99997 22C2.99997 21.4477 3.44769 21 3.99997 21H18C18.2652 21 18.5195 20.8946 18.7071 20.7071C18.8946 20.5196 19 20.2652 19 20V7.91421L14.0858 3H5.99997C5.73476 3 5.4804 3.10536 5.29287 3.29289C5.10533 3.48043 4.99997 3.73478 4.99997 4V8C4.99997 8.55228 4.55226 9 3.99997 9C3.44769 9 2.99997 8.55228 2.99997 8V4C2.99997 3.20435 3.31604 2.44129 3.87865 1.87868Z",
|
|
1080
|
+
fill: "currentColor"
|
|
1081
|
+
}
|
|
1082
|
+
),
|
|
1083
|
+
/* @__PURE__ */ React23.createElement(
|
|
1084
|
+
"path",
|
|
1085
|
+
{
|
|
1086
|
+
fillRule: "evenodd",
|
|
1087
|
+
clipRule: "evenodd",
|
|
1088
|
+
d: "M14 1C14.5523 1 15 1.44772 15 2V7H20C20.5523 7 21 7.44772 21 8C21 8.55228 20.5523 9 20 9H14C13.4477 9 13 8.55228 13 8V2C13 1.44772 13.4477 1 14 1Z",
|
|
1089
|
+
fill: "currentColor"
|
|
1090
|
+
}
|
|
1091
|
+
),
|
|
1092
|
+
/* @__PURE__ */ React23.createElement(
|
|
1093
|
+
"path",
|
|
1094
|
+
{
|
|
1095
|
+
fillRule: "evenodd",
|
|
1096
|
+
clipRule: "evenodd",
|
|
1097
|
+
d: "M10.4142 12.3402C10.8047 12.7307 10.8047 13.3639 10.4142 13.7544L6.41421 17.7544C6.02369 18.1449 5.39052 18.1449 5 17.7544L3 15.7544C2.60948 15.3639 2.60948 14.7307 3 14.3402C3.39052 13.9496 4.02369 13.9496 4.41421 14.3402L5.70711 15.6331L9 12.3402C9.39052 11.9496 10.0237 11.9496 10.4142 12.3402Z",
|
|
1098
|
+
fill: "currentColor"
|
|
1099
|
+
}
|
|
1100
|
+
)
|
|
1101
|
+
);
|
|
1102
|
+
};
|
|
1103
|
+
FileCheck_default = SvgFileCheck;
|
|
1104
|
+
}
|
|
1105
|
+
});
|
|
1106
|
+
|
|
1051
1107
|
// src/react/FileKey.tsx
|
|
1052
1108
|
var FileKey_exports = {};
|
|
1053
1109
|
__export(FileKey_exports, {
|
|
1054
1110
|
default: () => FileKey_default
|
|
1055
1111
|
});
|
|
1056
|
-
var
|
|
1112
|
+
var React24, SvgFileKey, FileKey_default;
|
|
1057
1113
|
var init_FileKey = __esm({
|
|
1058
1114
|
"src/react/FileKey.tsx"() {
|
|
1059
1115
|
"use strict";
|
|
1060
|
-
|
|
1116
|
+
React24 = __toESM(require("react"));
|
|
1061
1117
|
init_types();
|
|
1062
1118
|
SvgFileKey = ({ size = 16, ...props }) => {
|
|
1063
1119
|
const sizeValue = resolveSize(size);
|
|
1064
|
-
return /* @__PURE__ */
|
|
1120
|
+
return /* @__PURE__ */ React24.createElement(
|
|
1065
1121
|
"svg",
|
|
1066
1122
|
{
|
|
1067
1123
|
width: sizeValue,
|
|
@@ -1071,7 +1127,7 @@ var init_FileKey = __esm({
|
|
|
1071
1127
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1072
1128
|
...props
|
|
1073
1129
|
},
|
|
1074
|
-
/* @__PURE__ */
|
|
1130
|
+
/* @__PURE__ */ React24.createElement(
|
|
1075
1131
|
"path",
|
|
1076
1132
|
{
|
|
1077
1133
|
fillRule: "evenodd",
|
|
@@ -1080,7 +1136,7 @@ var init_FileKey = __esm({
|
|
|
1080
1136
|
fill: "currentColor"
|
|
1081
1137
|
}
|
|
1082
1138
|
),
|
|
1083
|
-
/* @__PURE__ */
|
|
1139
|
+
/* @__PURE__ */ React24.createElement(
|
|
1084
1140
|
"path",
|
|
1085
1141
|
{
|
|
1086
1142
|
fillRule: "evenodd",
|
|
@@ -1089,7 +1145,7 @@ var init_FileKey = __esm({
|
|
|
1089
1145
|
fill: "currentColor"
|
|
1090
1146
|
}
|
|
1091
1147
|
),
|
|
1092
|
-
/* @__PURE__ */
|
|
1148
|
+
/* @__PURE__ */ React24.createElement(
|
|
1093
1149
|
"path",
|
|
1094
1150
|
{
|
|
1095
1151
|
fillRule: "evenodd",
|
|
@@ -1098,7 +1154,7 @@ var init_FileKey = __esm({
|
|
|
1098
1154
|
fill: "currentColor"
|
|
1099
1155
|
}
|
|
1100
1156
|
),
|
|
1101
|
-
/* @__PURE__ */
|
|
1157
|
+
/* @__PURE__ */ React24.createElement(
|
|
1102
1158
|
"path",
|
|
1103
1159
|
{
|
|
1104
1160
|
fillRule: "evenodd",
|
|
@@ -1113,20 +1169,215 @@ var init_FileKey = __esm({
|
|
|
1113
1169
|
}
|
|
1114
1170
|
});
|
|
1115
1171
|
|
|
1172
|
+
// src/react/FileLock.tsx
|
|
1173
|
+
var FileLock_exports = {};
|
|
1174
|
+
__export(FileLock_exports, {
|
|
1175
|
+
default: () => FileLock_default
|
|
1176
|
+
});
|
|
1177
|
+
var React25, SvgFileLock, FileLock_default;
|
|
1178
|
+
var init_FileLock = __esm({
|
|
1179
|
+
"src/react/FileLock.tsx"() {
|
|
1180
|
+
"use strict";
|
|
1181
|
+
React25 = __toESM(require("react"));
|
|
1182
|
+
init_types();
|
|
1183
|
+
SvgFileLock = ({ size = 16, ...props }) => {
|
|
1184
|
+
const sizeValue = resolveSize(size);
|
|
1185
|
+
return /* @__PURE__ */ React25.createElement(
|
|
1186
|
+
"svg",
|
|
1187
|
+
{
|
|
1188
|
+
width: sizeValue,
|
|
1189
|
+
height: sizeValue,
|
|
1190
|
+
viewBox: "0 0 24 24",
|
|
1191
|
+
fill: "none",
|
|
1192
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1193
|
+
...props
|
|
1194
|
+
},
|
|
1195
|
+
/* @__PURE__ */ React25.createElement(
|
|
1196
|
+
"path",
|
|
1197
|
+
{
|
|
1198
|
+
fillRule: "evenodd",
|
|
1199
|
+
clipRule: "evenodd",
|
|
1200
|
+
d: "M3.87868 1.87868C4.44129 1.31607 5.20435 1 6 1H14.5C14.7652 1 15.0196 1.10536 15.2071 1.29289L20.7071 6.79289C20.8946 6.98043 21 7.23478 21 7.5V20C21 20.7957 20.6839 21.5587 20.1213 22.1213C19.5587 22.6839 18.7957 23 18 23H6C5.20435 23 4.44129 22.6839 3.87868 22.1213C3.31607 21.5587 3 20.7957 3 20V4C3 3.20435 3.31607 2.44129 3.87868 1.87868ZM6 3C5.73478 3 5.48043 3.10536 5.29289 3.29289C5.10536 3.48043 5 3.73478 5 4V20C5 20.2652 5.10536 20.5196 5.29289 20.7071C5.48043 20.8946 5.73478 21 6 21H18C18.2652 21 18.5196 20.8946 18.7071 20.7071C18.8946 20.5196 19 20.2652 19 20V7.91421L14.0858 3H6Z",
|
|
1201
|
+
fill: "currentColor"
|
|
1202
|
+
}
|
|
1203
|
+
),
|
|
1204
|
+
/* @__PURE__ */ React25.createElement(
|
|
1205
|
+
"path",
|
|
1206
|
+
{
|
|
1207
|
+
fillRule: "evenodd",
|
|
1208
|
+
clipRule: "evenodd",
|
|
1209
|
+
d: "M7 13C7 11.8954 7.89543 11 9 11H15C16.1046 11 17 11.8954 17 13V17C17 18.1046 16.1046 19 15 19H9C7.89543 19 7 18.1046 7 17V13ZM15 13H9V17H15V13Z",
|
|
1210
|
+
fill: "currentColor"
|
|
1211
|
+
}
|
|
1212
|
+
),
|
|
1213
|
+
/* @__PURE__ */ React25.createElement(
|
|
1214
|
+
"path",
|
|
1215
|
+
{
|
|
1216
|
+
fillRule: "evenodd",
|
|
1217
|
+
clipRule: "evenodd",
|
|
1218
|
+
d: "M9.17157 7.17157C9.92172 6.42143 10.9391 6 12 6C13.0609 6 14.0783 6.42143 14.8284 7.17157C15.5786 7.92172 16 8.93913 16 10V12C16 12.5523 15.5523 13 15 13C14.4477 13 14 12.5523 14 12V10C14 9.46957 13.7893 8.96086 13.4142 8.58579C13.0391 8.21071 12.5304 8 12 8C11.4696 8 10.9609 8.21071 10.5858 8.58579C10.2107 8.96086 10 9.46957 10 10V12C10 12.5523 9.55228 13 9 13C8.44772 13 8 12.5523 8 12V10C8 8.93913 8.42143 7.92172 9.17157 7.17157Z",
|
|
1219
|
+
fill: "currentColor"
|
|
1220
|
+
}
|
|
1221
|
+
)
|
|
1222
|
+
);
|
|
1223
|
+
};
|
|
1224
|
+
FileLock_default = SvgFileLock;
|
|
1225
|
+
}
|
|
1226
|
+
});
|
|
1227
|
+
|
|
1228
|
+
// src/react/FileSpreadsheet.tsx
|
|
1229
|
+
var FileSpreadsheet_exports = {};
|
|
1230
|
+
__export(FileSpreadsheet_exports, {
|
|
1231
|
+
default: () => FileSpreadsheet_default
|
|
1232
|
+
});
|
|
1233
|
+
var React26, SvgFileSpreadsheet, FileSpreadsheet_default;
|
|
1234
|
+
var init_FileSpreadsheet = __esm({
|
|
1235
|
+
"src/react/FileSpreadsheet.tsx"() {
|
|
1236
|
+
"use strict";
|
|
1237
|
+
React26 = __toESM(require("react"));
|
|
1238
|
+
init_types();
|
|
1239
|
+
SvgFileSpreadsheet = ({ size = 16, ...props }) => {
|
|
1240
|
+
const sizeValue = resolveSize(size);
|
|
1241
|
+
return /* @__PURE__ */ React26.createElement(
|
|
1242
|
+
"svg",
|
|
1243
|
+
{
|
|
1244
|
+
width: sizeValue,
|
|
1245
|
+
height: sizeValue,
|
|
1246
|
+
viewBox: "0 0 24 24",
|
|
1247
|
+
fill: "none",
|
|
1248
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1249
|
+
...props
|
|
1250
|
+
},
|
|
1251
|
+
/* @__PURE__ */ React26.createElement(
|
|
1252
|
+
"path",
|
|
1253
|
+
{
|
|
1254
|
+
fillRule: "evenodd",
|
|
1255
|
+
clipRule: "evenodd",
|
|
1256
|
+
d: "M3.87868 1.87868C4.44129 1.31607 5.20435 1 6 1H14.5C14.7652 1 15.0196 1.10536 15.2071 1.29289L20.7071 6.79289C20.8946 6.98043 21 7.23478 21 7.5V20C21 20.7957 20.6839 21.5587 20.1213 22.1213C19.5587 22.6839 18.7957 23 18 23H6C5.20435 23 4.44129 22.6839 3.87868 22.1213C3.31607 21.5587 3 20.7957 3 20V4C3 3.20435 3.31607 2.44129 3.87868 1.87868ZM6 3C5.73478 3 5.48043 3.10536 5.29289 3.29289C5.10536 3.48043 5 3.73478 5 4V20C5 20.2652 5.10536 20.5196 5.29289 20.7071C5.48043 20.8946 5.73478 21 6 21H18C18.2652 21 18.5196 20.8946 18.7071 20.7071C18.8946 20.5196 19 20.2652 19 20V7.91421L14.0858 3H6Z",
|
|
1257
|
+
fill: "currentColor"
|
|
1258
|
+
}
|
|
1259
|
+
),
|
|
1260
|
+
/* @__PURE__ */ React26.createElement(
|
|
1261
|
+
"path",
|
|
1262
|
+
{
|
|
1263
|
+
fillRule: "evenodd",
|
|
1264
|
+
clipRule: "evenodd",
|
|
1265
|
+
d: "M14 1C14.5523 1 15 1.44772 15 2V7H20C20.5523 7 21 7.44772 21 8C21 8.55228 20.5523 9 20 9H14C13.4477 9 13 8.55228 13 8V2C13 1.44772 13.4477 1 14 1Z",
|
|
1266
|
+
fill: "currentColor"
|
|
1267
|
+
}
|
|
1268
|
+
),
|
|
1269
|
+
/* @__PURE__ */ React26.createElement(
|
|
1270
|
+
"path",
|
|
1271
|
+
{
|
|
1272
|
+
fillRule: "evenodd",
|
|
1273
|
+
clipRule: "evenodd",
|
|
1274
|
+
d: "M7 13C7 12.4477 7.44772 12 8 12H10C10.5523 12 11 12.4477 11 13C11 13.5523 10.5523 14 10 14H8C7.44772 14 7 13.5523 7 13Z",
|
|
1275
|
+
fill: "currentColor"
|
|
1276
|
+
}
|
|
1277
|
+
),
|
|
1278
|
+
/* @__PURE__ */ React26.createElement(
|
|
1279
|
+
"path",
|
|
1280
|
+
{
|
|
1281
|
+
fillRule: "evenodd",
|
|
1282
|
+
clipRule: "evenodd",
|
|
1283
|
+
d: "M7 17C7 16.4477 7.44772 16 8 16H10C10.5523 16 11 16.4477 11 17C11 17.5523 10.5523 18 10 18H8C7.44772 18 7 17.5523 7 17Z",
|
|
1284
|
+
fill: "currentColor"
|
|
1285
|
+
}
|
|
1286
|
+
),
|
|
1287
|
+
/* @__PURE__ */ React26.createElement(
|
|
1288
|
+
"path",
|
|
1289
|
+
{
|
|
1290
|
+
fillRule: "evenodd",
|
|
1291
|
+
clipRule: "evenodd",
|
|
1292
|
+
d: "M13 13C13 12.4477 13.4477 12 14 12H16C16.5523 12 17 12.4477 17 13C17 13.5523 16.5523 14 16 14H14C13.4477 14 13 13.5523 13 13Z",
|
|
1293
|
+
fill: "currentColor"
|
|
1294
|
+
}
|
|
1295
|
+
),
|
|
1296
|
+
/* @__PURE__ */ React26.createElement(
|
|
1297
|
+
"path",
|
|
1298
|
+
{
|
|
1299
|
+
fillRule: "evenodd",
|
|
1300
|
+
clipRule: "evenodd",
|
|
1301
|
+
d: "M13 17C13 16.4477 13.4477 16 14 16H16C16.5523 16 17 16.4477 17 17C17 17.5523 16.5523 18 16 18H14C13.4477 18 13 17.5523 13 17Z",
|
|
1302
|
+
fill: "currentColor"
|
|
1303
|
+
}
|
|
1304
|
+
)
|
|
1305
|
+
);
|
|
1306
|
+
};
|
|
1307
|
+
FileSpreadsheet_default = SvgFileSpreadsheet;
|
|
1308
|
+
}
|
|
1309
|
+
});
|
|
1310
|
+
|
|
1311
|
+
// src/react/HelpCircle.tsx
|
|
1312
|
+
var HelpCircle_exports = {};
|
|
1313
|
+
__export(HelpCircle_exports, {
|
|
1314
|
+
default: () => HelpCircle_default
|
|
1315
|
+
});
|
|
1316
|
+
var React27, SvgHelpCircle, HelpCircle_default;
|
|
1317
|
+
var init_HelpCircle = __esm({
|
|
1318
|
+
"src/react/HelpCircle.tsx"() {
|
|
1319
|
+
"use strict";
|
|
1320
|
+
React27 = __toESM(require("react"));
|
|
1321
|
+
init_types();
|
|
1322
|
+
SvgHelpCircle = ({ size = 16, ...props }) => {
|
|
1323
|
+
const sizeValue = resolveSize(size);
|
|
1324
|
+
return /* @__PURE__ */ React27.createElement(
|
|
1325
|
+
"svg",
|
|
1326
|
+
{
|
|
1327
|
+
width: sizeValue,
|
|
1328
|
+
height: sizeValue,
|
|
1329
|
+
viewBox: "0 0 24 24",
|
|
1330
|
+
fill: "none",
|
|
1331
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1332
|
+
...props
|
|
1333
|
+
},
|
|
1334
|
+
/* @__PURE__ */ React27.createElement(
|
|
1335
|
+
"path",
|
|
1336
|
+
{
|
|
1337
|
+
fillRule: "evenodd",
|
|
1338
|
+
clipRule: "evenodd",
|
|
1339
|
+
d: "M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM23 12C23 18.0751 18.0751 23 12 23C5.92487 23 0.999999 18.0751 1 12C1 5.92487 5.92487 0.999999 12 1C18.0751 1 23 5.92487 23 12Z",
|
|
1340
|
+
fill: "currentColor"
|
|
1341
|
+
}
|
|
1342
|
+
),
|
|
1343
|
+
/* @__PURE__ */ React27.createElement(
|
|
1344
|
+
"path",
|
|
1345
|
+
{
|
|
1346
|
+
fillRule: "evenodd",
|
|
1347
|
+
clipRule: "evenodd",
|
|
1348
|
+
d: "M12.2581 8.0244C11.7926 7.94455 11.3138 8.03203 10.9066 8.27135C10.4994 8.51066 10.1901 8.88637 10.0333 9.33193C9.85006 9.85292 9.27914 10.1267 8.75815 9.94342C8.23716 9.76014 7.96339 9.18923 8.14666 8.66824C8.46013 7.77713 9.07886 7.02571 9.89327 6.54708C10.7077 6.06845 11.6652 5.89349 12.5962 6.05319C13.5273 6.21289 14.3717 6.69694 14.9801 7.41961C15.5883 8.14213 15.9213 9.05656 15.92 10.001C15.9195 11.5314 14.7849 12.542 13.9747 13.0821C13.5391 13.3726 13.1105 13.5861 12.7949 13.7264C12.6356 13.7972 12.5015 13.8509 12.4049 13.8877C12.3565 13.9061 12.3173 13.9204 12.2887 13.9306L12.254 13.9427L12.2429 13.9465L12.239 13.9478L12.2375 13.9483C12.2372 13.9484 12.2362 13.9488 11.92 13.0001L12.2362 13.9488C11.7123 14.1234 11.146 13.8403 10.9713 13.3163C10.7968 12.7927 11.0794 12.2268 11.6027 12.0517L11.6014 12.0522C11.6015 12.0521 11.6016 12.0521 11.6027 12.0517L11.6187 12.0461C11.6341 12.0407 11.6593 12.0315 11.6929 12.0187C11.7603 11.993 11.8606 11.953 11.9826 11.8988C12.2294 11.7891 12.5509 11.6276 12.8653 11.418C13.5549 10.9583 13.92 10.4692 13.92 10.0001L13.92 9.99859C13.9207 9.52627 13.7542 9.06895 13.45 8.70761C13.1459 8.34628 12.7236 8.10425 12.2581 8.0244Z",
|
|
1349
|
+
fill: "currentColor"
|
|
1350
|
+
}
|
|
1351
|
+
),
|
|
1352
|
+
/* @__PURE__ */ React27.createElement(
|
|
1353
|
+
"path",
|
|
1354
|
+
{
|
|
1355
|
+
fillRule: "evenodd",
|
|
1356
|
+
clipRule: "evenodd",
|
|
1357
|
+
d: "M11 17C11 16.4477 11.4477 16 12 16H12.01C12.5623 16 13.01 16.4477 13.01 17C13.01 17.5523 12.5623 18 12.01 18H12C11.4477 18 11 17.5523 11 17Z",
|
|
1358
|
+
fill: "currentColor"
|
|
1359
|
+
}
|
|
1360
|
+
)
|
|
1361
|
+
);
|
|
1362
|
+
};
|
|
1363
|
+
HelpCircle_default = SvgHelpCircle;
|
|
1364
|
+
}
|
|
1365
|
+
});
|
|
1366
|
+
|
|
1116
1367
|
// src/react/HomeFilled.tsx
|
|
1117
1368
|
var HomeFilled_exports = {};
|
|
1118
1369
|
__export(HomeFilled_exports, {
|
|
1119
1370
|
default: () => HomeFilled_default
|
|
1120
1371
|
});
|
|
1121
|
-
var
|
|
1372
|
+
var React28, SvgHomeFilled, HomeFilled_default;
|
|
1122
1373
|
var init_HomeFilled = __esm({
|
|
1123
1374
|
"src/react/HomeFilled.tsx"() {
|
|
1124
1375
|
"use strict";
|
|
1125
|
-
|
|
1376
|
+
React28 = __toESM(require("react"));
|
|
1126
1377
|
init_types();
|
|
1127
1378
|
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
1128
1379
|
const sizeValue = resolveSize(size);
|
|
1129
|
-
return /* @__PURE__ */
|
|
1380
|
+
return /* @__PURE__ */ React28.createElement(
|
|
1130
1381
|
"svg",
|
|
1131
1382
|
{
|
|
1132
1383
|
width: sizeValue,
|
|
@@ -1136,7 +1387,7 @@ var init_HomeFilled = __esm({
|
|
|
1136
1387
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1137
1388
|
...props
|
|
1138
1389
|
},
|
|
1139
|
-
/* @__PURE__ */
|
|
1390
|
+
/* @__PURE__ */ React28.createElement(
|
|
1140
1391
|
"path",
|
|
1141
1392
|
{
|
|
1142
1393
|
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",
|
|
@@ -1154,15 +1405,15 @@ var HomeLinear_exports = {};
|
|
|
1154
1405
|
__export(HomeLinear_exports, {
|
|
1155
1406
|
default: () => HomeLinear_default
|
|
1156
1407
|
});
|
|
1157
|
-
var
|
|
1408
|
+
var React29, SvgHomeLinear, HomeLinear_default;
|
|
1158
1409
|
var init_HomeLinear = __esm({
|
|
1159
1410
|
"src/react/HomeLinear.tsx"() {
|
|
1160
1411
|
"use strict";
|
|
1161
|
-
|
|
1412
|
+
React29 = __toESM(require("react"));
|
|
1162
1413
|
init_types();
|
|
1163
1414
|
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
1164
1415
|
const sizeValue = resolveSize(size);
|
|
1165
|
-
return /* @__PURE__ */
|
|
1416
|
+
return /* @__PURE__ */ React29.createElement(
|
|
1166
1417
|
"svg",
|
|
1167
1418
|
{
|
|
1168
1419
|
width: sizeValue,
|
|
@@ -1172,7 +1423,7 @@ var init_HomeLinear = __esm({
|
|
|
1172
1423
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1173
1424
|
...props
|
|
1174
1425
|
},
|
|
1175
|
-
/* @__PURE__ */
|
|
1426
|
+
/* @__PURE__ */ React29.createElement(
|
|
1176
1427
|
"path",
|
|
1177
1428
|
{
|
|
1178
1429
|
fillRule: "evenodd",
|
|
@@ -1192,15 +1443,15 @@ var IconSlot_exports = {};
|
|
|
1192
1443
|
__export(IconSlot_exports, {
|
|
1193
1444
|
default: () => IconSlot_default
|
|
1194
1445
|
});
|
|
1195
|
-
var
|
|
1446
|
+
var React30, SvgIconSlot, IconSlot_default;
|
|
1196
1447
|
var init_IconSlot = __esm({
|
|
1197
1448
|
"src/react/IconSlot.tsx"() {
|
|
1198
1449
|
"use strict";
|
|
1199
|
-
|
|
1450
|
+
React30 = __toESM(require("react"));
|
|
1200
1451
|
init_types();
|
|
1201
1452
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
1202
1453
|
const sizeValue = resolveSize(size);
|
|
1203
|
-
return /* @__PURE__ */
|
|
1454
|
+
return /* @__PURE__ */ React30.createElement(
|
|
1204
1455
|
"svg",
|
|
1205
1456
|
{
|
|
1206
1457
|
width: sizeValue,
|
|
@@ -1210,7 +1461,7 @@ var init_IconSlot = __esm({
|
|
|
1210
1461
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1211
1462
|
...props
|
|
1212
1463
|
},
|
|
1213
|
-
/* @__PURE__ */
|
|
1464
|
+
/* @__PURE__ */ React30.createElement(
|
|
1214
1465
|
"path",
|
|
1215
1466
|
{
|
|
1216
1467
|
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",
|
|
@@ -1228,15 +1479,15 @@ var Keys01_exports = {};
|
|
|
1228
1479
|
__export(Keys01_exports, {
|
|
1229
1480
|
default: () => Keys01_default
|
|
1230
1481
|
});
|
|
1231
|
-
var
|
|
1482
|
+
var React31, SvgKeys01, Keys01_default;
|
|
1232
1483
|
var init_Keys01 = __esm({
|
|
1233
1484
|
"src/react/Keys01.tsx"() {
|
|
1234
1485
|
"use strict";
|
|
1235
|
-
|
|
1486
|
+
React31 = __toESM(require("react"));
|
|
1236
1487
|
init_types();
|
|
1237
1488
|
SvgKeys01 = ({ size = 16, ...props }) => {
|
|
1238
1489
|
const sizeValue = resolveSize(size);
|
|
1239
|
-
return /* @__PURE__ */
|
|
1490
|
+
return /* @__PURE__ */ React31.createElement(
|
|
1240
1491
|
"svg",
|
|
1241
1492
|
{
|
|
1242
1493
|
width: sizeValue,
|
|
@@ -1246,7 +1497,7 @@ var init_Keys01 = __esm({
|
|
|
1246
1497
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1247
1498
|
...props
|
|
1248
1499
|
},
|
|
1249
|
-
/* @__PURE__ */
|
|
1500
|
+
/* @__PURE__ */ React31.createElement(
|
|
1250
1501
|
"path",
|
|
1251
1502
|
{
|
|
1252
1503
|
fillRule: "evenodd",
|
|
@@ -1255,7 +1506,7 @@ var init_Keys01 = __esm({
|
|
|
1255
1506
|
fill: "currentColor"
|
|
1256
1507
|
}
|
|
1257
1508
|
),
|
|
1258
|
-
/* @__PURE__ */
|
|
1509
|
+
/* @__PURE__ */ React31.createElement(
|
|
1259
1510
|
"path",
|
|
1260
1511
|
{
|
|
1261
1512
|
fillRule: "evenodd",
|
|
@@ -1264,7 +1515,7 @@ var init_Keys01 = __esm({
|
|
|
1264
1515
|
fill: "currentColor"
|
|
1265
1516
|
}
|
|
1266
1517
|
),
|
|
1267
|
-
/* @__PURE__ */
|
|
1518
|
+
/* @__PURE__ */ React31.createElement(
|
|
1268
1519
|
"path",
|
|
1269
1520
|
{
|
|
1270
1521
|
fillRule: "evenodd",
|
|
@@ -1284,15 +1535,15 @@ var LeadsFilled_exports = {};
|
|
|
1284
1535
|
__export(LeadsFilled_exports, {
|
|
1285
1536
|
default: () => LeadsFilled_default
|
|
1286
1537
|
});
|
|
1287
|
-
var
|
|
1538
|
+
var React32, SvgLeadsFilled, LeadsFilled_default;
|
|
1288
1539
|
var init_LeadsFilled = __esm({
|
|
1289
1540
|
"src/react/LeadsFilled.tsx"() {
|
|
1290
1541
|
"use strict";
|
|
1291
|
-
|
|
1542
|
+
React32 = __toESM(require("react"));
|
|
1292
1543
|
init_types();
|
|
1293
1544
|
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
1294
1545
|
const sizeValue = resolveSize(size);
|
|
1295
|
-
return /* @__PURE__ */
|
|
1546
|
+
return /* @__PURE__ */ React32.createElement(
|
|
1296
1547
|
"svg",
|
|
1297
1548
|
{
|
|
1298
1549
|
width: sizeValue,
|
|
@@ -1302,7 +1553,7 @@ var init_LeadsFilled = __esm({
|
|
|
1302
1553
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1303
1554
|
...props
|
|
1304
1555
|
},
|
|
1305
|
-
/* @__PURE__ */
|
|
1556
|
+
/* @__PURE__ */ React32.createElement(
|
|
1306
1557
|
"path",
|
|
1307
1558
|
{
|
|
1308
1559
|
fillRule: "evenodd",
|
|
@@ -1311,7 +1562,7 @@ var init_LeadsFilled = __esm({
|
|
|
1311
1562
|
fill: "currentColor"
|
|
1312
1563
|
}
|
|
1313
1564
|
),
|
|
1314
|
-
/* @__PURE__ */
|
|
1565
|
+
/* @__PURE__ */ React32.createElement(
|
|
1315
1566
|
"path",
|
|
1316
1567
|
{
|
|
1317
1568
|
fillRule: "evenodd",
|
|
@@ -1320,7 +1571,7 @@ var init_LeadsFilled = __esm({
|
|
|
1320
1571
|
fill: "currentColor"
|
|
1321
1572
|
}
|
|
1322
1573
|
),
|
|
1323
|
-
/* @__PURE__ */
|
|
1574
|
+
/* @__PURE__ */ React32.createElement(
|
|
1324
1575
|
"path",
|
|
1325
1576
|
{
|
|
1326
1577
|
fillRule: "evenodd",
|
|
@@ -1329,7 +1580,7 @@ var init_LeadsFilled = __esm({
|
|
|
1329
1580
|
fill: "currentColor"
|
|
1330
1581
|
}
|
|
1331
1582
|
),
|
|
1332
|
-
/* @__PURE__ */
|
|
1583
|
+
/* @__PURE__ */ React32.createElement(
|
|
1333
1584
|
"path",
|
|
1334
1585
|
{
|
|
1335
1586
|
fillRule: "evenodd",
|
|
@@ -1349,15 +1600,15 @@ var LeadsLinear_exports = {};
|
|
|
1349
1600
|
__export(LeadsLinear_exports, {
|
|
1350
1601
|
default: () => LeadsLinear_default
|
|
1351
1602
|
});
|
|
1352
|
-
var
|
|
1603
|
+
var React33, SvgLeadsLinear, LeadsLinear_default;
|
|
1353
1604
|
var init_LeadsLinear = __esm({
|
|
1354
1605
|
"src/react/LeadsLinear.tsx"() {
|
|
1355
1606
|
"use strict";
|
|
1356
|
-
|
|
1607
|
+
React33 = __toESM(require("react"));
|
|
1357
1608
|
init_types();
|
|
1358
1609
|
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
1359
1610
|
const sizeValue = resolveSize(size);
|
|
1360
|
-
return /* @__PURE__ */
|
|
1611
|
+
return /* @__PURE__ */ React33.createElement(
|
|
1361
1612
|
"svg",
|
|
1362
1613
|
{
|
|
1363
1614
|
width: sizeValue,
|
|
@@ -1367,7 +1618,7 @@ var init_LeadsLinear = __esm({
|
|
|
1367
1618
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1368
1619
|
...props
|
|
1369
1620
|
},
|
|
1370
|
-
/* @__PURE__ */
|
|
1621
|
+
/* @__PURE__ */ React33.createElement(
|
|
1371
1622
|
"path",
|
|
1372
1623
|
{
|
|
1373
1624
|
fillRule: "evenodd",
|
|
@@ -1376,7 +1627,7 @@ var init_LeadsLinear = __esm({
|
|
|
1376
1627
|
fill: "currentColor"
|
|
1377
1628
|
}
|
|
1378
1629
|
),
|
|
1379
|
-
/* @__PURE__ */
|
|
1630
|
+
/* @__PURE__ */ React33.createElement(
|
|
1380
1631
|
"path",
|
|
1381
1632
|
{
|
|
1382
1633
|
fillRule: "evenodd",
|
|
@@ -1385,7 +1636,7 @@ var init_LeadsLinear = __esm({
|
|
|
1385
1636
|
fill: "currentColor"
|
|
1386
1637
|
}
|
|
1387
1638
|
),
|
|
1388
|
-
/* @__PURE__ */
|
|
1639
|
+
/* @__PURE__ */ React33.createElement(
|
|
1389
1640
|
"path",
|
|
1390
1641
|
{
|
|
1391
1642
|
fillRule: "evenodd",
|
|
@@ -1394,7 +1645,7 @@ var init_LeadsLinear = __esm({
|
|
|
1394
1645
|
fill: "currentColor"
|
|
1395
1646
|
}
|
|
1396
1647
|
),
|
|
1397
|
-
/* @__PURE__ */
|
|
1648
|
+
/* @__PURE__ */ React33.createElement(
|
|
1398
1649
|
"path",
|
|
1399
1650
|
{
|
|
1400
1651
|
fillRule: "evenodd",
|
|
@@ -1409,20 +1660,123 @@ var init_LeadsLinear = __esm({
|
|
|
1409
1660
|
}
|
|
1410
1661
|
});
|
|
1411
1662
|
|
|
1663
|
+
// src/react/Lock.tsx
|
|
1664
|
+
var Lock_exports = {};
|
|
1665
|
+
__export(Lock_exports, {
|
|
1666
|
+
default: () => Lock_default
|
|
1667
|
+
});
|
|
1668
|
+
var React34, SvgLock, Lock_default;
|
|
1669
|
+
var init_Lock = __esm({
|
|
1670
|
+
"src/react/Lock.tsx"() {
|
|
1671
|
+
"use strict";
|
|
1672
|
+
React34 = __toESM(require("react"));
|
|
1673
|
+
init_types();
|
|
1674
|
+
SvgLock = ({ size = 16, ...props }) => {
|
|
1675
|
+
const sizeValue = resolveSize(size);
|
|
1676
|
+
return /* @__PURE__ */ React34.createElement(
|
|
1677
|
+
"svg",
|
|
1678
|
+
{
|
|
1679
|
+
width: sizeValue,
|
|
1680
|
+
height: sizeValue,
|
|
1681
|
+
viewBox: "0 0 24 24",
|
|
1682
|
+
fill: "none",
|
|
1683
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1684
|
+
...props
|
|
1685
|
+
},
|
|
1686
|
+
/* @__PURE__ */ React34.createElement(
|
|
1687
|
+
"path",
|
|
1688
|
+
{
|
|
1689
|
+
fillRule: "evenodd",
|
|
1690
|
+
clipRule: "evenodd",
|
|
1691
|
+
d: "M6.24415 11.1048C5.64691 11.1048 5.16276 11.589 5.16276 12.1862V19.7559C5.16276 20.3531 5.64691 20.8372 6.24415 20.8372H18.1393C18.7366 20.8372 19.2207 20.3531 19.2207 19.7559V12.1862C19.2207 11.589 18.7366 11.1048 18.1393 11.1048H6.24415ZM3 12.1862C3 10.3945 4.45245 8.94204 6.24415 8.94204H18.1393C19.931 8.94204 21.3835 10.3945 21.3835 12.1862V19.7559C21.3835 21.5475 19.931 23 18.1393 23H6.24415C4.45245 23 3 21.5475 3 19.7559V12.1862Z",
|
|
1692
|
+
fill: "currentColor"
|
|
1693
|
+
}
|
|
1694
|
+
),
|
|
1695
|
+
/* @__PURE__ */ React34.createElement(
|
|
1696
|
+
"path",
|
|
1697
|
+
{
|
|
1698
|
+
fillRule: "evenodd",
|
|
1699
|
+
clipRule: "evenodd",
|
|
1700
|
+
d: "M12.1917 3.16276C11.0445 3.16276 9.94433 3.61849 9.13314 4.42968C8.32194 5.24087 7.86622 6.34109 7.86622 7.48829V10.0234C7.86622 10.6206 7.38207 11.1048 6.78484 11.1048C6.18761 11.1048 5.70345 10.6206 5.70345 10.0234V7.48829C5.70345 5.76749 6.38704 4.11717 7.60383 2.90038C8.82062 1.68359 10.4709 1 12.1917 1C13.9125 1 15.5629 1.68359 16.7797 2.90038C17.9965 4.11717 18.68 5.76749 18.68 7.48829V10.0234C18.68 10.6206 18.1959 11.1048 17.5987 11.1048C17.0014 11.1048 16.5173 10.6206 16.5173 10.0234V7.48829C16.5173 6.34109 16.0615 5.24087 15.2504 4.42968C14.4392 3.61849 13.3389 3.16276 12.1917 3.16276Z",
|
|
1701
|
+
fill: "currentColor"
|
|
1702
|
+
}
|
|
1703
|
+
)
|
|
1704
|
+
);
|
|
1705
|
+
};
|
|
1706
|
+
Lock_default = SvgLock;
|
|
1707
|
+
}
|
|
1708
|
+
});
|
|
1709
|
+
|
|
1710
|
+
// src/react/Logout.tsx
|
|
1711
|
+
var Logout_exports = {};
|
|
1712
|
+
__export(Logout_exports, {
|
|
1713
|
+
default: () => Logout_default
|
|
1714
|
+
});
|
|
1715
|
+
var React35, SvgLogout, Logout_default;
|
|
1716
|
+
var init_Logout = __esm({
|
|
1717
|
+
"src/react/Logout.tsx"() {
|
|
1718
|
+
"use strict";
|
|
1719
|
+
React35 = __toESM(require("react"));
|
|
1720
|
+
init_types();
|
|
1721
|
+
SvgLogout = ({ size = 16, ...props }) => {
|
|
1722
|
+
const sizeValue = resolveSize(size);
|
|
1723
|
+
return /* @__PURE__ */ React35.createElement(
|
|
1724
|
+
"svg",
|
|
1725
|
+
{
|
|
1726
|
+
width: sizeValue,
|
|
1727
|
+
height: sizeValue,
|
|
1728
|
+
viewBox: "0 0 24 24",
|
|
1729
|
+
fill: "none",
|
|
1730
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1731
|
+
...props
|
|
1732
|
+
},
|
|
1733
|
+
/* @__PURE__ */ React35.createElement(
|
|
1734
|
+
"path",
|
|
1735
|
+
{
|
|
1736
|
+
fillRule: "evenodd",
|
|
1737
|
+
clipRule: "evenodd",
|
|
1738
|
+
d: "M5 4C4.73478 4 4.48043 4.10536 4.29289 4.29289C4.10536 4.48043 4 4.73478 4 5V19C4 19.2652 4.10536 19.5196 4.29289 19.7071C4.48043 19.8946 4.73478 20 5 20H9C9.55228 20 10 20.4477 10 21C10 21.5523 9.55228 22 9 22H5C4.20435 22 3.44129 21.6839 2.87868 21.1213C2.31607 20.5587 2 19.7957 2 19V5C2 4.20435 2.31607 3.44129 2.87868 2.87868C3.44129 2.31607 4.20435 2 5 2H9C9.55228 2 10 2.44772 10 3C10 3.55228 9.55228 4 9 4H5Z",
|
|
1739
|
+
fill: "currentColor"
|
|
1740
|
+
}
|
|
1741
|
+
),
|
|
1742
|
+
/* @__PURE__ */ React35.createElement(
|
|
1743
|
+
"path",
|
|
1744
|
+
{
|
|
1745
|
+
fillRule: "evenodd",
|
|
1746
|
+
clipRule: "evenodd",
|
|
1747
|
+
d: "M15.2929 6.29289C15.6834 5.90237 16.3166 5.90237 16.7071 6.29289L21.7071 11.2929C22.0976 11.6834 22.0976 12.3166 21.7071 12.7071L16.7071 17.7071C16.3166 18.0976 15.6834 18.0976 15.2929 17.7071C14.9024 17.3166 14.9024 16.6834 15.2929 16.2929L19.5858 12L15.2929 7.70711C14.9024 7.31658 14.9024 6.68342 15.2929 6.29289Z",
|
|
1748
|
+
fill: "currentColor"
|
|
1749
|
+
}
|
|
1750
|
+
),
|
|
1751
|
+
/* @__PURE__ */ React35.createElement(
|
|
1752
|
+
"path",
|
|
1753
|
+
{
|
|
1754
|
+
fillRule: "evenodd",
|
|
1755
|
+
clipRule: "evenodd",
|
|
1756
|
+
d: "M8 12C8 11.4477 8.44772 11 9 11H21C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13H9C8.44772 13 8 12.5523 8 12Z",
|
|
1757
|
+
fill: "currentColor"
|
|
1758
|
+
}
|
|
1759
|
+
)
|
|
1760
|
+
);
|
|
1761
|
+
};
|
|
1762
|
+
Logout_default = SvgLogout;
|
|
1763
|
+
}
|
|
1764
|
+
});
|
|
1765
|
+
|
|
1412
1766
|
// src/react/Mail.tsx
|
|
1413
1767
|
var Mail_exports = {};
|
|
1414
1768
|
__export(Mail_exports, {
|
|
1415
1769
|
default: () => Mail_default
|
|
1416
1770
|
});
|
|
1417
|
-
var
|
|
1771
|
+
var React36, SvgMail, Mail_default;
|
|
1418
1772
|
var init_Mail = __esm({
|
|
1419
1773
|
"src/react/Mail.tsx"() {
|
|
1420
1774
|
"use strict";
|
|
1421
|
-
|
|
1775
|
+
React36 = __toESM(require("react"));
|
|
1422
1776
|
init_types();
|
|
1423
1777
|
SvgMail = ({ size = 16, ...props }) => {
|
|
1424
1778
|
const sizeValue = resolveSize(size);
|
|
1425
|
-
return /* @__PURE__ */
|
|
1779
|
+
return /* @__PURE__ */ React36.createElement(
|
|
1426
1780
|
"svg",
|
|
1427
1781
|
{
|
|
1428
1782
|
width: sizeValue,
|
|
@@ -1432,7 +1786,7 @@ var init_Mail = __esm({
|
|
|
1432
1786
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1433
1787
|
...props
|
|
1434
1788
|
},
|
|
1435
|
-
/* @__PURE__ */
|
|
1789
|
+
/* @__PURE__ */ React36.createElement(
|
|
1436
1790
|
"path",
|
|
1437
1791
|
{
|
|
1438
1792
|
fillRule: "evenodd",
|
|
@@ -1441,7 +1795,7 @@ var init_Mail = __esm({
|
|
|
1441
1795
|
fill: "currentColor"
|
|
1442
1796
|
}
|
|
1443
1797
|
),
|
|
1444
|
-
/* @__PURE__ */
|
|
1798
|
+
/* @__PURE__ */ React36.createElement(
|
|
1445
1799
|
"path",
|
|
1446
1800
|
{
|
|
1447
1801
|
fillRule: "evenodd",
|
|
@@ -1461,15 +1815,15 @@ var Mortgage_exports = {};
|
|
|
1461
1815
|
__export(Mortgage_exports, {
|
|
1462
1816
|
default: () => Mortgage_default
|
|
1463
1817
|
});
|
|
1464
|
-
var
|
|
1818
|
+
var React37, SvgMortgage, Mortgage_default;
|
|
1465
1819
|
var init_Mortgage = __esm({
|
|
1466
1820
|
"src/react/Mortgage.tsx"() {
|
|
1467
1821
|
"use strict";
|
|
1468
|
-
|
|
1822
|
+
React37 = __toESM(require("react"));
|
|
1469
1823
|
init_types();
|
|
1470
1824
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
1471
1825
|
const sizeValue = resolveSize(size);
|
|
1472
|
-
return /* @__PURE__ */
|
|
1826
|
+
return /* @__PURE__ */ React37.createElement(
|
|
1473
1827
|
"svg",
|
|
1474
1828
|
{
|
|
1475
1829
|
width: sizeValue,
|
|
@@ -1479,7 +1833,7 @@ var init_Mortgage = __esm({
|
|
|
1479
1833
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1480
1834
|
...props
|
|
1481
1835
|
},
|
|
1482
|
-
/* @__PURE__ */
|
|
1836
|
+
/* @__PURE__ */ React37.createElement(
|
|
1483
1837
|
"path",
|
|
1484
1838
|
{
|
|
1485
1839
|
fillRule: "evenodd",
|
|
@@ -1488,7 +1842,7 @@ var init_Mortgage = __esm({
|
|
|
1488
1842
|
fill: "currentColor"
|
|
1489
1843
|
}
|
|
1490
1844
|
),
|
|
1491
|
-
/* @__PURE__ */
|
|
1845
|
+
/* @__PURE__ */ React37.createElement(
|
|
1492
1846
|
"path",
|
|
1493
1847
|
{
|
|
1494
1848
|
fillRule: "evenodd",
|
|
@@ -1497,7 +1851,7 @@ var init_Mortgage = __esm({
|
|
|
1497
1851
|
fill: "currentColor"
|
|
1498
1852
|
}
|
|
1499
1853
|
),
|
|
1500
|
-
/* @__PURE__ */
|
|
1854
|
+
/* @__PURE__ */ React37.createElement(
|
|
1501
1855
|
"path",
|
|
1502
1856
|
{
|
|
1503
1857
|
fillRule: "evenodd",
|
|
@@ -1506,7 +1860,7 @@ var init_Mortgage = __esm({
|
|
|
1506
1860
|
fill: "currentColor"
|
|
1507
1861
|
}
|
|
1508
1862
|
),
|
|
1509
|
-
/* @__PURE__ */
|
|
1863
|
+
/* @__PURE__ */ React37.createElement(
|
|
1510
1864
|
"path",
|
|
1511
1865
|
{
|
|
1512
1866
|
fillRule: "evenodd",
|
|
@@ -1515,7 +1869,7 @@ var init_Mortgage = __esm({
|
|
|
1515
1869
|
fill: "currentColor"
|
|
1516
1870
|
}
|
|
1517
1871
|
),
|
|
1518
|
-
/* @__PURE__ */
|
|
1872
|
+
/* @__PURE__ */ React37.createElement(
|
|
1519
1873
|
"path",
|
|
1520
1874
|
{
|
|
1521
1875
|
fillRule: "evenodd",
|
|
@@ -1524,7 +1878,7 @@ var init_Mortgage = __esm({
|
|
|
1524
1878
|
fill: "currentColor"
|
|
1525
1879
|
}
|
|
1526
1880
|
),
|
|
1527
|
-
/* @__PURE__ */
|
|
1881
|
+
/* @__PURE__ */ React37.createElement(
|
|
1528
1882
|
"path",
|
|
1529
1883
|
{
|
|
1530
1884
|
fillRule: "evenodd",
|
|
@@ -1533,7 +1887,7 @@ var init_Mortgage = __esm({
|
|
|
1533
1887
|
fill: "currentColor"
|
|
1534
1888
|
}
|
|
1535
1889
|
),
|
|
1536
|
-
/* @__PURE__ */
|
|
1890
|
+
/* @__PURE__ */ React37.createElement(
|
|
1537
1891
|
"path",
|
|
1538
1892
|
{
|
|
1539
1893
|
fillRule: "evenodd",
|
|
@@ -1553,52 +1907,29 @@ var Note_exports = {};
|
|
|
1553
1907
|
__export(Note_exports, {
|
|
1554
1908
|
default: () => Note_default
|
|
1555
1909
|
});
|
|
1556
|
-
var
|
|
1910
|
+
var React38, SvgNote, Note_default;
|
|
1557
1911
|
var init_Note = __esm({
|
|
1558
1912
|
"src/react/Note.tsx"() {
|
|
1559
1913
|
"use strict";
|
|
1560
|
-
|
|
1914
|
+
React38 = __toESM(require("react"));
|
|
1561
1915
|
init_types();
|
|
1562
1916
|
SvgNote = ({ size = 16, ...props }) => {
|
|
1563
1917
|
const sizeValue = resolveSize(size);
|
|
1564
|
-
return /* @__PURE__ */
|
|
1918
|
+
return /* @__PURE__ */ React38.createElement(
|
|
1565
1919
|
"svg",
|
|
1566
1920
|
{
|
|
1567
1921
|
width: sizeValue,
|
|
1568
1922
|
height: sizeValue,
|
|
1569
|
-
viewBox: "0 0
|
|
1923
|
+
viewBox: "0 0 24 24",
|
|
1570
1924
|
fill: "none",
|
|
1571
1925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1572
1926
|
...props
|
|
1573
1927
|
},
|
|
1574
|
-
/* @__PURE__ */
|
|
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(
|
|
1928
|
+
/* @__PURE__ */ React38.createElement(
|
|
1595
1929
|
"path",
|
|
1596
1930
|
{
|
|
1597
|
-
d: "
|
|
1598
|
-
|
|
1599
|
-
strokeWidth: 2.1,
|
|
1600
|
-
strokeLinecap: "round",
|
|
1601
|
-
strokeLinejoin: "round"
|
|
1931
|
+
d: "M2.09961 19V5C2.09961 4.23087 2.40536 3.49307 2.94922 2.94922C3.49307 2.40536 4.23087 2.09961 5 2.09961H16L16.0889 2.10449C16.2949 2.12493 16.489 2.21558 16.6367 2.36328L21.6367 7.36328C21.8055 7.53206 21.9004 7.76131 21.9004 8V19C21.9004 19.7691 21.5946 20.5069 21.0508 21.0508C20.5069 21.5946 19.7691 21.9004 19 21.9004H5C4.23087 21.9004 3.49307 21.5946 2.94922 21.0508C2.40536 20.5069 2.09961 19.7691 2.09961 19ZM15.9004 7C15.9004 7.29174 16.0164 7.57105 16.2227 7.77734C16.4289 7.98363 16.7083 8.09961 17 8.09961H19.8262L15.9004 4.17383V7ZM3.90039 19C3.90039 19.2917 4.01637 19.5711 4.22266 19.7773C4.42895 19.9836 4.70826 20.0996 5 20.0996H19C19.2917 20.0996 19.5711 19.9836 19.7773 19.7773C19.9836 19.5711 20.0996 19.2917 20.0996 19V9.90039H17C16.2309 9.90039 15.4931 9.59464 14.9492 9.05078C14.4054 8.50693 14.0996 7.76913 14.0996 7V3.90039H5C4.70826 3.90039 4.42895 4.01637 4.22266 4.22266C4.01637 4.42895 3.90039 4.70826 3.90039 5V19Z",
|
|
1932
|
+
fill: "currentColor"
|
|
1602
1933
|
}
|
|
1603
1934
|
)
|
|
1604
1935
|
);
|
|
@@ -1612,15 +1943,15 @@ var Payments_exports = {};
|
|
|
1612
1943
|
__export(Payments_exports, {
|
|
1613
1944
|
default: () => Payments_default
|
|
1614
1945
|
});
|
|
1615
|
-
var
|
|
1946
|
+
var React39, SvgPayments, Payments_default;
|
|
1616
1947
|
var init_Payments = __esm({
|
|
1617
1948
|
"src/react/Payments.tsx"() {
|
|
1618
1949
|
"use strict";
|
|
1619
|
-
|
|
1950
|
+
React39 = __toESM(require("react"));
|
|
1620
1951
|
init_types();
|
|
1621
1952
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
1622
1953
|
const sizeValue = resolveSize(size);
|
|
1623
|
-
return /* @__PURE__ */
|
|
1954
|
+
return /* @__PURE__ */ React39.createElement(
|
|
1624
1955
|
"svg",
|
|
1625
1956
|
{
|
|
1626
1957
|
width: sizeValue,
|
|
@@ -1630,7 +1961,7 @@ var init_Payments = __esm({
|
|
|
1630
1961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1631
1962
|
...props
|
|
1632
1963
|
},
|
|
1633
|
-
/* @__PURE__ */
|
|
1964
|
+
/* @__PURE__ */ React39.createElement(
|
|
1634
1965
|
"path",
|
|
1635
1966
|
{
|
|
1636
1967
|
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",
|
|
@@ -1648,28 +1979,28 @@ var Plus_exports = {};
|
|
|
1648
1979
|
__export(Plus_exports, {
|
|
1649
1980
|
default: () => Plus_default
|
|
1650
1981
|
});
|
|
1651
|
-
var
|
|
1982
|
+
var React40, SvgPlus, Plus_default;
|
|
1652
1983
|
var init_Plus = __esm({
|
|
1653
1984
|
"src/react/Plus.tsx"() {
|
|
1654
1985
|
"use strict";
|
|
1655
|
-
|
|
1986
|
+
React40 = __toESM(require("react"));
|
|
1656
1987
|
init_types();
|
|
1657
1988
|
SvgPlus = ({ size = 16, ...props }) => {
|
|
1658
1989
|
const sizeValue = resolveSize(size);
|
|
1659
|
-
return /* @__PURE__ */
|
|
1990
|
+
return /* @__PURE__ */ React40.createElement(
|
|
1660
1991
|
"svg",
|
|
1661
1992
|
{
|
|
1662
1993
|
width: sizeValue,
|
|
1663
1994
|
height: sizeValue,
|
|
1664
|
-
viewBox: "0 0
|
|
1995
|
+
viewBox: "0 0 24 24",
|
|
1665
1996
|
fill: "none",
|
|
1666
1997
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1667
1998
|
...props
|
|
1668
1999
|
},
|
|
1669
|
-
/* @__PURE__ */
|
|
2000
|
+
/* @__PURE__ */ React40.createElement(
|
|
1670
2001
|
"path",
|
|
1671
2002
|
{
|
|
1672
|
-
d: "
|
|
2003
|
+
d: "M11 19V13H5C4.44772 13 4 12.5523 4 12C4 11.4477 4.44772 11 5 11H11V5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5V11H19C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H13V19C13 19.5523 12.5523 20 12 20C11.4477 20 11 19.5523 11 19Z",
|
|
1673
2004
|
fill: "currentColor"
|
|
1674
2005
|
}
|
|
1675
2006
|
)
|
|
@@ -1684,15 +2015,15 @@ var PropertiesFilled_exports = {};
|
|
|
1684
2015
|
__export(PropertiesFilled_exports, {
|
|
1685
2016
|
default: () => PropertiesFilled_default
|
|
1686
2017
|
});
|
|
1687
|
-
var
|
|
2018
|
+
var React41, SvgPropertiesFilled, PropertiesFilled_default;
|
|
1688
2019
|
var init_PropertiesFilled = __esm({
|
|
1689
2020
|
"src/react/PropertiesFilled.tsx"() {
|
|
1690
2021
|
"use strict";
|
|
1691
|
-
|
|
2022
|
+
React41 = __toESM(require("react"));
|
|
1692
2023
|
init_types();
|
|
1693
2024
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
1694
2025
|
const sizeValue = resolveSize(size);
|
|
1695
|
-
return /* @__PURE__ */
|
|
2026
|
+
return /* @__PURE__ */ React41.createElement(
|
|
1696
2027
|
"svg",
|
|
1697
2028
|
{
|
|
1698
2029
|
width: sizeValue,
|
|
@@ -1702,7 +2033,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1702
2033
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1703
2034
|
...props
|
|
1704
2035
|
},
|
|
1705
|
-
/* @__PURE__ */
|
|
2036
|
+
/* @__PURE__ */ React41.createElement(
|
|
1706
2037
|
"path",
|
|
1707
2038
|
{
|
|
1708
2039
|
fillRule: "evenodd",
|
|
@@ -1711,7 +2042,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1711
2042
|
fill: "currentColor"
|
|
1712
2043
|
}
|
|
1713
2044
|
),
|
|
1714
|
-
/* @__PURE__ */
|
|
2045
|
+
/* @__PURE__ */ React41.createElement(
|
|
1715
2046
|
"path",
|
|
1716
2047
|
{
|
|
1717
2048
|
fillRule: "evenodd",
|
|
@@ -1720,7 +2051,7 @@ var init_PropertiesFilled = __esm({
|
|
|
1720
2051
|
fill: "currentColor"
|
|
1721
2052
|
}
|
|
1722
2053
|
),
|
|
1723
|
-
/* @__PURE__ */
|
|
2054
|
+
/* @__PURE__ */ React41.createElement(
|
|
1724
2055
|
"path",
|
|
1725
2056
|
{
|
|
1726
2057
|
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",
|
|
@@ -1738,15 +2069,15 @@ var PropertiesLinear_exports = {};
|
|
|
1738
2069
|
__export(PropertiesLinear_exports, {
|
|
1739
2070
|
default: () => PropertiesLinear_default
|
|
1740
2071
|
});
|
|
1741
|
-
var
|
|
2072
|
+
var React42, SvgPropertiesLinear, PropertiesLinear_default;
|
|
1742
2073
|
var init_PropertiesLinear = __esm({
|
|
1743
2074
|
"src/react/PropertiesLinear.tsx"() {
|
|
1744
2075
|
"use strict";
|
|
1745
|
-
|
|
2076
|
+
React42 = __toESM(require("react"));
|
|
1746
2077
|
init_types();
|
|
1747
2078
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
1748
2079
|
const sizeValue = resolveSize(size);
|
|
1749
|
-
return /* @__PURE__ */
|
|
2080
|
+
return /* @__PURE__ */ React42.createElement(
|
|
1750
2081
|
"svg",
|
|
1751
2082
|
{
|
|
1752
2083
|
width: sizeValue,
|
|
@@ -1756,7 +2087,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1756
2087
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1757
2088
|
...props
|
|
1758
2089
|
},
|
|
1759
|
-
/* @__PURE__ */
|
|
2090
|
+
/* @__PURE__ */ React42.createElement(
|
|
1760
2091
|
"path",
|
|
1761
2092
|
{
|
|
1762
2093
|
fillRule: "evenodd",
|
|
@@ -1765,7 +2096,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1765
2096
|
fill: "currentColor"
|
|
1766
2097
|
}
|
|
1767
2098
|
),
|
|
1768
|
-
/* @__PURE__ */
|
|
2099
|
+
/* @__PURE__ */ React42.createElement(
|
|
1769
2100
|
"path",
|
|
1770
2101
|
{
|
|
1771
2102
|
fillRule: "evenodd",
|
|
@@ -1774,7 +2105,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1774
2105
|
fill: "currentColor"
|
|
1775
2106
|
}
|
|
1776
2107
|
),
|
|
1777
|
-
/* @__PURE__ */
|
|
2108
|
+
/* @__PURE__ */ React42.createElement(
|
|
1778
2109
|
"path",
|
|
1779
2110
|
{
|
|
1780
2111
|
fillRule: "evenodd",
|
|
@@ -1783,7 +2114,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1783
2114
|
fill: "currentColor"
|
|
1784
2115
|
}
|
|
1785
2116
|
),
|
|
1786
|
-
/* @__PURE__ */
|
|
2117
|
+
/* @__PURE__ */ React42.createElement(
|
|
1787
2118
|
"path",
|
|
1788
2119
|
{
|
|
1789
2120
|
fillRule: "evenodd",
|
|
@@ -1792,7 +2123,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1792
2123
|
fill: "currentColor"
|
|
1793
2124
|
}
|
|
1794
2125
|
),
|
|
1795
|
-
/* @__PURE__ */
|
|
2126
|
+
/* @__PURE__ */ React42.createElement(
|
|
1796
2127
|
"path",
|
|
1797
2128
|
{
|
|
1798
2129
|
fillRule: "evenodd",
|
|
@@ -1801,7 +2132,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1801
2132
|
fill: "currentColor"
|
|
1802
2133
|
}
|
|
1803
2134
|
),
|
|
1804
|
-
/* @__PURE__ */
|
|
2135
|
+
/* @__PURE__ */ React42.createElement(
|
|
1805
2136
|
"path",
|
|
1806
2137
|
{
|
|
1807
2138
|
fillRule: "evenodd",
|
|
@@ -1810,7 +2141,7 @@ var init_PropertiesLinear = __esm({
|
|
|
1810
2141
|
fill: "currentColor"
|
|
1811
2142
|
}
|
|
1812
2143
|
),
|
|
1813
|
-
/* @__PURE__ */
|
|
2144
|
+
/* @__PURE__ */ React42.createElement(
|
|
1814
2145
|
"path",
|
|
1815
2146
|
{
|
|
1816
2147
|
fillRule: "evenodd",
|
|
@@ -1830,15 +2161,15 @@ var Rent_exports = {};
|
|
|
1830
2161
|
__export(Rent_exports, {
|
|
1831
2162
|
default: () => Rent_default
|
|
1832
2163
|
});
|
|
1833
|
-
var
|
|
2164
|
+
var React43, SvgRent, Rent_default;
|
|
1834
2165
|
var init_Rent = __esm({
|
|
1835
2166
|
"src/react/Rent.tsx"() {
|
|
1836
2167
|
"use strict";
|
|
1837
|
-
|
|
2168
|
+
React43 = __toESM(require("react"));
|
|
1838
2169
|
init_types();
|
|
1839
2170
|
SvgRent = ({ size = 16, ...props }) => {
|
|
1840
2171
|
const sizeValue = resolveSize(size);
|
|
1841
|
-
return /* @__PURE__ */
|
|
2172
|
+
return /* @__PURE__ */ React43.createElement(
|
|
1842
2173
|
"svg",
|
|
1843
2174
|
{
|
|
1844
2175
|
width: sizeValue,
|
|
@@ -1848,7 +2179,7 @@ var init_Rent = __esm({
|
|
|
1848
2179
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1849
2180
|
...props
|
|
1850
2181
|
},
|
|
1851
|
-
/* @__PURE__ */
|
|
2182
|
+
/* @__PURE__ */ React43.createElement(
|
|
1852
2183
|
"path",
|
|
1853
2184
|
{
|
|
1854
2185
|
fillRule: "evenodd",
|
|
@@ -1857,7 +2188,7 @@ var init_Rent = __esm({
|
|
|
1857
2188
|
fill: "currentColor"
|
|
1858
2189
|
}
|
|
1859
2190
|
),
|
|
1860
|
-
/* @__PURE__ */
|
|
2191
|
+
/* @__PURE__ */ React43.createElement(
|
|
1861
2192
|
"path",
|
|
1862
2193
|
{
|
|
1863
2194
|
fillRule: "evenodd",
|
|
@@ -1866,7 +2197,7 @@ var init_Rent = __esm({
|
|
|
1866
2197
|
fill: "currentColor"
|
|
1867
2198
|
}
|
|
1868
2199
|
),
|
|
1869
|
-
/* @__PURE__ */
|
|
2200
|
+
/* @__PURE__ */ React43.createElement(
|
|
1870
2201
|
"path",
|
|
1871
2202
|
{
|
|
1872
2203
|
fillRule: "evenodd",
|
|
@@ -1886,15 +2217,15 @@ var Search_exports = {};
|
|
|
1886
2217
|
__export(Search_exports, {
|
|
1887
2218
|
default: () => Search_default
|
|
1888
2219
|
});
|
|
1889
|
-
var
|
|
2220
|
+
var React44, SvgSearch, Search_default;
|
|
1890
2221
|
var init_Search = __esm({
|
|
1891
2222
|
"src/react/Search.tsx"() {
|
|
1892
2223
|
"use strict";
|
|
1893
|
-
|
|
2224
|
+
React44 = __toESM(require("react"));
|
|
1894
2225
|
init_types();
|
|
1895
2226
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
1896
2227
|
const sizeValue = resolveSize(size);
|
|
1897
|
-
return /* @__PURE__ */
|
|
2228
|
+
return /* @__PURE__ */ React44.createElement(
|
|
1898
2229
|
"svg",
|
|
1899
2230
|
{
|
|
1900
2231
|
width: sizeValue,
|
|
@@ -1904,7 +2235,7 @@ var init_Search = __esm({
|
|
|
1904
2235
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1905
2236
|
...props
|
|
1906
2237
|
},
|
|
1907
|
-
/* @__PURE__ */
|
|
2238
|
+
/* @__PURE__ */ React44.createElement(
|
|
1908
2239
|
"path",
|
|
1909
2240
|
{
|
|
1910
2241
|
fillRule: "evenodd",
|
|
@@ -1913,7 +2244,7 @@ var init_Search = __esm({
|
|
|
1913
2244
|
fill: "currentColor"
|
|
1914
2245
|
}
|
|
1915
2246
|
),
|
|
1916
|
-
/* @__PURE__ */
|
|
2247
|
+
/* @__PURE__ */ React44.createElement(
|
|
1917
2248
|
"path",
|
|
1918
2249
|
{
|
|
1919
2250
|
fillRule: "evenodd",
|
|
@@ -1933,15 +2264,15 @@ var SearchX_exports = {};
|
|
|
1933
2264
|
__export(SearchX_exports, {
|
|
1934
2265
|
default: () => SearchX_default
|
|
1935
2266
|
});
|
|
1936
|
-
var
|
|
2267
|
+
var React45, SvgSearchX, SearchX_default;
|
|
1937
2268
|
var init_SearchX = __esm({
|
|
1938
2269
|
"src/react/SearchX.tsx"() {
|
|
1939
2270
|
"use strict";
|
|
1940
|
-
|
|
2271
|
+
React45 = __toESM(require("react"));
|
|
1941
2272
|
init_types();
|
|
1942
2273
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
1943
2274
|
const sizeValue = resolveSize(size);
|
|
1944
|
-
return /* @__PURE__ */
|
|
2275
|
+
return /* @__PURE__ */ React45.createElement(
|
|
1945
2276
|
"svg",
|
|
1946
2277
|
{
|
|
1947
2278
|
width: sizeValue,
|
|
@@ -1951,7 +2282,7 @@ var init_SearchX = __esm({
|
|
|
1951
2282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1952
2283
|
...props
|
|
1953
2284
|
},
|
|
1954
|
-
/* @__PURE__ */
|
|
2285
|
+
/* @__PURE__ */ React45.createElement(
|
|
1955
2286
|
"path",
|
|
1956
2287
|
{
|
|
1957
2288
|
fillRule: "evenodd",
|
|
@@ -1960,7 +2291,7 @@ var init_SearchX = __esm({
|
|
|
1960
2291
|
fill: "currentColor"
|
|
1961
2292
|
}
|
|
1962
2293
|
),
|
|
1963
|
-
/* @__PURE__ */
|
|
2294
|
+
/* @__PURE__ */ React45.createElement(
|
|
1964
2295
|
"path",
|
|
1965
2296
|
{
|
|
1966
2297
|
fillRule: "evenodd",
|
|
@@ -1969,7 +2300,7 @@ var init_SearchX = __esm({
|
|
|
1969
2300
|
fill: "currentColor"
|
|
1970
2301
|
}
|
|
1971
2302
|
),
|
|
1972
|
-
/* @__PURE__ */
|
|
2303
|
+
/* @__PURE__ */ React45.createElement(
|
|
1973
2304
|
"path",
|
|
1974
2305
|
{
|
|
1975
2306
|
fillRule: "evenodd",
|
|
@@ -1978,7 +2309,7 @@ var init_SearchX = __esm({
|
|
|
1978
2309
|
fill: "currentColor"
|
|
1979
2310
|
}
|
|
1980
2311
|
),
|
|
1981
|
-
/* @__PURE__ */
|
|
2312
|
+
/* @__PURE__ */ React45.createElement(
|
|
1982
2313
|
"path",
|
|
1983
2314
|
{
|
|
1984
2315
|
fillRule: "evenodd",
|
|
@@ -1998,15 +2329,15 @@ var Share_exports = {};
|
|
|
1998
2329
|
__export(Share_exports, {
|
|
1999
2330
|
default: () => Share_default
|
|
2000
2331
|
});
|
|
2001
|
-
var
|
|
2332
|
+
var React46, SvgShare, Share_default;
|
|
2002
2333
|
var init_Share = __esm({
|
|
2003
2334
|
"src/react/Share.tsx"() {
|
|
2004
2335
|
"use strict";
|
|
2005
|
-
|
|
2336
|
+
React46 = __toESM(require("react"));
|
|
2006
2337
|
init_types();
|
|
2007
2338
|
SvgShare = ({ size = 16, ...props }) => {
|
|
2008
2339
|
const sizeValue = resolveSize(size);
|
|
2009
|
-
return /* @__PURE__ */
|
|
2340
|
+
return /* @__PURE__ */ React46.createElement(
|
|
2010
2341
|
"svg",
|
|
2011
2342
|
{
|
|
2012
2343
|
width: sizeValue,
|
|
@@ -2016,7 +2347,7 @@ var init_Share = __esm({
|
|
|
2016
2347
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2017
2348
|
...props
|
|
2018
2349
|
},
|
|
2019
|
-
/* @__PURE__ */
|
|
2350
|
+
/* @__PURE__ */ React46.createElement(
|
|
2020
2351
|
"path",
|
|
2021
2352
|
{
|
|
2022
2353
|
fillRule: "evenodd",
|
|
@@ -2025,7 +2356,7 @@ var init_Share = __esm({
|
|
|
2025
2356
|
fill: "currentColor"
|
|
2026
2357
|
}
|
|
2027
2358
|
),
|
|
2028
|
-
/* @__PURE__ */
|
|
2359
|
+
/* @__PURE__ */ React46.createElement(
|
|
2029
2360
|
"path",
|
|
2030
2361
|
{
|
|
2031
2362
|
fillRule: "evenodd",
|
|
@@ -2034,7 +2365,7 @@ var init_Share = __esm({
|
|
|
2034
2365
|
fill: "currentColor"
|
|
2035
2366
|
}
|
|
2036
2367
|
),
|
|
2037
|
-
/* @__PURE__ */
|
|
2368
|
+
/* @__PURE__ */ React46.createElement(
|
|
2038
2369
|
"path",
|
|
2039
2370
|
{
|
|
2040
2371
|
fillRule: "evenodd",
|
|
@@ -2054,15 +2385,15 @@ var Trash2_exports = {};
|
|
|
2054
2385
|
__export(Trash2_exports, {
|
|
2055
2386
|
default: () => Trash2_default
|
|
2056
2387
|
});
|
|
2057
|
-
var
|
|
2388
|
+
var React47, SvgTrash2, Trash2_default;
|
|
2058
2389
|
var init_Trash2 = __esm({
|
|
2059
2390
|
"src/react/Trash2.tsx"() {
|
|
2060
2391
|
"use strict";
|
|
2061
|
-
|
|
2392
|
+
React47 = __toESM(require("react"));
|
|
2062
2393
|
init_types();
|
|
2063
2394
|
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
2064
2395
|
const sizeValue = resolveSize(size);
|
|
2065
|
-
return /* @__PURE__ */
|
|
2396
|
+
return /* @__PURE__ */ React47.createElement(
|
|
2066
2397
|
"svg",
|
|
2067
2398
|
{
|
|
2068
2399
|
width: sizeValue,
|
|
@@ -2072,7 +2403,7 @@ var init_Trash2 = __esm({
|
|
|
2072
2403
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2073
2404
|
...props
|
|
2074
2405
|
},
|
|
2075
|
-
/* @__PURE__ */
|
|
2406
|
+
/* @__PURE__ */ React47.createElement(
|
|
2076
2407
|
"path",
|
|
2077
2408
|
{
|
|
2078
2409
|
fillRule: "evenodd",
|
|
@@ -2081,7 +2412,7 @@ var init_Trash2 = __esm({
|
|
|
2081
2412
|
fill: "currentColor"
|
|
2082
2413
|
}
|
|
2083
2414
|
),
|
|
2084
|
-
/* @__PURE__ */
|
|
2415
|
+
/* @__PURE__ */ React47.createElement(
|
|
2085
2416
|
"path",
|
|
2086
2417
|
{
|
|
2087
2418
|
fillRule: "evenodd",
|
|
@@ -2090,7 +2421,7 @@ var init_Trash2 = __esm({
|
|
|
2090
2421
|
fill: "currentColor"
|
|
2091
2422
|
}
|
|
2092
2423
|
),
|
|
2093
|
-
/* @__PURE__ */
|
|
2424
|
+
/* @__PURE__ */ React47.createElement(
|
|
2094
2425
|
"path",
|
|
2095
2426
|
{
|
|
2096
2427
|
fillRule: "evenodd",
|
|
@@ -2099,7 +2430,7 @@ var init_Trash2 = __esm({
|
|
|
2099
2430
|
fill: "currentColor"
|
|
2100
2431
|
}
|
|
2101
2432
|
),
|
|
2102
|
-
/* @__PURE__ */
|
|
2433
|
+
/* @__PURE__ */ React47.createElement(
|
|
2103
2434
|
"path",
|
|
2104
2435
|
{
|
|
2105
2436
|
fillRule: "evenodd",
|
|
@@ -2108,7 +2439,7 @@ var init_Trash2 = __esm({
|
|
|
2108
2439
|
fill: "currentColor"
|
|
2109
2440
|
}
|
|
2110
2441
|
),
|
|
2111
|
-
/* @__PURE__ */
|
|
2442
|
+
/* @__PURE__ */ React47.createElement(
|
|
2112
2443
|
"path",
|
|
2113
2444
|
{
|
|
2114
2445
|
fillRule: "evenodd",
|
|
@@ -2128,15 +2459,15 @@ var User_exports = {};
|
|
|
2128
2459
|
__export(User_exports, {
|
|
2129
2460
|
default: () => User_default
|
|
2130
2461
|
});
|
|
2131
|
-
var
|
|
2462
|
+
var React48, SvgUser, User_default;
|
|
2132
2463
|
var init_User = __esm({
|
|
2133
2464
|
"src/react/User.tsx"() {
|
|
2134
2465
|
"use strict";
|
|
2135
|
-
|
|
2466
|
+
React48 = __toESM(require("react"));
|
|
2136
2467
|
init_types();
|
|
2137
2468
|
SvgUser = ({ size = 16, ...props }) => {
|
|
2138
2469
|
const sizeValue = resolveSize(size);
|
|
2139
|
-
return /* @__PURE__ */
|
|
2470
|
+
return /* @__PURE__ */ React48.createElement(
|
|
2140
2471
|
"svg",
|
|
2141
2472
|
{
|
|
2142
2473
|
width: sizeValue,
|
|
@@ -2146,7 +2477,7 @@ var init_User = __esm({
|
|
|
2146
2477
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2147
2478
|
...props
|
|
2148
2479
|
},
|
|
2149
|
-
/* @__PURE__ */
|
|
2480
|
+
/* @__PURE__ */ React48.createElement(
|
|
2150
2481
|
"path",
|
|
2151
2482
|
{
|
|
2152
2483
|
fillRule: "evenodd",
|
|
@@ -2155,7 +2486,7 @@ var init_User = __esm({
|
|
|
2155
2486
|
fill: "currentColor"
|
|
2156
2487
|
}
|
|
2157
2488
|
),
|
|
2158
|
-
/* @__PURE__ */
|
|
2489
|
+
/* @__PURE__ */ React48.createElement(
|
|
2159
2490
|
"path",
|
|
2160
2491
|
{
|
|
2161
2492
|
fillRule: "evenodd",
|
|
@@ -2175,15 +2506,15 @@ var Whatsapp_exports = {};
|
|
|
2175
2506
|
__export(Whatsapp_exports, {
|
|
2176
2507
|
default: () => Whatsapp_default
|
|
2177
2508
|
});
|
|
2178
|
-
var
|
|
2509
|
+
var React49, SvgWhatsapp, Whatsapp_default;
|
|
2179
2510
|
var init_Whatsapp = __esm({
|
|
2180
2511
|
"src/react/Whatsapp.tsx"() {
|
|
2181
2512
|
"use strict";
|
|
2182
|
-
|
|
2513
|
+
React49 = __toESM(require("react"));
|
|
2183
2514
|
init_types();
|
|
2184
2515
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
2185
2516
|
const sizeValue = resolveSize(size);
|
|
2186
|
-
return /* @__PURE__ */
|
|
2517
|
+
return /* @__PURE__ */ React49.createElement(
|
|
2187
2518
|
"svg",
|
|
2188
2519
|
{
|
|
2189
2520
|
width: sizeValue,
|
|
@@ -2193,7 +2524,7 @@ var init_Whatsapp = __esm({
|
|
|
2193
2524
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2194
2525
|
...props
|
|
2195
2526
|
},
|
|
2196
|
-
/* @__PURE__ */
|
|
2527
|
+
/* @__PURE__ */ React49.createElement(
|
|
2197
2528
|
"path",
|
|
2198
2529
|
{
|
|
2199
2530
|
fillRule: "evenodd",
|
|
@@ -2233,7 +2564,11 @@ __export(react_exports, {
|
|
|
2233
2564
|
ExploreLinear: () => ExploreLinear_default,
|
|
2234
2565
|
EyeHidden: () => EyeHidden_default,
|
|
2235
2566
|
EyeVisible: () => EyeVisible_default,
|
|
2567
|
+
FileCheck: () => FileCheck_default,
|
|
2236
2568
|
FileKey: () => FileKey_default,
|
|
2569
|
+
FileLock: () => FileLock_default,
|
|
2570
|
+
FileSpreadsheet: () => FileSpreadsheet_default,
|
|
2571
|
+
HelpCircle: () => HelpCircle_default,
|
|
2237
2572
|
HomeFilled: () => HomeFilled_default,
|
|
2238
2573
|
HomeLinear: () => HomeLinear_default,
|
|
2239
2574
|
ICON_SIZES: () => ICON_SIZES,
|
|
@@ -2242,6 +2577,8 @@ __export(react_exports, {
|
|
|
2242
2577
|
Keys01: () => Keys01_default,
|
|
2243
2578
|
LeadsFilled: () => LeadsFilled_default,
|
|
2244
2579
|
LeadsLinear: () => LeadsLinear_default,
|
|
2580
|
+
Lock: () => Lock_default,
|
|
2581
|
+
Logout: () => Logout_default,
|
|
2245
2582
|
Mail: () => Mail_default,
|
|
2246
2583
|
Mortgage: () => Mortgage_default,
|
|
2247
2584
|
Note: () => Note_default,
|
|
@@ -2281,13 +2618,19 @@ init_ExploreFilled();
|
|
|
2281
2618
|
init_ExploreLinear();
|
|
2282
2619
|
init_EyeHidden();
|
|
2283
2620
|
init_EyeVisible();
|
|
2621
|
+
init_FileCheck();
|
|
2284
2622
|
init_FileKey();
|
|
2623
|
+
init_FileLock();
|
|
2624
|
+
init_FileSpreadsheet();
|
|
2625
|
+
init_HelpCircle();
|
|
2285
2626
|
init_HomeFilled();
|
|
2286
2627
|
init_HomeLinear();
|
|
2287
2628
|
init_IconSlot();
|
|
2288
2629
|
init_Keys01();
|
|
2289
2630
|
init_LeadsFilled();
|
|
2290
2631
|
init_LeadsLinear();
|
|
2632
|
+
init_Lock();
|
|
2633
|
+
init_Logout();
|
|
2291
2634
|
init_Mail();
|
|
2292
2635
|
init_Mortgage();
|
|
2293
2636
|
init_Note();
|
|
@@ -2304,7 +2647,7 @@ init_User();
|
|
|
2304
2647
|
init_Whatsapp();
|
|
2305
2648
|
|
|
2306
2649
|
// src/react/Icon.tsx
|
|
2307
|
-
var
|
|
2650
|
+
var React50 = __toESM(require("react"));
|
|
2308
2651
|
function loadIcon(name) {
|
|
2309
2652
|
switch (name) {
|
|
2310
2653
|
case "alert-triangle":
|
|
@@ -2351,8 +2694,16 @@ function loadIcon(name) {
|
|
|
2351
2694
|
return Promise.resolve().then(() => (init_EyeHidden(), EyeHidden_exports)).then((m) => m.default);
|
|
2352
2695
|
case "eye-visible":
|
|
2353
2696
|
return Promise.resolve().then(() => (init_EyeVisible(), EyeVisible_exports)).then((m) => m.default);
|
|
2697
|
+
case "file-check":
|
|
2698
|
+
return Promise.resolve().then(() => (init_FileCheck(), FileCheck_exports)).then((m) => m.default);
|
|
2354
2699
|
case "file-key":
|
|
2355
2700
|
return Promise.resolve().then(() => (init_FileKey(), FileKey_exports)).then((m) => m.default);
|
|
2701
|
+
case "file-lock":
|
|
2702
|
+
return Promise.resolve().then(() => (init_FileLock(), FileLock_exports)).then((m) => m.default);
|
|
2703
|
+
case "file-spreadsheet":
|
|
2704
|
+
return Promise.resolve().then(() => (init_FileSpreadsheet(), FileSpreadsheet_exports)).then((m) => m.default);
|
|
2705
|
+
case "help-circle":
|
|
2706
|
+
return Promise.resolve().then(() => (init_HelpCircle(), HelpCircle_exports)).then((m) => m.default);
|
|
2356
2707
|
case "home-filled":
|
|
2357
2708
|
return Promise.resolve().then(() => (init_HomeFilled(), HomeFilled_exports)).then((m) => m.default);
|
|
2358
2709
|
case "home-linear":
|
|
@@ -2365,6 +2716,10 @@ function loadIcon(name) {
|
|
|
2365
2716
|
return Promise.resolve().then(() => (init_LeadsFilled(), LeadsFilled_exports)).then((m) => m.default);
|
|
2366
2717
|
case "leads-linear":
|
|
2367
2718
|
return Promise.resolve().then(() => (init_LeadsLinear(), LeadsLinear_exports)).then((m) => m.default);
|
|
2719
|
+
case "lock":
|
|
2720
|
+
return Promise.resolve().then(() => (init_Lock(), Lock_exports)).then((m) => m.default);
|
|
2721
|
+
case "logout":
|
|
2722
|
+
return Promise.resolve().then(() => (init_Logout(), Logout_exports)).then((m) => m.default);
|
|
2368
2723
|
case "mail":
|
|
2369
2724
|
return Promise.resolve().then(() => (init_Mail(), Mail_exports)).then((m) => m.default);
|
|
2370
2725
|
case "mortgage":
|
|
@@ -2398,10 +2753,10 @@ function loadIcon(name) {
|
|
|
2398
2753
|
}
|
|
2399
2754
|
}
|
|
2400
2755
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
2401
|
-
const [IconComponent, setIconComponent] =
|
|
2402
|
-
const [loading, setLoading] =
|
|
2403
|
-
const [error, setError] =
|
|
2404
|
-
|
|
2756
|
+
const [IconComponent, setIconComponent] = React50.useState(null);
|
|
2757
|
+
const [loading, setLoading] = React50.useState(true);
|
|
2758
|
+
const [error, setError] = React50.useState(null);
|
|
2759
|
+
React50.useEffect(() => {
|
|
2405
2760
|
setLoading(true);
|
|
2406
2761
|
setError(null);
|
|
2407
2762
|
loadIcon(name).then((Component) => {
|
|
@@ -2420,7 +2775,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
2420
2775
|
return null;
|
|
2421
2776
|
}
|
|
2422
2777
|
const style = color ? { ...props.style, color } : props.style;
|
|
2423
|
-
return /* @__PURE__ */
|
|
2778
|
+
return /* @__PURE__ */ React50.createElement(IconComponent, { size, ...props, style });
|
|
2424
2779
|
};
|
|
2425
2780
|
var Icon_default = Icon;
|
|
2426
2781
|
|