huspy-icons 0.1.7 → 0.1.9
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/README.md +59 -6
- package/dist/fonts/HuspyIcons.css +31 -10
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +13 -6
- package/dist/fonts/HuspyIcons.ts +27 -6
- 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 +13 -6
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +16 -2
- package/dist/react/index.d.ts +16 -2
- package/dist/react/index.js +456 -31
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +451 -26
- package/dist/react/index.mjs.map +1 -1
- package/package.json +6 -2
- package/src/native/glyphMap.ts +14 -7
- package/src/react/Edit.tsx +32 -0
- package/src/react/HomeFilled.tsx +24 -0
- package/src/react/HomeLinear.tsx +26 -0
- package/src/react/Icon.tsx +22 -1
- package/src/react/LeadsFilled.tsx +44 -0
- package/src/react/LeadsLinear.tsx +44 -0
- package/src/react/PropertiesFilled.tsx +36 -0
- package/src/react/PropertiesLinear.tsx +62 -0
- package/src/react/index.ts +7 -0
- package/src/react/index.tsx +7 -0
package/dist/react/index.mjs
CHANGED
|
@@ -161,12 +161,59 @@ var init_Check = __esm({
|
|
|
161
161
|
}
|
|
162
162
|
});
|
|
163
163
|
|
|
164
|
+
// src/react/Edit.tsx
|
|
165
|
+
var Edit_exports = {};
|
|
166
|
+
__export(Edit_exports, {
|
|
167
|
+
default: () => Edit_default
|
|
168
|
+
});
|
|
169
|
+
import * as React4 from "react";
|
|
170
|
+
var SvgEdit, Edit_default;
|
|
171
|
+
var init_Edit = __esm({
|
|
172
|
+
"src/react/Edit.tsx"() {
|
|
173
|
+
"use strict";
|
|
174
|
+
init_types();
|
|
175
|
+
SvgEdit = ({ size = 16, ...props }) => {
|
|
176
|
+
const sizeValue = resolveSize(size);
|
|
177
|
+
return /* @__PURE__ */ React4.createElement(
|
|
178
|
+
"svg",
|
|
179
|
+
{
|
|
180
|
+
width: sizeValue,
|
|
181
|
+
height: sizeValue,
|
|
182
|
+
viewBox: "0 0 24 24",
|
|
183
|
+
fill: "none",
|
|
184
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
185
|
+
...props
|
|
186
|
+
},
|
|
187
|
+
/* @__PURE__ */ React4.createElement(
|
|
188
|
+
"path",
|
|
189
|
+
{
|
|
190
|
+
fillRule: "evenodd",
|
|
191
|
+
clipRule: "evenodd",
|
|
192
|
+
d: "M19.8596 3.11765C19.6197 3.02426 19.3627 2.98143 19.1049 2.99207C18.8471 3.00271 18.5946 3.06656 18.3636 3.1793C18.1325 3.29203 17.9282 3.45107 17.7634 3.64587C17.7455 3.66702 17.7267 3.68742 17.7071 3.70701L4.39491 17.0192L3.42524 20.5747L6.9807 19.605L20.2929 6.2928C20.3158 6.26991 20.3398 6.24815 20.3648 6.22759C20.5625 6.06494 20.7235 5.86358 20.8378 5.6366C20.9522 5.40964 21.0174 5.16186 21.0298 4.90899C21.0422 4.65612 21.0014 4.40333 20.9099 4.16664C20.8183 3.92993 20.6779 3.71425 20.4972 3.53353C20.3165 3.3528 20.0994 3.21103 19.8596 3.11765ZM19.0224 0.993769C19.5557 0.971764 20.088 1.06031 20.5852 1.25394C21.0825 1.44757 21.5343 1.74216 21.9114 2.11932C22.2886 2.4965 22.5829 2.948 22.7752 3.44525C22.9676 3.94252 23.0535 4.47436 23.0274 5.00678C23.0014 5.5392 22.8639 6.06014 22.624 6.53634C22.392 6.99698 22.0692 7.4058 21.6754 7.73877L8.20713 21.207C8.08407 21.3301 7.93104 21.4189 7.76314 21.4647L2.26314 22.9647C1.91693 23.0591 1.54667 22.9608 1.29292 22.707C1.03917 22.4533 0.940838 22.083 1.03526 21.7368L2.53526 16.2368C2.58105 16.0689 2.66986 15.9159 2.79292 15.7928L16.2657 2.31998C16.605 1.92839 17.0203 1.60935 17.4865 1.38187C17.9661 1.14787 18.4891 1.01577 19.0224 0.993769Z",
|
|
193
|
+
fill: "currentColor"
|
|
194
|
+
}
|
|
195
|
+
),
|
|
196
|
+
/* @__PURE__ */ React4.createElement(
|
|
197
|
+
"path",
|
|
198
|
+
{
|
|
199
|
+
fillRule: "evenodd",
|
|
200
|
+
clipRule: "evenodd",
|
|
201
|
+
d: "M14.2929 4.29289C14.6834 3.90237 15.3166 3.90237 15.7071 4.29289L19.7071 8.29289C20.0976 8.68342 20.0976 9.31658 19.7071 9.70711C19.3166 10.0976 18.6834 10.0976 18.2929 9.70711L14.2929 5.70711C13.9024 5.31658 13.9024 4.68342 14.2929 4.29289Z",
|
|
202
|
+
fill: "currentColor"
|
|
203
|
+
}
|
|
204
|
+
)
|
|
205
|
+
);
|
|
206
|
+
};
|
|
207
|
+
Edit_default = SvgEdit;
|
|
208
|
+
}
|
|
209
|
+
});
|
|
210
|
+
|
|
164
211
|
// src/react/EyeHidden.tsx
|
|
165
212
|
var EyeHidden_exports = {};
|
|
166
213
|
__export(EyeHidden_exports, {
|
|
167
214
|
default: () => EyeHidden_default
|
|
168
215
|
});
|
|
169
|
-
import * as
|
|
216
|
+
import * as React5 from "react";
|
|
170
217
|
var SvgEyeHidden, EyeHidden_default;
|
|
171
218
|
var init_EyeHidden = __esm({
|
|
172
219
|
"src/react/EyeHidden.tsx"() {
|
|
@@ -174,7 +221,7 @@ var init_EyeHidden = __esm({
|
|
|
174
221
|
init_types();
|
|
175
222
|
SvgEyeHidden = ({ size = 16, ...props }) => {
|
|
176
223
|
const sizeValue = resolveSize(size);
|
|
177
|
-
return /* @__PURE__ */
|
|
224
|
+
return /* @__PURE__ */ React5.createElement(
|
|
178
225
|
"svg",
|
|
179
226
|
{
|
|
180
227
|
width: sizeValue,
|
|
@@ -184,7 +231,7 @@ var init_EyeHidden = __esm({
|
|
|
184
231
|
xmlns: "http://www.w3.org/2000/svg",
|
|
185
232
|
...props
|
|
186
233
|
},
|
|
187
|
-
/* @__PURE__ */
|
|
234
|
+
/* @__PURE__ */ React5.createElement(
|
|
188
235
|
"path",
|
|
189
236
|
{
|
|
190
237
|
fillRule: "evenodd",
|
|
@@ -193,7 +240,7 @@ var init_EyeHidden = __esm({
|
|
|
193
240
|
fill: "currentColor"
|
|
194
241
|
}
|
|
195
242
|
),
|
|
196
|
-
/* @__PURE__ */
|
|
243
|
+
/* @__PURE__ */ React5.createElement(
|
|
197
244
|
"path",
|
|
198
245
|
{
|
|
199
246
|
fillRule: "evenodd",
|
|
@@ -202,7 +249,7 @@ var init_EyeHidden = __esm({
|
|
|
202
249
|
fill: "currentColor"
|
|
203
250
|
}
|
|
204
251
|
),
|
|
205
|
-
/* @__PURE__ */
|
|
252
|
+
/* @__PURE__ */ React5.createElement(
|
|
206
253
|
"path",
|
|
207
254
|
{
|
|
208
255
|
fillRule: "evenodd",
|
|
@@ -222,7 +269,7 @@ var EyeVisible_exports = {};
|
|
|
222
269
|
__export(EyeVisible_exports, {
|
|
223
270
|
default: () => EyeVisible_default
|
|
224
271
|
});
|
|
225
|
-
import * as
|
|
272
|
+
import * as React6 from "react";
|
|
226
273
|
var SvgEyeVisible, EyeVisible_default;
|
|
227
274
|
var init_EyeVisible = __esm({
|
|
228
275
|
"src/react/EyeVisible.tsx"() {
|
|
@@ -230,7 +277,7 @@ var init_EyeVisible = __esm({
|
|
|
230
277
|
init_types();
|
|
231
278
|
SvgEyeVisible = ({ size = 16, ...props }) => {
|
|
232
279
|
const sizeValue = resolveSize(size);
|
|
233
|
-
return /* @__PURE__ */
|
|
280
|
+
return /* @__PURE__ */ React6.createElement(
|
|
234
281
|
"svg",
|
|
235
282
|
{
|
|
236
283
|
width: sizeValue,
|
|
@@ -240,7 +287,7 @@ var init_EyeVisible = __esm({
|
|
|
240
287
|
xmlns: "http://www.w3.org/2000/svg",
|
|
241
288
|
...props
|
|
242
289
|
},
|
|
243
|
-
/* @__PURE__ */
|
|
290
|
+
/* @__PURE__ */ React6.createElement(
|
|
244
291
|
"path",
|
|
245
292
|
{
|
|
246
293
|
fillRule: "evenodd",
|
|
@@ -249,7 +296,7 @@ var init_EyeVisible = __esm({
|
|
|
249
296
|
fill: "currentColor"
|
|
250
297
|
}
|
|
251
298
|
),
|
|
252
|
-
/* @__PURE__ */
|
|
299
|
+
/* @__PURE__ */ React6.createElement(
|
|
253
300
|
"path",
|
|
254
301
|
{
|
|
255
302
|
fillRule: "evenodd",
|
|
@@ -264,12 +311,86 @@ var init_EyeVisible = __esm({
|
|
|
264
311
|
}
|
|
265
312
|
});
|
|
266
313
|
|
|
314
|
+
// src/react/HomeFilled.tsx
|
|
315
|
+
var HomeFilled_exports = {};
|
|
316
|
+
__export(HomeFilled_exports, {
|
|
317
|
+
default: () => HomeFilled_default
|
|
318
|
+
});
|
|
319
|
+
import * as React7 from "react";
|
|
320
|
+
var SvgHomeFilled, HomeFilled_default;
|
|
321
|
+
var init_HomeFilled = __esm({
|
|
322
|
+
"src/react/HomeFilled.tsx"() {
|
|
323
|
+
"use strict";
|
|
324
|
+
init_types();
|
|
325
|
+
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
326
|
+
const sizeValue = resolveSize(size);
|
|
327
|
+
return /* @__PURE__ */ React7.createElement(
|
|
328
|
+
"svg",
|
|
329
|
+
{
|
|
330
|
+
width: sizeValue,
|
|
331
|
+
height: sizeValue,
|
|
332
|
+
viewBox: "0 0 24 24",
|
|
333
|
+
fill: "none",
|
|
334
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
335
|
+
...props
|
|
336
|
+
},
|
|
337
|
+
/* @__PURE__ */ React7.createElement(
|
|
338
|
+
"path",
|
|
339
|
+
{
|
|
340
|
+
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",
|
|
341
|
+
fill: "currentColor"
|
|
342
|
+
}
|
|
343
|
+
)
|
|
344
|
+
);
|
|
345
|
+
};
|
|
346
|
+
HomeFilled_default = SvgHomeFilled;
|
|
347
|
+
}
|
|
348
|
+
});
|
|
349
|
+
|
|
350
|
+
// src/react/HomeLinear.tsx
|
|
351
|
+
var HomeLinear_exports = {};
|
|
352
|
+
__export(HomeLinear_exports, {
|
|
353
|
+
default: () => HomeLinear_default
|
|
354
|
+
});
|
|
355
|
+
import * as React8 from "react";
|
|
356
|
+
var SvgHomeLinear, HomeLinear_default;
|
|
357
|
+
var init_HomeLinear = __esm({
|
|
358
|
+
"src/react/HomeLinear.tsx"() {
|
|
359
|
+
"use strict";
|
|
360
|
+
init_types();
|
|
361
|
+
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
362
|
+
const sizeValue = resolveSize(size);
|
|
363
|
+
return /* @__PURE__ */ React8.createElement(
|
|
364
|
+
"svg",
|
|
365
|
+
{
|
|
366
|
+
width: sizeValue,
|
|
367
|
+
height: sizeValue,
|
|
368
|
+
viewBox: "0 0 24 24",
|
|
369
|
+
fill: "none",
|
|
370
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
371
|
+
...props
|
|
372
|
+
},
|
|
373
|
+
/* @__PURE__ */ React8.createElement(
|
|
374
|
+
"path",
|
|
375
|
+
{
|
|
376
|
+
fillRule: "evenodd",
|
|
377
|
+
clipRule: "evenodd",
|
|
378
|
+
d: "M9.41907 2.34989C10.8836 1.18903 12.9628 1.18903 14.4274 2.34989L14.4297 2.35175L20.6971 7.34998C21.5044 7.97088 21.9859 8.9246 21.9999 9.94342L22.0001 9.95718L22 18.2764C22 20.651 20.0583 22.5588 17.6844 22.5588H6.18957C3.8157 22.5588 1.87402 20.651 1.87402 18.2764V9.95634C1.88411 8.93538 2.36644 7.97892 3.17688 7.359L9.41907 2.34989ZM10.6682 3.92151L4.42343 8.93273C4.41618 8.93855 4.40884 8.94427 4.40142 8.94989C4.07644 9.19615 3.88685 9.57352 3.8816 9.97193V18.2764C3.8816 19.5232 4.90537 20.5512 6.18957 20.5512H17.6844C18.9686 20.5512 19.9924 19.5232 19.9924 18.2764V9.96496C19.9851 9.56511 19.7947 9.18684 19.4695 8.93851L19.4529 8.92555L13.1804 3.92318C13.18 3.9229 13.1796 3.92261 13.1793 3.92233C12.446 3.34193 11.4018 3.34165 10.6682 3.92151Z",
|
|
379
|
+
fill: "currentColor"
|
|
380
|
+
}
|
|
381
|
+
)
|
|
382
|
+
);
|
|
383
|
+
};
|
|
384
|
+
HomeLinear_default = SvgHomeLinear;
|
|
385
|
+
}
|
|
386
|
+
});
|
|
387
|
+
|
|
267
388
|
// src/react/IconSlot.tsx
|
|
268
389
|
var IconSlot_exports = {};
|
|
269
390
|
__export(IconSlot_exports, {
|
|
270
391
|
default: () => IconSlot_default
|
|
271
392
|
});
|
|
272
|
-
import * as
|
|
393
|
+
import * as React9 from "react";
|
|
273
394
|
var SvgIconSlot, IconSlot_default;
|
|
274
395
|
var init_IconSlot = __esm({
|
|
275
396
|
"src/react/IconSlot.tsx"() {
|
|
@@ -277,7 +398,7 @@ var init_IconSlot = __esm({
|
|
|
277
398
|
init_types();
|
|
278
399
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
279
400
|
const sizeValue = resolveSize(size);
|
|
280
|
-
return /* @__PURE__ */
|
|
401
|
+
return /* @__PURE__ */ React9.createElement(
|
|
281
402
|
"svg",
|
|
282
403
|
{
|
|
283
404
|
width: sizeValue,
|
|
@@ -287,7 +408,7 @@ var init_IconSlot = __esm({
|
|
|
287
408
|
xmlns: "http://www.w3.org/2000/svg",
|
|
288
409
|
...props
|
|
289
410
|
},
|
|
290
|
-
/* @__PURE__ */
|
|
411
|
+
/* @__PURE__ */ React9.createElement(
|
|
291
412
|
"path",
|
|
292
413
|
{
|
|
293
414
|
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",
|
|
@@ -300,12 +421,288 @@ var init_IconSlot = __esm({
|
|
|
300
421
|
}
|
|
301
422
|
});
|
|
302
423
|
|
|
424
|
+
// src/react/LeadsFilled.tsx
|
|
425
|
+
var LeadsFilled_exports = {};
|
|
426
|
+
__export(LeadsFilled_exports, {
|
|
427
|
+
default: () => LeadsFilled_default
|
|
428
|
+
});
|
|
429
|
+
import * as React10 from "react";
|
|
430
|
+
var SvgLeadsFilled, LeadsFilled_default;
|
|
431
|
+
var init_LeadsFilled = __esm({
|
|
432
|
+
"src/react/LeadsFilled.tsx"() {
|
|
433
|
+
"use strict";
|
|
434
|
+
init_types();
|
|
435
|
+
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
436
|
+
const sizeValue = resolveSize(size);
|
|
437
|
+
return /* @__PURE__ */ React10.createElement(
|
|
438
|
+
"svg",
|
|
439
|
+
{
|
|
440
|
+
width: sizeValue,
|
|
441
|
+
height: sizeValue,
|
|
442
|
+
viewBox: "0 0 24 24",
|
|
443
|
+
fill: "none",
|
|
444
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
445
|
+
...props
|
|
446
|
+
},
|
|
447
|
+
/* @__PURE__ */ React10.createElement(
|
|
448
|
+
"path",
|
|
449
|
+
{
|
|
450
|
+
fillRule: "evenodd",
|
|
451
|
+
clipRule: "evenodd",
|
|
452
|
+
d: "M2.46447 15.4645C3.40215 14.5268 4.67392 14 6 14H12C13.3261 14 14.5979 14.5268 15.5355 15.4645C16.4732 16.4021 17 17.6739 17 19V20.4888C17 21.3289 16.2744 22 15.4848 22H2.53383C1.779 22 1 21.2236 1 20.486V19C1 17.6739 1.52678 16.4021 2.46447 15.4645Z",
|
|
453
|
+
fill: "currentColor"
|
|
454
|
+
}
|
|
455
|
+
),
|
|
456
|
+
/* @__PURE__ */ React10.createElement(
|
|
457
|
+
"path",
|
|
458
|
+
{
|
|
459
|
+
fillRule: "evenodd",
|
|
460
|
+
clipRule: "evenodd",
|
|
461
|
+
d: "M4 7C4 4.23858 6.23858 2 9 2C11.7614 2 14 4.23858 14 7C14 9.76142 11.7614 12 9 12C6.23858 12 4 9.76142 4 7Z",
|
|
462
|
+
fill: "currentColor"
|
|
463
|
+
}
|
|
464
|
+
),
|
|
465
|
+
/* @__PURE__ */ React10.createElement(
|
|
466
|
+
"path",
|
|
467
|
+
{
|
|
468
|
+
fillRule: "evenodd",
|
|
469
|
+
clipRule: "evenodd",
|
|
470
|
+
d: "M18.0318 14.88C18.1698 14.3453 18.7153 14.0237 19.25 14.1618C20.3227 14.4387 21.273 15.0641 21.9517 15.9396C22.6304 16.8152 22.9992 17.8914 23 18.9993V21C23 21.5523 22.5523 22 22 22C21.4477 22 21 21.5523 21 21V19.0007C20.9994 18.3361 20.7782 17.6902 20.371 17.165C19.9638 16.6396 19.3936 16.2644 18.75 16.0982C18.2153 15.9602 17.8937 15.4147 18.0318 14.88Z",
|
|
471
|
+
fill: "currentColor"
|
|
472
|
+
}
|
|
473
|
+
),
|
|
474
|
+
/* @__PURE__ */ React10.createElement(
|
|
475
|
+
"path",
|
|
476
|
+
{
|
|
477
|
+
fillRule: "evenodd",
|
|
478
|
+
clipRule: "evenodd",
|
|
479
|
+
d: "M15.0312 2.88196C15.1682 2.34694 15.713 2.02426 16.248 2.16125C17.3236 2.43663 18.2768 3.06213 18.9576 3.93914C19.6383 4.81615 20.0078 5.89479 20.0078 7.005C20.0078 8.11521 19.6383 9.19385 18.9576 10.0709C18.2768 10.9479 17.3236 11.5734 16.248 11.8487C15.713 11.9857 15.1682 11.6631 15.0312 11.128C14.8943 10.593 15.2169 10.0482 15.752 9.91125C16.3973 9.74602 16.9692 9.37072 17.3777 8.84452C17.7861 8.31831 18.0078 7.67113 18.0078 7.005C18.0078 6.33887 17.7861 5.69169 17.3777 5.16548C16.9692 4.63928 16.3973 4.26398 15.752 4.09875C15.2169 3.96176 14.8943 3.41699 15.0312 2.88196Z",
|
|
480
|
+
fill: "currentColor"
|
|
481
|
+
}
|
|
482
|
+
)
|
|
483
|
+
);
|
|
484
|
+
};
|
|
485
|
+
LeadsFilled_default = SvgLeadsFilled;
|
|
486
|
+
}
|
|
487
|
+
});
|
|
488
|
+
|
|
489
|
+
// src/react/LeadsLinear.tsx
|
|
490
|
+
var LeadsLinear_exports = {};
|
|
491
|
+
__export(LeadsLinear_exports, {
|
|
492
|
+
default: () => LeadsLinear_default
|
|
493
|
+
});
|
|
494
|
+
import * as React11 from "react";
|
|
495
|
+
var SvgLeadsLinear, LeadsLinear_default;
|
|
496
|
+
var init_LeadsLinear = __esm({
|
|
497
|
+
"src/react/LeadsLinear.tsx"() {
|
|
498
|
+
"use strict";
|
|
499
|
+
init_types();
|
|
500
|
+
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
501
|
+
const sizeValue = resolveSize(size);
|
|
502
|
+
return /* @__PURE__ */ React11.createElement(
|
|
503
|
+
"svg",
|
|
504
|
+
{
|
|
505
|
+
width: sizeValue,
|
|
506
|
+
height: sizeValue,
|
|
507
|
+
viewBox: "0 0 24 24",
|
|
508
|
+
fill: "none",
|
|
509
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
510
|
+
...props
|
|
511
|
+
},
|
|
512
|
+
/* @__PURE__ */ React11.createElement(
|
|
513
|
+
"path",
|
|
514
|
+
{
|
|
515
|
+
fillRule: "evenodd",
|
|
516
|
+
clipRule: "evenodd",
|
|
517
|
+
d: "M2.46447 15.4645C3.40215 14.5268 4.67392 14 6 14H12C13.3261 14 14.5979 14.5268 15.5355 15.4645C16.4732 16.4021 17 17.6739 17 19V21C17 21.5523 16.5523 22 16 22C15.4477 22 15 21.5523 15 21V19C15 18.2043 14.6839 17.4413 14.1213 16.8787C13.5587 16.3161 12.7956 16 12 16H6C5.20435 16 4.44129 16.3161 3.87868 16.8787C3.31607 17.4413 3 18.2043 3 19V21C3 21.5523 2.55228 22 2 22C1.44772 22 1 21.5523 1 21V19C1 17.6739 1.52678 16.4021 2.46447 15.4645Z",
|
|
518
|
+
fill: "currentColor"
|
|
519
|
+
}
|
|
520
|
+
),
|
|
521
|
+
/* @__PURE__ */ React11.createElement(
|
|
522
|
+
"path",
|
|
523
|
+
{
|
|
524
|
+
fillRule: "evenodd",
|
|
525
|
+
clipRule: "evenodd",
|
|
526
|
+
d: "M9 4C7.34315 4 6 5.34315 6 7C6 8.65685 7.34315 10 9 10C10.6569 10 12 8.65685 12 7C12 5.34315 10.6569 4 9 4ZM4 7C4 4.23858 6.23858 2 9 2C11.7614 2 14 4.23858 14 7C14 9.76142 11.7614 12 9 12C6.23858 12 4 9.76142 4 7Z",
|
|
527
|
+
fill: "currentColor"
|
|
528
|
+
}
|
|
529
|
+
),
|
|
530
|
+
/* @__PURE__ */ React11.createElement(
|
|
531
|
+
"path",
|
|
532
|
+
{
|
|
533
|
+
fillRule: "evenodd",
|
|
534
|
+
clipRule: "evenodd",
|
|
535
|
+
d: "M18.0318 14.88C18.1698 14.3453 18.7153 14.0237 19.25 14.1618C20.3227 14.4387 21.273 15.0641 21.9517 15.9396C22.6304 16.8152 22.9992 17.8914 23 18.9993V21C23 21.5523 22.5523 22 22 22C21.4477 22 21 21.5523 21 21V19.0007C21 19.0006 21 19.0008 21 19.0007C20.9994 18.3361 20.7782 17.6902 20.371 17.165C19.9638 16.6396 19.3936 16.2644 18.75 16.0982C18.2153 15.9602 17.8937 15.4147 18.0318 14.88Z",
|
|
536
|
+
fill: "currentColor"
|
|
537
|
+
}
|
|
538
|
+
),
|
|
539
|
+
/* @__PURE__ */ React11.createElement(
|
|
540
|
+
"path",
|
|
541
|
+
{
|
|
542
|
+
fillRule: "evenodd",
|
|
543
|
+
clipRule: "evenodd",
|
|
544
|
+
d: "M15.0312 2.88196C15.1682 2.34694 15.713 2.02426 16.248 2.16125C17.3236 2.43663 18.2768 3.06213 18.9576 3.93914C19.6383 4.81615 20.0078 5.89479 20.0078 7.005C20.0078 8.11521 19.6383 9.19385 18.9576 10.0709C18.2768 10.9479 17.3236 11.5734 16.248 11.8487C15.713 11.9857 15.1682 11.6631 15.0312 11.128C14.8943 10.593 15.2169 10.0482 15.752 9.91125C16.3973 9.74602 16.9692 9.37072 17.3777 8.84452C17.7861 8.31831 18.0078 7.67113 18.0078 7.005C18.0078 6.33887 17.7861 5.69169 17.3777 5.16548C16.9692 4.63928 16.3973 4.26398 15.752 4.09875C15.2169 3.96176 14.8943 3.41699 15.0312 2.88196Z",
|
|
545
|
+
fill: "currentColor"
|
|
546
|
+
}
|
|
547
|
+
)
|
|
548
|
+
);
|
|
549
|
+
};
|
|
550
|
+
LeadsLinear_default = SvgLeadsLinear;
|
|
551
|
+
}
|
|
552
|
+
});
|
|
553
|
+
|
|
554
|
+
// src/react/PropertiesFilled.tsx
|
|
555
|
+
var PropertiesFilled_exports = {};
|
|
556
|
+
__export(PropertiesFilled_exports, {
|
|
557
|
+
default: () => PropertiesFilled_default
|
|
558
|
+
});
|
|
559
|
+
import * as React12 from "react";
|
|
560
|
+
var SvgPropertiesFilled, PropertiesFilled_default;
|
|
561
|
+
var init_PropertiesFilled = __esm({
|
|
562
|
+
"src/react/PropertiesFilled.tsx"() {
|
|
563
|
+
"use strict";
|
|
564
|
+
init_types();
|
|
565
|
+
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
566
|
+
const sizeValue = resolveSize(size);
|
|
567
|
+
return /* @__PURE__ */ React12.createElement(
|
|
568
|
+
"svg",
|
|
569
|
+
{
|
|
570
|
+
width: sizeValue,
|
|
571
|
+
height: sizeValue,
|
|
572
|
+
viewBox: "0 0 24 24",
|
|
573
|
+
fill: "none",
|
|
574
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
575
|
+
...props
|
|
576
|
+
},
|
|
577
|
+
/* @__PURE__ */ React12.createElement(
|
|
578
|
+
"path",
|
|
579
|
+
{
|
|
580
|
+
fillRule: "evenodd",
|
|
581
|
+
clipRule: "evenodd",
|
|
582
|
+
d: "M1.87831 11.8787C2.44092 11.3161 3.20398 11 3.99963 11H5.99963C6.55192 11 6.99963 11.4477 6.99963 12C6.99963 12.5523 6.55192 13 5.99963 13H3.99963C3.73442 13 3.48006 13.1054 3.29253 13.2929C3.10499 13.4804 2.99963 13.7348 2.99963 14V20C2.99963 20.2652 3.10499 20.5196 3.29253 20.7071C3.48006 20.8946 3.73442 21 3.99963 21H7.99963C8.55192 21 8.99963 21.4477 8.99963 22C8.99963 22.5523 8.55192 23 7.99963 23H3.99963C3.20398 23 2.44092 22.6839 1.87831 22.1213C1.3157 21.5587 0.999634 20.7956 0.999634 20V14C0.999634 13.2044 1.3157 12.4413 1.87831 11.8787Z",
|
|
583
|
+
fill: "currentColor"
|
|
584
|
+
}
|
|
585
|
+
),
|
|
586
|
+
/* @__PURE__ */ React12.createElement(
|
|
587
|
+
"path",
|
|
588
|
+
{
|
|
589
|
+
fillRule: "evenodd",
|
|
590
|
+
clipRule: "evenodd",
|
|
591
|
+
d: "M16.9996 9C16.9996 8.44772 17.4473 8 17.9996 8H19.9996C20.7953 8 21.5583 8.31607 22.121 8.87868C22.6836 9.44129 22.9996 10.2043 22.9996 11V20C22.9996 20.7957 22.6836 21.5587 22.121 22.1213C21.5583 22.6839 20.7953 23 19.9996 23H15.9996C15.4473 23 14.9996 22.5523 14.9996 22C14.9996 21.4477 15.4473 21 15.9996 21H19.9996C20.2649 21 20.5192 20.8946 20.7067 20.7071C20.8943 20.5196 20.9996 20.2652 20.9996 20V11C20.9996 10.7348 20.8943 10.4804 20.7067 10.2929C20.5192 10.1054 20.2649 10 19.9996 10H17.9996C17.4473 10 16.9996 9.55228 16.9996 9Z",
|
|
592
|
+
fill: "currentColor"
|
|
593
|
+
}
|
|
594
|
+
),
|
|
595
|
+
/* @__PURE__ */ React12.createElement(
|
|
596
|
+
"path",
|
|
597
|
+
{
|
|
598
|
+
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",
|
|
599
|
+
fill: "currentColor"
|
|
600
|
+
}
|
|
601
|
+
)
|
|
602
|
+
);
|
|
603
|
+
};
|
|
604
|
+
PropertiesFilled_default = SvgPropertiesFilled;
|
|
605
|
+
}
|
|
606
|
+
});
|
|
607
|
+
|
|
608
|
+
// src/react/PropertiesLinear.tsx
|
|
609
|
+
var PropertiesLinear_exports = {};
|
|
610
|
+
__export(PropertiesLinear_exports, {
|
|
611
|
+
default: () => PropertiesLinear_default
|
|
612
|
+
});
|
|
613
|
+
import * as React13 from "react";
|
|
614
|
+
var SvgPropertiesLinear, PropertiesLinear_default;
|
|
615
|
+
var init_PropertiesLinear = __esm({
|
|
616
|
+
"src/react/PropertiesLinear.tsx"() {
|
|
617
|
+
"use strict";
|
|
618
|
+
init_types();
|
|
619
|
+
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
620
|
+
const sizeValue = resolveSize(size);
|
|
621
|
+
return /* @__PURE__ */ React13.createElement(
|
|
622
|
+
"svg",
|
|
623
|
+
{
|
|
624
|
+
width: sizeValue,
|
|
625
|
+
height: sizeValue,
|
|
626
|
+
viewBox: "0 0 24 24",
|
|
627
|
+
fill: "none",
|
|
628
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
629
|
+
...props
|
|
630
|
+
},
|
|
631
|
+
/* @__PURE__ */ React13.createElement(
|
|
632
|
+
"path",
|
|
633
|
+
{
|
|
634
|
+
fillRule: "evenodd",
|
|
635
|
+
clipRule: "evenodd",
|
|
636
|
+
d: "M8 3C7.73478 3 7.48043 3.10536 7.29289 3.29289C7.10536 3.48043 7 3.73478 7 4V21H17V4C17 3.73478 16.8946 3.48043 16.7071 3.29289C16.5196 3.10536 16.2652 3 16 3H8ZM5.87868 1.87868C6.44129 1.31607 7.20435 1 8 1H16C16.7956 1 17.5587 1.31607 18.1213 1.87868C18.6839 2.44129 19 3.20435 19 4V22C19 22.5523 18.5523 23 18 23H6C5.44772 23 5 22.5523 5 22V4C5 3.20435 5.31607 2.44129 5.87868 1.87868Z",
|
|
637
|
+
fill: "currentColor"
|
|
638
|
+
}
|
|
639
|
+
),
|
|
640
|
+
/* @__PURE__ */ React13.createElement(
|
|
641
|
+
"path",
|
|
642
|
+
{
|
|
643
|
+
fillRule: "evenodd",
|
|
644
|
+
clipRule: "evenodd",
|
|
645
|
+
d: "M1.87868 11.8787C2.44129 11.3161 3.20435 11 4 11H6C6.55228 11 7 11.4477 7 12C7 12.5523 6.55228 13 6 13H4C3.73478 13 3.48043 13.1054 3.29289 13.2929C3.10536 13.4804 3 13.7348 3 14V20C3 20.2652 3.10536 20.5196 3.29289 20.7071C3.48043 20.8946 3.73478 21 4 21H6C6.55228 21 7 21.4477 7 22C7 22.5523 6.55228 23 6 23H4C3.20435 23 2.44129 22.6839 1.87868 22.1213C1.31607 21.5587 1 20.7957 1 20V14C1 13.2044 1.31607 12.4413 1.87868 11.8787Z",
|
|
646
|
+
fill: "currentColor"
|
|
647
|
+
}
|
|
648
|
+
),
|
|
649
|
+
/* @__PURE__ */ React13.createElement(
|
|
650
|
+
"path",
|
|
651
|
+
{
|
|
652
|
+
fillRule: "evenodd",
|
|
653
|
+
clipRule: "evenodd",
|
|
654
|
+
d: "M17 9C17 8.44772 17.4477 8 18 8H20C20.7957 8 21.5587 8.31607 22.1213 8.87868C22.6839 9.44129 23 10.2043 23 11V20C23 20.7957 22.6839 21.5587 22.1213 22.1213C21.5587 22.6839 20.7957 23 20 23H18C17.4477 23 17 22.5523 17 22C17 21.4477 17.4477 21 18 21H20C20.2652 21 20.5196 20.8946 20.7071 20.7071C20.8946 20.5196 21 20.2652 21 20V11C21 10.7348 20.8946 10.4804 20.7071 10.2929C20.5196 10.1054 20.2652 10 20 10H18C17.4477 10 17 9.55228 17 9Z",
|
|
655
|
+
fill: "currentColor"
|
|
656
|
+
}
|
|
657
|
+
),
|
|
658
|
+
/* @__PURE__ */ React13.createElement(
|
|
659
|
+
"path",
|
|
660
|
+
{
|
|
661
|
+
fillRule: "evenodd",
|
|
662
|
+
clipRule: "evenodd",
|
|
663
|
+
d: "M9 6C9 5.44772 9.44771 5 10 5H14C14.5523 5 15 5.44772 15 6C15 6.55228 14.5523 7 14 7H10C9.44771 7 9 6.55228 9 6Z",
|
|
664
|
+
fill: "currentColor"
|
|
665
|
+
}
|
|
666
|
+
),
|
|
667
|
+
/* @__PURE__ */ React13.createElement(
|
|
668
|
+
"path",
|
|
669
|
+
{
|
|
670
|
+
fillRule: "evenodd",
|
|
671
|
+
clipRule: "evenodd",
|
|
672
|
+
d: "M9 10C9 9.44771 9.44771 9 10 9H14C14.5523 9 15 9.44771 15 10C15 10.5523 14.5523 11 14 11H10C9.44771 11 9 10.5523 9 10Z",
|
|
673
|
+
fill: "currentColor"
|
|
674
|
+
}
|
|
675
|
+
),
|
|
676
|
+
/* @__PURE__ */ React13.createElement(
|
|
677
|
+
"path",
|
|
678
|
+
{
|
|
679
|
+
fillRule: "evenodd",
|
|
680
|
+
clipRule: "evenodd",
|
|
681
|
+
d: "M9 14C9 13.4477 9.44771 13 10 13H14C14.5523 13 15 13.4477 15 14C15 14.5523 14.5523 15 14 15H10C9.44771 15 9 14.5523 9 14Z",
|
|
682
|
+
fill: "currentColor"
|
|
683
|
+
}
|
|
684
|
+
),
|
|
685
|
+
/* @__PURE__ */ React13.createElement(
|
|
686
|
+
"path",
|
|
687
|
+
{
|
|
688
|
+
fillRule: "evenodd",
|
|
689
|
+
clipRule: "evenodd",
|
|
690
|
+
d: "M9 18C9 17.4477 9.44771 17 10 17H14C14.5523 17 15 17.4477 15 18C15 18.5523 14.5523 19 14 19H10C9.44771 19 9 18.5523 9 18Z",
|
|
691
|
+
fill: "currentColor"
|
|
692
|
+
}
|
|
693
|
+
)
|
|
694
|
+
);
|
|
695
|
+
};
|
|
696
|
+
PropertiesLinear_default = SvgPropertiesLinear;
|
|
697
|
+
}
|
|
698
|
+
});
|
|
699
|
+
|
|
303
700
|
// src/react/Search.tsx
|
|
304
701
|
var Search_exports = {};
|
|
305
702
|
__export(Search_exports, {
|
|
306
703
|
default: () => Search_default
|
|
307
704
|
});
|
|
308
|
-
import * as
|
|
705
|
+
import * as React14 from "react";
|
|
309
706
|
var SvgSearch, Search_default;
|
|
310
707
|
var init_Search = __esm({
|
|
311
708
|
"src/react/Search.tsx"() {
|
|
@@ -313,7 +710,7 @@ var init_Search = __esm({
|
|
|
313
710
|
init_types();
|
|
314
711
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
315
712
|
const sizeValue = resolveSize(size);
|
|
316
|
-
return /* @__PURE__ */
|
|
713
|
+
return /* @__PURE__ */ React14.createElement(
|
|
317
714
|
"svg",
|
|
318
715
|
{
|
|
319
716
|
width: sizeValue,
|
|
@@ -323,7 +720,7 @@ var init_Search = __esm({
|
|
|
323
720
|
xmlns: "http://www.w3.org/2000/svg",
|
|
324
721
|
...props
|
|
325
722
|
},
|
|
326
|
-
/* @__PURE__ */
|
|
723
|
+
/* @__PURE__ */ React14.createElement(
|
|
327
724
|
"path",
|
|
328
725
|
{
|
|
329
726
|
fillRule: "evenodd",
|
|
@@ -332,7 +729,7 @@ var init_Search = __esm({
|
|
|
332
729
|
fill: "currentColor"
|
|
333
730
|
}
|
|
334
731
|
),
|
|
335
|
-
/* @__PURE__ */
|
|
732
|
+
/* @__PURE__ */ React14.createElement(
|
|
336
733
|
"path",
|
|
337
734
|
{
|
|
338
735
|
fillRule: "evenodd",
|
|
@@ -352,7 +749,7 @@ var User_exports = {};
|
|
|
352
749
|
__export(User_exports, {
|
|
353
750
|
default: () => User_default
|
|
354
751
|
});
|
|
355
|
-
import * as
|
|
752
|
+
import * as React15 from "react";
|
|
356
753
|
var SvgUser, User_default;
|
|
357
754
|
var init_User = __esm({
|
|
358
755
|
"src/react/User.tsx"() {
|
|
@@ -360,7 +757,7 @@ var init_User = __esm({
|
|
|
360
757
|
init_types();
|
|
361
758
|
SvgUser = ({ size = 16, ...props }) => {
|
|
362
759
|
const sizeValue = resolveSize(size);
|
|
363
|
-
return /* @__PURE__ */
|
|
760
|
+
return /* @__PURE__ */ React15.createElement(
|
|
364
761
|
"svg",
|
|
365
762
|
{
|
|
366
763
|
width: sizeValue,
|
|
@@ -370,7 +767,7 @@ var init_User = __esm({
|
|
|
370
767
|
xmlns: "http://www.w3.org/2000/svg",
|
|
371
768
|
...props
|
|
372
769
|
},
|
|
373
|
-
/* @__PURE__ */
|
|
770
|
+
/* @__PURE__ */ React15.createElement(
|
|
374
771
|
"path",
|
|
375
772
|
{
|
|
376
773
|
fillRule: "evenodd",
|
|
@@ -379,7 +776,7 @@ var init_User = __esm({
|
|
|
379
776
|
fill: "currentColor"
|
|
380
777
|
}
|
|
381
778
|
),
|
|
382
|
-
/* @__PURE__ */
|
|
779
|
+
/* @__PURE__ */ React15.createElement(
|
|
383
780
|
"path",
|
|
384
781
|
{
|
|
385
782
|
fillRule: "evenodd",
|
|
@@ -398,14 +795,21 @@ var init_User = __esm({
|
|
|
398
795
|
init_ArrowLeft();
|
|
399
796
|
init_Cancel();
|
|
400
797
|
init_Check();
|
|
798
|
+
init_Edit();
|
|
401
799
|
init_EyeHidden();
|
|
402
800
|
init_EyeVisible();
|
|
801
|
+
init_HomeFilled();
|
|
802
|
+
init_HomeLinear();
|
|
403
803
|
init_IconSlot();
|
|
804
|
+
init_LeadsFilled();
|
|
805
|
+
init_LeadsLinear();
|
|
806
|
+
init_PropertiesFilled();
|
|
807
|
+
init_PropertiesLinear();
|
|
404
808
|
init_Search();
|
|
405
809
|
init_User();
|
|
406
810
|
|
|
407
811
|
// src/react/Icon.tsx
|
|
408
|
-
import * as
|
|
812
|
+
import * as React16 from "react";
|
|
409
813
|
function loadIcon(name) {
|
|
410
814
|
switch (name) {
|
|
411
815
|
case "arrow-left":
|
|
@@ -414,12 +818,26 @@ function loadIcon(name) {
|
|
|
414
818
|
return Promise.resolve().then(() => (init_Cancel(), Cancel_exports)).then((m) => m.default);
|
|
415
819
|
case "check":
|
|
416
820
|
return Promise.resolve().then(() => (init_Check(), Check_exports)).then((m) => m.default);
|
|
821
|
+
case "edit":
|
|
822
|
+
return Promise.resolve().then(() => (init_Edit(), Edit_exports)).then((m) => m.default);
|
|
417
823
|
case "eye-hidden":
|
|
418
824
|
return Promise.resolve().then(() => (init_EyeHidden(), EyeHidden_exports)).then((m) => m.default);
|
|
419
825
|
case "eye-visible":
|
|
420
826
|
return Promise.resolve().then(() => (init_EyeVisible(), EyeVisible_exports)).then((m) => m.default);
|
|
827
|
+
case "home-filled":
|
|
828
|
+
return Promise.resolve().then(() => (init_HomeFilled(), HomeFilled_exports)).then((m) => m.default);
|
|
829
|
+
case "home-linear":
|
|
830
|
+
return Promise.resolve().then(() => (init_HomeLinear(), HomeLinear_exports)).then((m) => m.default);
|
|
421
831
|
case "icon-slot":
|
|
422
832
|
return Promise.resolve().then(() => (init_IconSlot(), IconSlot_exports)).then((m) => m.default);
|
|
833
|
+
case "leads-filled":
|
|
834
|
+
return Promise.resolve().then(() => (init_LeadsFilled(), LeadsFilled_exports)).then((m) => m.default);
|
|
835
|
+
case "leads-linear":
|
|
836
|
+
return Promise.resolve().then(() => (init_LeadsLinear(), LeadsLinear_exports)).then((m) => m.default);
|
|
837
|
+
case "properties-filled":
|
|
838
|
+
return Promise.resolve().then(() => (init_PropertiesFilled(), PropertiesFilled_exports)).then((m) => m.default);
|
|
839
|
+
case "properties-linear":
|
|
840
|
+
return Promise.resolve().then(() => (init_PropertiesLinear(), PropertiesLinear_exports)).then((m) => m.default);
|
|
423
841
|
case "search":
|
|
424
842
|
return Promise.resolve().then(() => (init_Search(), Search_exports)).then((m) => m.default);
|
|
425
843
|
case "user":
|
|
@@ -429,10 +847,10 @@ function loadIcon(name) {
|
|
|
429
847
|
}
|
|
430
848
|
}
|
|
431
849
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
432
|
-
const [IconComponent, setIconComponent] =
|
|
433
|
-
const [loading, setLoading] =
|
|
434
|
-
const [error, setError] =
|
|
435
|
-
|
|
850
|
+
const [IconComponent, setIconComponent] = React16.useState(null);
|
|
851
|
+
const [loading, setLoading] = React16.useState(true);
|
|
852
|
+
const [error, setError] = React16.useState(null);
|
|
853
|
+
React16.useEffect(() => {
|
|
436
854
|
setLoading(true);
|
|
437
855
|
setError(null);
|
|
438
856
|
loadIcon(name).then((Component) => {
|
|
@@ -451,7 +869,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
451
869
|
return null;
|
|
452
870
|
}
|
|
453
871
|
const style = color ? { ...props.style, color } : props.style;
|
|
454
|
-
return /* @__PURE__ */
|
|
872
|
+
return /* @__PURE__ */ React16.createElement(IconComponent, { size, ...props, style });
|
|
455
873
|
};
|
|
456
874
|
var Icon_default = Icon;
|
|
457
875
|
|
|
@@ -461,11 +879,18 @@ export {
|
|
|
461
879
|
ArrowLeft_default as ArrowLeft,
|
|
462
880
|
Cancel_default as Cancel,
|
|
463
881
|
Check_default as Check,
|
|
882
|
+
Edit_default as Edit,
|
|
464
883
|
EyeHidden_default as EyeHidden,
|
|
465
884
|
EyeVisible_default as EyeVisible,
|
|
885
|
+
HomeFilled_default as HomeFilled,
|
|
886
|
+
HomeLinear_default as HomeLinear,
|
|
466
887
|
ICON_SIZES,
|
|
467
888
|
Icon_default as Icon,
|
|
468
889
|
IconSlot_default as IconSlot,
|
|
890
|
+
LeadsFilled_default as LeadsFilled,
|
|
891
|
+
LeadsLinear_default as LeadsLinear,
|
|
892
|
+
PropertiesFilled_default as PropertiesFilled,
|
|
893
|
+
PropertiesLinear_default as PropertiesLinear,
|
|
469
894
|
Search_default as Search,
|
|
470
895
|
User_default as User,
|
|
471
896
|
resolveSize
|