huspy-icons 0.3.7 → 0.3.8
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 +107 -95
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +95 -91
- package/dist/fonts/HuspyIcons.ts +103 -91
- 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 +95 -91
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +10 -2
- package/dist/react/index.d.ts +10 -2
- package/dist/react/index.js +721 -472
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +649 -400
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +96 -92
- package/src/react/CancelCircleStroke.tsx +38 -0
- package/src/react/CheckCheck.tsx +32 -0
- package/src/react/Icon.tsx +13 -1
- package/src/react/ImageOff.tsx +56 -0
- package/src/react/Time.tsx +32 -0
- package/src/react/index.ts +4 -0
- package/src/react/index.tsx +4 -0
package/dist/react/index.mjs
CHANGED
|
@@ -1301,12 +1301,68 @@ var init_CancelCircleSolid = __esm({
|
|
|
1301
1301
|
}
|
|
1302
1302
|
});
|
|
1303
1303
|
|
|
1304
|
+
// src/react/CancelCircleStroke.tsx
|
|
1305
|
+
var CancelCircleStroke_exports = {};
|
|
1306
|
+
__export(CancelCircleStroke_exports, {
|
|
1307
|
+
default: () => CancelCircleStroke_default
|
|
1308
|
+
});
|
|
1309
|
+
import * as React23 from "react";
|
|
1310
|
+
var SvgCancelCircleStroke, CancelCircleStroke_default;
|
|
1311
|
+
var init_CancelCircleStroke = __esm({
|
|
1312
|
+
"src/react/CancelCircleStroke.tsx"() {
|
|
1313
|
+
"use strict";
|
|
1314
|
+
init_types();
|
|
1315
|
+
SvgCancelCircleStroke = ({ size = 16, ...props }) => {
|
|
1316
|
+
const sizeValue = resolveSize(size);
|
|
1317
|
+
return /* @__PURE__ */ React23.createElement(
|
|
1318
|
+
"svg",
|
|
1319
|
+
{
|
|
1320
|
+
width: sizeValue,
|
|
1321
|
+
height: sizeValue,
|
|
1322
|
+
viewBox: "0 0 24 24",
|
|
1323
|
+
fill: "none",
|
|
1324
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1325
|
+
...props
|
|
1326
|
+
},
|
|
1327
|
+
/* @__PURE__ */ React23.createElement(
|
|
1328
|
+
"path",
|
|
1329
|
+
{
|
|
1330
|
+
fillRule: "evenodd",
|
|
1331
|
+
clipRule: "evenodd",
|
|
1332
|
+
d: "M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12Z",
|
|
1333
|
+
fill: "currentColor"
|
|
1334
|
+
}
|
|
1335
|
+
),
|
|
1336
|
+
/* @__PURE__ */ React23.createElement(
|
|
1337
|
+
"path",
|
|
1338
|
+
{
|
|
1339
|
+
fillRule: "evenodd",
|
|
1340
|
+
clipRule: "evenodd",
|
|
1341
|
+
d: "M15.7071 8.29289C16.0976 8.68342 16.0976 9.31658 15.7071 9.70711L9.70711 15.7071C9.31658 16.0976 8.68342 16.0976 8.29289 15.7071C7.90237 15.3166 7.90237 14.6834 8.29289 14.2929L14.2929 8.29289C14.6834 7.90237 15.3166 7.90237 15.7071 8.29289Z",
|
|
1342
|
+
fill: "currentColor"
|
|
1343
|
+
}
|
|
1344
|
+
),
|
|
1345
|
+
/* @__PURE__ */ React23.createElement(
|
|
1346
|
+
"path",
|
|
1347
|
+
{
|
|
1348
|
+
fillRule: "evenodd",
|
|
1349
|
+
clipRule: "evenodd",
|
|
1350
|
+
d: "M8.29289 8.29289C8.68342 7.90237 9.31658 7.90237 9.70711 8.29289L15.7071 14.2929C16.0976 14.6834 16.0976 15.3166 15.7071 15.7071C15.3166 16.0976 14.6834 16.0976 14.2929 15.7071L8.29289 9.70711C7.90237 9.31658 7.90237 8.68342 8.29289 8.29289Z",
|
|
1351
|
+
fill: "currentColor"
|
|
1352
|
+
}
|
|
1353
|
+
)
|
|
1354
|
+
);
|
|
1355
|
+
};
|
|
1356
|
+
CancelCircleStroke_default = SvgCancelCircleStroke;
|
|
1357
|
+
}
|
|
1358
|
+
});
|
|
1359
|
+
|
|
1304
1360
|
// src/react/Check.tsx
|
|
1305
1361
|
var Check_exports = {};
|
|
1306
1362
|
__export(Check_exports, {
|
|
1307
1363
|
default: () => Check_default
|
|
1308
1364
|
});
|
|
1309
|
-
import * as
|
|
1365
|
+
import * as React24 from "react";
|
|
1310
1366
|
var SvgCheck, Check_default;
|
|
1311
1367
|
var init_Check = __esm({
|
|
1312
1368
|
"src/react/Check.tsx"() {
|
|
@@ -1314,7 +1370,7 @@ var init_Check = __esm({
|
|
|
1314
1370
|
init_types();
|
|
1315
1371
|
SvgCheck = ({ size = 16, ...props }) => {
|
|
1316
1372
|
const sizeValue = resolveSize(size);
|
|
1317
|
-
return /* @__PURE__ */
|
|
1373
|
+
return /* @__PURE__ */ React24.createElement(
|
|
1318
1374
|
"svg",
|
|
1319
1375
|
{
|
|
1320
1376
|
width: sizeValue,
|
|
@@ -1324,7 +1380,7 @@ var init_Check = __esm({
|
|
|
1324
1380
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1325
1381
|
...props
|
|
1326
1382
|
},
|
|
1327
|
-
/* @__PURE__ */
|
|
1383
|
+
/* @__PURE__ */ React24.createElement(
|
|
1328
1384
|
"path",
|
|
1329
1385
|
{
|
|
1330
1386
|
fillRule: "evenodd",
|
|
@@ -1339,12 +1395,59 @@ var init_Check = __esm({
|
|
|
1339
1395
|
}
|
|
1340
1396
|
});
|
|
1341
1397
|
|
|
1398
|
+
// src/react/CheckCheck.tsx
|
|
1399
|
+
var CheckCheck_exports = {};
|
|
1400
|
+
__export(CheckCheck_exports, {
|
|
1401
|
+
default: () => CheckCheck_default
|
|
1402
|
+
});
|
|
1403
|
+
import * as React25 from "react";
|
|
1404
|
+
var SvgCheckCheck, CheckCheck_default;
|
|
1405
|
+
var init_CheckCheck = __esm({
|
|
1406
|
+
"src/react/CheckCheck.tsx"() {
|
|
1407
|
+
"use strict";
|
|
1408
|
+
init_types();
|
|
1409
|
+
SvgCheckCheck = ({ size = 16, ...props }) => {
|
|
1410
|
+
const sizeValue = resolveSize(size);
|
|
1411
|
+
return /* @__PURE__ */ React25.createElement(
|
|
1412
|
+
"svg",
|
|
1413
|
+
{
|
|
1414
|
+
width: sizeValue,
|
|
1415
|
+
height: sizeValue,
|
|
1416
|
+
viewBox: "0 0 24 24",
|
|
1417
|
+
fill: "none",
|
|
1418
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1419
|
+
...props
|
|
1420
|
+
},
|
|
1421
|
+
/* @__PURE__ */ React25.createElement(
|
|
1422
|
+
"path",
|
|
1423
|
+
{
|
|
1424
|
+
fillRule: "evenodd",
|
|
1425
|
+
clipRule: "evenodd",
|
|
1426
|
+
d: "M18.7071 5.29289C19.0976 5.68342 19.0976 6.31658 18.7071 6.70711L7.70711 17.7071C7.31658 18.0976 6.68342 18.0976 6.29289 17.7071L1.29289 12.7071C0.902369 12.3166 0.902369 11.6834 1.29289 11.2929C1.68342 10.9024 2.31658 10.9024 2.70711 11.2929L7 15.5858L17.2929 5.29289C17.6834 4.90237 18.3166 4.90237 18.7071 5.29289Z",
|
|
1427
|
+
fill: "currentColor"
|
|
1428
|
+
}
|
|
1429
|
+
),
|
|
1430
|
+
/* @__PURE__ */ React25.createElement(
|
|
1431
|
+
"path",
|
|
1432
|
+
{
|
|
1433
|
+
fillRule: "evenodd",
|
|
1434
|
+
clipRule: "evenodd",
|
|
1435
|
+
d: "M22.7071 9.29289C23.0976 9.68342 23.0976 10.3166 22.7071 10.7071L15.2071 18.2071C14.8166 18.5976 14.1834 18.5976 13.7929 18.2071L12.2929 16.7071C11.9024 16.3166 11.9024 15.6834 12.2929 15.2929C12.6834 14.9024 13.3166 14.9024 13.7071 15.2929L14.5 16.0858L21.2929 9.29289C21.6834 8.90237 22.3166 8.90237 22.7071 9.29289Z",
|
|
1436
|
+
fill: "currentColor"
|
|
1437
|
+
}
|
|
1438
|
+
)
|
|
1439
|
+
);
|
|
1440
|
+
};
|
|
1441
|
+
CheckCheck_default = SvgCheckCheck;
|
|
1442
|
+
}
|
|
1443
|
+
});
|
|
1444
|
+
|
|
1342
1445
|
// src/react/CheckCircle2.tsx
|
|
1343
1446
|
var CheckCircle2_exports = {};
|
|
1344
1447
|
__export(CheckCircle2_exports, {
|
|
1345
1448
|
default: () => CheckCircle2_default
|
|
1346
1449
|
});
|
|
1347
|
-
import * as
|
|
1450
|
+
import * as React26 from "react";
|
|
1348
1451
|
var SvgCheckCircle2, CheckCircle2_default;
|
|
1349
1452
|
var init_CheckCircle2 = __esm({
|
|
1350
1453
|
"src/react/CheckCircle2.tsx"() {
|
|
@@ -1352,7 +1455,7 @@ var init_CheckCircle2 = __esm({
|
|
|
1352
1455
|
init_types();
|
|
1353
1456
|
SvgCheckCircle2 = ({ size = 16, ...props }) => {
|
|
1354
1457
|
const sizeValue = resolveSize(size);
|
|
1355
|
-
return /* @__PURE__ */
|
|
1458
|
+
return /* @__PURE__ */ React26.createElement(
|
|
1356
1459
|
"svg",
|
|
1357
1460
|
{
|
|
1358
1461
|
width: sizeValue,
|
|
@@ -1362,7 +1465,7 @@ var init_CheckCircle2 = __esm({
|
|
|
1362
1465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1363
1466
|
...props
|
|
1364
1467
|
},
|
|
1365
|
-
/* @__PURE__ */
|
|
1468
|
+
/* @__PURE__ */ React26.createElement(
|
|
1366
1469
|
"path",
|
|
1367
1470
|
{
|
|
1368
1471
|
fillRule: "evenodd",
|
|
@@ -1371,7 +1474,7 @@ var init_CheckCircle2 = __esm({
|
|
|
1371
1474
|
fill: "currentColor"
|
|
1372
1475
|
}
|
|
1373
1476
|
),
|
|
1374
|
-
/* @__PURE__ */
|
|
1477
|
+
/* @__PURE__ */ React26.createElement(
|
|
1375
1478
|
"path",
|
|
1376
1479
|
{
|
|
1377
1480
|
fillRule: "evenodd",
|
|
@@ -1391,7 +1494,7 @@ var ChevronDown_exports = {};
|
|
|
1391
1494
|
__export(ChevronDown_exports, {
|
|
1392
1495
|
default: () => ChevronDown_default
|
|
1393
1496
|
});
|
|
1394
|
-
import * as
|
|
1497
|
+
import * as React27 from "react";
|
|
1395
1498
|
var SvgChevronDown, ChevronDown_default;
|
|
1396
1499
|
var init_ChevronDown = __esm({
|
|
1397
1500
|
"src/react/ChevronDown.tsx"() {
|
|
@@ -1399,7 +1502,7 @@ var init_ChevronDown = __esm({
|
|
|
1399
1502
|
init_types();
|
|
1400
1503
|
SvgChevronDown = ({ size = 16, ...props }) => {
|
|
1401
1504
|
const sizeValue = resolveSize(size);
|
|
1402
|
-
return /* @__PURE__ */
|
|
1505
|
+
return /* @__PURE__ */ React27.createElement(
|
|
1403
1506
|
"svg",
|
|
1404
1507
|
{
|
|
1405
1508
|
width: sizeValue,
|
|
@@ -1409,7 +1512,7 @@ var init_ChevronDown = __esm({
|
|
|
1409
1512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1410
1513
|
...props
|
|
1411
1514
|
},
|
|
1412
|
-
/* @__PURE__ */
|
|
1515
|
+
/* @__PURE__ */ React27.createElement(
|
|
1413
1516
|
"path",
|
|
1414
1517
|
{
|
|
1415
1518
|
d: "M5.33203 9.6216C5.05614 9.32026 5.07568 8.87557 5.39062 8.59451C5.72691 8.29477 6.27309 8.29477 6.60937 8.59451L12.1992 13.5777L17.791 8.59451C18.1273 8.29477 18.6725 8.29477 19.0088 8.59451C19.345 8.89425 19.345 9.38021 19.0088 9.67992L12.8086 15.2062C12.4723 15.5056 11.927 15.5057 11.5908 15.2062L5.39062 9.67992L5.33203 9.6216Z",
|
|
@@ -1427,7 +1530,7 @@ var ChevronLeft_exports = {};
|
|
|
1427
1530
|
__export(ChevronLeft_exports, {
|
|
1428
1531
|
default: () => ChevronLeft_default
|
|
1429
1532
|
});
|
|
1430
|
-
import * as
|
|
1533
|
+
import * as React28 from "react";
|
|
1431
1534
|
var SvgChevronLeft, ChevronLeft_default;
|
|
1432
1535
|
var init_ChevronLeft = __esm({
|
|
1433
1536
|
"src/react/ChevronLeft.tsx"() {
|
|
@@ -1435,7 +1538,7 @@ var init_ChevronLeft = __esm({
|
|
|
1435
1538
|
init_types();
|
|
1436
1539
|
SvgChevronLeft = ({ size = 16, ...props }) => {
|
|
1437
1540
|
const sizeValue = resolveSize(size);
|
|
1438
|
-
return /* @__PURE__ */
|
|
1541
|
+
return /* @__PURE__ */ React28.createElement(
|
|
1439
1542
|
"svg",
|
|
1440
1543
|
{
|
|
1441
1544
|
width: sizeValue,
|
|
@@ -1445,7 +1548,7 @@ var init_ChevronLeft = __esm({
|
|
|
1445
1548
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1446
1549
|
...props
|
|
1447
1550
|
},
|
|
1448
|
-
/* @__PURE__ */
|
|
1551
|
+
/* @__PURE__ */ React28.createElement(
|
|
1449
1552
|
"path",
|
|
1450
1553
|
{
|
|
1451
1554
|
d: "M13.6932 4.09302C14.0837 3.70259 14.7167 3.70252 15.1072 4.09302C15.4976 4.48351 15.4976 5.11658 15.1072 5.50708L8.61407 12.0002L15.1072 18.4934L15.1756 18.5686C15.4962 18.9614 15.4734 19.5413 15.1072 19.9075C14.741 20.2736 14.1611 20.2964 13.7684 19.9758L13.6932 19.9075L6.49298 12.7073C6.10249 12.3168 6.10255 11.6837 6.49298 11.2932L13.6932 4.09302Z",
|
|
@@ -1463,7 +1566,7 @@ var ChevronRight_exports = {};
|
|
|
1463
1566
|
__export(ChevronRight_exports, {
|
|
1464
1567
|
default: () => ChevronRight_default
|
|
1465
1568
|
});
|
|
1466
|
-
import * as
|
|
1569
|
+
import * as React29 from "react";
|
|
1467
1570
|
var SvgChevronRight, ChevronRight_default;
|
|
1468
1571
|
var init_ChevronRight = __esm({
|
|
1469
1572
|
"src/react/ChevronRight.tsx"() {
|
|
@@ -1471,7 +1574,7 @@ var init_ChevronRight = __esm({
|
|
|
1471
1574
|
init_types();
|
|
1472
1575
|
SvgChevronRight = ({ size = 16, ...props }) => {
|
|
1473
1576
|
const sizeValue = resolveSize(size);
|
|
1474
|
-
return /* @__PURE__ */
|
|
1577
|
+
return /* @__PURE__ */ React29.createElement(
|
|
1475
1578
|
"svg",
|
|
1476
1579
|
{
|
|
1477
1580
|
width: sizeValue,
|
|
@@ -1481,7 +1584,7 @@ var init_ChevronRight = __esm({
|
|
|
1481
1584
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1482
1585
|
...props
|
|
1483
1586
|
},
|
|
1484
|
-
/* @__PURE__ */
|
|
1587
|
+
/* @__PURE__ */ React29.createElement(
|
|
1485
1588
|
"path",
|
|
1486
1589
|
{
|
|
1487
1590
|
d: "M9.10694 4.09302C8.7164 3.70259 8.08337 3.70252 7.69287 4.09302C7.30248 4.48351 7.30248 5.11658 7.69287 5.50708L14.186 12.0002L7.69287 18.4934L7.62451 18.5686C7.30395 18.9614 7.32668 19.5413 7.69287 19.9075C8.05908 20.2736 8.639 20.2964 9.03174 19.9758L9.10694 19.9075L16.3071 12.7073C16.6976 12.3168 16.6976 11.6837 16.3071 11.2932L9.10694 4.09302Z",
|
|
@@ -1499,7 +1602,7 @@ var ChevronUp_exports = {};
|
|
|
1499
1602
|
__export(ChevronUp_exports, {
|
|
1500
1603
|
default: () => ChevronUp_default
|
|
1501
1604
|
});
|
|
1502
|
-
import * as
|
|
1605
|
+
import * as React30 from "react";
|
|
1503
1606
|
var SvgChevronUp, ChevronUp_default;
|
|
1504
1607
|
var init_ChevronUp = __esm({
|
|
1505
1608
|
"src/react/ChevronUp.tsx"() {
|
|
@@ -1507,7 +1610,7 @@ var init_ChevronUp = __esm({
|
|
|
1507
1610
|
init_types();
|
|
1508
1611
|
SvgChevronUp = ({ size = 16, ...props }) => {
|
|
1509
1612
|
const sizeValue = resolveSize(size);
|
|
1510
|
-
return /* @__PURE__ */
|
|
1613
|
+
return /* @__PURE__ */ React30.createElement(
|
|
1511
1614
|
"svg",
|
|
1512
1615
|
{
|
|
1513
1616
|
width: sizeValue,
|
|
@@ -1517,7 +1620,7 @@ var init_ChevronUp = __esm({
|
|
|
1517
1620
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1518
1621
|
...props
|
|
1519
1622
|
},
|
|
1520
|
-
/* @__PURE__ */
|
|
1623
|
+
/* @__PURE__ */ React30.createElement(
|
|
1521
1624
|
"path",
|
|
1522
1625
|
{
|
|
1523
1626
|
d: "M5.33203 14.1783C5.05614 14.4797 5.07568 14.9244 5.39062 15.2054C5.72691 15.5052 6.27309 15.5052 6.60937 15.2054L12.1992 10.2223L17.791 15.2054C18.1273 15.5052 18.6725 15.5052 19.0088 15.2054C19.345 14.9057 19.345 14.4197 19.0088 14.12L12.8086 8.59372C12.4723 8.29437 11.927 8.29419 11.5908 8.59372L5.39062 14.12L5.33203 14.1783Z",
|
|
@@ -1535,7 +1638,7 @@ var Closet_exports = {};
|
|
|
1535
1638
|
__export(Closet_exports, {
|
|
1536
1639
|
default: () => Closet_default
|
|
1537
1640
|
});
|
|
1538
|
-
import * as
|
|
1641
|
+
import * as React31 from "react";
|
|
1539
1642
|
var SvgCloset, Closet_default;
|
|
1540
1643
|
var init_Closet = __esm({
|
|
1541
1644
|
"src/react/Closet.tsx"() {
|
|
@@ -1543,7 +1646,7 @@ var init_Closet = __esm({
|
|
|
1543
1646
|
init_types();
|
|
1544
1647
|
SvgCloset = ({ size = 16, ...props }) => {
|
|
1545
1648
|
const sizeValue = resolveSize(size);
|
|
1546
|
-
return /* @__PURE__ */
|
|
1649
|
+
return /* @__PURE__ */ React31.createElement(
|
|
1547
1650
|
"svg",
|
|
1548
1651
|
{
|
|
1549
1652
|
width: sizeValue,
|
|
@@ -1553,7 +1656,7 @@ var init_Closet = __esm({
|
|
|
1553
1656
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1554
1657
|
...props
|
|
1555
1658
|
},
|
|
1556
|
-
/* @__PURE__ */
|
|
1659
|
+
/* @__PURE__ */ React31.createElement(
|
|
1557
1660
|
"path",
|
|
1558
1661
|
{
|
|
1559
1662
|
d: "M20.2002 3.33301C20.2001 3.22408 20.1521 3.09745 20.0293 2.98828C19.9033 2.87628 19.7141 2.7998 19.5 2.7998H12.7998V19.8662H19.5C19.7141 19.8662 19.9033 19.7897 20.0293 19.6777C20.152 19.5685 20.2002 19.4419 20.2002 19.333V3.33301ZM15.4248 11.25C15.4248 11.1656 15.3996 11.0839 15.3535 11.0146L15.3008 10.9492L15.2354 10.8965C15.1891 10.8657 15.1375 10.8439 15.083 10.833L15 10.8252C14.8873 10.8252 14.7789 10.8695 14.6992 10.9492C14.6195 11.0289 14.5752 11.1373 14.5752 11.25L14.583 11.333C14.5993 11.4148 14.6394 11.4909 14.6992 11.5508C14.7789 11.6305 14.8873 11.6748 15 11.6748C15.1127 11.6748 15.2211 11.6305 15.3008 11.5508C15.3805 11.4711 15.4248 11.3627 15.4248 11.25ZM9.4248 11.25C9.4248 11.1656 9.39962 11.0839 9.35352 11.0146L9.30078 10.9492L9.23535 10.8965C9.18912 10.8657 9.13748 10.8439 9.08301 10.833L9 10.8252C8.88729 10.8252 8.77892 10.8695 8.69922 10.9492C8.61951 11.0289 8.5752 11.1373 8.5752 11.25L8.58301 11.333C8.5993 11.4148 8.63936 11.4909 8.69922 11.5508C8.77892 11.6305 8.88729 11.6748 9 11.6748C9.11271 11.6748 9.22108 11.6305 9.30078 11.5508C9.38049 11.4711 9.4248 11.3627 9.4248 11.25ZM10.1748 11.25C10.1748 11.5616 10.0514 11.8607 9.83105 12.0811C9.6107 12.3014 9.31163 12.4248 9 12.4248C8.68837 12.4248 8.3893 12.3014 8.16895 12.0811C7.97616 11.8883 7.85778 11.6352 7.83105 11.3662L7.8252 11.25L7.83105 11.1338C7.85778 10.8648 7.97616 10.6117 8.16895 10.4189C8.3893 10.1986 8.68837 10.0752 9 10.0752L9.11621 10.0811C9.34679 10.104 9.5659 10.1939 9.74512 10.3408L9.83105 10.4189L9.90918 10.5049C10.0806 10.714 10.1748 10.9773 10.1748 11.25ZM16.1748 11.25C16.1748 11.5616 16.0514 11.8607 15.8311 12.0811C15.6107 12.3014 15.3116 12.4248 15 12.4248C14.6884 12.4248 14.3893 12.3014 14.1689 12.0811C13.9762 11.8883 13.8578 11.6352 13.8311 11.3662L13.8252 11.25L13.8311 11.1338C13.8578 10.8648 13.9762 10.6117 14.1689 10.4189C14.3893 10.1986 14.6884 10.0752 15 10.0752L15.1162 10.0811C15.3468 10.104 15.5659 10.1939 15.7451 10.3408L15.8311 10.4189L15.9092 10.5049C16.0806 10.714 16.1748 10.9773 16.1748 11.25ZM3.7998 19.333C3.7998 19.4419 3.848 19.5685 3.9707 19.6777C4.09671 19.7897 4.28592 19.8662 4.5 19.8662H11.2002V2.7998H4.5C4.28593 2.7998 4.09671 2.87628 3.9707 2.98828C3.84789 3.09745 3.7999 3.22408 3.7998 3.33301V19.333ZM21.7998 19.333C21.7998 19.9312 21.5315 20.4832 21.0918 20.874C20.8602 21.0798 20.5893 21.2317 20.2998 21.3311V22C20.2998 22.4418 19.9418 22.7998 19.5 22.7998C19.0582 22.7998 18.7002 22.4418 18.7002 22V21.4668H5.2998V22C5.2998 22.4418 4.94183 22.7998 4.5 22.7998C4.05817 22.7998 3.7002 22.4418 3.7002 22V21.3311C3.4107 21.2317 3.13979 21.0798 2.9082 20.874C2.46853 20.4832 2.2002 19.9312 2.2002 19.333V3.33301C2.20029 2.73489 2.46861 2.18372 2.9082 1.79297C3.34481 1.40488 3.91844 1.2002 4.5 1.2002H19.5C20.0816 1.2002 20.6552 1.40488 21.0918 1.79297C21.5314 2.18372 21.7997 2.73489 21.7998 3.33301V19.333Z",
|
|
@@ -1571,7 +1674,7 @@ var Collections_exports = {};
|
|
|
1571
1674
|
__export(Collections_exports, {
|
|
1572
1675
|
default: () => Collections_default
|
|
1573
1676
|
});
|
|
1574
|
-
import * as
|
|
1677
|
+
import * as React32 from "react";
|
|
1575
1678
|
var SvgCollections, Collections_default;
|
|
1576
1679
|
var init_Collections = __esm({
|
|
1577
1680
|
"src/react/Collections.tsx"() {
|
|
@@ -1579,7 +1682,7 @@ var init_Collections = __esm({
|
|
|
1579
1682
|
init_types();
|
|
1580
1683
|
SvgCollections = ({ size = 16, ...props }) => {
|
|
1581
1684
|
const sizeValue = resolveSize(size);
|
|
1582
|
-
return /* @__PURE__ */
|
|
1685
|
+
return /* @__PURE__ */ React32.createElement(
|
|
1583
1686
|
"svg",
|
|
1584
1687
|
{
|
|
1585
1688
|
width: sizeValue,
|
|
@@ -1589,7 +1692,7 @@ var init_Collections = __esm({
|
|
|
1589
1692
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1590
1693
|
...props
|
|
1591
1694
|
},
|
|
1592
|
-
/* @__PURE__ */
|
|
1695
|
+
/* @__PURE__ */ React32.createElement(
|
|
1593
1696
|
"path",
|
|
1594
1697
|
{
|
|
1595
1698
|
fillRule: "evenodd",
|
|
@@ -1609,7 +1712,7 @@ var DoorOpen_exports = {};
|
|
|
1609
1712
|
__export(DoorOpen_exports, {
|
|
1610
1713
|
default: () => DoorOpen_default
|
|
1611
1714
|
});
|
|
1612
|
-
import * as
|
|
1715
|
+
import * as React33 from "react";
|
|
1613
1716
|
var SvgDoorOpen, DoorOpen_default;
|
|
1614
1717
|
var init_DoorOpen = __esm({
|
|
1615
1718
|
"src/react/DoorOpen.tsx"() {
|
|
@@ -1617,7 +1720,7 @@ var init_DoorOpen = __esm({
|
|
|
1617
1720
|
init_types();
|
|
1618
1721
|
SvgDoorOpen = ({ size = 16, ...props }) => {
|
|
1619
1722
|
const sizeValue = resolveSize(size);
|
|
1620
|
-
return /* @__PURE__ */
|
|
1723
|
+
return /* @__PURE__ */ React33.createElement(
|
|
1621
1724
|
"svg",
|
|
1622
1725
|
{
|
|
1623
1726
|
width: sizeValue,
|
|
@@ -1627,7 +1730,7 @@ var init_DoorOpen = __esm({
|
|
|
1627
1730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1628
1731
|
...props
|
|
1629
1732
|
},
|
|
1630
|
-
/* @__PURE__ */
|
|
1733
|
+
/* @__PURE__ */ React33.createElement(
|
|
1631
1734
|
"path",
|
|
1632
1735
|
{
|
|
1633
1736
|
fillRule: "evenodd",
|
|
@@ -1636,7 +1739,7 @@ var init_DoorOpen = __esm({
|
|
|
1636
1739
|
fill: "currentColor"
|
|
1637
1740
|
}
|
|
1638
1741
|
),
|
|
1639
|
-
/* @__PURE__ */
|
|
1742
|
+
/* @__PURE__ */ React33.createElement(
|
|
1640
1743
|
"path",
|
|
1641
1744
|
{
|
|
1642
1745
|
fillRule: "evenodd",
|
|
@@ -1645,7 +1748,7 @@ var init_DoorOpen = __esm({
|
|
|
1645
1748
|
fill: "currentColor"
|
|
1646
1749
|
}
|
|
1647
1750
|
),
|
|
1648
|
-
/* @__PURE__ */
|
|
1751
|
+
/* @__PURE__ */ React33.createElement(
|
|
1649
1752
|
"path",
|
|
1650
1753
|
{
|
|
1651
1754
|
fillRule: "evenodd",
|
|
@@ -1654,7 +1757,7 @@ var init_DoorOpen = __esm({
|
|
|
1654
1757
|
fill: "currentColor"
|
|
1655
1758
|
}
|
|
1656
1759
|
),
|
|
1657
|
-
/* @__PURE__ */
|
|
1760
|
+
/* @__PURE__ */ React33.createElement(
|
|
1658
1761
|
"path",
|
|
1659
1762
|
{
|
|
1660
1763
|
fillRule: "evenodd",
|
|
@@ -1663,7 +1766,7 @@ var init_DoorOpen = __esm({
|
|
|
1663
1766
|
fill: "currentColor"
|
|
1664
1767
|
}
|
|
1665
1768
|
),
|
|
1666
|
-
/* @__PURE__ */
|
|
1769
|
+
/* @__PURE__ */ React33.createElement(
|
|
1667
1770
|
"path",
|
|
1668
1771
|
{
|
|
1669
1772
|
fillRule: "evenodd",
|
|
@@ -1683,7 +1786,7 @@ var Edit_exports = {};
|
|
|
1683
1786
|
__export(Edit_exports, {
|
|
1684
1787
|
default: () => Edit_default
|
|
1685
1788
|
});
|
|
1686
|
-
import * as
|
|
1789
|
+
import * as React34 from "react";
|
|
1687
1790
|
var SvgEdit, Edit_default;
|
|
1688
1791
|
var init_Edit = __esm({
|
|
1689
1792
|
"src/react/Edit.tsx"() {
|
|
@@ -1691,7 +1794,7 @@ var init_Edit = __esm({
|
|
|
1691
1794
|
init_types();
|
|
1692
1795
|
SvgEdit = ({ size = 16, ...props }) => {
|
|
1693
1796
|
const sizeValue = resolveSize(size);
|
|
1694
|
-
return /* @__PURE__ */
|
|
1797
|
+
return /* @__PURE__ */ React34.createElement(
|
|
1695
1798
|
"svg",
|
|
1696
1799
|
{
|
|
1697
1800
|
width: sizeValue,
|
|
@@ -1701,7 +1804,7 @@ var init_Edit = __esm({
|
|
|
1701
1804
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1702
1805
|
...props
|
|
1703
1806
|
},
|
|
1704
|
-
/* @__PURE__ */
|
|
1807
|
+
/* @__PURE__ */ React34.createElement(
|
|
1705
1808
|
"path",
|
|
1706
1809
|
{
|
|
1707
1810
|
fillRule: "evenodd",
|
|
@@ -1710,7 +1813,7 @@ var init_Edit = __esm({
|
|
|
1710
1813
|
fill: "currentColor"
|
|
1711
1814
|
}
|
|
1712
1815
|
),
|
|
1713
|
-
/* @__PURE__ */
|
|
1816
|
+
/* @__PURE__ */ React34.createElement(
|
|
1714
1817
|
"path",
|
|
1715
1818
|
{
|
|
1716
1819
|
fillRule: "evenodd",
|
|
@@ -1730,7 +1833,7 @@ var Electric_exports = {};
|
|
|
1730
1833
|
__export(Electric_exports, {
|
|
1731
1834
|
default: () => Electric_default
|
|
1732
1835
|
});
|
|
1733
|
-
import * as
|
|
1836
|
+
import * as React35 from "react";
|
|
1734
1837
|
var SvgElectric, Electric_default;
|
|
1735
1838
|
var init_Electric = __esm({
|
|
1736
1839
|
"src/react/Electric.tsx"() {
|
|
@@ -1738,7 +1841,7 @@ var init_Electric = __esm({
|
|
|
1738
1841
|
init_types();
|
|
1739
1842
|
SvgElectric = ({ size = 16, ...props }) => {
|
|
1740
1843
|
const sizeValue = resolveSize(size);
|
|
1741
|
-
return /* @__PURE__ */
|
|
1844
|
+
return /* @__PURE__ */ React35.createElement(
|
|
1742
1845
|
"svg",
|
|
1743
1846
|
{
|
|
1744
1847
|
width: sizeValue,
|
|
@@ -1748,7 +1851,7 @@ var init_Electric = __esm({
|
|
|
1748
1851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1749
1852
|
...props
|
|
1750
1853
|
},
|
|
1751
|
-
/* @__PURE__ */
|
|
1854
|
+
/* @__PURE__ */ React35.createElement(
|
|
1752
1855
|
"path",
|
|
1753
1856
|
{
|
|
1754
1857
|
fillRule: "evenodd",
|
|
@@ -1757,7 +1860,7 @@ var init_Electric = __esm({
|
|
|
1757
1860
|
fill: "currentColor"
|
|
1758
1861
|
}
|
|
1759
1862
|
),
|
|
1760
|
-
/* @__PURE__ */
|
|
1863
|
+
/* @__PURE__ */ React35.createElement(
|
|
1761
1864
|
"path",
|
|
1762
1865
|
{
|
|
1763
1866
|
fillRule: "evenodd",
|
|
@@ -1766,7 +1869,7 @@ var init_Electric = __esm({
|
|
|
1766
1869
|
fill: "currentColor"
|
|
1767
1870
|
}
|
|
1768
1871
|
),
|
|
1769
|
-
/* @__PURE__ */
|
|
1872
|
+
/* @__PURE__ */ React35.createElement(
|
|
1770
1873
|
"path",
|
|
1771
1874
|
{
|
|
1772
1875
|
fillRule: "evenodd",
|
|
@@ -1775,7 +1878,7 @@ var init_Electric = __esm({
|
|
|
1775
1878
|
fill: "currentColor"
|
|
1776
1879
|
}
|
|
1777
1880
|
),
|
|
1778
|
-
/* @__PURE__ */
|
|
1881
|
+
/* @__PURE__ */ React35.createElement(
|
|
1779
1882
|
"path",
|
|
1780
1883
|
{
|
|
1781
1884
|
fillRule: "evenodd",
|
|
@@ -1784,7 +1887,7 @@ var init_Electric = __esm({
|
|
|
1784
1887
|
fill: "currentColor"
|
|
1785
1888
|
}
|
|
1786
1889
|
),
|
|
1787
|
-
/* @__PURE__ */
|
|
1890
|
+
/* @__PURE__ */ React35.createElement(
|
|
1788
1891
|
"path",
|
|
1789
1892
|
{
|
|
1790
1893
|
fillRule: "evenodd",
|
|
@@ -1793,7 +1896,7 @@ var init_Electric = __esm({
|
|
|
1793
1896
|
fill: "currentColor"
|
|
1794
1897
|
}
|
|
1795
1898
|
),
|
|
1796
|
-
/* @__PURE__ */
|
|
1899
|
+
/* @__PURE__ */ React35.createElement(
|
|
1797
1900
|
"path",
|
|
1798
1901
|
{
|
|
1799
1902
|
fillRule: "evenodd",
|
|
@@ -1813,7 +1916,7 @@ var ExploreFilled_exports = {};
|
|
|
1813
1916
|
__export(ExploreFilled_exports, {
|
|
1814
1917
|
default: () => ExploreFilled_default
|
|
1815
1918
|
});
|
|
1816
|
-
import * as
|
|
1919
|
+
import * as React36 from "react";
|
|
1817
1920
|
var SvgExploreFilled, ExploreFilled_default;
|
|
1818
1921
|
var init_ExploreFilled = __esm({
|
|
1819
1922
|
"src/react/ExploreFilled.tsx"() {
|
|
@@ -1821,7 +1924,7 @@ var init_ExploreFilled = __esm({
|
|
|
1821
1924
|
init_types();
|
|
1822
1925
|
SvgExploreFilled = ({ size = 16, ...props }) => {
|
|
1823
1926
|
const sizeValue = resolveSize(size);
|
|
1824
|
-
return /* @__PURE__ */
|
|
1927
|
+
return /* @__PURE__ */ React36.createElement(
|
|
1825
1928
|
"svg",
|
|
1826
1929
|
{
|
|
1827
1930
|
width: sizeValue,
|
|
@@ -1831,7 +1934,7 @@ var init_ExploreFilled = __esm({
|
|
|
1831
1934
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1832
1935
|
...props
|
|
1833
1936
|
},
|
|
1834
|
-
/* @__PURE__ */
|
|
1937
|
+
/* @__PURE__ */ React36.createElement(
|
|
1835
1938
|
"path",
|
|
1836
1939
|
{
|
|
1837
1940
|
fillRule: "evenodd",
|
|
@@ -1840,7 +1943,7 @@ var init_ExploreFilled = __esm({
|
|
|
1840
1943
|
fill: "currentColor"
|
|
1841
1944
|
}
|
|
1842
1945
|
),
|
|
1843
|
-
/* @__PURE__ */
|
|
1946
|
+
/* @__PURE__ */ React36.createElement(
|
|
1844
1947
|
"path",
|
|
1845
1948
|
{
|
|
1846
1949
|
fillRule: "evenodd",
|
|
@@ -1849,7 +1952,7 @@ var init_ExploreFilled = __esm({
|
|
|
1849
1952
|
fill: "currentColor"
|
|
1850
1953
|
}
|
|
1851
1954
|
),
|
|
1852
|
-
/* @__PURE__ */
|
|
1955
|
+
/* @__PURE__ */ React36.createElement(
|
|
1853
1956
|
"path",
|
|
1854
1957
|
{
|
|
1855
1958
|
d: "M16.1046 11.1024C16.1046 13.9203 13.8202 16.2047 11.0022 16.2047C8.1843 16.2047 5.8999 13.9203 5.8999 11.1024C5.8999 8.28445 8.1843 6.00005 11.0022 6.00005C13.8202 6.00005 16.1046 8.28445 16.1046 11.1024Z",
|
|
@@ -1867,7 +1970,7 @@ var ExploreLinear_exports = {};
|
|
|
1867
1970
|
__export(ExploreLinear_exports, {
|
|
1868
1971
|
default: () => ExploreLinear_default
|
|
1869
1972
|
});
|
|
1870
|
-
import * as
|
|
1973
|
+
import * as React37 from "react";
|
|
1871
1974
|
var SvgExploreLinear, ExploreLinear_default;
|
|
1872
1975
|
var init_ExploreLinear = __esm({
|
|
1873
1976
|
"src/react/ExploreLinear.tsx"() {
|
|
@@ -1875,7 +1978,7 @@ var init_ExploreLinear = __esm({
|
|
|
1875
1978
|
init_types();
|
|
1876
1979
|
SvgExploreLinear = ({ size = 16, ...props }) => {
|
|
1877
1980
|
const sizeValue = resolveSize(size);
|
|
1878
|
-
return /* @__PURE__ */
|
|
1981
|
+
return /* @__PURE__ */ React37.createElement(
|
|
1879
1982
|
"svg",
|
|
1880
1983
|
{
|
|
1881
1984
|
width: sizeValue,
|
|
@@ -1885,7 +1988,7 @@ var init_ExploreLinear = __esm({
|
|
|
1885
1988
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1886
1989
|
...props
|
|
1887
1990
|
},
|
|
1888
|
-
/* @__PURE__ */
|
|
1991
|
+
/* @__PURE__ */ React37.createElement(
|
|
1889
1992
|
"path",
|
|
1890
1993
|
{
|
|
1891
1994
|
fillRule: "evenodd",
|
|
@@ -1894,7 +1997,7 @@ var init_ExploreLinear = __esm({
|
|
|
1894
1997
|
fill: "currentColor"
|
|
1895
1998
|
}
|
|
1896
1999
|
),
|
|
1897
|
-
/* @__PURE__ */
|
|
2000
|
+
/* @__PURE__ */ React37.createElement(
|
|
1898
2001
|
"path",
|
|
1899
2002
|
{
|
|
1900
2003
|
fillRule: "evenodd",
|
|
@@ -1914,7 +2017,7 @@ var EyeHidden_exports = {};
|
|
|
1914
2017
|
__export(EyeHidden_exports, {
|
|
1915
2018
|
default: () => EyeHidden_default
|
|
1916
2019
|
});
|
|
1917
|
-
import * as
|
|
2020
|
+
import * as React38 from "react";
|
|
1918
2021
|
var SvgEyeHidden, EyeHidden_default;
|
|
1919
2022
|
var init_EyeHidden = __esm({
|
|
1920
2023
|
"src/react/EyeHidden.tsx"() {
|
|
@@ -1922,7 +2025,7 @@ var init_EyeHidden = __esm({
|
|
|
1922
2025
|
init_types();
|
|
1923
2026
|
SvgEyeHidden = ({ size = 16, ...props }) => {
|
|
1924
2027
|
const sizeValue = resolveSize(size);
|
|
1925
|
-
return /* @__PURE__ */
|
|
2028
|
+
return /* @__PURE__ */ React38.createElement(
|
|
1926
2029
|
"svg",
|
|
1927
2030
|
{
|
|
1928
2031
|
width: sizeValue,
|
|
@@ -1932,7 +2035,7 @@ var init_EyeHidden = __esm({
|
|
|
1932
2035
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1933
2036
|
...props
|
|
1934
2037
|
},
|
|
1935
|
-
/* @__PURE__ */
|
|
2038
|
+
/* @__PURE__ */ React38.createElement(
|
|
1936
2039
|
"path",
|
|
1937
2040
|
{
|
|
1938
2041
|
fillRule: "evenodd",
|
|
@@ -1941,7 +2044,7 @@ var init_EyeHidden = __esm({
|
|
|
1941
2044
|
fill: "currentColor"
|
|
1942
2045
|
}
|
|
1943
2046
|
),
|
|
1944
|
-
/* @__PURE__ */
|
|
2047
|
+
/* @__PURE__ */ React38.createElement(
|
|
1945
2048
|
"path",
|
|
1946
2049
|
{
|
|
1947
2050
|
fillRule: "evenodd",
|
|
@@ -1950,7 +2053,7 @@ var init_EyeHidden = __esm({
|
|
|
1950
2053
|
fill: "currentColor"
|
|
1951
2054
|
}
|
|
1952
2055
|
),
|
|
1953
|
-
/* @__PURE__ */
|
|
2056
|
+
/* @__PURE__ */ React38.createElement(
|
|
1954
2057
|
"path",
|
|
1955
2058
|
{
|
|
1956
2059
|
fillRule: "evenodd",
|
|
@@ -1970,7 +2073,7 @@ var EyeVisible_exports = {};
|
|
|
1970
2073
|
__export(EyeVisible_exports, {
|
|
1971
2074
|
default: () => EyeVisible_default
|
|
1972
2075
|
});
|
|
1973
|
-
import * as
|
|
2076
|
+
import * as React39 from "react";
|
|
1974
2077
|
var SvgEyeVisible, EyeVisible_default;
|
|
1975
2078
|
var init_EyeVisible = __esm({
|
|
1976
2079
|
"src/react/EyeVisible.tsx"() {
|
|
@@ -1978,7 +2081,7 @@ var init_EyeVisible = __esm({
|
|
|
1978
2081
|
init_types();
|
|
1979
2082
|
SvgEyeVisible = ({ size = 16, ...props }) => {
|
|
1980
2083
|
const sizeValue = resolveSize(size);
|
|
1981
|
-
return /* @__PURE__ */
|
|
2084
|
+
return /* @__PURE__ */ React39.createElement(
|
|
1982
2085
|
"svg",
|
|
1983
2086
|
{
|
|
1984
2087
|
width: sizeValue,
|
|
@@ -1988,7 +2091,7 @@ var init_EyeVisible = __esm({
|
|
|
1988
2091
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1989
2092
|
...props
|
|
1990
2093
|
},
|
|
1991
|
-
/* @__PURE__ */
|
|
2094
|
+
/* @__PURE__ */ React39.createElement(
|
|
1992
2095
|
"path",
|
|
1993
2096
|
{
|
|
1994
2097
|
fillRule: "evenodd",
|
|
@@ -1997,7 +2100,7 @@ var init_EyeVisible = __esm({
|
|
|
1997
2100
|
fill: "currentColor"
|
|
1998
2101
|
}
|
|
1999
2102
|
),
|
|
2000
|
-
/* @__PURE__ */
|
|
2103
|
+
/* @__PURE__ */ React39.createElement(
|
|
2001
2104
|
"path",
|
|
2002
2105
|
{
|
|
2003
2106
|
fillRule: "evenodd",
|
|
@@ -2017,7 +2120,7 @@ var FaceId_exports = {};
|
|
|
2017
2120
|
__export(FaceId_exports, {
|
|
2018
2121
|
default: () => FaceId_default
|
|
2019
2122
|
});
|
|
2020
|
-
import * as
|
|
2123
|
+
import * as React40 from "react";
|
|
2021
2124
|
var SvgFaceId, FaceId_default;
|
|
2022
2125
|
var init_FaceId = __esm({
|
|
2023
2126
|
"src/react/FaceId.tsx"() {
|
|
@@ -2025,7 +2128,7 @@ var init_FaceId = __esm({
|
|
|
2025
2128
|
init_types();
|
|
2026
2129
|
SvgFaceId = ({ size = 16, ...props }) => {
|
|
2027
2130
|
const sizeValue = resolveSize(size);
|
|
2028
|
-
return /* @__PURE__ */
|
|
2131
|
+
return /* @__PURE__ */ React40.createElement(
|
|
2029
2132
|
"svg",
|
|
2030
2133
|
{
|
|
2031
2134
|
width: sizeValue,
|
|
@@ -2035,56 +2138,56 @@ var init_FaceId = __esm({
|
|
|
2035
2138
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2036
2139
|
...props
|
|
2037
2140
|
},
|
|
2038
|
-
/* @__PURE__ */
|
|
2141
|
+
/* @__PURE__ */ React40.createElement(
|
|
2039
2142
|
"path",
|
|
2040
2143
|
{
|
|
2041
2144
|
d: "M13.9145 15.5719C14.3166 15.2798 14.8797 15.3692 15.1719 15.7713C15.464 16.1734 15.3745 16.7365 14.9725 17.0287C14.2541 17.5507 13.1722 18.1007 11.7994 18.1007C10.4266 18.1006 9.34461 17.5507 8.62624 17.0287C8.22423 16.7365 8.13483 16.1734 8.42684 15.7713C8.719 15.3693 9.28216 15.2799 9.68423 15.5719C10.2042 15.9498 10.9224 16.3003 11.7994 16.3003C12.6764 16.3003 13.3945 15.9498 13.9145 15.5719Z",
|
|
2042
2145
|
fill: "currentColor"
|
|
2043
2146
|
}
|
|
2044
2147
|
),
|
|
2045
|
-
/* @__PURE__ */
|
|
2148
|
+
/* @__PURE__ */ React40.createElement(
|
|
2046
2149
|
"path",
|
|
2047
2150
|
{
|
|
2048
2151
|
d: "M15.3999 10.9008V9.10037C15.3999 8.60331 15.8026 8.20059 16.2997 8.20059C16.7967 8.20059 17.1994 8.60331 17.1994 9.10037V10.9008C17.1992 11.3976 16.7966 11.8005 16.2997 11.8005C15.8027 11.8005 15.4001 11.3976 15.3999 10.9008Z",
|
|
2049
2152
|
fill: "currentColor"
|
|
2050
2153
|
}
|
|
2051
2154
|
),
|
|
2052
|
-
/* @__PURE__ */
|
|
2155
|
+
/* @__PURE__ */ React40.createElement(
|
|
2053
2156
|
"path",
|
|
2054
2157
|
{
|
|
2055
2158
|
d: "M6.39986 10.9008V9.10037C6.39986 8.60331 6.80258 8.20059 7.29964 8.20059C7.7967 8.20059 8.19942 8.60331 8.19942 9.10037V10.9008C8.19922 11.3976 7.79657 11.8005 7.29964 11.8005C6.80271 11.8005 6.40007 11.3976 6.39986 10.9008Z",
|
|
2056
2159
|
fill: "currentColor"
|
|
2057
2160
|
}
|
|
2058
2161
|
),
|
|
2059
|
-
/* @__PURE__ */
|
|
2162
|
+
/* @__PURE__ */ React40.createElement(
|
|
2060
2163
|
"path",
|
|
2061
2164
|
{
|
|
2062
2165
|
d: "M10.8999 9.10037C10.8999 8.60339 11.3027 8.20071 11.7997 8.20059C12.2967 8.20059 12.7003 8.60331 12.7003 9.10037V12.7003C12.7003 13.6942 11.8937 14.5007 10.8999 14.5007C10.4028 14.5007 10.0001 14.0972 10.0001 13.6001C10.0002 13.1032 10.4029 12.7003 10.8999 12.7003V9.10037Z",
|
|
2063
2166
|
fill: "currentColor"
|
|
2064
2167
|
}
|
|
2065
2168
|
),
|
|
2066
|
-
/* @__PURE__ */
|
|
2169
|
+
/* @__PURE__ */ React40.createElement(
|
|
2067
2170
|
"path",
|
|
2068
2171
|
{
|
|
2069
2172
|
d: "M20.7999 6.39952V3.70017C20.7999 3.20278 20.3975 2.79965 19.9001 2.79956H17.1999C16.7029 2.79956 16.3001 2.39684 16.3001 1.89978C16.3001 1.40272 16.7029 1 17.1999 1H19.9001C21.3916 1.00009 22.6003 2.20867 22.6003 3.70017V6.39952C22.6003 6.89657 22.1967 7.30012 21.6997 7.30012C21.2027 7.29997 20.7999 6.89648 20.7999 6.39952Z",
|
|
2070
2173
|
fill: "currentColor"
|
|
2071
2174
|
}
|
|
2072
2175
|
),
|
|
2073
|
-
/* @__PURE__ */
|
|
2176
|
+
/* @__PURE__ */ React40.createElement(
|
|
2074
2177
|
"path",
|
|
2075
2178
|
{
|
|
2076
2179
|
d: "M1.00014 6.39979V3.70044C1.00014 2.20889 2.20875 1.00027 3.70031 1.00027H6.39965C6.89671 1.00027 7.30026 1.403 7.30026 1.90006C7.30026 2.39711 6.89671 2.79984 6.39965 2.79984H3.70031C3.20286 2.79984 2.7997 3.203 2.7997 3.70044V6.39979C2.7997 6.89685 2.39698 7.3004 1.89992 7.3004C1.40286 7.3004 1.00014 6.89685 1.00014 6.39979Z",
|
|
2077
2180
|
fill: "currentColor"
|
|
2078
2181
|
}
|
|
2079
2182
|
),
|
|
2080
|
-
/* @__PURE__ */
|
|
2183
|
+
/* @__PURE__ */ React40.createElement(
|
|
2081
2184
|
"path",
|
|
2082
2185
|
{
|
|
2083
2186
|
d: "M20.7999 19.9001V17.1999C20.7999 16.703 21.2027 16.3003 21.6997 16.3001C22.1967 16.3001 22.6003 16.7029 22.6003 17.1999V19.9001C22.6002 21.3915 21.3915 22.6002 19.9001 22.6003H17.1999C16.7029 22.6003 16.3001 22.1967 16.3001 21.6997C16.3003 21.2027 16.703 20.7999 17.1999 20.7999H19.9001C20.3974 20.7998 20.7998 20.3974 20.7999 19.9001Z",
|
|
2084
2187
|
fill: "currentColor"
|
|
2085
2188
|
}
|
|
2086
2189
|
),
|
|
2087
|
-
/* @__PURE__ */
|
|
2190
|
+
/* @__PURE__ */ React40.createElement(
|
|
2088
2191
|
"path",
|
|
2089
2192
|
{
|
|
2090
2193
|
d: "M1 19.9001V17.1999C1 16.7029 1.40272 16.3001 1.89978 16.3001C2.39684 16.3001 2.79956 16.7029 2.79956 17.1999V19.9001C2.79965 20.3975 3.20278 20.7999 3.70017 20.7999H6.39952C6.89648 20.7999 7.29997 21.2027 7.30012 21.6997C7.30012 22.1967 6.89657 22.6003 6.39952 22.6003H3.70017C2.20867 22.6003 1.00009 21.3916 1 19.9001Z",
|
|
@@ -2102,7 +2205,7 @@ var FileCheck_exports = {};
|
|
|
2102
2205
|
__export(FileCheck_exports, {
|
|
2103
2206
|
default: () => FileCheck_default
|
|
2104
2207
|
});
|
|
2105
|
-
import * as
|
|
2208
|
+
import * as React41 from "react";
|
|
2106
2209
|
var SvgFileCheck, FileCheck_default;
|
|
2107
2210
|
var init_FileCheck = __esm({
|
|
2108
2211
|
"src/react/FileCheck.tsx"() {
|
|
@@ -2110,7 +2213,7 @@ var init_FileCheck = __esm({
|
|
|
2110
2213
|
init_types();
|
|
2111
2214
|
SvgFileCheck = ({ size = 16, ...props }) => {
|
|
2112
2215
|
const sizeValue = resolveSize(size);
|
|
2113
|
-
return /* @__PURE__ */
|
|
2216
|
+
return /* @__PURE__ */ React41.createElement(
|
|
2114
2217
|
"svg",
|
|
2115
2218
|
{
|
|
2116
2219
|
width: sizeValue,
|
|
@@ -2120,7 +2223,7 @@ var init_FileCheck = __esm({
|
|
|
2120
2223
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2121
2224
|
...props
|
|
2122
2225
|
},
|
|
2123
|
-
/* @__PURE__ */
|
|
2226
|
+
/* @__PURE__ */ React41.createElement(
|
|
2124
2227
|
"path",
|
|
2125
2228
|
{
|
|
2126
2229
|
fillRule: "evenodd",
|
|
@@ -2129,7 +2232,7 @@ var init_FileCheck = __esm({
|
|
|
2129
2232
|
fill: "currentColor"
|
|
2130
2233
|
}
|
|
2131
2234
|
),
|
|
2132
|
-
/* @__PURE__ */
|
|
2235
|
+
/* @__PURE__ */ React41.createElement(
|
|
2133
2236
|
"path",
|
|
2134
2237
|
{
|
|
2135
2238
|
fillRule: "evenodd",
|
|
@@ -2138,7 +2241,7 @@ var init_FileCheck = __esm({
|
|
|
2138
2241
|
fill: "currentColor"
|
|
2139
2242
|
}
|
|
2140
2243
|
),
|
|
2141
|
-
/* @__PURE__ */
|
|
2244
|
+
/* @__PURE__ */ React41.createElement(
|
|
2142
2245
|
"path",
|
|
2143
2246
|
{
|
|
2144
2247
|
fillRule: "evenodd",
|
|
@@ -2158,7 +2261,7 @@ var FileInput_exports = {};
|
|
|
2158
2261
|
__export(FileInput_exports, {
|
|
2159
2262
|
default: () => FileInput_default
|
|
2160
2263
|
});
|
|
2161
|
-
import * as
|
|
2264
|
+
import * as React42 from "react";
|
|
2162
2265
|
var SvgFileInput, FileInput_default;
|
|
2163
2266
|
var init_FileInput = __esm({
|
|
2164
2267
|
"src/react/FileInput.tsx"() {
|
|
@@ -2166,7 +2269,7 @@ var init_FileInput = __esm({
|
|
|
2166
2269
|
init_types();
|
|
2167
2270
|
SvgFileInput = ({ size = 16, ...props }) => {
|
|
2168
2271
|
const sizeValue = resolveSize(size);
|
|
2169
|
-
return /* @__PURE__ */
|
|
2272
|
+
return /* @__PURE__ */ React42.createElement(
|
|
2170
2273
|
"svg",
|
|
2171
2274
|
{
|
|
2172
2275
|
width: sizeValue,
|
|
@@ -2176,7 +2279,7 @@ var init_FileInput = __esm({
|
|
|
2176
2279
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2177
2280
|
...props
|
|
2178
2281
|
},
|
|
2179
|
-
/* @__PURE__ */
|
|
2282
|
+
/* @__PURE__ */ React42.createElement(
|
|
2180
2283
|
"path",
|
|
2181
2284
|
{
|
|
2182
2285
|
fillRule: "evenodd",
|
|
@@ -2185,7 +2288,7 @@ var init_FileInput = __esm({
|
|
|
2185
2288
|
fill: "currentColor"
|
|
2186
2289
|
}
|
|
2187
2290
|
),
|
|
2188
|
-
/* @__PURE__ */
|
|
2291
|
+
/* @__PURE__ */ React42.createElement(
|
|
2189
2292
|
"path",
|
|
2190
2293
|
{
|
|
2191
2294
|
fillRule: "evenodd",
|
|
@@ -2194,7 +2297,7 @@ var init_FileInput = __esm({
|
|
|
2194
2297
|
fill: "currentColor"
|
|
2195
2298
|
}
|
|
2196
2299
|
),
|
|
2197
|
-
/* @__PURE__ */
|
|
2300
|
+
/* @__PURE__ */ React42.createElement(
|
|
2198
2301
|
"path",
|
|
2199
2302
|
{
|
|
2200
2303
|
fillRule: "evenodd",
|
|
@@ -2203,7 +2306,7 @@ var init_FileInput = __esm({
|
|
|
2203
2306
|
fill: "currentColor"
|
|
2204
2307
|
}
|
|
2205
2308
|
),
|
|
2206
|
-
/* @__PURE__ */
|
|
2309
|
+
/* @__PURE__ */ React42.createElement(
|
|
2207
2310
|
"path",
|
|
2208
2311
|
{
|
|
2209
2312
|
fillRule: "evenodd",
|
|
@@ -2223,7 +2326,7 @@ var FileKey_exports = {};
|
|
|
2223
2326
|
__export(FileKey_exports, {
|
|
2224
2327
|
default: () => FileKey_default
|
|
2225
2328
|
});
|
|
2226
|
-
import * as
|
|
2329
|
+
import * as React43 from "react";
|
|
2227
2330
|
var SvgFileKey, FileKey_default;
|
|
2228
2331
|
var init_FileKey = __esm({
|
|
2229
2332
|
"src/react/FileKey.tsx"() {
|
|
@@ -2231,7 +2334,7 @@ var init_FileKey = __esm({
|
|
|
2231
2334
|
init_types();
|
|
2232
2335
|
SvgFileKey = ({ size = 16, ...props }) => {
|
|
2233
2336
|
const sizeValue = resolveSize(size);
|
|
2234
|
-
return /* @__PURE__ */
|
|
2337
|
+
return /* @__PURE__ */ React43.createElement(
|
|
2235
2338
|
"svg",
|
|
2236
2339
|
{
|
|
2237
2340
|
width: sizeValue,
|
|
@@ -2241,7 +2344,7 @@ var init_FileKey = __esm({
|
|
|
2241
2344
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2242
2345
|
...props
|
|
2243
2346
|
},
|
|
2244
|
-
/* @__PURE__ */
|
|
2347
|
+
/* @__PURE__ */ React43.createElement(
|
|
2245
2348
|
"path",
|
|
2246
2349
|
{
|
|
2247
2350
|
fillRule: "evenodd",
|
|
@@ -2250,7 +2353,7 @@ var init_FileKey = __esm({
|
|
|
2250
2353
|
fill: "currentColor"
|
|
2251
2354
|
}
|
|
2252
2355
|
),
|
|
2253
|
-
/* @__PURE__ */
|
|
2356
|
+
/* @__PURE__ */ React43.createElement(
|
|
2254
2357
|
"path",
|
|
2255
2358
|
{
|
|
2256
2359
|
fillRule: "evenodd",
|
|
@@ -2259,7 +2362,7 @@ var init_FileKey = __esm({
|
|
|
2259
2362
|
fill: "currentColor"
|
|
2260
2363
|
}
|
|
2261
2364
|
),
|
|
2262
|
-
/* @__PURE__ */
|
|
2365
|
+
/* @__PURE__ */ React43.createElement(
|
|
2263
2366
|
"path",
|
|
2264
2367
|
{
|
|
2265
2368
|
fillRule: "evenodd",
|
|
@@ -2268,7 +2371,7 @@ var init_FileKey = __esm({
|
|
|
2268
2371
|
fill: "currentColor"
|
|
2269
2372
|
}
|
|
2270
2373
|
),
|
|
2271
|
-
/* @__PURE__ */
|
|
2374
|
+
/* @__PURE__ */ React43.createElement(
|
|
2272
2375
|
"path",
|
|
2273
2376
|
{
|
|
2274
2377
|
fillRule: "evenodd",
|
|
@@ -2288,7 +2391,7 @@ var FileLock_exports = {};
|
|
|
2288
2391
|
__export(FileLock_exports, {
|
|
2289
2392
|
default: () => FileLock_default
|
|
2290
2393
|
});
|
|
2291
|
-
import * as
|
|
2394
|
+
import * as React44 from "react";
|
|
2292
2395
|
var SvgFileLock, FileLock_default;
|
|
2293
2396
|
var init_FileLock = __esm({
|
|
2294
2397
|
"src/react/FileLock.tsx"() {
|
|
@@ -2296,7 +2399,7 @@ var init_FileLock = __esm({
|
|
|
2296
2399
|
init_types();
|
|
2297
2400
|
SvgFileLock = ({ size = 16, ...props }) => {
|
|
2298
2401
|
const sizeValue = resolveSize(size);
|
|
2299
|
-
return /* @__PURE__ */
|
|
2402
|
+
return /* @__PURE__ */ React44.createElement(
|
|
2300
2403
|
"svg",
|
|
2301
2404
|
{
|
|
2302
2405
|
width: sizeValue,
|
|
@@ -2306,7 +2409,7 @@ var init_FileLock = __esm({
|
|
|
2306
2409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2307
2410
|
...props
|
|
2308
2411
|
},
|
|
2309
|
-
/* @__PURE__ */
|
|
2412
|
+
/* @__PURE__ */ React44.createElement(
|
|
2310
2413
|
"path",
|
|
2311
2414
|
{
|
|
2312
2415
|
fillRule: "evenodd",
|
|
@@ -2315,7 +2418,7 @@ var init_FileLock = __esm({
|
|
|
2315
2418
|
fill: "currentColor"
|
|
2316
2419
|
}
|
|
2317
2420
|
),
|
|
2318
|
-
/* @__PURE__ */
|
|
2421
|
+
/* @__PURE__ */ React44.createElement(
|
|
2319
2422
|
"path",
|
|
2320
2423
|
{
|
|
2321
2424
|
fillRule: "evenodd",
|
|
@@ -2324,7 +2427,7 @@ var init_FileLock = __esm({
|
|
|
2324
2427
|
fill: "currentColor"
|
|
2325
2428
|
}
|
|
2326
2429
|
),
|
|
2327
|
-
/* @__PURE__ */
|
|
2430
|
+
/* @__PURE__ */ React44.createElement(
|
|
2328
2431
|
"path",
|
|
2329
2432
|
{
|
|
2330
2433
|
fillRule: "evenodd",
|
|
@@ -2344,7 +2447,7 @@ var FileSignature_exports = {};
|
|
|
2344
2447
|
__export(FileSignature_exports, {
|
|
2345
2448
|
default: () => FileSignature_default
|
|
2346
2449
|
});
|
|
2347
|
-
import * as
|
|
2450
|
+
import * as React45 from "react";
|
|
2348
2451
|
var SvgFileSignature, FileSignature_default;
|
|
2349
2452
|
var init_FileSignature = __esm({
|
|
2350
2453
|
"src/react/FileSignature.tsx"() {
|
|
@@ -2352,7 +2455,7 @@ var init_FileSignature = __esm({
|
|
|
2352
2455
|
init_types();
|
|
2353
2456
|
SvgFileSignature = ({ size = 16, ...props }) => {
|
|
2354
2457
|
const sizeValue = resolveSize(size);
|
|
2355
|
-
return /* @__PURE__ */
|
|
2458
|
+
return /* @__PURE__ */ React45.createElement(
|
|
2356
2459
|
"svg",
|
|
2357
2460
|
{
|
|
2358
2461
|
width: sizeValue,
|
|
@@ -2362,7 +2465,7 @@ var init_FileSignature = __esm({
|
|
|
2362
2465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2363
2466
|
...props
|
|
2364
2467
|
},
|
|
2365
|
-
/* @__PURE__ */
|
|
2468
|
+
/* @__PURE__ */ React45.createElement(
|
|
2366
2469
|
"path",
|
|
2367
2470
|
{
|
|
2368
2471
|
fillRule: "evenodd",
|
|
@@ -2371,7 +2474,7 @@ var init_FileSignature = __esm({
|
|
|
2371
2474
|
fill: "currentColor"
|
|
2372
2475
|
}
|
|
2373
2476
|
),
|
|
2374
|
-
/* @__PURE__ */
|
|
2477
|
+
/* @__PURE__ */ React45.createElement(
|
|
2375
2478
|
"path",
|
|
2376
2479
|
{
|
|
2377
2480
|
fillRule: "evenodd",
|
|
@@ -2380,7 +2483,7 @@ var init_FileSignature = __esm({
|
|
|
2380
2483
|
fill: "currentColor"
|
|
2381
2484
|
}
|
|
2382
2485
|
),
|
|
2383
|
-
/* @__PURE__ */
|
|
2486
|
+
/* @__PURE__ */ React45.createElement(
|
|
2384
2487
|
"path",
|
|
2385
2488
|
{
|
|
2386
2489
|
fillRule: "evenodd",
|
|
@@ -2400,7 +2503,7 @@ var FileSpreadsheet_exports = {};
|
|
|
2400
2503
|
__export(FileSpreadsheet_exports, {
|
|
2401
2504
|
default: () => FileSpreadsheet_default
|
|
2402
2505
|
});
|
|
2403
|
-
import * as
|
|
2506
|
+
import * as React46 from "react";
|
|
2404
2507
|
var SvgFileSpreadsheet, FileSpreadsheet_default;
|
|
2405
2508
|
var init_FileSpreadsheet = __esm({
|
|
2406
2509
|
"src/react/FileSpreadsheet.tsx"() {
|
|
@@ -2408,7 +2511,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2408
2511
|
init_types();
|
|
2409
2512
|
SvgFileSpreadsheet = ({ size = 16, ...props }) => {
|
|
2410
2513
|
const sizeValue = resolveSize(size);
|
|
2411
|
-
return /* @__PURE__ */
|
|
2514
|
+
return /* @__PURE__ */ React46.createElement(
|
|
2412
2515
|
"svg",
|
|
2413
2516
|
{
|
|
2414
2517
|
width: sizeValue,
|
|
@@ -2418,7 +2521,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2418
2521
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2419
2522
|
...props
|
|
2420
2523
|
},
|
|
2421
|
-
/* @__PURE__ */
|
|
2524
|
+
/* @__PURE__ */ React46.createElement(
|
|
2422
2525
|
"path",
|
|
2423
2526
|
{
|
|
2424
2527
|
fillRule: "evenodd",
|
|
@@ -2427,7 +2530,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2427
2530
|
fill: "currentColor"
|
|
2428
2531
|
}
|
|
2429
2532
|
),
|
|
2430
|
-
/* @__PURE__ */
|
|
2533
|
+
/* @__PURE__ */ React46.createElement(
|
|
2431
2534
|
"path",
|
|
2432
2535
|
{
|
|
2433
2536
|
fillRule: "evenodd",
|
|
@@ -2436,7 +2539,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2436
2539
|
fill: "currentColor"
|
|
2437
2540
|
}
|
|
2438
2541
|
),
|
|
2439
|
-
/* @__PURE__ */
|
|
2542
|
+
/* @__PURE__ */ React46.createElement(
|
|
2440
2543
|
"path",
|
|
2441
2544
|
{
|
|
2442
2545
|
fillRule: "evenodd",
|
|
@@ -2445,7 +2548,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2445
2548
|
fill: "currentColor"
|
|
2446
2549
|
}
|
|
2447
2550
|
),
|
|
2448
|
-
/* @__PURE__ */
|
|
2551
|
+
/* @__PURE__ */ React46.createElement(
|
|
2449
2552
|
"path",
|
|
2450
2553
|
{
|
|
2451
2554
|
fillRule: "evenodd",
|
|
@@ -2454,7 +2557,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2454
2557
|
fill: "currentColor"
|
|
2455
2558
|
}
|
|
2456
2559
|
),
|
|
2457
|
-
/* @__PURE__ */
|
|
2560
|
+
/* @__PURE__ */ React46.createElement(
|
|
2458
2561
|
"path",
|
|
2459
2562
|
{
|
|
2460
2563
|
fillRule: "evenodd",
|
|
@@ -2463,7 +2566,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
2463
2566
|
fill: "currentColor"
|
|
2464
2567
|
}
|
|
2465
2568
|
),
|
|
2466
|
-
/* @__PURE__ */
|
|
2569
|
+
/* @__PURE__ */ React46.createElement(
|
|
2467
2570
|
"path",
|
|
2468
2571
|
{
|
|
2469
2572
|
fillRule: "evenodd",
|
|
@@ -2483,7 +2586,7 @@ var FileText_exports = {};
|
|
|
2483
2586
|
__export(FileText_exports, {
|
|
2484
2587
|
default: () => FileText_default
|
|
2485
2588
|
});
|
|
2486
|
-
import * as
|
|
2589
|
+
import * as React47 from "react";
|
|
2487
2590
|
var SvgFileText, FileText_default;
|
|
2488
2591
|
var init_FileText = __esm({
|
|
2489
2592
|
"src/react/FileText.tsx"() {
|
|
@@ -2491,7 +2594,7 @@ var init_FileText = __esm({
|
|
|
2491
2594
|
init_types();
|
|
2492
2595
|
SvgFileText = ({ size = 16, ...props }) => {
|
|
2493
2596
|
const sizeValue = resolveSize(size);
|
|
2494
|
-
return /* @__PURE__ */
|
|
2597
|
+
return /* @__PURE__ */ React47.createElement(
|
|
2495
2598
|
"svg",
|
|
2496
2599
|
{
|
|
2497
2600
|
width: sizeValue,
|
|
@@ -2501,7 +2604,7 @@ var init_FileText = __esm({
|
|
|
2501
2604
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2502
2605
|
...props
|
|
2503
2606
|
},
|
|
2504
|
-
/* @__PURE__ */
|
|
2607
|
+
/* @__PURE__ */ React47.createElement(
|
|
2505
2608
|
"path",
|
|
2506
2609
|
{
|
|
2507
2610
|
fillRule: "evenodd",
|
|
@@ -2510,7 +2613,7 @@ var init_FileText = __esm({
|
|
|
2510
2613
|
fill: "currentColor"
|
|
2511
2614
|
}
|
|
2512
2615
|
),
|
|
2513
|
-
/* @__PURE__ */
|
|
2616
|
+
/* @__PURE__ */ React47.createElement(
|
|
2514
2617
|
"path",
|
|
2515
2618
|
{
|
|
2516
2619
|
fillRule: "evenodd",
|
|
@@ -2519,7 +2622,7 @@ var init_FileText = __esm({
|
|
|
2519
2622
|
fill: "currentColor"
|
|
2520
2623
|
}
|
|
2521
2624
|
),
|
|
2522
|
-
/* @__PURE__ */
|
|
2625
|
+
/* @__PURE__ */ React47.createElement(
|
|
2523
2626
|
"path",
|
|
2524
2627
|
{
|
|
2525
2628
|
fillRule: "evenodd",
|
|
@@ -2528,7 +2631,7 @@ var init_FileText = __esm({
|
|
|
2528
2631
|
fill: "currentColor"
|
|
2529
2632
|
}
|
|
2530
2633
|
),
|
|
2531
|
-
/* @__PURE__ */
|
|
2634
|
+
/* @__PURE__ */ React47.createElement(
|
|
2532
2635
|
"path",
|
|
2533
2636
|
{
|
|
2534
2637
|
fillRule: "evenodd",
|
|
@@ -2537,7 +2640,7 @@ var init_FileText = __esm({
|
|
|
2537
2640
|
fill: "currentColor"
|
|
2538
2641
|
}
|
|
2539
2642
|
),
|
|
2540
|
-
/* @__PURE__ */
|
|
2643
|
+
/* @__PURE__ */ React47.createElement(
|
|
2541
2644
|
"path",
|
|
2542
2645
|
{
|
|
2543
2646
|
fillRule: "evenodd",
|
|
@@ -2557,7 +2660,7 @@ var Filter_exports = {};
|
|
|
2557
2660
|
__export(Filter_exports, {
|
|
2558
2661
|
default: () => Filter_default
|
|
2559
2662
|
});
|
|
2560
|
-
import * as
|
|
2663
|
+
import * as React48 from "react";
|
|
2561
2664
|
var SvgFilter, Filter_default;
|
|
2562
2665
|
var init_Filter = __esm({
|
|
2563
2666
|
"src/react/Filter.tsx"() {
|
|
@@ -2565,7 +2668,7 @@ var init_Filter = __esm({
|
|
|
2565
2668
|
init_types();
|
|
2566
2669
|
SvgFilter = ({ size = 16, ...props }) => {
|
|
2567
2670
|
const sizeValue = resolveSize(size);
|
|
2568
|
-
return /* @__PURE__ */
|
|
2671
|
+
return /* @__PURE__ */ React48.createElement(
|
|
2569
2672
|
"svg",
|
|
2570
2673
|
{
|
|
2571
2674
|
width: sizeValue,
|
|
@@ -2575,7 +2678,7 @@ var init_Filter = __esm({
|
|
|
2575
2678
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2576
2679
|
...props
|
|
2577
2680
|
},
|
|
2578
|
-
/* @__PURE__ */
|
|
2681
|
+
/* @__PURE__ */ React48.createElement(
|
|
2579
2682
|
"path",
|
|
2580
2683
|
{
|
|
2581
2684
|
fillRule: "evenodd",
|
|
@@ -2584,7 +2687,7 @@ var init_Filter = __esm({
|
|
|
2584
2687
|
fill: "currentColor"
|
|
2585
2688
|
}
|
|
2586
2689
|
),
|
|
2587
|
-
/* @__PURE__ */
|
|
2690
|
+
/* @__PURE__ */ React48.createElement(
|
|
2588
2691
|
"path",
|
|
2589
2692
|
{
|
|
2590
2693
|
fillRule: "evenodd",
|
|
@@ -2593,7 +2696,7 @@ var init_Filter = __esm({
|
|
|
2593
2696
|
fill: "currentColor"
|
|
2594
2697
|
}
|
|
2595
2698
|
),
|
|
2596
|
-
/* @__PURE__ */
|
|
2699
|
+
/* @__PURE__ */ React48.createElement(
|
|
2597
2700
|
"path",
|
|
2598
2701
|
{
|
|
2599
2702
|
fillRule: "evenodd",
|
|
@@ -2602,7 +2705,7 @@ var init_Filter = __esm({
|
|
|
2602
2705
|
fill: "currentColor"
|
|
2603
2706
|
}
|
|
2604
2707
|
),
|
|
2605
|
-
/* @__PURE__ */
|
|
2708
|
+
/* @__PURE__ */ React48.createElement(
|
|
2606
2709
|
"path",
|
|
2607
2710
|
{
|
|
2608
2711
|
fillRule: "evenodd",
|
|
@@ -2622,7 +2725,7 @@ var FingerprintAndroid_exports = {};
|
|
|
2622
2725
|
__export(FingerprintAndroid_exports, {
|
|
2623
2726
|
default: () => FingerprintAndroid_default
|
|
2624
2727
|
});
|
|
2625
|
-
import * as
|
|
2728
|
+
import * as React49 from "react";
|
|
2626
2729
|
var SvgFingerprintAndroid, FingerprintAndroid_default;
|
|
2627
2730
|
var init_FingerprintAndroid = __esm({
|
|
2628
2731
|
"src/react/FingerprintAndroid.tsx"() {
|
|
@@ -2630,7 +2733,7 @@ var init_FingerprintAndroid = __esm({
|
|
|
2630
2733
|
init_types();
|
|
2631
2734
|
SvgFingerprintAndroid = ({ size = 16, ...props }) => {
|
|
2632
2735
|
const sizeValue = resolveSize(size);
|
|
2633
|
-
return /* @__PURE__ */
|
|
2736
|
+
return /* @__PURE__ */ React49.createElement(
|
|
2634
2737
|
"svg",
|
|
2635
2738
|
{
|
|
2636
2739
|
width: sizeValue,
|
|
@@ -2640,7 +2743,7 @@ var init_FingerprintAndroid = __esm({
|
|
|
2640
2743
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2641
2744
|
...props
|
|
2642
2745
|
},
|
|
2643
|
-
/* @__PURE__ */
|
|
2746
|
+
/* @__PURE__ */ React49.createElement(
|
|
2644
2747
|
"path",
|
|
2645
2748
|
{
|
|
2646
2749
|
d: "M18.3069 4.55233C18.2243 4.55233 18.1416 4.53167 18.0693 4.49033C16.0853 3.46733 14.3699 3.03333 12.3136 3.03333C10.2676 3.03333 8.32493 3.519 6.55793 4.49033C6.30993 4.62467 5.99993 4.53167 5.85526 4.28367C5.72093 4.03567 5.81393 3.71533 6.06193 3.581C7.98393 2.53733 10.0919 2 12.3136 2C14.5146 2 16.4366 2.48567 18.5446 3.57067C18.8029 3.705 18.8959 4.015 18.7616 4.263C18.6686 4.449 18.4929 4.55233 18.3069 4.55233ZM3.51993 9.97733C3.4166 9.97733 3.31326 9.94633 3.22026 9.88433C2.9826 9.719 2.93093 9.39867 3.09626 9.161C4.11926 7.71433 5.42126 6.57767 6.97126 5.782C10.2159 4.108 14.3699 4.09767 17.6249 5.77167C19.1749 6.56733 20.4769 7.69367 21.4999 9.13C21.6653 9.35733 21.6136 9.688 21.3759 9.85333C21.1383 10.0187 20.8179 9.967 20.6526 9.72933C19.7226 8.42733 18.5446 7.40433 17.1496 6.69133C14.1839 5.17233 10.3916 5.17233 7.43626 6.70167C6.03093 7.425 4.85293 8.45833 3.92293 9.76033C3.84026 9.905 3.68526 9.97733 3.51993 9.97733ZM9.97826 22.4497C9.84393 22.4497 9.7096 22.398 9.6166 22.2947C8.7176 21.3957 8.23193 20.817 7.5396 19.5667C6.8266 18.2957 6.4546 16.7457 6.4546 15.082C6.4546 12.013 9.07926 9.51233 12.3033 9.51233C15.5273 9.51233 18.1519 12.013 18.1519 15.082C18.1519 15.3713 17.9246 15.5987 17.6353 15.5987C17.3459 15.5987 17.1186 15.3713 17.1186 15.082C17.1186 12.5813 14.9589 10.5457 12.3033 10.5457C9.6476 10.5457 7.48793 12.5813 7.48793 15.082C7.48793 16.57 7.8186 17.9443 8.44893 19.0603C9.11027 20.2487 9.56493 20.755 10.3606 21.561C10.5569 21.7677 10.5569 22.088 10.3606 22.2947C10.2469 22.398 10.1126 22.4497 9.97826 22.4497ZM17.3873 20.538C16.1576 20.538 15.0726 20.228 14.1839 19.6183C12.6443 18.5747 11.7246 16.88 11.7246 15.082C11.7246 14.7927 11.9519 14.5653 12.2413 14.5653C12.5306 14.5653 12.7579 14.7927 12.7579 15.082C12.7579 16.539 13.5019 17.9133 14.7626 18.7607C15.4963 19.2567 16.3539 19.4943 17.3873 19.4943C17.6353 19.4943 18.0486 19.4633 18.4619 19.391C18.7409 19.3393 19.0096 19.5253 19.0613 19.8147C19.1129 20.0937 18.9269 20.3623 18.6376 20.414C18.0486 20.5277 17.5319 20.538 17.3873 20.538ZM15.3103 22.6667C15.2689 22.6667 15.2173 22.6563 15.1759 22.646C13.5329 22.1913 12.4583 21.5817 11.3319 20.476C9.88526 19.0397 9.0896 17.128 9.0896 15.082C9.0896 13.408 10.5156 12.044 12.2723 12.044C14.0289 12.044 15.4549 13.408 15.4549 15.082C15.4549 16.1877 16.4159 17.0867 17.6043 17.0867C18.7926 17.0867 19.7536 16.1877 19.7536 15.082C19.7536 11.1863 16.3953 8.02433 12.2619 8.02433C9.32726 8.02433 6.6406 9.657 5.4316 12.1887C5.0286 13.0257 4.82193 14.0073 4.82193 15.082C4.82193 15.888 4.89426 17.159 5.51426 18.8123C5.6176 19.081 5.48326 19.3807 5.2146 19.4737C4.94593 19.577 4.64626 19.4323 4.55326 19.174C4.04693 17.8203 3.79893 16.477 3.79893 15.082C3.79893 13.842 4.0366 12.7157 4.5016 11.734C5.87593 8.851 8.92426 6.98067 12.2619 6.98067C16.9636 6.98067 20.7869 10.6077 20.7869 15.0717C20.7869 16.7457 19.3609 18.1097 17.6043 18.1097C15.8476 18.1097 14.4216 16.7457 14.4216 15.0717C14.4216 13.966 13.4606 13.067 12.2723 13.067C11.0839 13.067 10.1229 13.966 10.1229 15.0717C10.1229 16.8387 10.8049 18.492 12.0553 19.732C13.0369 20.7033 13.9773 21.2407 15.4343 21.6437C15.7133 21.716 15.8683 22.0053 15.7959 22.274C15.7443 22.5117 15.5273 22.6667 15.3103 22.6667Z",
|
|
@@ -2658,7 +2761,7 @@ var Garden_exports = {};
|
|
|
2658
2761
|
__export(Garden_exports, {
|
|
2659
2762
|
default: () => Garden_default
|
|
2660
2763
|
});
|
|
2661
|
-
import * as
|
|
2764
|
+
import * as React50 from "react";
|
|
2662
2765
|
var SvgGarden, Garden_default;
|
|
2663
2766
|
var init_Garden = __esm({
|
|
2664
2767
|
"src/react/Garden.tsx"() {
|
|
@@ -2666,7 +2769,7 @@ var init_Garden = __esm({
|
|
|
2666
2769
|
init_types();
|
|
2667
2770
|
SvgGarden = ({ size = 16, ...props }) => {
|
|
2668
2771
|
const sizeValue = resolveSize(size);
|
|
2669
|
-
return /* @__PURE__ */
|
|
2772
|
+
return /* @__PURE__ */ React50.createElement(
|
|
2670
2773
|
"svg",
|
|
2671
2774
|
{
|
|
2672
2775
|
width: sizeValue,
|
|
@@ -2676,7 +2779,7 @@ var init_Garden = __esm({
|
|
|
2676
2779
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2677
2780
|
...props
|
|
2678
2781
|
},
|
|
2679
|
-
/* @__PURE__ */
|
|
2782
|
+
/* @__PURE__ */ React50.createElement(
|
|
2680
2783
|
"path",
|
|
2681
2784
|
{
|
|
2682
2785
|
fillRule: "evenodd",
|
|
@@ -2685,7 +2788,7 @@ var init_Garden = __esm({
|
|
|
2685
2788
|
fill: "currentColor"
|
|
2686
2789
|
}
|
|
2687
2790
|
),
|
|
2688
|
-
/* @__PURE__ */
|
|
2791
|
+
/* @__PURE__ */ React50.createElement(
|
|
2689
2792
|
"path",
|
|
2690
2793
|
{
|
|
2691
2794
|
fillRule: "evenodd",
|
|
@@ -2694,7 +2797,7 @@ var init_Garden = __esm({
|
|
|
2694
2797
|
fill: "currentColor"
|
|
2695
2798
|
}
|
|
2696
2799
|
),
|
|
2697
|
-
/* @__PURE__ */
|
|
2800
|
+
/* @__PURE__ */ React50.createElement(
|
|
2698
2801
|
"path",
|
|
2699
2802
|
{
|
|
2700
2803
|
fillRule: "evenodd",
|
|
@@ -2703,7 +2806,7 @@ var init_Garden = __esm({
|
|
|
2703
2806
|
fill: "currentColor"
|
|
2704
2807
|
}
|
|
2705
2808
|
),
|
|
2706
|
-
/* @__PURE__ */
|
|
2809
|
+
/* @__PURE__ */ React50.createElement(
|
|
2707
2810
|
"path",
|
|
2708
2811
|
{
|
|
2709
2812
|
fillRule: "evenodd",
|
|
@@ -2723,7 +2826,7 @@ var GasHeating_exports = {};
|
|
|
2723
2826
|
__export(GasHeating_exports, {
|
|
2724
2827
|
default: () => GasHeating_default
|
|
2725
2828
|
});
|
|
2726
|
-
import * as
|
|
2829
|
+
import * as React51 from "react";
|
|
2727
2830
|
var SvgGasHeating, GasHeating_default;
|
|
2728
2831
|
var init_GasHeating = __esm({
|
|
2729
2832
|
"src/react/GasHeating.tsx"() {
|
|
@@ -2731,7 +2834,7 @@ var init_GasHeating = __esm({
|
|
|
2731
2834
|
init_types();
|
|
2732
2835
|
SvgGasHeating = ({ size = 16, ...props }) => {
|
|
2733
2836
|
const sizeValue = resolveSize(size);
|
|
2734
|
-
return /* @__PURE__ */
|
|
2837
|
+
return /* @__PURE__ */ React51.createElement(
|
|
2735
2838
|
"svg",
|
|
2736
2839
|
{
|
|
2737
2840
|
width: sizeValue,
|
|
@@ -2741,7 +2844,7 @@ var init_GasHeating = __esm({
|
|
|
2741
2844
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2742
2845
|
...props
|
|
2743
2846
|
},
|
|
2744
|
-
/* @__PURE__ */
|
|
2847
|
+
/* @__PURE__ */ React51.createElement(
|
|
2745
2848
|
"path",
|
|
2746
2849
|
{
|
|
2747
2850
|
fillRule: "evenodd",
|
|
@@ -2750,7 +2853,7 @@ var init_GasHeating = __esm({
|
|
|
2750
2853
|
fill: "currentColor"
|
|
2751
2854
|
}
|
|
2752
2855
|
),
|
|
2753
|
-
/* @__PURE__ */
|
|
2856
|
+
/* @__PURE__ */ React51.createElement(
|
|
2754
2857
|
"path",
|
|
2755
2858
|
{
|
|
2756
2859
|
fillRule: "evenodd",
|
|
@@ -2759,7 +2862,7 @@ var init_GasHeating = __esm({
|
|
|
2759
2862
|
fill: "currentColor"
|
|
2760
2863
|
}
|
|
2761
2864
|
),
|
|
2762
|
-
/* @__PURE__ */
|
|
2865
|
+
/* @__PURE__ */ React51.createElement(
|
|
2763
2866
|
"path",
|
|
2764
2867
|
{
|
|
2765
2868
|
fillRule: "evenodd",
|
|
@@ -2768,7 +2871,7 @@ var init_GasHeating = __esm({
|
|
|
2768
2871
|
fill: "currentColor"
|
|
2769
2872
|
}
|
|
2770
2873
|
),
|
|
2771
|
-
/* @__PURE__ */
|
|
2874
|
+
/* @__PURE__ */ React51.createElement(
|
|
2772
2875
|
"path",
|
|
2773
2876
|
{
|
|
2774
2877
|
fillRule: "evenodd",
|
|
@@ -2777,7 +2880,7 @@ var init_GasHeating = __esm({
|
|
|
2777
2880
|
fill: "currentColor"
|
|
2778
2881
|
}
|
|
2779
2882
|
),
|
|
2780
|
-
/* @__PURE__ */
|
|
2883
|
+
/* @__PURE__ */ React51.createElement(
|
|
2781
2884
|
"path",
|
|
2782
2885
|
{
|
|
2783
2886
|
fillRule: "evenodd",
|
|
@@ -2786,7 +2889,7 @@ var init_GasHeating = __esm({
|
|
|
2786
2889
|
fill: "currentColor"
|
|
2787
2890
|
}
|
|
2788
2891
|
),
|
|
2789
|
-
/* @__PURE__ */
|
|
2892
|
+
/* @__PURE__ */ React51.createElement(
|
|
2790
2893
|
"path",
|
|
2791
2894
|
{
|
|
2792
2895
|
fillRule: "evenodd",
|
|
@@ -2795,7 +2898,7 @@ var init_GasHeating = __esm({
|
|
|
2795
2898
|
fill: "currentColor"
|
|
2796
2899
|
}
|
|
2797
2900
|
),
|
|
2798
|
-
/* @__PURE__ */
|
|
2901
|
+
/* @__PURE__ */ React51.createElement(
|
|
2799
2902
|
"path",
|
|
2800
2903
|
{
|
|
2801
2904
|
fillRule: "evenodd",
|
|
@@ -2815,7 +2918,7 @@ var Heating_exports = {};
|
|
|
2815
2918
|
__export(Heating_exports, {
|
|
2816
2919
|
default: () => Heating_default
|
|
2817
2920
|
});
|
|
2818
|
-
import * as
|
|
2921
|
+
import * as React52 from "react";
|
|
2819
2922
|
var SvgHeating, Heating_default;
|
|
2820
2923
|
var init_Heating = __esm({
|
|
2821
2924
|
"src/react/Heating.tsx"() {
|
|
@@ -2823,7 +2926,7 @@ var init_Heating = __esm({
|
|
|
2823
2926
|
init_types();
|
|
2824
2927
|
SvgHeating = ({ size = 16, ...props }) => {
|
|
2825
2928
|
const sizeValue = resolveSize(size);
|
|
2826
|
-
return /* @__PURE__ */
|
|
2929
|
+
return /* @__PURE__ */ React52.createElement(
|
|
2827
2930
|
"svg",
|
|
2828
2931
|
{
|
|
2829
2932
|
width: sizeValue,
|
|
@@ -2833,7 +2936,7 @@ var init_Heating = __esm({
|
|
|
2833
2936
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2834
2937
|
...props
|
|
2835
2938
|
},
|
|
2836
|
-
/* @__PURE__ */
|
|
2939
|
+
/* @__PURE__ */ React52.createElement(
|
|
2837
2940
|
"path",
|
|
2838
2941
|
{
|
|
2839
2942
|
fillRule: "evenodd",
|
|
@@ -2842,7 +2945,7 @@ var init_Heating = __esm({
|
|
|
2842
2945
|
fill: "currentColor"
|
|
2843
2946
|
}
|
|
2844
2947
|
),
|
|
2845
|
-
/* @__PURE__ */
|
|
2948
|
+
/* @__PURE__ */ React52.createElement(
|
|
2846
2949
|
"path",
|
|
2847
2950
|
{
|
|
2848
2951
|
fillRule: "evenodd",
|
|
@@ -2851,7 +2954,7 @@ var init_Heating = __esm({
|
|
|
2851
2954
|
fill: "currentColor"
|
|
2852
2955
|
}
|
|
2853
2956
|
),
|
|
2854
|
-
/* @__PURE__ */
|
|
2957
|
+
/* @__PURE__ */ React52.createElement(
|
|
2855
2958
|
"path",
|
|
2856
2959
|
{
|
|
2857
2960
|
fillRule: "evenodd",
|
|
@@ -2860,7 +2963,7 @@ var init_Heating = __esm({
|
|
|
2860
2963
|
fill: "currentColor"
|
|
2861
2964
|
}
|
|
2862
2965
|
),
|
|
2863
|
-
/* @__PURE__ */
|
|
2966
|
+
/* @__PURE__ */ React52.createElement(
|
|
2864
2967
|
"path",
|
|
2865
2968
|
{
|
|
2866
2969
|
fillRule: "evenodd",
|
|
@@ -2869,7 +2972,7 @@ var init_Heating = __esm({
|
|
|
2869
2972
|
fill: "currentColor"
|
|
2870
2973
|
}
|
|
2871
2974
|
),
|
|
2872
|
-
/* @__PURE__ */
|
|
2975
|
+
/* @__PURE__ */ React52.createElement(
|
|
2873
2976
|
"path",
|
|
2874
2977
|
{
|
|
2875
2978
|
fillRule: "evenodd",
|
|
@@ -2878,7 +2981,7 @@ var init_Heating = __esm({
|
|
|
2878
2981
|
fill: "currentColor"
|
|
2879
2982
|
}
|
|
2880
2983
|
),
|
|
2881
|
-
/* @__PURE__ */
|
|
2984
|
+
/* @__PURE__ */ React52.createElement(
|
|
2882
2985
|
"path",
|
|
2883
2986
|
{
|
|
2884
2987
|
fillRule: "evenodd",
|
|
@@ -2898,7 +3001,7 @@ var HelpCircle_exports = {};
|
|
|
2898
3001
|
__export(HelpCircle_exports, {
|
|
2899
3002
|
default: () => HelpCircle_default
|
|
2900
3003
|
});
|
|
2901
|
-
import * as
|
|
3004
|
+
import * as React53 from "react";
|
|
2902
3005
|
var SvgHelpCircle, HelpCircle_default;
|
|
2903
3006
|
var init_HelpCircle = __esm({
|
|
2904
3007
|
"src/react/HelpCircle.tsx"() {
|
|
@@ -2906,7 +3009,7 @@ var init_HelpCircle = __esm({
|
|
|
2906
3009
|
init_types();
|
|
2907
3010
|
SvgHelpCircle = ({ size = 16, ...props }) => {
|
|
2908
3011
|
const sizeValue = resolveSize(size);
|
|
2909
|
-
return /* @__PURE__ */
|
|
3012
|
+
return /* @__PURE__ */ React53.createElement(
|
|
2910
3013
|
"svg",
|
|
2911
3014
|
{
|
|
2912
3015
|
width: sizeValue,
|
|
@@ -2916,7 +3019,7 @@ var init_HelpCircle = __esm({
|
|
|
2916
3019
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2917
3020
|
...props
|
|
2918
3021
|
},
|
|
2919
|
-
/* @__PURE__ */
|
|
3022
|
+
/* @__PURE__ */ React53.createElement(
|
|
2920
3023
|
"path",
|
|
2921
3024
|
{
|
|
2922
3025
|
fillRule: "evenodd",
|
|
@@ -2925,7 +3028,7 @@ var init_HelpCircle = __esm({
|
|
|
2925
3028
|
fill: "currentColor"
|
|
2926
3029
|
}
|
|
2927
3030
|
),
|
|
2928
|
-
/* @__PURE__ */
|
|
3031
|
+
/* @__PURE__ */ React53.createElement(
|
|
2929
3032
|
"path",
|
|
2930
3033
|
{
|
|
2931
3034
|
fillRule: "evenodd",
|
|
@@ -2934,7 +3037,7 @@ var init_HelpCircle = __esm({
|
|
|
2934
3037
|
fill: "currentColor"
|
|
2935
3038
|
}
|
|
2936
3039
|
),
|
|
2937
|
-
/* @__PURE__ */
|
|
3040
|
+
/* @__PURE__ */ React53.createElement(
|
|
2938
3041
|
"path",
|
|
2939
3042
|
{
|
|
2940
3043
|
fillRule: "evenodd",
|
|
@@ -2954,7 +3057,7 @@ var HomeFilled_exports = {};
|
|
|
2954
3057
|
__export(HomeFilled_exports, {
|
|
2955
3058
|
default: () => HomeFilled_default
|
|
2956
3059
|
});
|
|
2957
|
-
import * as
|
|
3060
|
+
import * as React54 from "react";
|
|
2958
3061
|
var SvgHomeFilled, HomeFilled_default;
|
|
2959
3062
|
var init_HomeFilled = __esm({
|
|
2960
3063
|
"src/react/HomeFilled.tsx"() {
|
|
@@ -2962,7 +3065,7 @@ var init_HomeFilled = __esm({
|
|
|
2962
3065
|
init_types();
|
|
2963
3066
|
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
2964
3067
|
const sizeValue = resolveSize(size);
|
|
2965
|
-
return /* @__PURE__ */
|
|
3068
|
+
return /* @__PURE__ */ React54.createElement(
|
|
2966
3069
|
"svg",
|
|
2967
3070
|
{
|
|
2968
3071
|
width: sizeValue,
|
|
@@ -2972,7 +3075,7 @@ var init_HomeFilled = __esm({
|
|
|
2972
3075
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2973
3076
|
...props
|
|
2974
3077
|
},
|
|
2975
|
-
/* @__PURE__ */
|
|
3078
|
+
/* @__PURE__ */ React54.createElement(
|
|
2976
3079
|
"path",
|
|
2977
3080
|
{
|
|
2978
3081
|
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",
|
|
@@ -2990,7 +3093,7 @@ var HomeLinear_exports = {};
|
|
|
2990
3093
|
__export(HomeLinear_exports, {
|
|
2991
3094
|
default: () => HomeLinear_default
|
|
2992
3095
|
});
|
|
2993
|
-
import * as
|
|
3096
|
+
import * as React55 from "react";
|
|
2994
3097
|
var SvgHomeLinear, HomeLinear_default;
|
|
2995
3098
|
var init_HomeLinear = __esm({
|
|
2996
3099
|
"src/react/HomeLinear.tsx"() {
|
|
@@ -2998,7 +3101,7 @@ var init_HomeLinear = __esm({
|
|
|
2998
3101
|
init_types();
|
|
2999
3102
|
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
3000
3103
|
const sizeValue = resolveSize(size);
|
|
3001
|
-
return /* @__PURE__ */
|
|
3104
|
+
return /* @__PURE__ */ React55.createElement(
|
|
3002
3105
|
"svg",
|
|
3003
3106
|
{
|
|
3004
3107
|
width: sizeValue,
|
|
@@ -3008,7 +3111,7 @@ var init_HomeLinear = __esm({
|
|
|
3008
3111
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3009
3112
|
...props
|
|
3010
3113
|
},
|
|
3011
|
-
/* @__PURE__ */
|
|
3114
|
+
/* @__PURE__ */ React55.createElement(
|
|
3012
3115
|
"path",
|
|
3013
3116
|
{
|
|
3014
3117
|
fillRule: "evenodd",
|
|
@@ -3028,7 +3131,7 @@ var IconSlot_exports = {};
|
|
|
3028
3131
|
__export(IconSlot_exports, {
|
|
3029
3132
|
default: () => IconSlot_default
|
|
3030
3133
|
});
|
|
3031
|
-
import * as
|
|
3134
|
+
import * as React56 from "react";
|
|
3032
3135
|
var SvgIconSlot, IconSlot_default;
|
|
3033
3136
|
var init_IconSlot = __esm({
|
|
3034
3137
|
"src/react/IconSlot.tsx"() {
|
|
@@ -3036,7 +3139,7 @@ var init_IconSlot = __esm({
|
|
|
3036
3139
|
init_types();
|
|
3037
3140
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
3038
3141
|
const sizeValue = resolveSize(size);
|
|
3039
|
-
return /* @__PURE__ */
|
|
3142
|
+
return /* @__PURE__ */ React56.createElement(
|
|
3040
3143
|
"svg",
|
|
3041
3144
|
{
|
|
3042
3145
|
width: sizeValue,
|
|
@@ -3046,33 +3149,89 @@ var init_IconSlot = __esm({
|
|
|
3046
3149
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3047
3150
|
...props
|
|
3048
3151
|
},
|
|
3049
|
-
/* @__PURE__ */
|
|
3152
|
+
/* @__PURE__ */ React56.createElement(
|
|
3153
|
+
"path",
|
|
3154
|
+
{
|
|
3155
|
+
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",
|
|
3156
|
+
fill: "currentColor"
|
|
3157
|
+
}
|
|
3158
|
+
)
|
|
3159
|
+
);
|
|
3160
|
+
};
|
|
3161
|
+
IconSlot_default = SvgIconSlot;
|
|
3162
|
+
}
|
|
3163
|
+
});
|
|
3164
|
+
|
|
3165
|
+
// src/react/Image.tsx
|
|
3166
|
+
var Image_exports = {};
|
|
3167
|
+
__export(Image_exports, {
|
|
3168
|
+
default: () => Image_default
|
|
3169
|
+
});
|
|
3170
|
+
import * as React57 from "react";
|
|
3171
|
+
var SvgImage, Image_default;
|
|
3172
|
+
var init_Image = __esm({
|
|
3173
|
+
"src/react/Image.tsx"() {
|
|
3174
|
+
"use strict";
|
|
3175
|
+
init_types();
|
|
3176
|
+
SvgImage = ({ size = 16, ...props }) => {
|
|
3177
|
+
const sizeValue = resolveSize(size);
|
|
3178
|
+
return /* @__PURE__ */ React57.createElement(
|
|
3179
|
+
"svg",
|
|
3180
|
+
{
|
|
3181
|
+
width: sizeValue,
|
|
3182
|
+
height: sizeValue,
|
|
3183
|
+
viewBox: "0 0 24 24",
|
|
3184
|
+
fill: "none",
|
|
3185
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3186
|
+
...props
|
|
3187
|
+
},
|
|
3188
|
+
/* @__PURE__ */ React57.createElement(
|
|
3189
|
+
"path",
|
|
3190
|
+
{
|
|
3191
|
+
fillRule: "evenodd",
|
|
3192
|
+
clipRule: "evenodd",
|
|
3193
|
+
d: "M5 4C4.44772 4 4 4.44772 4 5V19C4 19.5523 4.44772 20 5 20H19C19.5523 20 20 19.5523 20 19V5C20 4.44772 19.5523 4 19 4H5ZM2 5C2 3.34315 3.34315 2 5 2H19C20.6569 2 22 3.34315 22 5V19C22 20.6569 20.6569 22 19 22H5C3.34315 22 2 20.6569 2 19V5Z",
|
|
3194
|
+
fill: "currentColor"
|
|
3195
|
+
}
|
|
3196
|
+
),
|
|
3197
|
+
/* @__PURE__ */ React57.createElement(
|
|
3050
3198
|
"path",
|
|
3051
3199
|
{
|
|
3052
|
-
|
|
3200
|
+
fillRule: "evenodd",
|
|
3201
|
+
clipRule: "evenodd",
|
|
3202
|
+
d: "M9 8C8.44772 8 8 8.44772 8 9C8 9.55228 8.44772 10 9 10C9.55228 10 10 9.55228 10 9C10 8.44772 9.55228 8 9 8ZM6 9C6 7.34315 7.34315 6 9 6C10.6569 6 12 7.34315 12 9C12 10.6569 10.6569 12 9 12C7.34315 12 6 10.6569 6 9Z",
|
|
3203
|
+
fill: "currentColor"
|
|
3204
|
+
}
|
|
3205
|
+
),
|
|
3206
|
+
/* @__PURE__ */ React57.createElement(
|
|
3207
|
+
"path",
|
|
3208
|
+
{
|
|
3209
|
+
fillRule: "evenodd",
|
|
3210
|
+
clipRule: "evenodd",
|
|
3211
|
+
d: "M14.379 11.2068C14.9416 10.6444 15.7045 10.3284 16.5 10.3284C17.2955 10.3284 18.0584 10.6444 18.621 11.2068L21.7071 14.2929C22.0976 14.6834 22.0976 15.3166 21.7071 15.7071C21.3166 16.0976 20.6834 16.0976 20.2929 15.7071L17.207 12.6212C17.207 12.6212 17.207 12.6212 17.207 12.6212C17.0195 12.4338 16.7651 12.3284 16.5 12.3284C16.2349 12.3284 15.9806 12.4337 15.7931 12.6211C15.7931 12.6211 15.7931 12.6211 15.7931 12.6211L6.70711 21.7071C6.31658 22.0976 5.68342 22.0976 5.29289 21.7071C4.90237 21.3166 4.90237 20.6834 5.29289 20.2929L14.379 11.2068Z",
|
|
3053
3212
|
fill: "currentColor"
|
|
3054
3213
|
}
|
|
3055
3214
|
)
|
|
3056
3215
|
);
|
|
3057
3216
|
};
|
|
3058
|
-
|
|
3217
|
+
Image_default = SvgImage;
|
|
3059
3218
|
}
|
|
3060
3219
|
});
|
|
3061
3220
|
|
|
3062
|
-
// src/react/
|
|
3063
|
-
var
|
|
3064
|
-
__export(
|
|
3065
|
-
default: () =>
|
|
3221
|
+
// src/react/ImageOff.tsx
|
|
3222
|
+
var ImageOff_exports = {};
|
|
3223
|
+
__export(ImageOff_exports, {
|
|
3224
|
+
default: () => ImageOff_default
|
|
3066
3225
|
});
|
|
3067
|
-
import * as
|
|
3068
|
-
var
|
|
3069
|
-
var
|
|
3070
|
-
"src/react/
|
|
3226
|
+
import * as React58 from "react";
|
|
3227
|
+
var SvgImageOff, ImageOff_default;
|
|
3228
|
+
var init_ImageOff = __esm({
|
|
3229
|
+
"src/react/ImageOff.tsx"() {
|
|
3071
3230
|
"use strict";
|
|
3072
3231
|
init_types();
|
|
3073
|
-
|
|
3232
|
+
SvgImageOff = ({ size = 16, ...props }) => {
|
|
3074
3233
|
const sizeValue = resolveSize(size);
|
|
3075
|
-
return /* @__PURE__ */
|
|
3234
|
+
return /* @__PURE__ */ React58.createElement(
|
|
3076
3235
|
"svg",
|
|
3077
3236
|
{
|
|
3078
3237
|
width: sizeValue,
|
|
@@ -3082,36 +3241,63 @@ var init_Image = __esm({
|
|
|
3082
3241
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3083
3242
|
...props
|
|
3084
3243
|
},
|
|
3085
|
-
/* @__PURE__ */
|
|
3244
|
+
/* @__PURE__ */ React58.createElement(
|
|
3086
3245
|
"path",
|
|
3087
3246
|
{
|
|
3088
3247
|
fillRule: "evenodd",
|
|
3089
3248
|
clipRule: "evenodd",
|
|
3090
|
-
d: "
|
|
3249
|
+
d: "M1.29289 1.29289C1.68342 0.902369 2.31658 0.902369 2.70711 1.29289L22.7071 21.2929C23.0976 21.6834 23.0976 22.3166 22.7071 22.7071C22.3166 23.0976 21.6834 23.0976 21.2929 22.7071L1.29289 2.70711C0.902369 2.31658 0.902369 1.68342 1.29289 1.29289Z",
|
|
3091
3250
|
fill: "currentColor"
|
|
3092
3251
|
}
|
|
3093
3252
|
),
|
|
3094
|
-
/* @__PURE__ */
|
|
3253
|
+
/* @__PURE__ */ React58.createElement(
|
|
3095
3254
|
"path",
|
|
3096
3255
|
{
|
|
3097
3256
|
fillRule: "evenodd",
|
|
3098
3257
|
clipRule: "evenodd",
|
|
3099
|
-
d: "
|
|
3258
|
+
d: "M8.28711 6.87289C8.67763 7.26342 8.67763 7.89658 8.28711 8.28711C8.19415 8.38007 8.1204 8.49043 8.07009 8.61189C8.01978 8.73335 7.99389 8.86353 7.99389 8.995C7.99389 9.12647 8.01978 9.25665 8.07009 9.37811C8.1204 9.49957 8.19415 9.60993 8.28711 9.70289C8.38007 9.79586 8.49043 9.8696 8.61189 9.91991C8.73335 9.97022 8.86353 9.99611 8.995 9.99611C9.12647 9.99611 9.25665 9.97022 9.37811 9.91991C9.49957 9.8696 9.60993 9.79586 9.70289 9.70289C10.0934 9.31237 10.7266 9.31237 11.1171 9.70289C11.5076 10.0934 11.5076 10.7266 11.1171 11.1171C10.8384 11.3958 10.5076 11.6168 10.1435 11.7677C9.77936 11.9185 9.38911 11.9961 8.995 11.9961C8.60089 11.9961 8.21064 11.9185 7.84652 11.7677C7.48241 11.6168 7.15157 11.3958 6.87289 11.1171C6.59421 10.8384 6.37315 10.5076 6.22233 10.1435C6.07151 9.77936 5.99389 9.38911 5.99389 8.995C5.99389 8.60089 6.07151 8.21064 6.22233 7.84652C6.37315 7.48241 6.59421 7.15157 6.87289 6.87289C7.26342 6.48237 7.89658 6.48237 8.28711 6.87289Z",
|
|
3100
3259
|
fill: "currentColor"
|
|
3101
3260
|
}
|
|
3102
3261
|
),
|
|
3103
|
-
/* @__PURE__ */
|
|
3262
|
+
/* @__PURE__ */ React58.createElement(
|
|
3104
3263
|
"path",
|
|
3105
3264
|
{
|
|
3106
3265
|
fillRule: "evenodd",
|
|
3107
3266
|
clipRule: "evenodd",
|
|
3108
|
-
d: "M14.
|
|
3267
|
+
d: "M14.2071 12.7929C14.5976 13.1834 14.5976 13.8166 14.2071 14.2071L6.70711 21.7071C6.31658 22.0976 5.68342 22.0976 5.29289 21.7071C4.90237 21.3166 4.90237 20.6834 5.29289 20.2929L12.7929 12.7929C13.1834 12.4024 13.8166 12.4024 14.2071 12.7929Z",
|
|
3268
|
+
fill: "currentColor"
|
|
3269
|
+
}
|
|
3270
|
+
),
|
|
3271
|
+
/* @__PURE__ */ React58.createElement(
|
|
3272
|
+
"path",
|
|
3273
|
+
{
|
|
3274
|
+
fillRule: "evenodd",
|
|
3275
|
+
clipRule: "evenodd",
|
|
3276
|
+
d: "M17.2929 11.2929C17.6834 10.9024 18.3166 10.9024 18.7071 11.2929L21.7071 14.2929C22.0976 14.6834 22.0976 15.3166 21.7071 15.7071C21.3166 16.0976 20.6834 16.0976 20.2929 15.7071L17.2929 12.7071C16.9024 12.3166 16.9024 11.6834 17.2929 11.2929Z",
|
|
3277
|
+
fill: "currentColor"
|
|
3278
|
+
}
|
|
3279
|
+
),
|
|
3280
|
+
/* @__PURE__ */ React58.createElement(
|
|
3281
|
+
"path",
|
|
3282
|
+
{
|
|
3283
|
+
fillRule: "evenodd",
|
|
3284
|
+
clipRule: "evenodd",
|
|
3285
|
+
d: "M4.30068 2.88648C4.68922 3.27898 4.68601 3.91214 4.29352 4.30068C4.20077 4.39249 4.1271 4.50172 4.07673 4.62211C4.02647 4.74222 4.00039 4.87106 4 5.00126V19C4 19.2652 4.10536 19.5196 4.29289 19.7071C4.48043 19.8946 4.73478 20 5 20H19C19.2794 20 19.522 19.8897 19.6913 19.7146C20.0754 19.3177 20.7084 19.3073 21.1054 19.6913C21.5023 20.0754 21.5127 20.7084 21.1287 21.1054C20.582 21.6703 19.8206 22 19 22H5C4.20435 22 3.44129 21.6839 2.87868 21.1213C2.31607 20.5587 2 19.7957 2 19V4.99786C2.00084 4.60374 2.0796 4.21367 2.23173 3.85009C2.38387 3.48651 2.60639 3.15659 2.88648 2.87932C3.27898 2.49078 3.91214 2.49399 4.30068 2.88648Z",
|
|
3286
|
+
fill: "currentColor"
|
|
3287
|
+
}
|
|
3288
|
+
),
|
|
3289
|
+
/* @__PURE__ */ React58.createElement(
|
|
3290
|
+
"path",
|
|
3291
|
+
{
|
|
3292
|
+
fillRule: "evenodd",
|
|
3293
|
+
clipRule: "evenodd",
|
|
3294
|
+
d: "M8 3C8 2.44772 8.44772 2 9 2H19C19.7957 2 20.5587 2.31607 21.1213 2.87868C21.6839 3.44129 22 4.20435 22 5V15C22 15.5523 21.5523 16 21 16C20.4477 16 20 15.5523 20 15V5C20 4.73478 19.8946 4.48043 19.7071 4.29289C19.5196 4.10536 19.2652 4 19 4H9C8.44772 4 8 3.55228 8 3Z",
|
|
3109
3295
|
fill: "currentColor"
|
|
3110
3296
|
}
|
|
3111
3297
|
)
|
|
3112
3298
|
);
|
|
3113
3299
|
};
|
|
3114
|
-
|
|
3300
|
+
ImageOff_default = SvgImageOff;
|
|
3115
3301
|
}
|
|
3116
3302
|
});
|
|
3117
3303
|
|
|
@@ -3120,7 +3306,7 @@ var Info_exports = {};
|
|
|
3120
3306
|
__export(Info_exports, {
|
|
3121
3307
|
default: () => Info_default
|
|
3122
3308
|
});
|
|
3123
|
-
import * as
|
|
3309
|
+
import * as React59 from "react";
|
|
3124
3310
|
var SvgInfo, Info_default;
|
|
3125
3311
|
var init_Info = __esm({
|
|
3126
3312
|
"src/react/Info.tsx"() {
|
|
@@ -3128,7 +3314,7 @@ var init_Info = __esm({
|
|
|
3128
3314
|
init_types();
|
|
3129
3315
|
SvgInfo = ({ size = 16, ...props }) => {
|
|
3130
3316
|
const sizeValue = resolveSize(size);
|
|
3131
|
-
return /* @__PURE__ */
|
|
3317
|
+
return /* @__PURE__ */ React59.createElement(
|
|
3132
3318
|
"svg",
|
|
3133
3319
|
{
|
|
3134
3320
|
width: sizeValue,
|
|
@@ -3138,7 +3324,7 @@ var init_Info = __esm({
|
|
|
3138
3324
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3139
3325
|
...props
|
|
3140
3326
|
},
|
|
3141
|
-
/* @__PURE__ */
|
|
3327
|
+
/* @__PURE__ */ React59.createElement(
|
|
3142
3328
|
"path",
|
|
3143
3329
|
{
|
|
3144
3330
|
fillRule: "evenodd",
|
|
@@ -3147,7 +3333,7 @@ var init_Info = __esm({
|
|
|
3147
3333
|
fill: "currentColor"
|
|
3148
3334
|
}
|
|
3149
3335
|
),
|
|
3150
|
-
/* @__PURE__ */
|
|
3336
|
+
/* @__PURE__ */ React59.createElement(
|
|
3151
3337
|
"path",
|
|
3152
3338
|
{
|
|
3153
3339
|
fillRule: "evenodd",
|
|
@@ -3156,7 +3342,7 @@ var init_Info = __esm({
|
|
|
3156
3342
|
fill: "currentColor"
|
|
3157
3343
|
}
|
|
3158
3344
|
),
|
|
3159
|
-
/* @__PURE__ */
|
|
3345
|
+
/* @__PURE__ */ React59.createElement(
|
|
3160
3346
|
"path",
|
|
3161
3347
|
{
|
|
3162
3348
|
fillRule: "evenodd",
|
|
@@ -3176,7 +3362,7 @@ var Keys01_exports = {};
|
|
|
3176
3362
|
__export(Keys01_exports, {
|
|
3177
3363
|
default: () => Keys01_default
|
|
3178
3364
|
});
|
|
3179
|
-
import * as
|
|
3365
|
+
import * as React60 from "react";
|
|
3180
3366
|
var SvgKeys01, Keys01_default;
|
|
3181
3367
|
var init_Keys01 = __esm({
|
|
3182
3368
|
"src/react/Keys01.tsx"() {
|
|
@@ -3184,7 +3370,7 @@ var init_Keys01 = __esm({
|
|
|
3184
3370
|
init_types();
|
|
3185
3371
|
SvgKeys01 = ({ size = 16, ...props }) => {
|
|
3186
3372
|
const sizeValue = resolveSize(size);
|
|
3187
|
-
return /* @__PURE__ */
|
|
3373
|
+
return /* @__PURE__ */ React60.createElement(
|
|
3188
3374
|
"svg",
|
|
3189
3375
|
{
|
|
3190
3376
|
width: sizeValue,
|
|
@@ -3194,7 +3380,7 @@ var init_Keys01 = __esm({
|
|
|
3194
3380
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3195
3381
|
...props
|
|
3196
3382
|
},
|
|
3197
|
-
/* @__PURE__ */
|
|
3383
|
+
/* @__PURE__ */ React60.createElement(
|
|
3198
3384
|
"path",
|
|
3199
3385
|
{
|
|
3200
3386
|
fillRule: "evenodd",
|
|
@@ -3203,7 +3389,7 @@ var init_Keys01 = __esm({
|
|
|
3203
3389
|
fill: "currentColor"
|
|
3204
3390
|
}
|
|
3205
3391
|
),
|
|
3206
|
-
/* @__PURE__ */
|
|
3392
|
+
/* @__PURE__ */ React60.createElement(
|
|
3207
3393
|
"path",
|
|
3208
3394
|
{
|
|
3209
3395
|
fillRule: "evenodd",
|
|
@@ -3212,7 +3398,7 @@ var init_Keys01 = __esm({
|
|
|
3212
3398
|
fill: "currentColor"
|
|
3213
3399
|
}
|
|
3214
3400
|
),
|
|
3215
|
-
/* @__PURE__ */
|
|
3401
|
+
/* @__PURE__ */ React60.createElement(
|
|
3216
3402
|
"path",
|
|
3217
3403
|
{
|
|
3218
3404
|
fillRule: "evenodd",
|
|
@@ -3232,7 +3418,7 @@ var LeadsFilled_exports = {};
|
|
|
3232
3418
|
__export(LeadsFilled_exports, {
|
|
3233
3419
|
default: () => LeadsFilled_default
|
|
3234
3420
|
});
|
|
3235
|
-
import * as
|
|
3421
|
+
import * as React61 from "react";
|
|
3236
3422
|
var SvgLeadsFilled, LeadsFilled_default;
|
|
3237
3423
|
var init_LeadsFilled = __esm({
|
|
3238
3424
|
"src/react/LeadsFilled.tsx"() {
|
|
@@ -3240,7 +3426,7 @@ var init_LeadsFilled = __esm({
|
|
|
3240
3426
|
init_types();
|
|
3241
3427
|
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
3242
3428
|
const sizeValue = resolveSize(size);
|
|
3243
|
-
return /* @__PURE__ */
|
|
3429
|
+
return /* @__PURE__ */ React61.createElement(
|
|
3244
3430
|
"svg",
|
|
3245
3431
|
{
|
|
3246
3432
|
width: sizeValue,
|
|
@@ -3250,7 +3436,7 @@ var init_LeadsFilled = __esm({
|
|
|
3250
3436
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3251
3437
|
...props
|
|
3252
3438
|
},
|
|
3253
|
-
/* @__PURE__ */
|
|
3439
|
+
/* @__PURE__ */ React61.createElement(
|
|
3254
3440
|
"path",
|
|
3255
3441
|
{
|
|
3256
3442
|
fillRule: "evenodd",
|
|
@@ -3259,7 +3445,7 @@ var init_LeadsFilled = __esm({
|
|
|
3259
3445
|
fill: "currentColor"
|
|
3260
3446
|
}
|
|
3261
3447
|
),
|
|
3262
|
-
/* @__PURE__ */
|
|
3448
|
+
/* @__PURE__ */ React61.createElement(
|
|
3263
3449
|
"path",
|
|
3264
3450
|
{
|
|
3265
3451
|
fillRule: "evenodd",
|
|
@@ -3268,7 +3454,7 @@ var init_LeadsFilled = __esm({
|
|
|
3268
3454
|
fill: "currentColor"
|
|
3269
3455
|
}
|
|
3270
3456
|
),
|
|
3271
|
-
/* @__PURE__ */
|
|
3457
|
+
/* @__PURE__ */ React61.createElement(
|
|
3272
3458
|
"path",
|
|
3273
3459
|
{
|
|
3274
3460
|
fillRule: "evenodd",
|
|
@@ -3277,7 +3463,7 @@ var init_LeadsFilled = __esm({
|
|
|
3277
3463
|
fill: "currentColor"
|
|
3278
3464
|
}
|
|
3279
3465
|
),
|
|
3280
|
-
/* @__PURE__ */
|
|
3466
|
+
/* @__PURE__ */ React61.createElement(
|
|
3281
3467
|
"path",
|
|
3282
3468
|
{
|
|
3283
3469
|
fillRule: "evenodd",
|
|
@@ -3297,7 +3483,7 @@ var LeadsLinear_exports = {};
|
|
|
3297
3483
|
__export(LeadsLinear_exports, {
|
|
3298
3484
|
default: () => LeadsLinear_default
|
|
3299
3485
|
});
|
|
3300
|
-
import * as
|
|
3486
|
+
import * as React62 from "react";
|
|
3301
3487
|
var SvgLeadsLinear, LeadsLinear_default;
|
|
3302
3488
|
var init_LeadsLinear = __esm({
|
|
3303
3489
|
"src/react/LeadsLinear.tsx"() {
|
|
@@ -3305,7 +3491,7 @@ var init_LeadsLinear = __esm({
|
|
|
3305
3491
|
init_types();
|
|
3306
3492
|
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
3307
3493
|
const sizeValue = resolveSize(size);
|
|
3308
|
-
return /* @__PURE__ */
|
|
3494
|
+
return /* @__PURE__ */ React62.createElement(
|
|
3309
3495
|
"svg",
|
|
3310
3496
|
{
|
|
3311
3497
|
width: sizeValue,
|
|
@@ -3315,7 +3501,7 @@ var init_LeadsLinear = __esm({
|
|
|
3315
3501
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3316
3502
|
...props
|
|
3317
3503
|
},
|
|
3318
|
-
/* @__PURE__ */
|
|
3504
|
+
/* @__PURE__ */ React62.createElement(
|
|
3319
3505
|
"path",
|
|
3320
3506
|
{
|
|
3321
3507
|
fillRule: "evenodd",
|
|
@@ -3324,7 +3510,7 @@ var init_LeadsLinear = __esm({
|
|
|
3324
3510
|
fill: "currentColor"
|
|
3325
3511
|
}
|
|
3326
3512
|
),
|
|
3327
|
-
/* @__PURE__ */
|
|
3513
|
+
/* @__PURE__ */ React62.createElement(
|
|
3328
3514
|
"path",
|
|
3329
3515
|
{
|
|
3330
3516
|
fillRule: "evenodd",
|
|
@@ -3333,7 +3519,7 @@ var init_LeadsLinear = __esm({
|
|
|
3333
3519
|
fill: "currentColor"
|
|
3334
3520
|
}
|
|
3335
3521
|
),
|
|
3336
|
-
/* @__PURE__ */
|
|
3522
|
+
/* @__PURE__ */ React62.createElement(
|
|
3337
3523
|
"path",
|
|
3338
3524
|
{
|
|
3339
3525
|
fillRule: "evenodd",
|
|
@@ -3342,7 +3528,7 @@ var init_LeadsLinear = __esm({
|
|
|
3342
3528
|
fill: "currentColor"
|
|
3343
3529
|
}
|
|
3344
3530
|
),
|
|
3345
|
-
/* @__PURE__ */
|
|
3531
|
+
/* @__PURE__ */ React62.createElement(
|
|
3346
3532
|
"path",
|
|
3347
3533
|
{
|
|
3348
3534
|
fillRule: "evenodd",
|
|
@@ -3362,7 +3548,7 @@ var Lift_exports = {};
|
|
|
3362
3548
|
__export(Lift_exports, {
|
|
3363
3549
|
default: () => Lift_default
|
|
3364
3550
|
});
|
|
3365
|
-
import * as
|
|
3551
|
+
import * as React63 from "react";
|
|
3366
3552
|
var SvgLift, Lift_default;
|
|
3367
3553
|
var init_Lift = __esm({
|
|
3368
3554
|
"src/react/Lift.tsx"() {
|
|
@@ -3370,7 +3556,7 @@ var init_Lift = __esm({
|
|
|
3370
3556
|
init_types();
|
|
3371
3557
|
SvgLift = ({ size = 16, ...props }) => {
|
|
3372
3558
|
const sizeValue = resolveSize(size);
|
|
3373
|
-
return /* @__PURE__ */
|
|
3559
|
+
return /* @__PURE__ */ React63.createElement(
|
|
3374
3560
|
"svg",
|
|
3375
3561
|
{
|
|
3376
3562
|
width: sizeValue,
|
|
@@ -3380,7 +3566,7 @@ var init_Lift = __esm({
|
|
|
3380
3566
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3381
3567
|
...props
|
|
3382
3568
|
},
|
|
3383
|
-
/* @__PURE__ */
|
|
3569
|
+
/* @__PURE__ */ React63.createElement(
|
|
3384
3570
|
"path",
|
|
3385
3571
|
{
|
|
3386
3572
|
d: "M12.9004 21.0791H15.3779V12.4785H12.9004V21.0791ZM8.62207 21.0791H11.0996V12.4785H8.62207V21.0791ZM16.4277 5.78809C16.8206 5.48406 17.3861 5.55643 17.6904 5.94922C17.9944 6.34213 17.9221 6.90761 17.5293 7.21191L15.5508 8.74512C15.2264 8.99642 14.7727 8.99635 14.4482 8.74512L12.4688 7.21191C12.0759 6.90759 12.0045 6.34214 12.3086 5.94922C12.6129 5.55639 13.1784 5.48395 13.5713 5.78809L14.999 6.89453L16.4277 5.78809ZM8.42773 5.78809C8.75207 5.53682 9.20583 5.53704 9.53027 5.78809L11.5098 7.32227C11.9025 7.62672 11.9743 8.19209 11.6699 8.58496C11.3655 8.97759 10.8 9.0494 10.4072 8.74512L8.97852 7.63867L7.55176 8.74512C7.15896 9.04943 6.59356 8.97754 6.28906 8.58496C5.98467 8.19206 6.05636 7.6267 6.44922 7.32227L8.42773 5.78809ZM17.1777 21.0791H19.9961V4.47949C19.9961 4.14823 19.7277 3.88006 19.3965 3.87988H4.60449C4.27312 3.87988 4.00488 4.14812 4.00488 4.47949V21.0791H6.82227V12.2119C6.82231 11.3309 7.55547 10.6788 8.38184 10.6787H15.6182C16.4445 10.6788 17.1777 11.3309 17.1777 12.2119V21.0791ZM21.7959 21.0996C21.7959 22.0824 20.9994 22.8798 20.0166 22.8799H3.98438C3.00151 22.8799 2.2041 22.0825 2.2041 21.0996V4.47949C2.2041 3.15401 3.27901 2.0791 4.60449 2.0791H19.3965C20.7218 2.07928 21.7959 3.15412 21.7959 4.47949V21.0996Z",
|
|
@@ -3398,7 +3584,7 @@ var Lock_exports = {};
|
|
|
3398
3584
|
__export(Lock_exports, {
|
|
3399
3585
|
default: () => Lock_default
|
|
3400
3586
|
});
|
|
3401
|
-
import * as
|
|
3587
|
+
import * as React64 from "react";
|
|
3402
3588
|
var SvgLock, Lock_default;
|
|
3403
3589
|
var init_Lock = __esm({
|
|
3404
3590
|
"src/react/Lock.tsx"() {
|
|
@@ -3406,7 +3592,7 @@ var init_Lock = __esm({
|
|
|
3406
3592
|
init_types();
|
|
3407
3593
|
SvgLock = ({ size = 16, ...props }) => {
|
|
3408
3594
|
const sizeValue = resolveSize(size);
|
|
3409
|
-
return /* @__PURE__ */
|
|
3595
|
+
return /* @__PURE__ */ React64.createElement(
|
|
3410
3596
|
"svg",
|
|
3411
3597
|
{
|
|
3412
3598
|
width: sizeValue,
|
|
@@ -3416,7 +3602,7 @@ var init_Lock = __esm({
|
|
|
3416
3602
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3417
3603
|
...props
|
|
3418
3604
|
},
|
|
3419
|
-
/* @__PURE__ */
|
|
3605
|
+
/* @__PURE__ */ React64.createElement(
|
|
3420
3606
|
"path",
|
|
3421
3607
|
{
|
|
3422
3608
|
fillRule: "evenodd",
|
|
@@ -3425,7 +3611,7 @@ var init_Lock = __esm({
|
|
|
3425
3611
|
fill: "currentColor"
|
|
3426
3612
|
}
|
|
3427
3613
|
),
|
|
3428
|
-
/* @__PURE__ */
|
|
3614
|
+
/* @__PURE__ */ React64.createElement(
|
|
3429
3615
|
"path",
|
|
3430
3616
|
{
|
|
3431
3617
|
fillRule: "evenodd",
|
|
@@ -3445,7 +3631,7 @@ var Logout_exports = {};
|
|
|
3445
3631
|
__export(Logout_exports, {
|
|
3446
3632
|
default: () => Logout_default
|
|
3447
3633
|
});
|
|
3448
|
-
import * as
|
|
3634
|
+
import * as React65 from "react";
|
|
3449
3635
|
var SvgLogout, Logout_default;
|
|
3450
3636
|
var init_Logout = __esm({
|
|
3451
3637
|
"src/react/Logout.tsx"() {
|
|
@@ -3453,7 +3639,7 @@ var init_Logout = __esm({
|
|
|
3453
3639
|
init_types();
|
|
3454
3640
|
SvgLogout = ({ size = 16, ...props }) => {
|
|
3455
3641
|
const sizeValue = resolveSize(size);
|
|
3456
|
-
return /* @__PURE__ */
|
|
3642
|
+
return /* @__PURE__ */ React65.createElement(
|
|
3457
3643
|
"svg",
|
|
3458
3644
|
{
|
|
3459
3645
|
width: sizeValue,
|
|
@@ -3463,7 +3649,7 @@ var init_Logout = __esm({
|
|
|
3463
3649
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3464
3650
|
...props
|
|
3465
3651
|
},
|
|
3466
|
-
/* @__PURE__ */
|
|
3652
|
+
/* @__PURE__ */ React65.createElement(
|
|
3467
3653
|
"path",
|
|
3468
3654
|
{
|
|
3469
3655
|
fillRule: "evenodd",
|
|
@@ -3472,7 +3658,7 @@ var init_Logout = __esm({
|
|
|
3472
3658
|
fill: "currentColor"
|
|
3473
3659
|
}
|
|
3474
3660
|
),
|
|
3475
|
-
/* @__PURE__ */
|
|
3661
|
+
/* @__PURE__ */ React65.createElement(
|
|
3476
3662
|
"path",
|
|
3477
3663
|
{
|
|
3478
3664
|
fillRule: "evenodd",
|
|
@@ -3481,7 +3667,7 @@ var init_Logout = __esm({
|
|
|
3481
3667
|
fill: "currentColor"
|
|
3482
3668
|
}
|
|
3483
3669
|
),
|
|
3484
|
-
/* @__PURE__ */
|
|
3670
|
+
/* @__PURE__ */ React65.createElement(
|
|
3485
3671
|
"path",
|
|
3486
3672
|
{
|
|
3487
3673
|
fillRule: "evenodd",
|
|
@@ -3501,7 +3687,7 @@ var MagicWand_exports = {};
|
|
|
3501
3687
|
__export(MagicWand_exports, {
|
|
3502
3688
|
default: () => MagicWand_default
|
|
3503
3689
|
});
|
|
3504
|
-
import * as
|
|
3690
|
+
import * as React66 from "react";
|
|
3505
3691
|
var SvgMagicWand, MagicWand_default;
|
|
3506
3692
|
var init_MagicWand = __esm({
|
|
3507
3693
|
"src/react/MagicWand.tsx"() {
|
|
@@ -3509,7 +3695,7 @@ var init_MagicWand = __esm({
|
|
|
3509
3695
|
init_types();
|
|
3510
3696
|
SvgMagicWand = ({ size = 16, ...props }) => {
|
|
3511
3697
|
const sizeValue = resolveSize(size);
|
|
3512
|
-
return /* @__PURE__ */
|
|
3698
|
+
return /* @__PURE__ */ React66.createElement(
|
|
3513
3699
|
"svg",
|
|
3514
3700
|
{
|
|
3515
3701
|
width: sizeValue,
|
|
@@ -3519,7 +3705,7 @@ var init_MagicWand = __esm({
|
|
|
3519
3705
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3520
3706
|
...props
|
|
3521
3707
|
},
|
|
3522
|
-
/* @__PURE__ */
|
|
3708
|
+
/* @__PURE__ */ React66.createElement(
|
|
3523
3709
|
"path",
|
|
3524
3710
|
{
|
|
3525
3711
|
fillRule: "evenodd",
|
|
@@ -3528,7 +3714,7 @@ var init_MagicWand = __esm({
|
|
|
3528
3714
|
fill: "currentColor"
|
|
3529
3715
|
}
|
|
3530
3716
|
),
|
|
3531
|
-
/* @__PURE__ */
|
|
3717
|
+
/* @__PURE__ */ React66.createElement(
|
|
3532
3718
|
"path",
|
|
3533
3719
|
{
|
|
3534
3720
|
fillRule: "evenodd",
|
|
@@ -3537,7 +3723,7 @@ var init_MagicWand = __esm({
|
|
|
3537
3723
|
fill: "currentColor"
|
|
3538
3724
|
}
|
|
3539
3725
|
),
|
|
3540
|
-
/* @__PURE__ */
|
|
3726
|
+
/* @__PURE__ */ React66.createElement(
|
|
3541
3727
|
"path",
|
|
3542
3728
|
{
|
|
3543
3729
|
fillRule: "evenodd",
|
|
@@ -3546,7 +3732,7 @@ var init_MagicWand = __esm({
|
|
|
3546
3732
|
fill: "currentColor"
|
|
3547
3733
|
}
|
|
3548
3734
|
),
|
|
3549
|
-
/* @__PURE__ */
|
|
3735
|
+
/* @__PURE__ */ React66.createElement(
|
|
3550
3736
|
"path",
|
|
3551
3737
|
{
|
|
3552
3738
|
fillRule: "evenodd",
|
|
@@ -3555,7 +3741,7 @@ var init_MagicWand = __esm({
|
|
|
3555
3741
|
fill: "currentColor"
|
|
3556
3742
|
}
|
|
3557
3743
|
),
|
|
3558
|
-
/* @__PURE__ */
|
|
3744
|
+
/* @__PURE__ */ React66.createElement(
|
|
3559
3745
|
"path",
|
|
3560
3746
|
{
|
|
3561
3747
|
fillRule: "evenodd",
|
|
@@ -3564,7 +3750,7 @@ var init_MagicWand = __esm({
|
|
|
3564
3750
|
fill: "currentColor"
|
|
3565
3751
|
}
|
|
3566
3752
|
),
|
|
3567
|
-
/* @__PURE__ */
|
|
3753
|
+
/* @__PURE__ */ React66.createElement(
|
|
3568
3754
|
"path",
|
|
3569
3755
|
{
|
|
3570
3756
|
fillRule: "evenodd",
|
|
@@ -3573,7 +3759,7 @@ var init_MagicWand = __esm({
|
|
|
3573
3759
|
fill: "currentColor"
|
|
3574
3760
|
}
|
|
3575
3761
|
),
|
|
3576
|
-
/* @__PURE__ */
|
|
3762
|
+
/* @__PURE__ */ React66.createElement(
|
|
3577
3763
|
"path",
|
|
3578
3764
|
{
|
|
3579
3765
|
fillRule: "evenodd",
|
|
@@ -3582,7 +3768,7 @@ var init_MagicWand = __esm({
|
|
|
3582
3768
|
fill: "currentColor"
|
|
3583
3769
|
}
|
|
3584
3770
|
),
|
|
3585
|
-
/* @__PURE__ */
|
|
3771
|
+
/* @__PURE__ */ React66.createElement(
|
|
3586
3772
|
"path",
|
|
3587
3773
|
{
|
|
3588
3774
|
fillRule: "evenodd",
|
|
@@ -3602,7 +3788,7 @@ var Mail_exports = {};
|
|
|
3602
3788
|
__export(Mail_exports, {
|
|
3603
3789
|
default: () => Mail_default
|
|
3604
3790
|
});
|
|
3605
|
-
import * as
|
|
3791
|
+
import * as React67 from "react";
|
|
3606
3792
|
var SvgMail, Mail_default;
|
|
3607
3793
|
var init_Mail = __esm({
|
|
3608
3794
|
"src/react/Mail.tsx"() {
|
|
@@ -3610,7 +3796,7 @@ var init_Mail = __esm({
|
|
|
3610
3796
|
init_types();
|
|
3611
3797
|
SvgMail = ({ size = 16, ...props }) => {
|
|
3612
3798
|
const sizeValue = resolveSize(size);
|
|
3613
|
-
return /* @__PURE__ */
|
|
3799
|
+
return /* @__PURE__ */ React67.createElement(
|
|
3614
3800
|
"svg",
|
|
3615
3801
|
{
|
|
3616
3802
|
width: sizeValue,
|
|
@@ -3620,7 +3806,7 @@ var init_Mail = __esm({
|
|
|
3620
3806
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3621
3807
|
...props
|
|
3622
3808
|
},
|
|
3623
|
-
/* @__PURE__ */
|
|
3809
|
+
/* @__PURE__ */ React67.createElement(
|
|
3624
3810
|
"path",
|
|
3625
3811
|
{
|
|
3626
3812
|
fillRule: "evenodd",
|
|
@@ -3629,7 +3815,7 @@ var init_Mail = __esm({
|
|
|
3629
3815
|
fill: "currentColor"
|
|
3630
3816
|
}
|
|
3631
3817
|
),
|
|
3632
|
-
/* @__PURE__ */
|
|
3818
|
+
/* @__PURE__ */ React67.createElement(
|
|
3633
3819
|
"path",
|
|
3634
3820
|
{
|
|
3635
3821
|
fillRule: "evenodd",
|
|
@@ -3649,7 +3835,7 @@ var MapPin_exports = {};
|
|
|
3649
3835
|
__export(MapPin_exports, {
|
|
3650
3836
|
default: () => MapPin_default
|
|
3651
3837
|
});
|
|
3652
|
-
import * as
|
|
3838
|
+
import * as React68 from "react";
|
|
3653
3839
|
var SvgMapPin, MapPin_default;
|
|
3654
3840
|
var init_MapPin = __esm({
|
|
3655
3841
|
"src/react/MapPin.tsx"() {
|
|
@@ -3657,7 +3843,7 @@ var init_MapPin = __esm({
|
|
|
3657
3843
|
init_types();
|
|
3658
3844
|
SvgMapPin = ({ size = 16, ...props }) => {
|
|
3659
3845
|
const sizeValue = resolveSize(size);
|
|
3660
|
-
return /* @__PURE__ */
|
|
3846
|
+
return /* @__PURE__ */ React68.createElement(
|
|
3661
3847
|
"svg",
|
|
3662
3848
|
{
|
|
3663
3849
|
width: sizeValue,
|
|
@@ -3667,7 +3853,7 @@ var init_MapPin = __esm({
|
|
|
3667
3853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3668
3854
|
...props
|
|
3669
3855
|
},
|
|
3670
|
-
/* @__PURE__ */
|
|
3856
|
+
/* @__PURE__ */ React68.createElement(
|
|
3671
3857
|
"path",
|
|
3672
3858
|
{
|
|
3673
3859
|
fillRule: "evenodd",
|
|
@@ -3676,7 +3862,7 @@ var init_MapPin = __esm({
|
|
|
3676
3862
|
fill: "currentColor"
|
|
3677
3863
|
}
|
|
3678
3864
|
),
|
|
3679
|
-
/* @__PURE__ */
|
|
3865
|
+
/* @__PURE__ */ React68.createElement(
|
|
3680
3866
|
"path",
|
|
3681
3867
|
{
|
|
3682
3868
|
fillRule: "evenodd",
|
|
@@ -3696,7 +3882,7 @@ var MoreHorizontal_exports = {};
|
|
|
3696
3882
|
__export(MoreHorizontal_exports, {
|
|
3697
3883
|
default: () => MoreHorizontal_default
|
|
3698
3884
|
});
|
|
3699
|
-
import * as
|
|
3885
|
+
import * as React69 from "react";
|
|
3700
3886
|
var SvgMoreHorizontal, MoreHorizontal_default;
|
|
3701
3887
|
var init_MoreHorizontal = __esm({
|
|
3702
3888
|
"src/react/MoreHorizontal.tsx"() {
|
|
@@ -3704,7 +3890,7 @@ var init_MoreHorizontal = __esm({
|
|
|
3704
3890
|
init_types();
|
|
3705
3891
|
SvgMoreHorizontal = ({ size = 16, ...props }) => {
|
|
3706
3892
|
const sizeValue = resolveSize(size);
|
|
3707
|
-
return /* @__PURE__ */
|
|
3893
|
+
return /* @__PURE__ */ React69.createElement(
|
|
3708
3894
|
"svg",
|
|
3709
3895
|
{
|
|
3710
3896
|
width: sizeValue,
|
|
@@ -3714,7 +3900,7 @@ var init_MoreHorizontal = __esm({
|
|
|
3714
3900
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3715
3901
|
...props
|
|
3716
3902
|
},
|
|
3717
|
-
/* @__PURE__ */
|
|
3903
|
+
/* @__PURE__ */ React69.createElement(
|
|
3718
3904
|
"path",
|
|
3719
3905
|
{
|
|
3720
3906
|
fillRule: "evenodd",
|
|
@@ -3723,7 +3909,7 @@ var init_MoreHorizontal = __esm({
|
|
|
3723
3909
|
fill: "currentColor"
|
|
3724
3910
|
}
|
|
3725
3911
|
),
|
|
3726
|
-
/* @__PURE__ */
|
|
3912
|
+
/* @__PURE__ */ React69.createElement(
|
|
3727
3913
|
"path",
|
|
3728
3914
|
{
|
|
3729
3915
|
fillRule: "evenodd",
|
|
@@ -3732,7 +3918,7 @@ var init_MoreHorizontal = __esm({
|
|
|
3732
3918
|
fill: "currentColor"
|
|
3733
3919
|
}
|
|
3734
3920
|
),
|
|
3735
|
-
/* @__PURE__ */
|
|
3921
|
+
/* @__PURE__ */ React69.createElement(
|
|
3736
3922
|
"path",
|
|
3737
3923
|
{
|
|
3738
3924
|
fillRule: "evenodd",
|
|
@@ -3752,7 +3938,7 @@ var Mortgage_exports = {};
|
|
|
3752
3938
|
__export(Mortgage_exports, {
|
|
3753
3939
|
default: () => Mortgage_default
|
|
3754
3940
|
});
|
|
3755
|
-
import * as
|
|
3941
|
+
import * as React70 from "react";
|
|
3756
3942
|
var SvgMortgage, Mortgage_default;
|
|
3757
3943
|
var init_Mortgage = __esm({
|
|
3758
3944
|
"src/react/Mortgage.tsx"() {
|
|
@@ -3760,7 +3946,7 @@ var init_Mortgage = __esm({
|
|
|
3760
3946
|
init_types();
|
|
3761
3947
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
3762
3948
|
const sizeValue = resolveSize(size);
|
|
3763
|
-
return /* @__PURE__ */
|
|
3949
|
+
return /* @__PURE__ */ React70.createElement(
|
|
3764
3950
|
"svg",
|
|
3765
3951
|
{
|
|
3766
3952
|
width: sizeValue,
|
|
@@ -3770,7 +3956,7 @@ var init_Mortgage = __esm({
|
|
|
3770
3956
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3771
3957
|
...props
|
|
3772
3958
|
},
|
|
3773
|
-
/* @__PURE__ */
|
|
3959
|
+
/* @__PURE__ */ React70.createElement(
|
|
3774
3960
|
"path",
|
|
3775
3961
|
{
|
|
3776
3962
|
fillRule: "evenodd",
|
|
@@ -3779,7 +3965,7 @@ var init_Mortgage = __esm({
|
|
|
3779
3965
|
fill: "currentColor"
|
|
3780
3966
|
}
|
|
3781
3967
|
),
|
|
3782
|
-
/* @__PURE__ */
|
|
3968
|
+
/* @__PURE__ */ React70.createElement(
|
|
3783
3969
|
"path",
|
|
3784
3970
|
{
|
|
3785
3971
|
fillRule: "evenodd",
|
|
@@ -3788,7 +3974,7 @@ var init_Mortgage = __esm({
|
|
|
3788
3974
|
fill: "currentColor"
|
|
3789
3975
|
}
|
|
3790
3976
|
),
|
|
3791
|
-
/* @__PURE__ */
|
|
3977
|
+
/* @__PURE__ */ React70.createElement(
|
|
3792
3978
|
"path",
|
|
3793
3979
|
{
|
|
3794
3980
|
fillRule: "evenodd",
|
|
@@ -3797,7 +3983,7 @@ var init_Mortgage = __esm({
|
|
|
3797
3983
|
fill: "currentColor"
|
|
3798
3984
|
}
|
|
3799
3985
|
),
|
|
3800
|
-
/* @__PURE__ */
|
|
3986
|
+
/* @__PURE__ */ React70.createElement(
|
|
3801
3987
|
"path",
|
|
3802
3988
|
{
|
|
3803
3989
|
fillRule: "evenodd",
|
|
@@ -3806,7 +3992,7 @@ var init_Mortgage = __esm({
|
|
|
3806
3992
|
fill: "currentColor"
|
|
3807
3993
|
}
|
|
3808
3994
|
),
|
|
3809
|
-
/* @__PURE__ */
|
|
3995
|
+
/* @__PURE__ */ React70.createElement(
|
|
3810
3996
|
"path",
|
|
3811
3997
|
{
|
|
3812
3998
|
fillRule: "evenodd",
|
|
@@ -3815,7 +4001,7 @@ var init_Mortgage = __esm({
|
|
|
3815
4001
|
fill: "currentColor"
|
|
3816
4002
|
}
|
|
3817
4003
|
),
|
|
3818
|
-
/* @__PURE__ */
|
|
4004
|
+
/* @__PURE__ */ React70.createElement(
|
|
3819
4005
|
"path",
|
|
3820
4006
|
{
|
|
3821
4007
|
fillRule: "evenodd",
|
|
@@ -3824,7 +4010,7 @@ var init_Mortgage = __esm({
|
|
|
3824
4010
|
fill: "currentColor"
|
|
3825
4011
|
}
|
|
3826
4012
|
),
|
|
3827
|
-
/* @__PURE__ */
|
|
4013
|
+
/* @__PURE__ */ React70.createElement(
|
|
3828
4014
|
"path",
|
|
3829
4015
|
{
|
|
3830
4016
|
fillRule: "evenodd",
|
|
@@ -3844,7 +4030,7 @@ var Note_exports = {};
|
|
|
3844
4030
|
__export(Note_exports, {
|
|
3845
4031
|
default: () => Note_default
|
|
3846
4032
|
});
|
|
3847
|
-
import * as
|
|
4033
|
+
import * as React71 from "react";
|
|
3848
4034
|
var SvgNote, Note_default;
|
|
3849
4035
|
var init_Note = __esm({
|
|
3850
4036
|
"src/react/Note.tsx"() {
|
|
@@ -3852,7 +4038,7 @@ var init_Note = __esm({
|
|
|
3852
4038
|
init_types();
|
|
3853
4039
|
SvgNote = ({ size = 16, ...props }) => {
|
|
3854
4040
|
const sizeValue = resolveSize(size);
|
|
3855
|
-
return /* @__PURE__ */
|
|
4041
|
+
return /* @__PURE__ */ React71.createElement(
|
|
3856
4042
|
"svg",
|
|
3857
4043
|
{
|
|
3858
4044
|
width: sizeValue,
|
|
@@ -3862,7 +4048,7 @@ var init_Note = __esm({
|
|
|
3862
4048
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3863
4049
|
...props
|
|
3864
4050
|
},
|
|
3865
|
-
/* @__PURE__ */
|
|
4051
|
+
/* @__PURE__ */ React71.createElement(
|
|
3866
4052
|
"path",
|
|
3867
4053
|
{
|
|
3868
4054
|
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",
|
|
@@ -3880,7 +4066,7 @@ var Notes_exports = {};
|
|
|
3880
4066
|
__export(Notes_exports, {
|
|
3881
4067
|
default: () => Notes_default
|
|
3882
4068
|
});
|
|
3883
|
-
import * as
|
|
4069
|
+
import * as React72 from "react";
|
|
3884
4070
|
var SvgNotes, Notes_default;
|
|
3885
4071
|
var init_Notes = __esm({
|
|
3886
4072
|
"src/react/Notes.tsx"() {
|
|
@@ -3888,7 +4074,7 @@ var init_Notes = __esm({
|
|
|
3888
4074
|
init_types();
|
|
3889
4075
|
SvgNotes = ({ size = 16, ...props }) => {
|
|
3890
4076
|
const sizeValue = resolveSize(size);
|
|
3891
|
-
return /* @__PURE__ */
|
|
4077
|
+
return /* @__PURE__ */ React72.createElement(
|
|
3892
4078
|
"svg",
|
|
3893
4079
|
{
|
|
3894
4080
|
width: sizeValue,
|
|
@@ -3898,21 +4084,21 @@ var init_Notes = __esm({
|
|
|
3898
4084
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3899
4085
|
...props
|
|
3900
4086
|
},
|
|
3901
|
-
/* @__PURE__ */
|
|
4087
|
+
/* @__PURE__ */ React72.createElement(
|
|
3902
4088
|
"path",
|
|
3903
4089
|
{
|
|
3904
4090
|
d: "M12.7695 10.749C13.2819 10.749 13.6981 11.1644 13.6982 11.6768C13.698 12.1891 13.2819 12.6045 12.7695 12.6045H7.30273C6.79037 12.6045 6.37423 12.1891 6.37402 11.6768C6.37416 11.1644 6.79033 10.749 7.30273 10.749H12.7695Z",
|
|
3905
4091
|
fill: "currentColor"
|
|
3906
4092
|
}
|
|
3907
4093
|
),
|
|
3908
|
-
/* @__PURE__ */
|
|
4094
|
+
/* @__PURE__ */ React72.createElement(
|
|
3909
4095
|
"path",
|
|
3910
4096
|
{
|
|
3911
4097
|
d: "M15.5039 6.37402C16.0162 6.37422 16.4316 6.79037 16.4316 7.30273C16.4315 7.81499 16.0161 8.23027 15.5039 8.23047H7.30273C6.79033 8.23047 6.37416 7.81511 6.37402 7.30273C6.37402 6.79025 6.79025 6.37402 7.30273 6.37402H15.5039Z",
|
|
3912
4098
|
fill: "currentColor"
|
|
3913
4099
|
}
|
|
3914
4100
|
),
|
|
3915
|
-
/* @__PURE__ */
|
|
4101
|
+
/* @__PURE__ */ React72.createElement(
|
|
3916
4102
|
"path",
|
|
3917
4103
|
{
|
|
3918
4104
|
fillRule: "evenodd",
|
|
@@ -3932,7 +4118,7 @@ var Outside_exports = {};
|
|
|
3932
4118
|
__export(Outside_exports, {
|
|
3933
4119
|
default: () => Outside_default
|
|
3934
4120
|
});
|
|
3935
|
-
import * as
|
|
4121
|
+
import * as React73 from "react";
|
|
3936
4122
|
var SvgOutside, Outside_default;
|
|
3937
4123
|
var init_Outside = __esm({
|
|
3938
4124
|
"src/react/Outside.tsx"() {
|
|
@@ -3940,7 +4126,7 @@ var init_Outside = __esm({
|
|
|
3940
4126
|
init_types();
|
|
3941
4127
|
SvgOutside = ({ size = 16, ...props }) => {
|
|
3942
4128
|
const sizeValue = resolveSize(size);
|
|
3943
|
-
return /* @__PURE__ */
|
|
4129
|
+
return /* @__PURE__ */ React73.createElement(
|
|
3944
4130
|
"svg",
|
|
3945
4131
|
{
|
|
3946
4132
|
width: sizeValue,
|
|
@@ -3950,7 +4136,7 @@ var init_Outside = __esm({
|
|
|
3950
4136
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3951
4137
|
...props
|
|
3952
4138
|
},
|
|
3953
|
-
/* @__PURE__ */
|
|
4139
|
+
/* @__PURE__ */ React73.createElement(
|
|
3954
4140
|
"path",
|
|
3955
4141
|
{
|
|
3956
4142
|
fillRule: "evenodd",
|
|
@@ -3959,7 +4145,7 @@ var init_Outside = __esm({
|
|
|
3959
4145
|
fill: "currentColor"
|
|
3960
4146
|
}
|
|
3961
4147
|
),
|
|
3962
|
-
/* @__PURE__ */
|
|
4148
|
+
/* @__PURE__ */ React73.createElement(
|
|
3963
4149
|
"path",
|
|
3964
4150
|
{
|
|
3965
4151
|
fillRule: "evenodd",
|
|
@@ -3968,7 +4154,7 @@ var init_Outside = __esm({
|
|
|
3968
4154
|
fill: "currentColor"
|
|
3969
4155
|
}
|
|
3970
4156
|
),
|
|
3971
|
-
/* @__PURE__ */
|
|
4157
|
+
/* @__PURE__ */ React73.createElement(
|
|
3972
4158
|
"path",
|
|
3973
4159
|
{
|
|
3974
4160
|
fillRule: "evenodd",
|
|
@@ -3977,7 +4163,7 @@ var init_Outside = __esm({
|
|
|
3977
4163
|
fill: "currentColor"
|
|
3978
4164
|
}
|
|
3979
4165
|
),
|
|
3980
|
-
/* @__PURE__ */
|
|
4166
|
+
/* @__PURE__ */ React73.createElement(
|
|
3981
4167
|
"path",
|
|
3982
4168
|
{
|
|
3983
4169
|
fillRule: "evenodd",
|
|
@@ -3986,7 +4172,7 @@ var init_Outside = __esm({
|
|
|
3986
4172
|
fill: "currentColor"
|
|
3987
4173
|
}
|
|
3988
4174
|
),
|
|
3989
|
-
/* @__PURE__ */
|
|
4175
|
+
/* @__PURE__ */ React73.createElement(
|
|
3990
4176
|
"path",
|
|
3991
4177
|
{
|
|
3992
4178
|
fillRule: "evenodd",
|
|
@@ -3995,7 +4181,7 @@ var init_Outside = __esm({
|
|
|
3995
4181
|
fill: "currentColor"
|
|
3996
4182
|
}
|
|
3997
4183
|
),
|
|
3998
|
-
/* @__PURE__ */
|
|
4184
|
+
/* @__PURE__ */ React73.createElement(
|
|
3999
4185
|
"path",
|
|
4000
4186
|
{
|
|
4001
4187
|
fillRule: "evenodd",
|
|
@@ -4004,7 +4190,7 @@ var init_Outside = __esm({
|
|
|
4004
4190
|
fill: "currentColor"
|
|
4005
4191
|
}
|
|
4006
4192
|
),
|
|
4007
|
-
/* @__PURE__ */
|
|
4193
|
+
/* @__PURE__ */ React73.createElement(
|
|
4008
4194
|
"path",
|
|
4009
4195
|
{
|
|
4010
4196
|
fillRule: "evenodd",
|
|
@@ -4013,7 +4199,7 @@ var init_Outside = __esm({
|
|
|
4013
4199
|
fill: "currentColor"
|
|
4014
4200
|
}
|
|
4015
4201
|
),
|
|
4016
|
-
/* @__PURE__ */
|
|
4202
|
+
/* @__PURE__ */ React73.createElement(
|
|
4017
4203
|
"path",
|
|
4018
4204
|
{
|
|
4019
4205
|
fillRule: "evenodd",
|
|
@@ -4033,7 +4219,7 @@ var Parking_exports = {};
|
|
|
4033
4219
|
__export(Parking_exports, {
|
|
4034
4220
|
default: () => Parking_default
|
|
4035
4221
|
});
|
|
4036
|
-
import * as
|
|
4222
|
+
import * as React74 from "react";
|
|
4037
4223
|
var SvgParking, Parking_default;
|
|
4038
4224
|
var init_Parking = __esm({
|
|
4039
4225
|
"src/react/Parking.tsx"() {
|
|
@@ -4041,7 +4227,7 @@ var init_Parking = __esm({
|
|
|
4041
4227
|
init_types();
|
|
4042
4228
|
SvgParking = ({ size = 16, ...props }) => {
|
|
4043
4229
|
const sizeValue = resolveSize(size);
|
|
4044
|
-
return /* @__PURE__ */
|
|
4230
|
+
return /* @__PURE__ */ React74.createElement(
|
|
4045
4231
|
"svg",
|
|
4046
4232
|
{
|
|
4047
4233
|
width: sizeValue,
|
|
@@ -4051,7 +4237,7 @@ var init_Parking = __esm({
|
|
|
4051
4237
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4052
4238
|
...props
|
|
4053
4239
|
},
|
|
4054
|
-
/* @__PURE__ */
|
|
4240
|
+
/* @__PURE__ */ React74.createElement(
|
|
4055
4241
|
"path",
|
|
4056
4242
|
{
|
|
4057
4243
|
fillRule: "evenodd",
|
|
@@ -4060,7 +4246,7 @@ var init_Parking = __esm({
|
|
|
4060
4246
|
fill: "currentColor"
|
|
4061
4247
|
}
|
|
4062
4248
|
),
|
|
4063
|
-
/* @__PURE__ */
|
|
4249
|
+
/* @__PURE__ */ React74.createElement(
|
|
4064
4250
|
"path",
|
|
4065
4251
|
{
|
|
4066
4252
|
fillRule: "evenodd",
|
|
@@ -4069,7 +4255,7 @@ var init_Parking = __esm({
|
|
|
4069
4255
|
fill: "currentColor"
|
|
4070
4256
|
}
|
|
4071
4257
|
),
|
|
4072
|
-
/* @__PURE__ */
|
|
4258
|
+
/* @__PURE__ */ React74.createElement(
|
|
4073
4259
|
"path",
|
|
4074
4260
|
{
|
|
4075
4261
|
fillRule: "evenodd",
|
|
@@ -4078,7 +4264,7 @@ var init_Parking = __esm({
|
|
|
4078
4264
|
fill: "currentColor"
|
|
4079
4265
|
}
|
|
4080
4266
|
),
|
|
4081
|
-
/* @__PURE__ */
|
|
4267
|
+
/* @__PURE__ */ React74.createElement(
|
|
4082
4268
|
"path",
|
|
4083
4269
|
{
|
|
4084
4270
|
fillRule: "evenodd",
|
|
@@ -4087,7 +4273,7 @@ var init_Parking = __esm({
|
|
|
4087
4273
|
fill: "currentColor"
|
|
4088
4274
|
}
|
|
4089
4275
|
),
|
|
4090
|
-
/* @__PURE__ */
|
|
4276
|
+
/* @__PURE__ */ React74.createElement(
|
|
4091
4277
|
"path",
|
|
4092
4278
|
{
|
|
4093
4279
|
fillRule: "evenodd",
|
|
@@ -4107,7 +4293,7 @@ var Patio_exports = {};
|
|
|
4107
4293
|
__export(Patio_exports, {
|
|
4108
4294
|
default: () => Patio_default
|
|
4109
4295
|
});
|
|
4110
|
-
import * as
|
|
4296
|
+
import * as React75 from "react";
|
|
4111
4297
|
var SvgPatio, Patio_default;
|
|
4112
4298
|
var init_Patio = __esm({
|
|
4113
4299
|
"src/react/Patio.tsx"() {
|
|
@@ -4115,7 +4301,7 @@ var init_Patio = __esm({
|
|
|
4115
4301
|
init_types();
|
|
4116
4302
|
SvgPatio = ({ size = 16, ...props }) => {
|
|
4117
4303
|
const sizeValue = resolveSize(size);
|
|
4118
|
-
return /* @__PURE__ */
|
|
4304
|
+
return /* @__PURE__ */ React75.createElement(
|
|
4119
4305
|
"svg",
|
|
4120
4306
|
{
|
|
4121
4307
|
width: sizeValue,
|
|
@@ -4125,7 +4311,7 @@ var init_Patio = __esm({
|
|
|
4125
4311
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4126
4312
|
...props
|
|
4127
4313
|
},
|
|
4128
|
-
/* @__PURE__ */
|
|
4314
|
+
/* @__PURE__ */ React75.createElement(
|
|
4129
4315
|
"path",
|
|
4130
4316
|
{
|
|
4131
4317
|
fillRule: "evenodd",
|
|
@@ -4134,7 +4320,7 @@ var init_Patio = __esm({
|
|
|
4134
4320
|
fill: "currentColor"
|
|
4135
4321
|
}
|
|
4136
4322
|
),
|
|
4137
|
-
/* @__PURE__ */
|
|
4323
|
+
/* @__PURE__ */ React75.createElement(
|
|
4138
4324
|
"path",
|
|
4139
4325
|
{
|
|
4140
4326
|
fillRule: "evenodd",
|
|
@@ -4143,7 +4329,7 @@ var init_Patio = __esm({
|
|
|
4143
4329
|
fill: "currentColor"
|
|
4144
4330
|
}
|
|
4145
4331
|
),
|
|
4146
|
-
/* @__PURE__ */
|
|
4332
|
+
/* @__PURE__ */ React75.createElement(
|
|
4147
4333
|
"path",
|
|
4148
4334
|
{
|
|
4149
4335
|
fillRule: "evenodd",
|
|
@@ -4152,7 +4338,7 @@ var init_Patio = __esm({
|
|
|
4152
4338
|
fill: "currentColor"
|
|
4153
4339
|
}
|
|
4154
4340
|
),
|
|
4155
|
-
/* @__PURE__ */
|
|
4341
|
+
/* @__PURE__ */ React75.createElement(
|
|
4156
4342
|
"path",
|
|
4157
4343
|
{
|
|
4158
4344
|
fillRule: "evenodd",
|
|
@@ -4161,7 +4347,7 @@ var init_Patio = __esm({
|
|
|
4161
4347
|
fill: "currentColor"
|
|
4162
4348
|
}
|
|
4163
4349
|
),
|
|
4164
|
-
/* @__PURE__ */
|
|
4350
|
+
/* @__PURE__ */ React75.createElement(
|
|
4165
4351
|
"path",
|
|
4166
4352
|
{
|
|
4167
4353
|
fillRule: "evenodd",
|
|
@@ -4170,7 +4356,7 @@ var init_Patio = __esm({
|
|
|
4170
4356
|
fill: "currentColor"
|
|
4171
4357
|
}
|
|
4172
4358
|
),
|
|
4173
|
-
/* @__PURE__ */
|
|
4359
|
+
/* @__PURE__ */ React75.createElement(
|
|
4174
4360
|
"path",
|
|
4175
4361
|
{
|
|
4176
4362
|
fillRule: "evenodd",
|
|
@@ -4179,7 +4365,7 @@ var init_Patio = __esm({
|
|
|
4179
4365
|
fill: "currentColor"
|
|
4180
4366
|
}
|
|
4181
4367
|
),
|
|
4182
|
-
/* @__PURE__ */
|
|
4368
|
+
/* @__PURE__ */ React75.createElement(
|
|
4183
4369
|
"path",
|
|
4184
4370
|
{
|
|
4185
4371
|
fillRule: "evenodd",
|
|
@@ -4188,7 +4374,7 @@ var init_Patio = __esm({
|
|
|
4188
4374
|
fill: "currentColor"
|
|
4189
4375
|
}
|
|
4190
4376
|
),
|
|
4191
|
-
/* @__PURE__ */
|
|
4377
|
+
/* @__PURE__ */ React75.createElement(
|
|
4192
4378
|
"path",
|
|
4193
4379
|
{
|
|
4194
4380
|
fillRule: "evenodd",
|
|
@@ -4197,7 +4383,7 @@ var init_Patio = __esm({
|
|
|
4197
4383
|
fill: "currentColor"
|
|
4198
4384
|
}
|
|
4199
4385
|
),
|
|
4200
|
-
/* @__PURE__ */
|
|
4386
|
+
/* @__PURE__ */ React75.createElement(
|
|
4201
4387
|
"path",
|
|
4202
4388
|
{
|
|
4203
4389
|
fillRule: "evenodd",
|
|
@@ -4217,7 +4403,7 @@ var Payments_exports = {};
|
|
|
4217
4403
|
__export(Payments_exports, {
|
|
4218
4404
|
default: () => Payments_default
|
|
4219
4405
|
});
|
|
4220
|
-
import * as
|
|
4406
|
+
import * as React76 from "react";
|
|
4221
4407
|
var SvgPayments, Payments_default;
|
|
4222
4408
|
var init_Payments = __esm({
|
|
4223
4409
|
"src/react/Payments.tsx"() {
|
|
@@ -4225,7 +4411,7 @@ var init_Payments = __esm({
|
|
|
4225
4411
|
init_types();
|
|
4226
4412
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
4227
4413
|
const sizeValue = resolveSize(size);
|
|
4228
|
-
return /* @__PURE__ */
|
|
4414
|
+
return /* @__PURE__ */ React76.createElement(
|
|
4229
4415
|
"svg",
|
|
4230
4416
|
{
|
|
4231
4417
|
width: sizeValue,
|
|
@@ -4235,7 +4421,7 @@ var init_Payments = __esm({
|
|
|
4235
4421
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4236
4422
|
...props
|
|
4237
4423
|
},
|
|
4238
|
-
/* @__PURE__ */
|
|
4424
|
+
/* @__PURE__ */ React76.createElement(
|
|
4239
4425
|
"path",
|
|
4240
4426
|
{
|
|
4241
4427
|
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",
|
|
@@ -4253,7 +4439,7 @@ var PencilLine_exports = {};
|
|
|
4253
4439
|
__export(PencilLine_exports, {
|
|
4254
4440
|
default: () => PencilLine_default
|
|
4255
4441
|
});
|
|
4256
|
-
import * as
|
|
4442
|
+
import * as React77 from "react";
|
|
4257
4443
|
var SvgPencilLine, PencilLine_default;
|
|
4258
4444
|
var init_PencilLine = __esm({
|
|
4259
4445
|
"src/react/PencilLine.tsx"() {
|
|
@@ -4261,7 +4447,7 @@ var init_PencilLine = __esm({
|
|
|
4261
4447
|
init_types();
|
|
4262
4448
|
SvgPencilLine = ({ size = 16, ...props }) => {
|
|
4263
4449
|
const sizeValue = resolveSize(size);
|
|
4264
|
-
return /* @__PURE__ */
|
|
4450
|
+
return /* @__PURE__ */ React77.createElement(
|
|
4265
4451
|
"svg",
|
|
4266
4452
|
{
|
|
4267
4453
|
width: sizeValue,
|
|
@@ -4271,7 +4457,7 @@ var init_PencilLine = __esm({
|
|
|
4271
4457
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4272
4458
|
...props
|
|
4273
4459
|
},
|
|
4274
|
-
/* @__PURE__ */
|
|
4460
|
+
/* @__PURE__ */ React77.createElement(
|
|
4275
4461
|
"path",
|
|
4276
4462
|
{
|
|
4277
4463
|
fillRule: "evenodd",
|
|
@@ -4280,7 +4466,7 @@ var init_PencilLine = __esm({
|
|
|
4280
4466
|
fill: "currentColor"
|
|
4281
4467
|
}
|
|
4282
4468
|
),
|
|
4283
|
-
/* @__PURE__ */
|
|
4469
|
+
/* @__PURE__ */ React77.createElement(
|
|
4284
4470
|
"path",
|
|
4285
4471
|
{
|
|
4286
4472
|
fillRule: "evenodd",
|
|
@@ -4289,7 +4475,7 @@ var init_PencilLine = __esm({
|
|
|
4289
4475
|
fill: "currentColor"
|
|
4290
4476
|
}
|
|
4291
4477
|
),
|
|
4292
|
-
/* @__PURE__ */
|
|
4478
|
+
/* @__PURE__ */ React77.createElement(
|
|
4293
4479
|
"path",
|
|
4294
4480
|
{
|
|
4295
4481
|
fillRule: "evenodd",
|
|
@@ -4309,7 +4495,7 @@ var Pet_exports = {};
|
|
|
4309
4495
|
__export(Pet_exports, {
|
|
4310
4496
|
default: () => Pet_default
|
|
4311
4497
|
});
|
|
4312
|
-
import * as
|
|
4498
|
+
import * as React78 from "react";
|
|
4313
4499
|
var SvgPet, Pet_default;
|
|
4314
4500
|
var init_Pet = __esm({
|
|
4315
4501
|
"src/react/Pet.tsx"() {
|
|
@@ -4317,7 +4503,7 @@ var init_Pet = __esm({
|
|
|
4317
4503
|
init_types();
|
|
4318
4504
|
SvgPet = ({ size = 16, ...props }) => {
|
|
4319
4505
|
const sizeValue = resolveSize(size);
|
|
4320
|
-
return /* @__PURE__ */
|
|
4506
|
+
return /* @__PURE__ */ React78.createElement(
|
|
4321
4507
|
"svg",
|
|
4322
4508
|
{
|
|
4323
4509
|
width: sizeValue,
|
|
@@ -4327,7 +4513,7 @@ var init_Pet = __esm({
|
|
|
4327
4513
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4328
4514
|
...props
|
|
4329
4515
|
},
|
|
4330
|
-
/* @__PURE__ */
|
|
4516
|
+
/* @__PURE__ */ React78.createElement(
|
|
4331
4517
|
"path",
|
|
4332
4518
|
{
|
|
4333
4519
|
fillRule: "evenodd",
|
|
@@ -4336,7 +4522,7 @@ var init_Pet = __esm({
|
|
|
4336
4522
|
fill: "currentColor"
|
|
4337
4523
|
}
|
|
4338
4524
|
),
|
|
4339
|
-
/* @__PURE__ */
|
|
4525
|
+
/* @__PURE__ */ React78.createElement(
|
|
4340
4526
|
"path",
|
|
4341
4527
|
{
|
|
4342
4528
|
fillRule: "evenodd",
|
|
@@ -4345,7 +4531,7 @@ var init_Pet = __esm({
|
|
|
4345
4531
|
fill: "currentColor"
|
|
4346
4532
|
}
|
|
4347
4533
|
),
|
|
4348
|
-
/* @__PURE__ */
|
|
4534
|
+
/* @__PURE__ */ React78.createElement(
|
|
4349
4535
|
"path",
|
|
4350
4536
|
{
|
|
4351
4537
|
fillRule: "evenodd",
|
|
@@ -4354,7 +4540,7 @@ var init_Pet = __esm({
|
|
|
4354
4540
|
fill: "currentColor"
|
|
4355
4541
|
}
|
|
4356
4542
|
),
|
|
4357
|
-
/* @__PURE__ */
|
|
4543
|
+
/* @__PURE__ */ React78.createElement(
|
|
4358
4544
|
"path",
|
|
4359
4545
|
{
|
|
4360
4546
|
fillRule: "evenodd",
|
|
@@ -4363,7 +4549,7 @@ var init_Pet = __esm({
|
|
|
4363
4549
|
fill: "currentColor"
|
|
4364
4550
|
}
|
|
4365
4551
|
),
|
|
4366
|
-
/* @__PURE__ */
|
|
4552
|
+
/* @__PURE__ */ React78.createElement(
|
|
4367
4553
|
"path",
|
|
4368
4554
|
{
|
|
4369
4555
|
fillRule: "evenodd",
|
|
@@ -4372,7 +4558,7 @@ var init_Pet = __esm({
|
|
|
4372
4558
|
fill: "currentColor"
|
|
4373
4559
|
}
|
|
4374
4560
|
),
|
|
4375
|
-
/* @__PURE__ */
|
|
4561
|
+
/* @__PURE__ */ React78.createElement(
|
|
4376
4562
|
"path",
|
|
4377
4563
|
{
|
|
4378
4564
|
fillRule: "evenodd",
|
|
@@ -4392,7 +4578,7 @@ var PhoneLinear_exports = {};
|
|
|
4392
4578
|
__export(PhoneLinear_exports, {
|
|
4393
4579
|
default: () => PhoneLinear_default
|
|
4394
4580
|
});
|
|
4395
|
-
import * as
|
|
4581
|
+
import * as React79 from "react";
|
|
4396
4582
|
var SvgPhoneLinear, PhoneLinear_default;
|
|
4397
4583
|
var init_PhoneLinear = __esm({
|
|
4398
4584
|
"src/react/PhoneLinear.tsx"() {
|
|
@@ -4400,7 +4586,7 @@ var init_PhoneLinear = __esm({
|
|
|
4400
4586
|
init_types();
|
|
4401
4587
|
SvgPhoneLinear = ({ size = 16, ...props }) => {
|
|
4402
4588
|
const sizeValue = resolveSize(size);
|
|
4403
|
-
return /* @__PURE__ */
|
|
4589
|
+
return /* @__PURE__ */ React79.createElement(
|
|
4404
4590
|
"svg",
|
|
4405
4591
|
{
|
|
4406
4592
|
width: sizeValue,
|
|
@@ -4410,7 +4596,7 @@ var init_PhoneLinear = __esm({
|
|
|
4410
4596
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4411
4597
|
...props
|
|
4412
4598
|
},
|
|
4413
|
-
/* @__PURE__ */
|
|
4599
|
+
/* @__PURE__ */ React79.createElement(
|
|
4414
4600
|
"path",
|
|
4415
4601
|
{
|
|
4416
4602
|
d: "M2.03296 7.0498C2.03301 6.32705 2.16087 5.62378 2.42358 4.9668C2.69267 4.28489 3.11486 3.66908 3.68433 3.13184C4.39753 2.43522 5.24516 2.03418 6.18823 2.03418C6.56349 2.03424 6.9463 2.11459 7.29858 2.28125C7.66527 2.45049 8.00211 2.71079 8.26343 3.08496L10.3669 6.04883C10.5611 6.31906 10.715 6.58748 10.8279 6.86328C10.9416 7.13229 11.0221 7.439 11.0222 7.75684C11.0222 8.15556 10.9049 8.53405 10.7009 8.86914L10.7 8.86816C10.536 9.15169 10.3181 9.42026 10.072 9.66797L9.55444 10.2061C9.68722 10.4205 9.90014 10.714 10.2136 11.085L10.8308 11.7793C11.0394 12.0074 11.2549 12.2359 11.4783 12.4639L12.1843 13.1396C12.4148 13.3537 12.6419 13.5573 12.8699 13.751C13.2453 14.0686 13.5438 14.2787 13.7654 14.4102L14.2761 13.9062C14.5236 13.6592 14.7967 13.4343 15.0935 13.2705L15.2195 13.1992C15.518 13.041 15.845 12.9492 16.2048 12.9492C16.5089 12.9492 16.8058 13.0141 17.0984 13.1338C17.3733 13.2462 17.6383 13.3994 17.8982 13.5762L17.906 13.5811L17.9138 13.5869L20.9138 15.7168C21.2179 15.9288 21.4689 16.1936 21.6443 16.5225L21.7156 16.6689L21.7214 16.6826L21.7273 16.6973C21.8508 17.006 21.9373 17.3467 21.9373 17.7383C21.9372 18.1995 21.8337 18.6658 21.6238 19.1104C21.434 19.5123 21.1859 19.8954 20.8601 20.2549C20.3378 20.8305 19.7416 21.2675 19.0525 21.5508C18.3948 21.8248 17.6879 21.9648 16.9392 21.9648C15.8724 21.9648 14.7643 21.714 13.6316 21.2314C12.5201 20.7579 11.4182 20.1241 10.3357 19.3359L10.3347 19.335C9.25516 18.5464 8.2325 17.6746 7.25854 16.71L7.25269 16.7031C6.28835 15.7294 5.41555 14.7071 4.6355 13.6357L4.63257 13.6318C3.85754 12.5544 3.22319 11.4624 2.75757 10.3662L2.75659 10.3643C2.28356 9.24081 2.03296 8.13301 2.03296 7.0498ZM3.83374 7.0498C3.83374 7.85158 4.01818 8.72047 4.41479 9.66309L4.57397 10.0205C4.9619 10.8577 5.46914 11.7118 6.09058 12.5762L6.36597 12.9473C7.01956 13.8092 7.74178 14.6386 8.53198 15.4365C9.4415 16.3367 10.3924 17.1482 11.3953 17.8809L11.7644 18.1426C12.6253 18.7361 13.4849 19.2123 14.3367 19.5752C15.2888 19.9809 16.1569 20.165 16.9392 20.165C17.4595 20.165 17.931 20.0689 18.3611 19.8896L18.366 19.8877C18.7807 19.7176 19.1623 19.448 19.5271 19.0459C19.7269 18.8253 19.8775 18.5923 19.9958 18.3418C20.0941 18.1337 20.1365 17.9296 20.1365 17.7383C20.1365 17.6275 20.1154 17.52 20.0632 17.3848C20.039 17.3335 19.9937 17.2687 19.8806 17.1904L19.8718 17.1846L16.8787 15.0596C16.6891 14.9312 16.539 14.8498 16.4167 14.7998C16.3109 14.7565 16.2451 14.749 16.2048 14.749C16.1628 14.749 16.1141 14.7568 16.0291 14.8086L16.0037 14.8242L15.9773 14.8379C15.8791 14.8892 15.7346 14.9936 15.5447 15.1836L15.5408 15.1875L14.8523 15.8682L14.8513 15.8672C14.5927 16.1239 14.2516 16.2811 13.8484 16.2812C13.6971 16.2812 13.5095 16.264 13.3054 16.1875L13.2859 16.1807L13.2664 16.1719C13.2224 16.153 13.1818 16.134 13.158 16.123C13.1328 16.1115 13.1238 16.1084 13.1238 16.1084L13.0798 16.0898L13.0369 16.0674C12.6503 15.8627 12.2055 15.5471 11.7078 15.126L11.7058 15.124C11.2021 14.6963 10.7132 14.2355 10.2166 13.748L10.2048 13.7363C9.71738 13.2395 9.26936 12.7446 8.85229 12.2627L8.84546 12.2549C8.43086 11.7649 8.10584 11.3213 7.90015 10.9443L7.86108 10.874L7.83569 10.7979C7.83405 10.7939 7.83126 10.7883 7.82788 10.7803C7.81747 10.7557 7.79565 10.7047 7.77417 10.6475L7.75659 10.5996L7.7439 10.5498C7.7275 10.4842 7.71422 10.417 7.70483 10.3467L7.69019 10.123L7.69604 9.9873C7.72414 9.67259 7.85138 9.37104 8.09839 9.12402L8.77515 8.4209L8.78784 8.4082C8.9646 8.23144 9.08062 8.07757 9.14819 7.95801L9.15503 7.94531L9.16284 7.93262C9.21259 7.85081 9.22241 7.79321 9.22241 7.75684C9.2223 7.73497 9.21389 7.66631 9.16772 7.55859L9.16187 7.54492C9.11221 7.42362 9.03257 7.27691 8.9021 7.0957L8.89819 7.09082L6.79565 4.12598L6.78979 4.11816C6.72557 4.02539 6.64667 3.96211 6.54468 3.91504L6.53296 3.90918C6.43566 3.86248 6.31587 3.83502 6.18823 3.83496C5.79566 3.83496 5.37766 3.99039 4.93335 4.42773L4.91968 4.44141C4.52964 4.80939 4.26353 5.20778 4.09741 5.62988L4.09546 5.63477C3.92328 6.06522 3.83379 6.54018 3.83374 7.0498Z",
|
|
@@ -4428,7 +4614,7 @@ var PinMapSolid_exports = {};
|
|
|
4428
4614
|
__export(PinMapSolid_exports, {
|
|
4429
4615
|
default: () => PinMapSolid_default
|
|
4430
4616
|
});
|
|
4431
|
-
import * as
|
|
4617
|
+
import * as React80 from "react";
|
|
4432
4618
|
var SvgPinMapSolid, PinMapSolid_default;
|
|
4433
4619
|
var init_PinMapSolid = __esm({
|
|
4434
4620
|
"src/react/PinMapSolid.tsx"() {
|
|
@@ -4436,7 +4622,7 @@ var init_PinMapSolid = __esm({
|
|
|
4436
4622
|
init_types();
|
|
4437
4623
|
SvgPinMapSolid = ({ size = 16, ...props }) => {
|
|
4438
4624
|
const sizeValue = resolveSize(size);
|
|
4439
|
-
return /* @__PURE__ */
|
|
4625
|
+
return /* @__PURE__ */ React80.createElement(
|
|
4440
4626
|
"svg",
|
|
4441
4627
|
{
|
|
4442
4628
|
width: sizeValue,
|
|
@@ -4446,7 +4632,7 @@ var init_PinMapSolid = __esm({
|
|
|
4446
4632
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4447
4633
|
...props
|
|
4448
4634
|
},
|
|
4449
|
-
/* @__PURE__ */
|
|
4635
|
+
/* @__PURE__ */ React80.createElement(
|
|
4450
4636
|
"path",
|
|
4451
4637
|
{
|
|
4452
4638
|
fillRule: "evenodd",
|
|
@@ -4466,7 +4652,7 @@ var Plus_exports = {};
|
|
|
4466
4652
|
__export(Plus_exports, {
|
|
4467
4653
|
default: () => Plus_default
|
|
4468
4654
|
});
|
|
4469
|
-
import * as
|
|
4655
|
+
import * as React81 from "react";
|
|
4470
4656
|
var SvgPlus, Plus_default;
|
|
4471
4657
|
var init_Plus = __esm({
|
|
4472
4658
|
"src/react/Plus.tsx"() {
|
|
@@ -4474,7 +4660,7 @@ var init_Plus = __esm({
|
|
|
4474
4660
|
init_types();
|
|
4475
4661
|
SvgPlus = ({ size = 16, ...props }) => {
|
|
4476
4662
|
const sizeValue = resolveSize(size);
|
|
4477
|
-
return /* @__PURE__ */
|
|
4663
|
+
return /* @__PURE__ */ React81.createElement(
|
|
4478
4664
|
"svg",
|
|
4479
4665
|
{
|
|
4480
4666
|
width: sizeValue,
|
|
@@ -4484,7 +4670,7 @@ var init_Plus = __esm({
|
|
|
4484
4670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4485
4671
|
...props
|
|
4486
4672
|
},
|
|
4487
|
-
/* @__PURE__ */
|
|
4673
|
+
/* @__PURE__ */ React81.createElement(
|
|
4488
4674
|
"path",
|
|
4489
4675
|
{
|
|
4490
4676
|
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",
|
|
@@ -4502,7 +4688,7 @@ var Promotion_exports = {};
|
|
|
4502
4688
|
__export(Promotion_exports, {
|
|
4503
4689
|
default: () => Promotion_default
|
|
4504
4690
|
});
|
|
4505
|
-
import * as
|
|
4691
|
+
import * as React82 from "react";
|
|
4506
4692
|
var SvgPromotion, Promotion_default;
|
|
4507
4693
|
var init_Promotion = __esm({
|
|
4508
4694
|
"src/react/Promotion.tsx"() {
|
|
@@ -4510,7 +4696,7 @@ var init_Promotion = __esm({
|
|
|
4510
4696
|
init_types();
|
|
4511
4697
|
SvgPromotion = ({ size = 16, ...props }) => {
|
|
4512
4698
|
const sizeValue = resolveSize(size);
|
|
4513
|
-
return /* @__PURE__ */
|
|
4699
|
+
return /* @__PURE__ */ React82.createElement(
|
|
4514
4700
|
"svg",
|
|
4515
4701
|
{
|
|
4516
4702
|
width: sizeValue,
|
|
@@ -4520,7 +4706,7 @@ var init_Promotion = __esm({
|
|
|
4520
4706
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4521
4707
|
...props
|
|
4522
4708
|
},
|
|
4523
|
-
/* @__PURE__ */
|
|
4709
|
+
/* @__PURE__ */ React82.createElement(
|
|
4524
4710
|
"path",
|
|
4525
4711
|
{
|
|
4526
4712
|
fillRule: "evenodd",
|
|
@@ -4529,7 +4715,7 @@ var init_Promotion = __esm({
|
|
|
4529
4715
|
fill: "currentColor"
|
|
4530
4716
|
}
|
|
4531
4717
|
),
|
|
4532
|
-
/* @__PURE__ */
|
|
4718
|
+
/* @__PURE__ */ React82.createElement(
|
|
4533
4719
|
"path",
|
|
4534
4720
|
{
|
|
4535
4721
|
fillRule: "evenodd",
|
|
@@ -4538,7 +4724,7 @@ var init_Promotion = __esm({
|
|
|
4538
4724
|
fill: "currentColor"
|
|
4539
4725
|
}
|
|
4540
4726
|
),
|
|
4541
|
-
/* @__PURE__ */
|
|
4727
|
+
/* @__PURE__ */ React82.createElement(
|
|
4542
4728
|
"path",
|
|
4543
4729
|
{
|
|
4544
4730
|
fillRule: "evenodd",
|
|
@@ -4547,7 +4733,7 @@ var init_Promotion = __esm({
|
|
|
4547
4733
|
fill: "currentColor"
|
|
4548
4734
|
}
|
|
4549
4735
|
),
|
|
4550
|
-
/* @__PURE__ */
|
|
4736
|
+
/* @__PURE__ */ React82.createElement(
|
|
4551
4737
|
"path",
|
|
4552
4738
|
{
|
|
4553
4739
|
fillRule: "evenodd",
|
|
@@ -4567,7 +4753,7 @@ var PropertiesFilled_exports = {};
|
|
|
4567
4753
|
__export(PropertiesFilled_exports, {
|
|
4568
4754
|
default: () => PropertiesFilled_default
|
|
4569
4755
|
});
|
|
4570
|
-
import * as
|
|
4756
|
+
import * as React83 from "react";
|
|
4571
4757
|
var SvgPropertiesFilled, PropertiesFilled_default;
|
|
4572
4758
|
var init_PropertiesFilled = __esm({
|
|
4573
4759
|
"src/react/PropertiesFilled.tsx"() {
|
|
@@ -4575,7 +4761,7 @@ var init_PropertiesFilled = __esm({
|
|
|
4575
4761
|
init_types();
|
|
4576
4762
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
4577
4763
|
const sizeValue = resolveSize(size);
|
|
4578
|
-
return /* @__PURE__ */
|
|
4764
|
+
return /* @__PURE__ */ React83.createElement(
|
|
4579
4765
|
"svg",
|
|
4580
4766
|
{
|
|
4581
4767
|
width: sizeValue,
|
|
@@ -4585,7 +4771,7 @@ var init_PropertiesFilled = __esm({
|
|
|
4585
4771
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4586
4772
|
...props
|
|
4587
4773
|
},
|
|
4588
|
-
/* @__PURE__ */
|
|
4774
|
+
/* @__PURE__ */ React83.createElement(
|
|
4589
4775
|
"path",
|
|
4590
4776
|
{
|
|
4591
4777
|
fillRule: "evenodd",
|
|
@@ -4594,7 +4780,7 @@ var init_PropertiesFilled = __esm({
|
|
|
4594
4780
|
fill: "currentColor"
|
|
4595
4781
|
}
|
|
4596
4782
|
),
|
|
4597
|
-
/* @__PURE__ */
|
|
4783
|
+
/* @__PURE__ */ React83.createElement(
|
|
4598
4784
|
"path",
|
|
4599
4785
|
{
|
|
4600
4786
|
fillRule: "evenodd",
|
|
@@ -4603,7 +4789,7 @@ var init_PropertiesFilled = __esm({
|
|
|
4603
4789
|
fill: "currentColor"
|
|
4604
4790
|
}
|
|
4605
4791
|
),
|
|
4606
|
-
/* @__PURE__ */
|
|
4792
|
+
/* @__PURE__ */ React83.createElement(
|
|
4607
4793
|
"path",
|
|
4608
4794
|
{
|
|
4609
4795
|
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",
|
|
@@ -4621,7 +4807,7 @@ var PropertiesLinear_exports = {};
|
|
|
4621
4807
|
__export(PropertiesLinear_exports, {
|
|
4622
4808
|
default: () => PropertiesLinear_default
|
|
4623
4809
|
});
|
|
4624
|
-
import * as
|
|
4810
|
+
import * as React84 from "react";
|
|
4625
4811
|
var SvgPropertiesLinear, PropertiesLinear_default;
|
|
4626
4812
|
var init_PropertiesLinear = __esm({
|
|
4627
4813
|
"src/react/PropertiesLinear.tsx"() {
|
|
@@ -4629,7 +4815,7 @@ var init_PropertiesLinear = __esm({
|
|
|
4629
4815
|
init_types();
|
|
4630
4816
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
4631
4817
|
const sizeValue = resolveSize(size);
|
|
4632
|
-
return /* @__PURE__ */
|
|
4818
|
+
return /* @__PURE__ */ React84.createElement(
|
|
4633
4819
|
"svg",
|
|
4634
4820
|
{
|
|
4635
4821
|
width: sizeValue,
|
|
@@ -4639,7 +4825,7 @@ var init_PropertiesLinear = __esm({
|
|
|
4639
4825
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4640
4826
|
...props
|
|
4641
4827
|
},
|
|
4642
|
-
/* @__PURE__ */
|
|
4828
|
+
/* @__PURE__ */ React84.createElement(
|
|
4643
4829
|
"path",
|
|
4644
4830
|
{
|
|
4645
4831
|
fillRule: "evenodd",
|
|
@@ -4648,7 +4834,7 @@ var init_PropertiesLinear = __esm({
|
|
|
4648
4834
|
fill: "currentColor"
|
|
4649
4835
|
}
|
|
4650
4836
|
),
|
|
4651
|
-
/* @__PURE__ */
|
|
4837
|
+
/* @__PURE__ */ React84.createElement(
|
|
4652
4838
|
"path",
|
|
4653
4839
|
{
|
|
4654
4840
|
fillRule: "evenodd",
|
|
@@ -4657,7 +4843,7 @@ var init_PropertiesLinear = __esm({
|
|
|
4657
4843
|
fill: "currentColor"
|
|
4658
4844
|
}
|
|
4659
4845
|
),
|
|
4660
|
-
/* @__PURE__ */
|
|
4846
|
+
/* @__PURE__ */ React84.createElement(
|
|
4661
4847
|
"path",
|
|
4662
4848
|
{
|
|
4663
4849
|
fillRule: "evenodd",
|
|
@@ -4666,7 +4852,7 @@ var init_PropertiesLinear = __esm({
|
|
|
4666
4852
|
fill: "currentColor"
|
|
4667
4853
|
}
|
|
4668
4854
|
),
|
|
4669
|
-
/* @__PURE__ */
|
|
4855
|
+
/* @__PURE__ */ React84.createElement(
|
|
4670
4856
|
"path",
|
|
4671
4857
|
{
|
|
4672
4858
|
fillRule: "evenodd",
|
|
@@ -4675,7 +4861,7 @@ var init_PropertiesLinear = __esm({
|
|
|
4675
4861
|
fill: "currentColor"
|
|
4676
4862
|
}
|
|
4677
4863
|
),
|
|
4678
|
-
/* @__PURE__ */
|
|
4864
|
+
/* @__PURE__ */ React84.createElement(
|
|
4679
4865
|
"path",
|
|
4680
4866
|
{
|
|
4681
4867
|
fillRule: "evenodd",
|
|
@@ -4684,7 +4870,7 @@ var init_PropertiesLinear = __esm({
|
|
|
4684
4870
|
fill: "currentColor"
|
|
4685
4871
|
}
|
|
4686
4872
|
),
|
|
4687
|
-
/* @__PURE__ */
|
|
4873
|
+
/* @__PURE__ */ React84.createElement(
|
|
4688
4874
|
"path",
|
|
4689
4875
|
{
|
|
4690
4876
|
fillRule: "evenodd",
|
|
@@ -4693,7 +4879,7 @@ var init_PropertiesLinear = __esm({
|
|
|
4693
4879
|
fill: "currentColor"
|
|
4694
4880
|
}
|
|
4695
4881
|
),
|
|
4696
|
-
/* @__PURE__ */
|
|
4882
|
+
/* @__PURE__ */ React84.createElement(
|
|
4697
4883
|
"path",
|
|
4698
4884
|
{
|
|
4699
4885
|
fillRule: "evenodd",
|
|
@@ -4713,7 +4899,7 @@ var Rent_exports = {};
|
|
|
4713
4899
|
__export(Rent_exports, {
|
|
4714
4900
|
default: () => Rent_default
|
|
4715
4901
|
});
|
|
4716
|
-
import * as
|
|
4902
|
+
import * as React85 from "react";
|
|
4717
4903
|
var SvgRent, Rent_default;
|
|
4718
4904
|
var init_Rent = __esm({
|
|
4719
4905
|
"src/react/Rent.tsx"() {
|
|
@@ -4721,7 +4907,7 @@ var init_Rent = __esm({
|
|
|
4721
4907
|
init_types();
|
|
4722
4908
|
SvgRent = ({ size = 16, ...props }) => {
|
|
4723
4909
|
const sizeValue = resolveSize(size);
|
|
4724
|
-
return /* @__PURE__ */
|
|
4910
|
+
return /* @__PURE__ */ React85.createElement(
|
|
4725
4911
|
"svg",
|
|
4726
4912
|
{
|
|
4727
4913
|
width: sizeValue,
|
|
@@ -4731,7 +4917,7 @@ var init_Rent = __esm({
|
|
|
4731
4917
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4732
4918
|
...props
|
|
4733
4919
|
},
|
|
4734
|
-
/* @__PURE__ */
|
|
4920
|
+
/* @__PURE__ */ React85.createElement(
|
|
4735
4921
|
"path",
|
|
4736
4922
|
{
|
|
4737
4923
|
fillRule: "evenodd",
|
|
@@ -4740,7 +4926,7 @@ var init_Rent = __esm({
|
|
|
4740
4926
|
fill: "currentColor"
|
|
4741
4927
|
}
|
|
4742
4928
|
),
|
|
4743
|
-
/* @__PURE__ */
|
|
4929
|
+
/* @__PURE__ */ React85.createElement(
|
|
4744
4930
|
"path",
|
|
4745
4931
|
{
|
|
4746
4932
|
fillRule: "evenodd",
|
|
@@ -4749,7 +4935,7 @@ var init_Rent = __esm({
|
|
|
4749
4935
|
fill: "currentColor"
|
|
4750
4936
|
}
|
|
4751
4937
|
),
|
|
4752
|
-
/* @__PURE__ */
|
|
4938
|
+
/* @__PURE__ */ React85.createElement(
|
|
4753
4939
|
"path",
|
|
4754
4940
|
{
|
|
4755
4941
|
fillRule: "evenodd",
|
|
@@ -4769,7 +4955,7 @@ var Restaurant_exports = {};
|
|
|
4769
4955
|
__export(Restaurant_exports, {
|
|
4770
4956
|
default: () => Restaurant_default
|
|
4771
4957
|
});
|
|
4772
|
-
import * as
|
|
4958
|
+
import * as React86 from "react";
|
|
4773
4959
|
var SvgRestaurant, Restaurant_default;
|
|
4774
4960
|
var init_Restaurant = __esm({
|
|
4775
4961
|
"src/react/Restaurant.tsx"() {
|
|
@@ -4777,7 +4963,7 @@ var init_Restaurant = __esm({
|
|
|
4777
4963
|
init_types();
|
|
4778
4964
|
SvgRestaurant = ({ size = 16, ...props }) => {
|
|
4779
4965
|
const sizeValue = resolveSize(size);
|
|
4780
|
-
return /* @__PURE__ */
|
|
4966
|
+
return /* @__PURE__ */ React86.createElement(
|
|
4781
4967
|
"svg",
|
|
4782
4968
|
{
|
|
4783
4969
|
width: sizeValue,
|
|
@@ -4787,7 +4973,7 @@ var init_Restaurant = __esm({
|
|
|
4787
4973
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4788
4974
|
...props
|
|
4789
4975
|
},
|
|
4790
|
-
/* @__PURE__ */
|
|
4976
|
+
/* @__PURE__ */ React86.createElement(
|
|
4791
4977
|
"path",
|
|
4792
4978
|
{
|
|
4793
4979
|
fillRule: "evenodd",
|
|
@@ -4796,7 +4982,7 @@ var init_Restaurant = __esm({
|
|
|
4796
4982
|
fill: "currentColor"
|
|
4797
4983
|
}
|
|
4798
4984
|
),
|
|
4799
|
-
/* @__PURE__ */
|
|
4985
|
+
/* @__PURE__ */ React86.createElement(
|
|
4800
4986
|
"path",
|
|
4801
4987
|
{
|
|
4802
4988
|
fillRule: "evenodd",
|
|
@@ -4816,7 +5002,7 @@ var Sale_exports = {};
|
|
|
4816
5002
|
__export(Sale_exports, {
|
|
4817
5003
|
default: () => Sale_default
|
|
4818
5004
|
});
|
|
4819
|
-
import * as
|
|
5005
|
+
import * as React87 from "react";
|
|
4820
5006
|
var SvgSale, Sale_default;
|
|
4821
5007
|
var init_Sale = __esm({
|
|
4822
5008
|
"src/react/Sale.tsx"() {
|
|
@@ -4824,7 +5010,7 @@ var init_Sale = __esm({
|
|
|
4824
5010
|
init_types();
|
|
4825
5011
|
SvgSale = ({ size = 16, ...props }) => {
|
|
4826
5012
|
const sizeValue = resolveSize(size);
|
|
4827
|
-
return /* @__PURE__ */
|
|
5013
|
+
return /* @__PURE__ */ React87.createElement(
|
|
4828
5014
|
"svg",
|
|
4829
5015
|
{
|
|
4830
5016
|
width: sizeValue,
|
|
@@ -4834,7 +5020,7 @@ var init_Sale = __esm({
|
|
|
4834
5020
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4835
5021
|
...props
|
|
4836
5022
|
},
|
|
4837
|
-
/* @__PURE__ */
|
|
5023
|
+
/* @__PURE__ */ React87.createElement(
|
|
4838
5024
|
"path",
|
|
4839
5025
|
{
|
|
4840
5026
|
fillRule: "evenodd",
|
|
@@ -4843,7 +5029,7 @@ var init_Sale = __esm({
|
|
|
4843
5029
|
fill: "currentColor"
|
|
4844
5030
|
}
|
|
4845
5031
|
),
|
|
4846
|
-
/* @__PURE__ */
|
|
5032
|
+
/* @__PURE__ */ React87.createElement(
|
|
4847
5033
|
"path",
|
|
4848
5034
|
{
|
|
4849
5035
|
fillRule: "evenodd",
|
|
@@ -4852,7 +5038,7 @@ var init_Sale = __esm({
|
|
|
4852
5038
|
fill: "currentColor"
|
|
4853
5039
|
}
|
|
4854
5040
|
),
|
|
4855
|
-
/* @__PURE__ */
|
|
5041
|
+
/* @__PURE__ */ React87.createElement(
|
|
4856
5042
|
"path",
|
|
4857
5043
|
{
|
|
4858
5044
|
fillRule: "evenodd",
|
|
@@ -4872,7 +5058,7 @@ var Search_exports = {};
|
|
|
4872
5058
|
__export(Search_exports, {
|
|
4873
5059
|
default: () => Search_default
|
|
4874
5060
|
});
|
|
4875
|
-
import * as
|
|
5061
|
+
import * as React88 from "react";
|
|
4876
5062
|
var SvgSearch, Search_default;
|
|
4877
5063
|
var init_Search = __esm({
|
|
4878
5064
|
"src/react/Search.tsx"() {
|
|
@@ -4880,7 +5066,7 @@ var init_Search = __esm({
|
|
|
4880
5066
|
init_types();
|
|
4881
5067
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
4882
5068
|
const sizeValue = resolveSize(size);
|
|
4883
|
-
return /* @__PURE__ */
|
|
5069
|
+
return /* @__PURE__ */ React88.createElement(
|
|
4884
5070
|
"svg",
|
|
4885
5071
|
{
|
|
4886
5072
|
width: sizeValue,
|
|
@@ -4890,7 +5076,7 @@ var init_Search = __esm({
|
|
|
4890
5076
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4891
5077
|
...props
|
|
4892
5078
|
},
|
|
4893
|
-
/* @__PURE__ */
|
|
5079
|
+
/* @__PURE__ */ React88.createElement(
|
|
4894
5080
|
"path",
|
|
4895
5081
|
{
|
|
4896
5082
|
fillRule: "evenodd",
|
|
@@ -4899,7 +5085,7 @@ var init_Search = __esm({
|
|
|
4899
5085
|
fill: "currentColor"
|
|
4900
5086
|
}
|
|
4901
5087
|
),
|
|
4902
|
-
/* @__PURE__ */
|
|
5088
|
+
/* @__PURE__ */ React88.createElement(
|
|
4903
5089
|
"path",
|
|
4904
5090
|
{
|
|
4905
5091
|
fillRule: "evenodd",
|
|
@@ -4919,7 +5105,7 @@ var SearchX_exports = {};
|
|
|
4919
5105
|
__export(SearchX_exports, {
|
|
4920
5106
|
default: () => SearchX_default
|
|
4921
5107
|
});
|
|
4922
|
-
import * as
|
|
5108
|
+
import * as React89 from "react";
|
|
4923
5109
|
var SvgSearchX, SearchX_default;
|
|
4924
5110
|
var init_SearchX = __esm({
|
|
4925
5111
|
"src/react/SearchX.tsx"() {
|
|
@@ -4927,7 +5113,7 @@ var init_SearchX = __esm({
|
|
|
4927
5113
|
init_types();
|
|
4928
5114
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
4929
5115
|
const sizeValue = resolveSize(size);
|
|
4930
|
-
return /* @__PURE__ */
|
|
5116
|
+
return /* @__PURE__ */ React89.createElement(
|
|
4931
5117
|
"svg",
|
|
4932
5118
|
{
|
|
4933
5119
|
width: sizeValue,
|
|
@@ -4937,7 +5123,7 @@ var init_SearchX = __esm({
|
|
|
4937
5123
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4938
5124
|
...props
|
|
4939
5125
|
},
|
|
4940
|
-
/* @__PURE__ */
|
|
5126
|
+
/* @__PURE__ */ React89.createElement(
|
|
4941
5127
|
"path",
|
|
4942
5128
|
{
|
|
4943
5129
|
fillRule: "evenodd",
|
|
@@ -4946,7 +5132,7 @@ var init_SearchX = __esm({
|
|
|
4946
5132
|
fill: "currentColor"
|
|
4947
5133
|
}
|
|
4948
5134
|
),
|
|
4949
|
-
/* @__PURE__ */
|
|
5135
|
+
/* @__PURE__ */ React89.createElement(
|
|
4950
5136
|
"path",
|
|
4951
5137
|
{
|
|
4952
5138
|
fillRule: "evenodd",
|
|
@@ -4955,7 +5141,7 @@ var init_SearchX = __esm({
|
|
|
4955
5141
|
fill: "currentColor"
|
|
4956
5142
|
}
|
|
4957
5143
|
),
|
|
4958
|
-
/* @__PURE__ */
|
|
5144
|
+
/* @__PURE__ */ React89.createElement(
|
|
4959
5145
|
"path",
|
|
4960
5146
|
{
|
|
4961
5147
|
fillRule: "evenodd",
|
|
@@ -4964,7 +5150,7 @@ var init_SearchX = __esm({
|
|
|
4964
5150
|
fill: "currentColor"
|
|
4965
5151
|
}
|
|
4966
5152
|
),
|
|
4967
|
-
/* @__PURE__ */
|
|
5153
|
+
/* @__PURE__ */ React89.createElement(
|
|
4968
5154
|
"path",
|
|
4969
5155
|
{
|
|
4970
5156
|
fillRule: "evenodd",
|
|
@@ -4984,7 +5170,7 @@ var Share_exports = {};
|
|
|
4984
5170
|
__export(Share_exports, {
|
|
4985
5171
|
default: () => Share_default
|
|
4986
5172
|
});
|
|
4987
|
-
import * as
|
|
5173
|
+
import * as React90 from "react";
|
|
4988
5174
|
var SvgShare, Share_default;
|
|
4989
5175
|
var init_Share = __esm({
|
|
4990
5176
|
"src/react/Share.tsx"() {
|
|
@@ -4992,7 +5178,7 @@ var init_Share = __esm({
|
|
|
4992
5178
|
init_types();
|
|
4993
5179
|
SvgShare = ({ size = 16, ...props }) => {
|
|
4994
5180
|
const sizeValue = resolveSize(size);
|
|
4995
|
-
return /* @__PURE__ */
|
|
5181
|
+
return /* @__PURE__ */ React90.createElement(
|
|
4996
5182
|
"svg",
|
|
4997
5183
|
{
|
|
4998
5184
|
width: sizeValue,
|
|
@@ -5002,7 +5188,7 @@ var init_Share = __esm({
|
|
|
5002
5188
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5003
5189
|
...props
|
|
5004
5190
|
},
|
|
5005
|
-
/* @__PURE__ */
|
|
5191
|
+
/* @__PURE__ */ React90.createElement(
|
|
5006
5192
|
"path",
|
|
5007
5193
|
{
|
|
5008
5194
|
fillRule: "evenodd",
|
|
@@ -5011,7 +5197,7 @@ var init_Share = __esm({
|
|
|
5011
5197
|
fill: "currentColor"
|
|
5012
5198
|
}
|
|
5013
5199
|
),
|
|
5014
|
-
/* @__PURE__ */
|
|
5200
|
+
/* @__PURE__ */ React90.createElement(
|
|
5015
5201
|
"path",
|
|
5016
5202
|
{
|
|
5017
5203
|
fillRule: "evenodd",
|
|
@@ -5020,7 +5206,7 @@ var init_Share = __esm({
|
|
|
5020
5206
|
fill: "currentColor"
|
|
5021
5207
|
}
|
|
5022
5208
|
),
|
|
5023
|
-
/* @__PURE__ */
|
|
5209
|
+
/* @__PURE__ */ React90.createElement(
|
|
5024
5210
|
"path",
|
|
5025
5211
|
{
|
|
5026
5212
|
fillRule: "evenodd",
|
|
@@ -5040,7 +5226,7 @@ var Size3D_exports = {};
|
|
|
5040
5226
|
__export(Size3D_exports, {
|
|
5041
5227
|
default: () => Size3D_default
|
|
5042
5228
|
});
|
|
5043
|
-
import * as
|
|
5229
|
+
import * as React91 from "react";
|
|
5044
5230
|
var SvgSize3D, Size3D_default;
|
|
5045
5231
|
var init_Size3D = __esm({
|
|
5046
5232
|
"src/react/Size3D.tsx"() {
|
|
@@ -5048,7 +5234,7 @@ var init_Size3D = __esm({
|
|
|
5048
5234
|
init_types();
|
|
5049
5235
|
SvgSize3D = ({ size = 16, ...props }) => {
|
|
5050
5236
|
const sizeValue = resolveSize(size);
|
|
5051
|
-
return /* @__PURE__ */
|
|
5237
|
+
return /* @__PURE__ */ React91.createElement(
|
|
5052
5238
|
"svg",
|
|
5053
5239
|
{
|
|
5054
5240
|
width: sizeValue,
|
|
@@ -5058,7 +5244,7 @@ var init_Size3D = __esm({
|
|
|
5058
5244
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5059
5245
|
...props
|
|
5060
5246
|
},
|
|
5061
|
-
/* @__PURE__ */
|
|
5247
|
+
/* @__PURE__ */ React91.createElement(
|
|
5062
5248
|
"path",
|
|
5063
5249
|
{
|
|
5064
5250
|
fillRule: "evenodd",
|
|
@@ -5067,7 +5253,7 @@ var init_Size3D = __esm({
|
|
|
5067
5253
|
fill: "currentColor"
|
|
5068
5254
|
}
|
|
5069
5255
|
),
|
|
5070
|
-
/* @__PURE__ */
|
|
5256
|
+
/* @__PURE__ */ React91.createElement(
|
|
5071
5257
|
"path",
|
|
5072
5258
|
{
|
|
5073
5259
|
fillRule: "evenodd",
|
|
@@ -5076,7 +5262,7 @@ var init_Size3D = __esm({
|
|
|
5076
5262
|
fill: "currentColor"
|
|
5077
5263
|
}
|
|
5078
5264
|
),
|
|
5079
|
-
/* @__PURE__ */
|
|
5265
|
+
/* @__PURE__ */ React91.createElement(
|
|
5080
5266
|
"path",
|
|
5081
5267
|
{
|
|
5082
5268
|
fillRule: "evenodd",
|
|
@@ -5085,7 +5271,7 @@ var init_Size3D = __esm({
|
|
|
5085
5271
|
fill: "currentColor"
|
|
5086
5272
|
}
|
|
5087
5273
|
),
|
|
5088
|
-
/* @__PURE__ */
|
|
5274
|
+
/* @__PURE__ */ React91.createElement(
|
|
5089
5275
|
"path",
|
|
5090
5276
|
{
|
|
5091
5277
|
fillRule: "evenodd",
|
|
@@ -5105,7 +5291,7 @@ var SwimmingPool_exports = {};
|
|
|
5105
5291
|
__export(SwimmingPool_exports, {
|
|
5106
5292
|
default: () => SwimmingPool_default
|
|
5107
5293
|
});
|
|
5108
|
-
import * as
|
|
5294
|
+
import * as React92 from "react";
|
|
5109
5295
|
var SvgSwimmingPool, SwimmingPool_default;
|
|
5110
5296
|
var init_SwimmingPool = __esm({
|
|
5111
5297
|
"src/react/SwimmingPool.tsx"() {
|
|
@@ -5113,7 +5299,7 @@ var init_SwimmingPool = __esm({
|
|
|
5113
5299
|
init_types();
|
|
5114
5300
|
SvgSwimmingPool = ({ size = 16, ...props }) => {
|
|
5115
5301
|
const sizeValue = resolveSize(size);
|
|
5116
|
-
return /* @__PURE__ */
|
|
5302
|
+
return /* @__PURE__ */ React92.createElement(
|
|
5117
5303
|
"svg",
|
|
5118
5304
|
{
|
|
5119
5305
|
width: sizeValue,
|
|
@@ -5123,7 +5309,7 @@ var init_SwimmingPool = __esm({
|
|
|
5123
5309
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5124
5310
|
...props
|
|
5125
5311
|
},
|
|
5126
|
-
/* @__PURE__ */
|
|
5312
|
+
/* @__PURE__ */ React92.createElement(
|
|
5127
5313
|
"path",
|
|
5128
5314
|
{
|
|
5129
5315
|
fillRule: "evenodd",
|
|
@@ -5132,7 +5318,7 @@ var init_SwimmingPool = __esm({
|
|
|
5132
5318
|
fill: "currentColor"
|
|
5133
5319
|
}
|
|
5134
5320
|
),
|
|
5135
|
-
/* @__PURE__ */
|
|
5321
|
+
/* @__PURE__ */ React92.createElement(
|
|
5136
5322
|
"path",
|
|
5137
5323
|
{
|
|
5138
5324
|
fillRule: "evenodd",
|
|
@@ -5141,7 +5327,7 @@ var init_SwimmingPool = __esm({
|
|
|
5141
5327
|
fill: "currentColor"
|
|
5142
5328
|
}
|
|
5143
5329
|
),
|
|
5144
|
-
/* @__PURE__ */
|
|
5330
|
+
/* @__PURE__ */ React92.createElement(
|
|
5145
5331
|
"path",
|
|
5146
5332
|
{
|
|
5147
5333
|
fillRule: "evenodd",
|
|
@@ -5150,7 +5336,7 @@ var init_SwimmingPool = __esm({
|
|
|
5150
5336
|
fill: "currentColor"
|
|
5151
5337
|
}
|
|
5152
5338
|
),
|
|
5153
|
-
/* @__PURE__ */
|
|
5339
|
+
/* @__PURE__ */ React92.createElement(
|
|
5154
5340
|
"path",
|
|
5155
5341
|
{
|
|
5156
5342
|
fillRule: "evenodd",
|
|
@@ -5159,7 +5345,7 @@ var init_SwimmingPool = __esm({
|
|
|
5159
5345
|
fill: "currentColor"
|
|
5160
5346
|
}
|
|
5161
5347
|
),
|
|
5162
|
-
/* @__PURE__ */
|
|
5348
|
+
/* @__PURE__ */ React92.createElement(
|
|
5163
5349
|
"path",
|
|
5164
5350
|
{
|
|
5165
5351
|
fillRule: "evenodd",
|
|
@@ -5168,7 +5354,7 @@ var init_SwimmingPool = __esm({
|
|
|
5168
5354
|
fill: "currentColor"
|
|
5169
5355
|
}
|
|
5170
5356
|
),
|
|
5171
|
-
/* @__PURE__ */
|
|
5357
|
+
/* @__PURE__ */ React92.createElement(
|
|
5172
5358
|
"path",
|
|
5173
5359
|
{
|
|
5174
5360
|
fillRule: "evenodd",
|
|
@@ -5188,7 +5374,7 @@ var Terrace_exports = {};
|
|
|
5188
5374
|
__export(Terrace_exports, {
|
|
5189
5375
|
default: () => Terrace_default
|
|
5190
5376
|
});
|
|
5191
|
-
import * as
|
|
5377
|
+
import * as React93 from "react";
|
|
5192
5378
|
var SvgTerrace, Terrace_default;
|
|
5193
5379
|
var init_Terrace = __esm({
|
|
5194
5380
|
"src/react/Terrace.tsx"() {
|
|
@@ -5196,7 +5382,7 @@ var init_Terrace = __esm({
|
|
|
5196
5382
|
init_types();
|
|
5197
5383
|
SvgTerrace = ({ size = 16, ...props }) => {
|
|
5198
5384
|
const sizeValue = resolveSize(size);
|
|
5199
|
-
return /* @__PURE__ */
|
|
5385
|
+
return /* @__PURE__ */ React93.createElement(
|
|
5200
5386
|
"svg",
|
|
5201
5387
|
{
|
|
5202
5388
|
width: sizeValue,
|
|
@@ -5206,7 +5392,7 @@ var init_Terrace = __esm({
|
|
|
5206
5392
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5207
5393
|
...props
|
|
5208
5394
|
},
|
|
5209
|
-
/* @__PURE__ */
|
|
5395
|
+
/* @__PURE__ */ React93.createElement(
|
|
5210
5396
|
"path",
|
|
5211
5397
|
{
|
|
5212
5398
|
d: "M19.2676 10.7392C19.9333 10.2802 20.7544 10.1041 21.5498 10.25C22.2459 10.3777 22.8726 10.7431 23.3262 11.2783L23.5098 11.5176L23.668 11.7744C24.007 12.3881 24.1265 13.1031 23.999 13.7988C23.8539 14.591 23.4002 15.2922 22.7393 15.7519L22.7402 15.7529L17.7539 19.2871C17.6752 19.3567 17.5936 19.4218 17.5088 19.4824L18.7139 21.8926C18.9111 22.2877 18.7505 22.7683 18.3555 22.9658C17.9604 23.1631 17.4798 23.0025 17.2822 22.6074L15.9971 20.0371C15.9152 20.0438 15.8327 20.0498 15.75 20.0498H6.62305L6.02441 22.4443C5.91716 22.8728 5.48227 23.1335 5.05371 23.0264C4.62519 22.9191 4.36454 22.4842 4.47168 22.0556L4.97559 20.0361C4.26734 19.9721 3.60066 19.6631 3.09375 19.1562C2.52176 18.5842 2.2002 17.8089 2.2002 17C2.2002 16.1911 2.52176 15.4157 3.09375 14.8437C3.66574 14.2717 4.44109 13.9502 5.25 13.9502H14.7451L19.2588 10.7461L19.2676 10.7392ZM4.80762 9.69334C5.02854 9.31071 5.51776 9.17945 5.90039 9.40037C6.28273 9.6214 6.41323 10.1106 6.19238 10.4931L5.44238 11.792C5.22142 12.1745 4.73218 12.3058 4.34961 12.0849C3.96715 11.864 3.83674 11.3747 4.05762 10.9922L4.80762 9.69334ZM9.59961 9.40037C9.98224 9.17945 10.4715 9.31071 10.6924 9.69334L11.4424 10.9922C11.6633 11.3747 11.5329 11.864 11.1504 12.0849C10.7678 12.3058 10.2786 12.1745 10.0576 11.792L9.30762 10.4931C9.08677 10.1106 9.21727 9.6214 9.59961 9.40037ZM9.2002 6.19627C9.2002 5.81178 9.04723 5.4428 8.77539 5.17088C8.50346 4.89895 8.13456 4.74608 7.75 4.74608C7.36544 4.74608 6.99654 4.89895 6.72461 5.17088C6.45277 5.4428 6.2998 5.81178 6.2998 6.19627C6.29988 6.58073 6.45275 6.9498 6.72461 7.22166C6.99652 7.4935 7.3655 7.64647 7.75 7.64647C8.1345 7.64647 8.50348 7.4935 8.77539 7.22166C9.04725 6.9498 9.20012 6.58073 9.2002 6.19627ZM3.25 5.39647C3.69183 5.39647 4.0498 5.75444 4.0498 6.19627C4.04965 6.63797 3.69173 6.99608 3.25 6.99608H1.75C1.30827 6.99608 0.950351 6.63797 0.950195 6.19627C0.950195 5.75444 1.30817 5.39647 1.75 5.39647H3.25ZM13.75 5.39647C14.1918 5.39647 14.5498 5.75444 14.5498 6.19627C14.5496 6.63797 14.1917 6.99608 13.75 6.99608H12.25C11.8083 6.99608 11.4504 6.63797 11.4502 6.19627C11.4502 5.75444 11.8082 5.39647 12.25 5.39647H13.75ZM4.34961 0.3076C4.73208 0.0867727 5.22133 0.217327 5.44238 0.599592L6.19238 1.8994C6.41317 2.28197 6.28288 2.77124 5.90039 2.99217C5.51787 3.21302 5.02863 3.08157 4.80762 2.6992L4.05762 1.40037C3.83679 1.0179 3.96734 0.528649 4.34961 0.3076ZM10.0576 0.599592C10.2787 0.217326 10.7679 0.0867727 11.1504 0.3076C11.5327 0.528649 11.6632 1.0179 11.4424 1.40037L10.6924 2.6992C10.4714 3.08157 9.98213 3.21302 9.59961 2.99217C9.21712 2.77124 9.08683 2.28197 9.30762 1.8994L10.0576 0.599592ZM3.7998 17C3.7998 17.3845 3.95268 17.7534 4.22461 18.0254C4.49654 18.2973 4.86544 18.4502 5.25 18.4502H15.75L15.8848 18.4433C16.1975 18.4136 16.4931 18.2814 16.7246 18.0654L16.7646 18.0283L16.8086 17.9971L21.8154 14.4472L21.8232 14.4414C22.1391 14.2229 22.3555 13.8884 22.4248 13.5107C22.494 13.1328 22.4105 12.7421 22.1924 12.4258C21.974 12.1097 21.6386 11.8935 21.2607 11.8242C20.8862 11.7556 20.4994 11.8361 20.1846 12.0498L15.2549 15.5498H5.25C4.86544 15.5498 4.49654 15.7027 4.22461 15.9746C3.95268 16.2465 3.7998 16.6154 3.7998 17ZM10.7998 6.19627C10.7997 7.00508 10.4782 7.7806 9.90625 8.35252C9.33428 8.92442 8.55884 9.24608 7.75 9.24608C6.94116 9.24608 6.16572 8.92442 5.59375 8.35252C5.02183 7.7806 4.70027 7.00508 4.7002 6.19627C4.7002 5.38736 5.02176 4.61103 5.59375 4.03905C6.1657 3.46727 6.94125 3.14647 7.75 3.14647C8.55875 3.14647 9.3343 3.46727 9.90625 4.03905C10.4782 4.61103 10.7998 5.38736 10.7998 6.19627Z",
|
|
@@ -5224,7 +5410,7 @@ var ThermometerSnowflake_exports = {};
|
|
|
5224
5410
|
__export(ThermometerSnowflake_exports, {
|
|
5225
5411
|
default: () => ThermometerSnowflake_default
|
|
5226
5412
|
});
|
|
5227
|
-
import * as
|
|
5413
|
+
import * as React94 from "react";
|
|
5228
5414
|
var SvgThermometerSnowflake, ThermometerSnowflake_default;
|
|
5229
5415
|
var init_ThermometerSnowflake = __esm({
|
|
5230
5416
|
"src/react/ThermometerSnowflake.tsx"() {
|
|
@@ -5232,7 +5418,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
5232
5418
|
init_types();
|
|
5233
5419
|
SvgThermometerSnowflake = ({ size = 16, ...props }) => {
|
|
5234
5420
|
const sizeValue = resolveSize(size);
|
|
5235
|
-
return /* @__PURE__ */
|
|
5421
|
+
return /* @__PURE__ */ React94.createElement(
|
|
5236
5422
|
"svg",
|
|
5237
5423
|
{
|
|
5238
5424
|
width: sizeValue,
|
|
@@ -5242,7 +5428,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
5242
5428
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5243
5429
|
...props
|
|
5244
5430
|
},
|
|
5245
|
-
/* @__PURE__ */
|
|
5431
|
+
/* @__PURE__ */ React94.createElement(
|
|
5246
5432
|
"path",
|
|
5247
5433
|
{
|
|
5248
5434
|
fillRule: "evenodd",
|
|
@@ -5251,7 +5437,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
5251
5437
|
fill: "currentColor"
|
|
5252
5438
|
}
|
|
5253
5439
|
),
|
|
5254
|
-
/* @__PURE__ */
|
|
5440
|
+
/* @__PURE__ */ React94.createElement(
|
|
5255
5441
|
"path",
|
|
5256
5442
|
{
|
|
5257
5443
|
fillRule: "evenodd",
|
|
@@ -5260,7 +5446,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
5260
5446
|
fill: "currentColor"
|
|
5261
5447
|
}
|
|
5262
5448
|
),
|
|
5263
|
-
/* @__PURE__ */
|
|
5449
|
+
/* @__PURE__ */ React94.createElement(
|
|
5264
5450
|
"path",
|
|
5265
5451
|
{
|
|
5266
5452
|
fillRule: "evenodd",
|
|
@@ -5269,7 +5455,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
5269
5455
|
fill: "currentColor"
|
|
5270
5456
|
}
|
|
5271
5457
|
),
|
|
5272
|
-
/* @__PURE__ */
|
|
5458
|
+
/* @__PURE__ */ React94.createElement(
|
|
5273
5459
|
"path",
|
|
5274
5460
|
{
|
|
5275
5461
|
fillRule: "evenodd",
|
|
@@ -5278,7 +5464,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
5278
5464
|
fill: "currentColor"
|
|
5279
5465
|
}
|
|
5280
5466
|
),
|
|
5281
|
-
/* @__PURE__ */
|
|
5467
|
+
/* @__PURE__ */ React94.createElement(
|
|
5282
5468
|
"path",
|
|
5283
5469
|
{
|
|
5284
5470
|
fillRule: "evenodd",
|
|
@@ -5287,7 +5473,7 @@ var init_ThermometerSnowflake = __esm({
|
|
|
5287
5473
|
fill: "currentColor"
|
|
5288
5474
|
}
|
|
5289
5475
|
),
|
|
5290
|
-
/* @__PURE__ */
|
|
5476
|
+
/* @__PURE__ */ React94.createElement(
|
|
5291
5477
|
"path",
|
|
5292
5478
|
{
|
|
5293
5479
|
fillRule: "evenodd",
|
|
@@ -5302,12 +5488,59 @@ var init_ThermometerSnowflake = __esm({
|
|
|
5302
5488
|
}
|
|
5303
5489
|
});
|
|
5304
5490
|
|
|
5491
|
+
// src/react/Time.tsx
|
|
5492
|
+
var Time_exports = {};
|
|
5493
|
+
__export(Time_exports, {
|
|
5494
|
+
default: () => Time_default
|
|
5495
|
+
});
|
|
5496
|
+
import * as React95 from "react";
|
|
5497
|
+
var SvgTime, Time_default;
|
|
5498
|
+
var init_Time = __esm({
|
|
5499
|
+
"src/react/Time.tsx"() {
|
|
5500
|
+
"use strict";
|
|
5501
|
+
init_types();
|
|
5502
|
+
SvgTime = ({ size = 16, ...props }) => {
|
|
5503
|
+
const sizeValue = resolveSize(size);
|
|
5504
|
+
return /* @__PURE__ */ React95.createElement(
|
|
5505
|
+
"svg",
|
|
5506
|
+
{
|
|
5507
|
+
width: sizeValue,
|
|
5508
|
+
height: sizeValue,
|
|
5509
|
+
viewBox: "0 0 24 24",
|
|
5510
|
+
fill: "none",
|
|
5511
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5512
|
+
...props
|
|
5513
|
+
},
|
|
5514
|
+
/* @__PURE__ */ React95.createElement(
|
|
5515
|
+
"path",
|
|
5516
|
+
{
|
|
5517
|
+
fillRule: "evenodd",
|
|
5518
|
+
clipRule: "evenodd",
|
|
5519
|
+
d: "M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12Z",
|
|
5520
|
+
fill: "currentColor"
|
|
5521
|
+
}
|
|
5522
|
+
),
|
|
5523
|
+
/* @__PURE__ */ React95.createElement(
|
|
5524
|
+
"path",
|
|
5525
|
+
{
|
|
5526
|
+
fillRule: "evenodd",
|
|
5527
|
+
clipRule: "evenodd",
|
|
5528
|
+
d: "M12 5C12.5523 5 13 5.44772 13 6V11.382L16.4472 13.1056C16.9412 13.3526 17.1414 13.9532 16.8944 14.4472C16.6474 14.9412 16.0468 15.1414 15.5528 14.8944L11.5528 12.8944C11.214 12.725 11 12.3788 11 12V6C11 5.44772 11.4477 5 12 5Z",
|
|
5529
|
+
fill: "currentColor"
|
|
5530
|
+
}
|
|
5531
|
+
)
|
|
5532
|
+
);
|
|
5533
|
+
};
|
|
5534
|
+
Time_default = SvgTime;
|
|
5535
|
+
}
|
|
5536
|
+
});
|
|
5537
|
+
|
|
5305
5538
|
// src/react/Trash2.tsx
|
|
5306
5539
|
var Trash2_exports = {};
|
|
5307
5540
|
__export(Trash2_exports, {
|
|
5308
5541
|
default: () => Trash2_default
|
|
5309
5542
|
});
|
|
5310
|
-
import * as
|
|
5543
|
+
import * as React96 from "react";
|
|
5311
5544
|
var SvgTrash2, Trash2_default;
|
|
5312
5545
|
var init_Trash2 = __esm({
|
|
5313
5546
|
"src/react/Trash2.tsx"() {
|
|
@@ -5315,7 +5548,7 @@ var init_Trash2 = __esm({
|
|
|
5315
5548
|
init_types();
|
|
5316
5549
|
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
5317
5550
|
const sizeValue = resolveSize(size);
|
|
5318
|
-
return /* @__PURE__ */
|
|
5551
|
+
return /* @__PURE__ */ React96.createElement(
|
|
5319
5552
|
"svg",
|
|
5320
5553
|
{
|
|
5321
5554
|
width: sizeValue,
|
|
@@ -5325,7 +5558,7 @@ var init_Trash2 = __esm({
|
|
|
5325
5558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5326
5559
|
...props
|
|
5327
5560
|
},
|
|
5328
|
-
/* @__PURE__ */
|
|
5561
|
+
/* @__PURE__ */ React96.createElement(
|
|
5329
5562
|
"path",
|
|
5330
5563
|
{
|
|
5331
5564
|
fillRule: "evenodd",
|
|
@@ -5334,7 +5567,7 @@ var init_Trash2 = __esm({
|
|
|
5334
5567
|
fill: "currentColor"
|
|
5335
5568
|
}
|
|
5336
5569
|
),
|
|
5337
|
-
/* @__PURE__ */
|
|
5570
|
+
/* @__PURE__ */ React96.createElement(
|
|
5338
5571
|
"path",
|
|
5339
5572
|
{
|
|
5340
5573
|
fillRule: "evenodd",
|
|
@@ -5343,7 +5576,7 @@ var init_Trash2 = __esm({
|
|
|
5343
5576
|
fill: "currentColor"
|
|
5344
5577
|
}
|
|
5345
5578
|
),
|
|
5346
|
-
/* @__PURE__ */
|
|
5579
|
+
/* @__PURE__ */ React96.createElement(
|
|
5347
5580
|
"path",
|
|
5348
5581
|
{
|
|
5349
5582
|
fillRule: "evenodd",
|
|
@@ -5352,7 +5585,7 @@ var init_Trash2 = __esm({
|
|
|
5352
5585
|
fill: "currentColor"
|
|
5353
5586
|
}
|
|
5354
5587
|
),
|
|
5355
|
-
/* @__PURE__ */
|
|
5588
|
+
/* @__PURE__ */ React96.createElement(
|
|
5356
5589
|
"path",
|
|
5357
5590
|
{
|
|
5358
5591
|
fillRule: "evenodd",
|
|
@@ -5361,7 +5594,7 @@ var init_Trash2 = __esm({
|
|
|
5361
5594
|
fill: "currentColor"
|
|
5362
5595
|
}
|
|
5363
5596
|
),
|
|
5364
|
-
/* @__PURE__ */
|
|
5597
|
+
/* @__PURE__ */ React96.createElement(
|
|
5365
5598
|
"path",
|
|
5366
5599
|
{
|
|
5367
5600
|
fillRule: "evenodd",
|
|
@@ -5381,7 +5614,7 @@ var User_exports = {};
|
|
|
5381
5614
|
__export(User_exports, {
|
|
5382
5615
|
default: () => User_default
|
|
5383
5616
|
});
|
|
5384
|
-
import * as
|
|
5617
|
+
import * as React97 from "react";
|
|
5385
5618
|
var SvgUser, User_default;
|
|
5386
5619
|
var init_User = __esm({
|
|
5387
5620
|
"src/react/User.tsx"() {
|
|
@@ -5389,7 +5622,7 @@ var init_User = __esm({
|
|
|
5389
5622
|
init_types();
|
|
5390
5623
|
SvgUser = ({ size = 16, ...props }) => {
|
|
5391
5624
|
const sizeValue = resolveSize(size);
|
|
5392
|
-
return /* @__PURE__ */
|
|
5625
|
+
return /* @__PURE__ */ React97.createElement(
|
|
5393
5626
|
"svg",
|
|
5394
5627
|
{
|
|
5395
5628
|
width: sizeValue,
|
|
@@ -5399,7 +5632,7 @@ var init_User = __esm({
|
|
|
5399
5632
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5400
5633
|
...props
|
|
5401
5634
|
},
|
|
5402
|
-
/* @__PURE__ */
|
|
5635
|
+
/* @__PURE__ */ React97.createElement(
|
|
5403
5636
|
"path",
|
|
5404
5637
|
{
|
|
5405
5638
|
fillRule: "evenodd",
|
|
@@ -5408,7 +5641,7 @@ var init_User = __esm({
|
|
|
5408
5641
|
fill: "currentColor"
|
|
5409
5642
|
}
|
|
5410
5643
|
),
|
|
5411
|
-
/* @__PURE__ */
|
|
5644
|
+
/* @__PURE__ */ React97.createElement(
|
|
5412
5645
|
"path",
|
|
5413
5646
|
{
|
|
5414
5647
|
fillRule: "evenodd",
|
|
@@ -5428,7 +5661,7 @@ var Whatsapp_exports = {};
|
|
|
5428
5661
|
__export(Whatsapp_exports, {
|
|
5429
5662
|
default: () => Whatsapp_default
|
|
5430
5663
|
});
|
|
5431
|
-
import * as
|
|
5664
|
+
import * as React98 from "react";
|
|
5432
5665
|
var SvgWhatsapp, Whatsapp_default;
|
|
5433
5666
|
var init_Whatsapp = __esm({
|
|
5434
5667
|
"src/react/Whatsapp.tsx"() {
|
|
@@ -5436,7 +5669,7 @@ var init_Whatsapp = __esm({
|
|
|
5436
5669
|
init_types();
|
|
5437
5670
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
5438
5671
|
const sizeValue = resolveSize(size);
|
|
5439
|
-
return /* @__PURE__ */
|
|
5672
|
+
return /* @__PURE__ */ React98.createElement(
|
|
5440
5673
|
"svg",
|
|
5441
5674
|
{
|
|
5442
5675
|
width: sizeValue,
|
|
@@ -5446,7 +5679,7 @@ var init_Whatsapp = __esm({
|
|
|
5446
5679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5447
5680
|
...props
|
|
5448
5681
|
},
|
|
5449
|
-
/* @__PURE__ */
|
|
5682
|
+
/* @__PURE__ */ React98.createElement(
|
|
5450
5683
|
"path",
|
|
5451
5684
|
{
|
|
5452
5685
|
fillRule: "evenodd",
|
|
@@ -5484,7 +5717,9 @@ init_Building();
|
|
|
5484
5717
|
init_Calendar();
|
|
5485
5718
|
init_Cancel();
|
|
5486
5719
|
init_CancelCircleSolid();
|
|
5720
|
+
init_CancelCircleStroke();
|
|
5487
5721
|
init_Check();
|
|
5722
|
+
init_CheckCheck();
|
|
5488
5723
|
init_CheckCircle2();
|
|
5489
5724
|
init_ChevronDown();
|
|
5490
5725
|
init_ChevronLeft();
|
|
@@ -5517,6 +5752,7 @@ init_HomeFilled();
|
|
|
5517
5752
|
init_HomeLinear();
|
|
5518
5753
|
init_IconSlot();
|
|
5519
5754
|
init_Image();
|
|
5755
|
+
init_ImageOff();
|
|
5520
5756
|
init_Info();
|
|
5521
5757
|
init_Keys01();
|
|
5522
5758
|
init_LeadsFilled();
|
|
@@ -5553,12 +5789,13 @@ init_Size3D();
|
|
|
5553
5789
|
init_SwimmingPool();
|
|
5554
5790
|
init_Terrace();
|
|
5555
5791
|
init_ThermometerSnowflake();
|
|
5792
|
+
init_Time();
|
|
5556
5793
|
init_Trash2();
|
|
5557
5794
|
init_User();
|
|
5558
5795
|
init_Whatsapp();
|
|
5559
5796
|
|
|
5560
5797
|
// src/react/Icon.tsx
|
|
5561
|
-
import * as
|
|
5798
|
+
import * as React99 from "react";
|
|
5562
5799
|
function loadIcon(name) {
|
|
5563
5800
|
switch (name) {
|
|
5564
5801
|
case "accessibility":
|
|
@@ -5605,8 +5842,12 @@ function loadIcon(name) {
|
|
|
5605
5842
|
return Promise.resolve().then(() => (init_Cancel(), Cancel_exports)).then((m) => m.default);
|
|
5606
5843
|
case "cancel-circle-solid":
|
|
5607
5844
|
return Promise.resolve().then(() => (init_CancelCircleSolid(), CancelCircleSolid_exports)).then((m) => m.default);
|
|
5845
|
+
case "cancel-circle-stroke":
|
|
5846
|
+
return Promise.resolve().then(() => (init_CancelCircleStroke(), CancelCircleStroke_exports)).then((m) => m.default);
|
|
5608
5847
|
case "check":
|
|
5609
5848
|
return Promise.resolve().then(() => (init_Check(), Check_exports)).then((m) => m.default);
|
|
5849
|
+
case "check-check":
|
|
5850
|
+
return Promise.resolve().then(() => (init_CheckCheck(), CheckCheck_exports)).then((m) => m.default);
|
|
5610
5851
|
case "check-circle2":
|
|
5611
5852
|
return Promise.resolve().then(() => (init_CheckCircle2(), CheckCircle2_exports)).then((m) => m.default);
|
|
5612
5853
|
case "chevron-down":
|
|
@@ -5671,6 +5912,8 @@ function loadIcon(name) {
|
|
|
5671
5912
|
return Promise.resolve().then(() => (init_IconSlot(), IconSlot_exports)).then((m) => m.default);
|
|
5672
5913
|
case "image":
|
|
5673
5914
|
return Promise.resolve().then(() => (init_Image(), Image_exports)).then((m) => m.default);
|
|
5915
|
+
case "image-off":
|
|
5916
|
+
return Promise.resolve().then(() => (init_ImageOff(), ImageOff_exports)).then((m) => m.default);
|
|
5674
5917
|
case "info":
|
|
5675
5918
|
return Promise.resolve().then(() => (init_Info(), Info_exports)).then((m) => m.default);
|
|
5676
5919
|
case "keys01":
|
|
@@ -5743,6 +5986,8 @@ function loadIcon(name) {
|
|
|
5743
5986
|
return Promise.resolve().then(() => (init_Terrace(), Terrace_exports)).then((m) => m.default);
|
|
5744
5987
|
case "thermometer-snowflake":
|
|
5745
5988
|
return Promise.resolve().then(() => (init_ThermometerSnowflake(), ThermometerSnowflake_exports)).then((m) => m.default);
|
|
5989
|
+
case "time":
|
|
5990
|
+
return Promise.resolve().then(() => (init_Time(), Time_exports)).then((m) => m.default);
|
|
5746
5991
|
case "trash2":
|
|
5747
5992
|
return Promise.resolve().then(() => (init_Trash2(), Trash2_exports)).then((m) => m.default);
|
|
5748
5993
|
case "user":
|
|
@@ -5754,10 +5999,10 @@ function loadIcon(name) {
|
|
|
5754
5999
|
}
|
|
5755
6000
|
}
|
|
5756
6001
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
5757
|
-
const [IconComponent, setIconComponent] =
|
|
5758
|
-
const [loading, setLoading] =
|
|
5759
|
-
const [error, setError] =
|
|
5760
|
-
|
|
6002
|
+
const [IconComponent, setIconComponent] = React99.useState(null);
|
|
6003
|
+
const [loading, setLoading] = React99.useState(true);
|
|
6004
|
+
const [error, setError] = React99.useState(null);
|
|
6005
|
+
React99.useEffect(() => {
|
|
5761
6006
|
setLoading(true);
|
|
5762
6007
|
setError(null);
|
|
5763
6008
|
loadIcon(name).then((Component) => {
|
|
@@ -5776,7 +6021,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
5776
6021
|
return null;
|
|
5777
6022
|
}
|
|
5778
6023
|
const style = color ? { ...props.style, color } : props.style;
|
|
5779
|
-
return /* @__PURE__ */
|
|
6024
|
+
return /* @__PURE__ */ React99.createElement(IconComponent, { size, ...props, style });
|
|
5780
6025
|
};
|
|
5781
6026
|
var Icon_default = Icon;
|
|
5782
6027
|
|
|
@@ -5805,7 +6050,9 @@ export {
|
|
|
5805
6050
|
Calendar_default as Calendar,
|
|
5806
6051
|
Cancel_default as Cancel,
|
|
5807
6052
|
CancelCircleSolid_default as CancelCircleSolid,
|
|
6053
|
+
CancelCircleStroke_default as CancelCircleStroke,
|
|
5808
6054
|
Check_default as Check,
|
|
6055
|
+
CheckCheck_default as CheckCheck,
|
|
5809
6056
|
CheckCircle2_default as CheckCircle2,
|
|
5810
6057
|
ChevronDown_default as ChevronDown,
|
|
5811
6058
|
ChevronLeft_default as ChevronLeft,
|
|
@@ -5840,6 +6087,7 @@ export {
|
|
|
5840
6087
|
Icon_default as Icon,
|
|
5841
6088
|
IconSlot_default as IconSlot,
|
|
5842
6089
|
Image_default as Image,
|
|
6090
|
+
ImageOff_default as ImageOff,
|
|
5843
6091
|
Info_default as Info,
|
|
5844
6092
|
Keys01_default as Keys01,
|
|
5845
6093
|
LeadsFilled_default as LeadsFilled,
|
|
@@ -5876,6 +6124,7 @@ export {
|
|
|
5876
6124
|
SwimmingPool_default as SwimmingPool,
|
|
5877
6125
|
Terrace_default as Terrace,
|
|
5878
6126
|
ThermometerSnowflake_default as ThermometerSnowflake,
|
|
6127
|
+
Time_default as Time,
|
|
5879
6128
|
Trash2_default as Trash2,
|
|
5880
6129
|
User_default as User,
|
|
5881
6130
|
Whatsapp_default as Whatsapp,
|