huspy-icons 0.3.2 → 0.3.3
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 +58 -52
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +50 -48
- package/dist/fonts/HuspyIcons.ts +54 -48
- 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 +50 -48
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +6 -2
- package/dist/react/index.d.ts +6 -2
- package/dist/react/index.js +335 -197
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +303 -165
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +51 -49
- package/src/react/FileInput.tsx +44 -0
- package/src/react/Icon.tsx +7 -1
- package/src/react/Promotion.tsx +44 -0
- package/src/react/index.ts +2 -0
- package/src/react/index.tsx +2 -0
package/dist/react/index.mjs
CHANGED
|
@@ -1421,12 +1421,77 @@ var init_FileCheck = __esm({
|
|
|
1421
1421
|
}
|
|
1422
1422
|
});
|
|
1423
1423
|
|
|
1424
|
+
// src/react/FileInput.tsx
|
|
1425
|
+
var FileInput_exports = {};
|
|
1426
|
+
__export(FileInput_exports, {
|
|
1427
|
+
default: () => FileInput_default
|
|
1428
|
+
});
|
|
1429
|
+
import * as React28 from "react";
|
|
1430
|
+
var SvgFileInput, FileInput_default;
|
|
1431
|
+
var init_FileInput = __esm({
|
|
1432
|
+
"src/react/FileInput.tsx"() {
|
|
1433
|
+
"use strict";
|
|
1434
|
+
init_types();
|
|
1435
|
+
SvgFileInput = ({ size = 16, ...props }) => {
|
|
1436
|
+
const sizeValue = resolveSize(size);
|
|
1437
|
+
return /* @__PURE__ */ React28.createElement(
|
|
1438
|
+
"svg",
|
|
1439
|
+
{
|
|
1440
|
+
width: sizeValue,
|
|
1441
|
+
height: sizeValue,
|
|
1442
|
+
viewBox: "0 0 24 24",
|
|
1443
|
+
fill: "none",
|
|
1444
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1445
|
+
...props
|
|
1446
|
+
},
|
|
1447
|
+
/* @__PURE__ */ React28.createElement(
|
|
1448
|
+
"path",
|
|
1449
|
+
{
|
|
1450
|
+
fillRule: "evenodd",
|
|
1451
|
+
clipRule: "evenodd",
|
|
1452
|
+
d: "M3.87868 1.87868C4.44129 1.31607 5.20435 1 6 1H14.5C14.7652 1 15.0196 1.10536 15.2071 1.29289L20.7071 6.79289C20.8946 6.98043 21 7.23478 21 7.5V20C21 20.7957 20.6839 21.5587 20.1213 22.1213C19.5587 22.6839 18.7957 23 18 23H4C3.44772 23 3 22.5523 3 22C3 21.4477 3.44772 21 4 21H18C18.2652 21 18.5196 20.8946 18.7071 20.7071C18.8946 20.5196 19 20.2652 19 20V7.91421L14.0858 3H6C5.73478 3 5.48043 3.10536 5.29289 3.29289C5.10536 3.48043 5 3.73478 5 4V8C5 8.55228 4.55228 9 4 9C3.44772 9 3 8.55228 3 8V4C3 3.20435 3.31607 2.44129 3.87868 1.87868Z",
|
|
1453
|
+
fill: "currentColor"
|
|
1454
|
+
}
|
|
1455
|
+
),
|
|
1456
|
+
/* @__PURE__ */ React28.createElement(
|
|
1457
|
+
"path",
|
|
1458
|
+
{
|
|
1459
|
+
fillRule: "evenodd",
|
|
1460
|
+
clipRule: "evenodd",
|
|
1461
|
+
d: "M14 1C14.5523 1 15 1.44772 15 2V7H20C20.5523 7 21 7.44772 21 8C21 8.55228 20.5523 9 20 9H14C13.4477 9 13 8.55228 13 8V2C13 1.44772 13.4477 1 14 1Z",
|
|
1462
|
+
fill: "currentColor"
|
|
1463
|
+
}
|
|
1464
|
+
),
|
|
1465
|
+
/* @__PURE__ */ React28.createElement(
|
|
1466
|
+
"path",
|
|
1467
|
+
{
|
|
1468
|
+
fillRule: "evenodd",
|
|
1469
|
+
clipRule: "evenodd",
|
|
1470
|
+
d: "M1 15C1 14.4477 1.44772 14 2 14H12C12.5523 14 13 14.4477 13 15C13 15.5523 12.5523 16 12 16H2C1.44772 16 1 15.5523 1 15Z",
|
|
1471
|
+
fill: "currentColor"
|
|
1472
|
+
}
|
|
1473
|
+
),
|
|
1474
|
+
/* @__PURE__ */ React28.createElement(
|
|
1475
|
+
"path",
|
|
1476
|
+
{
|
|
1477
|
+
fillRule: "evenodd",
|
|
1478
|
+
clipRule: "evenodd",
|
|
1479
|
+
d: "M8.29289 11.2929C8.68342 10.9024 9.31658 10.9024 9.70711 11.2929L12.7071 14.2929C13.0976 14.6834 13.0976 15.3166 12.7071 15.7071L9.70711 18.7071C9.31658 19.0976 8.68342 19.0976 8.29289 18.7071C7.90237 18.3166 7.90237 17.6834 8.29289 17.2929L10.5858 15L8.29289 12.7071C7.90237 12.3166 7.90237 11.6834 8.29289 11.2929Z",
|
|
1480
|
+
fill: "currentColor"
|
|
1481
|
+
}
|
|
1482
|
+
)
|
|
1483
|
+
);
|
|
1484
|
+
};
|
|
1485
|
+
FileInput_default = SvgFileInput;
|
|
1486
|
+
}
|
|
1487
|
+
});
|
|
1488
|
+
|
|
1424
1489
|
// src/react/FileKey.tsx
|
|
1425
1490
|
var FileKey_exports = {};
|
|
1426
1491
|
__export(FileKey_exports, {
|
|
1427
1492
|
default: () => FileKey_default
|
|
1428
1493
|
});
|
|
1429
|
-
import * as
|
|
1494
|
+
import * as React29 from "react";
|
|
1430
1495
|
var SvgFileKey, FileKey_default;
|
|
1431
1496
|
var init_FileKey = __esm({
|
|
1432
1497
|
"src/react/FileKey.tsx"() {
|
|
@@ -1434,7 +1499,7 @@ var init_FileKey = __esm({
|
|
|
1434
1499
|
init_types();
|
|
1435
1500
|
SvgFileKey = ({ size = 16, ...props }) => {
|
|
1436
1501
|
const sizeValue = resolveSize(size);
|
|
1437
|
-
return /* @__PURE__ */
|
|
1502
|
+
return /* @__PURE__ */ React29.createElement(
|
|
1438
1503
|
"svg",
|
|
1439
1504
|
{
|
|
1440
1505
|
width: sizeValue,
|
|
@@ -1444,7 +1509,7 @@ var init_FileKey = __esm({
|
|
|
1444
1509
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1445
1510
|
...props
|
|
1446
1511
|
},
|
|
1447
|
-
/* @__PURE__ */
|
|
1512
|
+
/* @__PURE__ */ React29.createElement(
|
|
1448
1513
|
"path",
|
|
1449
1514
|
{
|
|
1450
1515
|
fillRule: "evenodd",
|
|
@@ -1453,7 +1518,7 @@ var init_FileKey = __esm({
|
|
|
1453
1518
|
fill: "currentColor"
|
|
1454
1519
|
}
|
|
1455
1520
|
),
|
|
1456
|
-
/* @__PURE__ */
|
|
1521
|
+
/* @__PURE__ */ React29.createElement(
|
|
1457
1522
|
"path",
|
|
1458
1523
|
{
|
|
1459
1524
|
fillRule: "evenodd",
|
|
@@ -1462,7 +1527,7 @@ var init_FileKey = __esm({
|
|
|
1462
1527
|
fill: "currentColor"
|
|
1463
1528
|
}
|
|
1464
1529
|
),
|
|
1465
|
-
/* @__PURE__ */
|
|
1530
|
+
/* @__PURE__ */ React29.createElement(
|
|
1466
1531
|
"path",
|
|
1467
1532
|
{
|
|
1468
1533
|
fillRule: "evenodd",
|
|
@@ -1471,7 +1536,7 @@ var init_FileKey = __esm({
|
|
|
1471
1536
|
fill: "currentColor"
|
|
1472
1537
|
}
|
|
1473
1538
|
),
|
|
1474
|
-
/* @__PURE__ */
|
|
1539
|
+
/* @__PURE__ */ React29.createElement(
|
|
1475
1540
|
"path",
|
|
1476
1541
|
{
|
|
1477
1542
|
fillRule: "evenodd",
|
|
@@ -1491,7 +1556,7 @@ var FileLock_exports = {};
|
|
|
1491
1556
|
__export(FileLock_exports, {
|
|
1492
1557
|
default: () => FileLock_default
|
|
1493
1558
|
});
|
|
1494
|
-
import * as
|
|
1559
|
+
import * as React30 from "react";
|
|
1495
1560
|
var SvgFileLock, FileLock_default;
|
|
1496
1561
|
var init_FileLock = __esm({
|
|
1497
1562
|
"src/react/FileLock.tsx"() {
|
|
@@ -1499,7 +1564,7 @@ var init_FileLock = __esm({
|
|
|
1499
1564
|
init_types();
|
|
1500
1565
|
SvgFileLock = ({ size = 16, ...props }) => {
|
|
1501
1566
|
const sizeValue = resolveSize(size);
|
|
1502
|
-
return /* @__PURE__ */
|
|
1567
|
+
return /* @__PURE__ */ React30.createElement(
|
|
1503
1568
|
"svg",
|
|
1504
1569
|
{
|
|
1505
1570
|
width: sizeValue,
|
|
@@ -1509,7 +1574,7 @@ var init_FileLock = __esm({
|
|
|
1509
1574
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1510
1575
|
...props
|
|
1511
1576
|
},
|
|
1512
|
-
/* @__PURE__ */
|
|
1577
|
+
/* @__PURE__ */ React30.createElement(
|
|
1513
1578
|
"path",
|
|
1514
1579
|
{
|
|
1515
1580
|
fillRule: "evenodd",
|
|
@@ -1518,7 +1583,7 @@ var init_FileLock = __esm({
|
|
|
1518
1583
|
fill: "currentColor"
|
|
1519
1584
|
}
|
|
1520
1585
|
),
|
|
1521
|
-
/* @__PURE__ */
|
|
1586
|
+
/* @__PURE__ */ React30.createElement(
|
|
1522
1587
|
"path",
|
|
1523
1588
|
{
|
|
1524
1589
|
fillRule: "evenodd",
|
|
@@ -1527,7 +1592,7 @@ var init_FileLock = __esm({
|
|
|
1527
1592
|
fill: "currentColor"
|
|
1528
1593
|
}
|
|
1529
1594
|
),
|
|
1530
|
-
/* @__PURE__ */
|
|
1595
|
+
/* @__PURE__ */ React30.createElement(
|
|
1531
1596
|
"path",
|
|
1532
1597
|
{
|
|
1533
1598
|
fillRule: "evenodd",
|
|
@@ -1547,7 +1612,7 @@ var FileSignature_exports = {};
|
|
|
1547
1612
|
__export(FileSignature_exports, {
|
|
1548
1613
|
default: () => FileSignature_default
|
|
1549
1614
|
});
|
|
1550
|
-
import * as
|
|
1615
|
+
import * as React31 from "react";
|
|
1551
1616
|
var SvgFileSignature, FileSignature_default;
|
|
1552
1617
|
var init_FileSignature = __esm({
|
|
1553
1618
|
"src/react/FileSignature.tsx"() {
|
|
@@ -1555,7 +1620,7 @@ var init_FileSignature = __esm({
|
|
|
1555
1620
|
init_types();
|
|
1556
1621
|
SvgFileSignature = ({ size = 16, ...props }) => {
|
|
1557
1622
|
const sizeValue = resolveSize(size);
|
|
1558
|
-
return /* @__PURE__ */
|
|
1623
|
+
return /* @__PURE__ */ React31.createElement(
|
|
1559
1624
|
"svg",
|
|
1560
1625
|
{
|
|
1561
1626
|
width: sizeValue,
|
|
@@ -1565,7 +1630,7 @@ var init_FileSignature = __esm({
|
|
|
1565
1630
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1566
1631
|
...props
|
|
1567
1632
|
},
|
|
1568
|
-
/* @__PURE__ */
|
|
1633
|
+
/* @__PURE__ */ React31.createElement(
|
|
1569
1634
|
"path",
|
|
1570
1635
|
{
|
|
1571
1636
|
fillRule: "evenodd",
|
|
@@ -1574,7 +1639,7 @@ var init_FileSignature = __esm({
|
|
|
1574
1639
|
fill: "currentColor"
|
|
1575
1640
|
}
|
|
1576
1641
|
),
|
|
1577
|
-
/* @__PURE__ */
|
|
1642
|
+
/* @__PURE__ */ React31.createElement(
|
|
1578
1643
|
"path",
|
|
1579
1644
|
{
|
|
1580
1645
|
fillRule: "evenodd",
|
|
@@ -1583,7 +1648,7 @@ var init_FileSignature = __esm({
|
|
|
1583
1648
|
fill: "currentColor"
|
|
1584
1649
|
}
|
|
1585
1650
|
),
|
|
1586
|
-
/* @__PURE__ */
|
|
1651
|
+
/* @__PURE__ */ React31.createElement(
|
|
1587
1652
|
"path",
|
|
1588
1653
|
{
|
|
1589
1654
|
fillRule: "evenodd",
|
|
@@ -1603,7 +1668,7 @@ var FileSpreadsheet_exports = {};
|
|
|
1603
1668
|
__export(FileSpreadsheet_exports, {
|
|
1604
1669
|
default: () => FileSpreadsheet_default
|
|
1605
1670
|
});
|
|
1606
|
-
import * as
|
|
1671
|
+
import * as React32 from "react";
|
|
1607
1672
|
var SvgFileSpreadsheet, FileSpreadsheet_default;
|
|
1608
1673
|
var init_FileSpreadsheet = __esm({
|
|
1609
1674
|
"src/react/FileSpreadsheet.tsx"() {
|
|
@@ -1611,7 +1676,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1611
1676
|
init_types();
|
|
1612
1677
|
SvgFileSpreadsheet = ({ size = 16, ...props }) => {
|
|
1613
1678
|
const sizeValue = resolveSize(size);
|
|
1614
|
-
return /* @__PURE__ */
|
|
1679
|
+
return /* @__PURE__ */ React32.createElement(
|
|
1615
1680
|
"svg",
|
|
1616
1681
|
{
|
|
1617
1682
|
width: sizeValue,
|
|
@@ -1621,7 +1686,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1621
1686
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1622
1687
|
...props
|
|
1623
1688
|
},
|
|
1624
|
-
/* @__PURE__ */
|
|
1689
|
+
/* @__PURE__ */ React32.createElement(
|
|
1625
1690
|
"path",
|
|
1626
1691
|
{
|
|
1627
1692
|
fillRule: "evenodd",
|
|
@@ -1630,7 +1695,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1630
1695
|
fill: "currentColor"
|
|
1631
1696
|
}
|
|
1632
1697
|
),
|
|
1633
|
-
/* @__PURE__ */
|
|
1698
|
+
/* @__PURE__ */ React32.createElement(
|
|
1634
1699
|
"path",
|
|
1635
1700
|
{
|
|
1636
1701
|
fillRule: "evenodd",
|
|
@@ -1639,7 +1704,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1639
1704
|
fill: "currentColor"
|
|
1640
1705
|
}
|
|
1641
1706
|
),
|
|
1642
|
-
/* @__PURE__ */
|
|
1707
|
+
/* @__PURE__ */ React32.createElement(
|
|
1643
1708
|
"path",
|
|
1644
1709
|
{
|
|
1645
1710
|
fillRule: "evenodd",
|
|
@@ -1648,7 +1713,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1648
1713
|
fill: "currentColor"
|
|
1649
1714
|
}
|
|
1650
1715
|
),
|
|
1651
|
-
/* @__PURE__ */
|
|
1716
|
+
/* @__PURE__ */ React32.createElement(
|
|
1652
1717
|
"path",
|
|
1653
1718
|
{
|
|
1654
1719
|
fillRule: "evenodd",
|
|
@@ -1657,7 +1722,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1657
1722
|
fill: "currentColor"
|
|
1658
1723
|
}
|
|
1659
1724
|
),
|
|
1660
|
-
/* @__PURE__ */
|
|
1725
|
+
/* @__PURE__ */ React32.createElement(
|
|
1661
1726
|
"path",
|
|
1662
1727
|
{
|
|
1663
1728
|
fillRule: "evenodd",
|
|
@@ -1666,7 +1731,7 @@ var init_FileSpreadsheet = __esm({
|
|
|
1666
1731
|
fill: "currentColor"
|
|
1667
1732
|
}
|
|
1668
1733
|
),
|
|
1669
|
-
/* @__PURE__ */
|
|
1734
|
+
/* @__PURE__ */ React32.createElement(
|
|
1670
1735
|
"path",
|
|
1671
1736
|
{
|
|
1672
1737
|
fillRule: "evenodd",
|
|
@@ -1686,7 +1751,7 @@ var FileText_exports = {};
|
|
|
1686
1751
|
__export(FileText_exports, {
|
|
1687
1752
|
default: () => FileText_default
|
|
1688
1753
|
});
|
|
1689
|
-
import * as
|
|
1754
|
+
import * as React33 from "react";
|
|
1690
1755
|
var SvgFileText, FileText_default;
|
|
1691
1756
|
var init_FileText = __esm({
|
|
1692
1757
|
"src/react/FileText.tsx"() {
|
|
@@ -1694,7 +1759,7 @@ var init_FileText = __esm({
|
|
|
1694
1759
|
init_types();
|
|
1695
1760
|
SvgFileText = ({ size = 16, ...props }) => {
|
|
1696
1761
|
const sizeValue = resolveSize(size);
|
|
1697
|
-
return /* @__PURE__ */
|
|
1762
|
+
return /* @__PURE__ */ React33.createElement(
|
|
1698
1763
|
"svg",
|
|
1699
1764
|
{
|
|
1700
1765
|
width: sizeValue,
|
|
@@ -1704,7 +1769,7 @@ var init_FileText = __esm({
|
|
|
1704
1769
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1705
1770
|
...props
|
|
1706
1771
|
},
|
|
1707
|
-
/* @__PURE__ */
|
|
1772
|
+
/* @__PURE__ */ React33.createElement(
|
|
1708
1773
|
"path",
|
|
1709
1774
|
{
|
|
1710
1775
|
fillRule: "evenodd",
|
|
@@ -1713,7 +1778,7 @@ var init_FileText = __esm({
|
|
|
1713
1778
|
fill: "currentColor"
|
|
1714
1779
|
}
|
|
1715
1780
|
),
|
|
1716
|
-
/* @__PURE__ */
|
|
1781
|
+
/* @__PURE__ */ React33.createElement(
|
|
1717
1782
|
"path",
|
|
1718
1783
|
{
|
|
1719
1784
|
fillRule: "evenodd",
|
|
@@ -1722,7 +1787,7 @@ var init_FileText = __esm({
|
|
|
1722
1787
|
fill: "currentColor"
|
|
1723
1788
|
}
|
|
1724
1789
|
),
|
|
1725
|
-
/* @__PURE__ */
|
|
1790
|
+
/* @__PURE__ */ React33.createElement(
|
|
1726
1791
|
"path",
|
|
1727
1792
|
{
|
|
1728
1793
|
fillRule: "evenodd",
|
|
@@ -1731,7 +1796,7 @@ var init_FileText = __esm({
|
|
|
1731
1796
|
fill: "currentColor"
|
|
1732
1797
|
}
|
|
1733
1798
|
),
|
|
1734
|
-
/* @__PURE__ */
|
|
1799
|
+
/* @__PURE__ */ React33.createElement(
|
|
1735
1800
|
"path",
|
|
1736
1801
|
{
|
|
1737
1802
|
fillRule: "evenodd",
|
|
@@ -1740,7 +1805,7 @@ var init_FileText = __esm({
|
|
|
1740
1805
|
fill: "currentColor"
|
|
1741
1806
|
}
|
|
1742
1807
|
),
|
|
1743
|
-
/* @__PURE__ */
|
|
1808
|
+
/* @__PURE__ */ React33.createElement(
|
|
1744
1809
|
"path",
|
|
1745
1810
|
{
|
|
1746
1811
|
fillRule: "evenodd",
|
|
@@ -1760,7 +1825,7 @@ var FingerprintAndroid_exports = {};
|
|
|
1760
1825
|
__export(FingerprintAndroid_exports, {
|
|
1761
1826
|
default: () => FingerprintAndroid_default
|
|
1762
1827
|
});
|
|
1763
|
-
import * as
|
|
1828
|
+
import * as React34 from "react";
|
|
1764
1829
|
var SvgFingerprintAndroid, FingerprintAndroid_default;
|
|
1765
1830
|
var init_FingerprintAndroid = __esm({
|
|
1766
1831
|
"src/react/FingerprintAndroid.tsx"() {
|
|
@@ -1768,7 +1833,7 @@ var init_FingerprintAndroid = __esm({
|
|
|
1768
1833
|
init_types();
|
|
1769
1834
|
SvgFingerprintAndroid = ({ size = 16, ...props }) => {
|
|
1770
1835
|
const sizeValue = resolveSize(size);
|
|
1771
|
-
return /* @__PURE__ */
|
|
1836
|
+
return /* @__PURE__ */ React34.createElement(
|
|
1772
1837
|
"svg",
|
|
1773
1838
|
{
|
|
1774
1839
|
width: sizeValue,
|
|
@@ -1778,7 +1843,7 @@ var init_FingerprintAndroid = __esm({
|
|
|
1778
1843
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1779
1844
|
...props
|
|
1780
1845
|
},
|
|
1781
|
-
/* @__PURE__ */
|
|
1846
|
+
/* @__PURE__ */ React34.createElement(
|
|
1782
1847
|
"path",
|
|
1783
1848
|
{
|
|
1784
1849
|
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",
|
|
@@ -1796,7 +1861,7 @@ var HelpCircle_exports = {};
|
|
|
1796
1861
|
__export(HelpCircle_exports, {
|
|
1797
1862
|
default: () => HelpCircle_default
|
|
1798
1863
|
});
|
|
1799
|
-
import * as
|
|
1864
|
+
import * as React35 from "react";
|
|
1800
1865
|
var SvgHelpCircle, HelpCircle_default;
|
|
1801
1866
|
var init_HelpCircle = __esm({
|
|
1802
1867
|
"src/react/HelpCircle.tsx"() {
|
|
@@ -1804,7 +1869,7 @@ var init_HelpCircle = __esm({
|
|
|
1804
1869
|
init_types();
|
|
1805
1870
|
SvgHelpCircle = ({ size = 16, ...props }) => {
|
|
1806
1871
|
const sizeValue = resolveSize(size);
|
|
1807
|
-
return /* @__PURE__ */
|
|
1872
|
+
return /* @__PURE__ */ React35.createElement(
|
|
1808
1873
|
"svg",
|
|
1809
1874
|
{
|
|
1810
1875
|
width: sizeValue,
|
|
@@ -1814,7 +1879,7 @@ var init_HelpCircle = __esm({
|
|
|
1814
1879
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1815
1880
|
...props
|
|
1816
1881
|
},
|
|
1817
|
-
/* @__PURE__ */
|
|
1882
|
+
/* @__PURE__ */ React35.createElement(
|
|
1818
1883
|
"path",
|
|
1819
1884
|
{
|
|
1820
1885
|
fillRule: "evenodd",
|
|
@@ -1823,7 +1888,7 @@ var init_HelpCircle = __esm({
|
|
|
1823
1888
|
fill: "currentColor"
|
|
1824
1889
|
}
|
|
1825
1890
|
),
|
|
1826
|
-
/* @__PURE__ */
|
|
1891
|
+
/* @__PURE__ */ React35.createElement(
|
|
1827
1892
|
"path",
|
|
1828
1893
|
{
|
|
1829
1894
|
fillRule: "evenodd",
|
|
@@ -1832,7 +1897,7 @@ var init_HelpCircle = __esm({
|
|
|
1832
1897
|
fill: "currentColor"
|
|
1833
1898
|
}
|
|
1834
1899
|
),
|
|
1835
|
-
/* @__PURE__ */
|
|
1900
|
+
/* @__PURE__ */ React35.createElement(
|
|
1836
1901
|
"path",
|
|
1837
1902
|
{
|
|
1838
1903
|
fillRule: "evenodd",
|
|
@@ -1852,7 +1917,7 @@ var HomeFilled_exports = {};
|
|
|
1852
1917
|
__export(HomeFilled_exports, {
|
|
1853
1918
|
default: () => HomeFilled_default
|
|
1854
1919
|
});
|
|
1855
|
-
import * as
|
|
1920
|
+
import * as React36 from "react";
|
|
1856
1921
|
var SvgHomeFilled, HomeFilled_default;
|
|
1857
1922
|
var init_HomeFilled = __esm({
|
|
1858
1923
|
"src/react/HomeFilled.tsx"() {
|
|
@@ -1860,7 +1925,7 @@ var init_HomeFilled = __esm({
|
|
|
1860
1925
|
init_types();
|
|
1861
1926
|
SvgHomeFilled = ({ size = 16, ...props }) => {
|
|
1862
1927
|
const sizeValue = resolveSize(size);
|
|
1863
|
-
return /* @__PURE__ */
|
|
1928
|
+
return /* @__PURE__ */ React36.createElement(
|
|
1864
1929
|
"svg",
|
|
1865
1930
|
{
|
|
1866
1931
|
width: sizeValue,
|
|
@@ -1870,7 +1935,7 @@ var init_HomeFilled = __esm({
|
|
|
1870
1935
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1871
1936
|
...props
|
|
1872
1937
|
},
|
|
1873
|
-
/* @__PURE__ */
|
|
1938
|
+
/* @__PURE__ */ React36.createElement(
|
|
1874
1939
|
"path",
|
|
1875
1940
|
{
|
|
1876
1941
|
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",
|
|
@@ -1888,7 +1953,7 @@ var HomeLinear_exports = {};
|
|
|
1888
1953
|
__export(HomeLinear_exports, {
|
|
1889
1954
|
default: () => HomeLinear_default
|
|
1890
1955
|
});
|
|
1891
|
-
import * as
|
|
1956
|
+
import * as React37 from "react";
|
|
1892
1957
|
var SvgHomeLinear, HomeLinear_default;
|
|
1893
1958
|
var init_HomeLinear = __esm({
|
|
1894
1959
|
"src/react/HomeLinear.tsx"() {
|
|
@@ -1896,7 +1961,7 @@ var init_HomeLinear = __esm({
|
|
|
1896
1961
|
init_types();
|
|
1897
1962
|
SvgHomeLinear = ({ size = 16, ...props }) => {
|
|
1898
1963
|
const sizeValue = resolveSize(size);
|
|
1899
|
-
return /* @__PURE__ */
|
|
1964
|
+
return /* @__PURE__ */ React37.createElement(
|
|
1900
1965
|
"svg",
|
|
1901
1966
|
{
|
|
1902
1967
|
width: sizeValue,
|
|
@@ -1906,7 +1971,7 @@ var init_HomeLinear = __esm({
|
|
|
1906
1971
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1907
1972
|
...props
|
|
1908
1973
|
},
|
|
1909
|
-
/* @__PURE__ */
|
|
1974
|
+
/* @__PURE__ */ React37.createElement(
|
|
1910
1975
|
"path",
|
|
1911
1976
|
{
|
|
1912
1977
|
fillRule: "evenodd",
|
|
@@ -1926,7 +1991,7 @@ var IconSlot_exports = {};
|
|
|
1926
1991
|
__export(IconSlot_exports, {
|
|
1927
1992
|
default: () => IconSlot_default
|
|
1928
1993
|
});
|
|
1929
|
-
import * as
|
|
1994
|
+
import * as React38 from "react";
|
|
1930
1995
|
var SvgIconSlot, IconSlot_default;
|
|
1931
1996
|
var init_IconSlot = __esm({
|
|
1932
1997
|
"src/react/IconSlot.tsx"() {
|
|
@@ -1934,7 +1999,7 @@ var init_IconSlot = __esm({
|
|
|
1934
1999
|
init_types();
|
|
1935
2000
|
SvgIconSlot = ({ size = 16, ...props }) => {
|
|
1936
2001
|
const sizeValue = resolveSize(size);
|
|
1937
|
-
return /* @__PURE__ */
|
|
2002
|
+
return /* @__PURE__ */ React38.createElement(
|
|
1938
2003
|
"svg",
|
|
1939
2004
|
{
|
|
1940
2005
|
width: sizeValue,
|
|
@@ -1944,7 +2009,7 @@ var init_IconSlot = __esm({
|
|
|
1944
2009
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1945
2010
|
...props
|
|
1946
2011
|
},
|
|
1947
|
-
/* @__PURE__ */
|
|
2012
|
+
/* @__PURE__ */ React38.createElement(
|
|
1948
2013
|
"path",
|
|
1949
2014
|
{
|
|
1950
2015
|
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",
|
|
@@ -1962,7 +2027,7 @@ var Keys01_exports = {};
|
|
|
1962
2027
|
__export(Keys01_exports, {
|
|
1963
2028
|
default: () => Keys01_default
|
|
1964
2029
|
});
|
|
1965
|
-
import * as
|
|
2030
|
+
import * as React39 from "react";
|
|
1966
2031
|
var SvgKeys01, Keys01_default;
|
|
1967
2032
|
var init_Keys01 = __esm({
|
|
1968
2033
|
"src/react/Keys01.tsx"() {
|
|
@@ -1970,7 +2035,7 @@ var init_Keys01 = __esm({
|
|
|
1970
2035
|
init_types();
|
|
1971
2036
|
SvgKeys01 = ({ size = 16, ...props }) => {
|
|
1972
2037
|
const sizeValue = resolveSize(size);
|
|
1973
|
-
return /* @__PURE__ */
|
|
2038
|
+
return /* @__PURE__ */ React39.createElement(
|
|
1974
2039
|
"svg",
|
|
1975
2040
|
{
|
|
1976
2041
|
width: sizeValue,
|
|
@@ -1980,7 +2045,7 @@ var init_Keys01 = __esm({
|
|
|
1980
2045
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1981
2046
|
...props
|
|
1982
2047
|
},
|
|
1983
|
-
/* @__PURE__ */
|
|
2048
|
+
/* @__PURE__ */ React39.createElement(
|
|
1984
2049
|
"path",
|
|
1985
2050
|
{
|
|
1986
2051
|
fillRule: "evenodd",
|
|
@@ -1989,7 +2054,7 @@ var init_Keys01 = __esm({
|
|
|
1989
2054
|
fill: "currentColor"
|
|
1990
2055
|
}
|
|
1991
2056
|
),
|
|
1992
|
-
/* @__PURE__ */
|
|
2057
|
+
/* @__PURE__ */ React39.createElement(
|
|
1993
2058
|
"path",
|
|
1994
2059
|
{
|
|
1995
2060
|
fillRule: "evenodd",
|
|
@@ -1998,7 +2063,7 @@ var init_Keys01 = __esm({
|
|
|
1998
2063
|
fill: "currentColor"
|
|
1999
2064
|
}
|
|
2000
2065
|
),
|
|
2001
|
-
/* @__PURE__ */
|
|
2066
|
+
/* @__PURE__ */ React39.createElement(
|
|
2002
2067
|
"path",
|
|
2003
2068
|
{
|
|
2004
2069
|
fillRule: "evenodd",
|
|
@@ -2018,7 +2083,7 @@ var LeadsFilled_exports = {};
|
|
|
2018
2083
|
__export(LeadsFilled_exports, {
|
|
2019
2084
|
default: () => LeadsFilled_default
|
|
2020
2085
|
});
|
|
2021
|
-
import * as
|
|
2086
|
+
import * as React40 from "react";
|
|
2022
2087
|
var SvgLeadsFilled, LeadsFilled_default;
|
|
2023
2088
|
var init_LeadsFilled = __esm({
|
|
2024
2089
|
"src/react/LeadsFilled.tsx"() {
|
|
@@ -2026,7 +2091,7 @@ var init_LeadsFilled = __esm({
|
|
|
2026
2091
|
init_types();
|
|
2027
2092
|
SvgLeadsFilled = ({ size = 16, ...props }) => {
|
|
2028
2093
|
const sizeValue = resolveSize(size);
|
|
2029
|
-
return /* @__PURE__ */
|
|
2094
|
+
return /* @__PURE__ */ React40.createElement(
|
|
2030
2095
|
"svg",
|
|
2031
2096
|
{
|
|
2032
2097
|
width: sizeValue,
|
|
@@ -2036,7 +2101,7 @@ var init_LeadsFilled = __esm({
|
|
|
2036
2101
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2037
2102
|
...props
|
|
2038
2103
|
},
|
|
2039
|
-
/* @__PURE__ */
|
|
2104
|
+
/* @__PURE__ */ React40.createElement(
|
|
2040
2105
|
"path",
|
|
2041
2106
|
{
|
|
2042
2107
|
fillRule: "evenodd",
|
|
@@ -2045,7 +2110,7 @@ var init_LeadsFilled = __esm({
|
|
|
2045
2110
|
fill: "currentColor"
|
|
2046
2111
|
}
|
|
2047
2112
|
),
|
|
2048
|
-
/* @__PURE__ */
|
|
2113
|
+
/* @__PURE__ */ React40.createElement(
|
|
2049
2114
|
"path",
|
|
2050
2115
|
{
|
|
2051
2116
|
fillRule: "evenodd",
|
|
@@ -2054,7 +2119,7 @@ var init_LeadsFilled = __esm({
|
|
|
2054
2119
|
fill: "currentColor"
|
|
2055
2120
|
}
|
|
2056
2121
|
),
|
|
2057
|
-
/* @__PURE__ */
|
|
2122
|
+
/* @__PURE__ */ React40.createElement(
|
|
2058
2123
|
"path",
|
|
2059
2124
|
{
|
|
2060
2125
|
fillRule: "evenodd",
|
|
@@ -2063,7 +2128,7 @@ var init_LeadsFilled = __esm({
|
|
|
2063
2128
|
fill: "currentColor"
|
|
2064
2129
|
}
|
|
2065
2130
|
),
|
|
2066
|
-
/* @__PURE__ */
|
|
2131
|
+
/* @__PURE__ */ React40.createElement(
|
|
2067
2132
|
"path",
|
|
2068
2133
|
{
|
|
2069
2134
|
fillRule: "evenodd",
|
|
@@ -2083,7 +2148,7 @@ var LeadsLinear_exports = {};
|
|
|
2083
2148
|
__export(LeadsLinear_exports, {
|
|
2084
2149
|
default: () => LeadsLinear_default
|
|
2085
2150
|
});
|
|
2086
|
-
import * as
|
|
2151
|
+
import * as React41 from "react";
|
|
2087
2152
|
var SvgLeadsLinear, LeadsLinear_default;
|
|
2088
2153
|
var init_LeadsLinear = __esm({
|
|
2089
2154
|
"src/react/LeadsLinear.tsx"() {
|
|
@@ -2091,7 +2156,7 @@ var init_LeadsLinear = __esm({
|
|
|
2091
2156
|
init_types();
|
|
2092
2157
|
SvgLeadsLinear = ({ size = 16, ...props }) => {
|
|
2093
2158
|
const sizeValue = resolveSize(size);
|
|
2094
|
-
return /* @__PURE__ */
|
|
2159
|
+
return /* @__PURE__ */ React41.createElement(
|
|
2095
2160
|
"svg",
|
|
2096
2161
|
{
|
|
2097
2162
|
width: sizeValue,
|
|
@@ -2101,7 +2166,7 @@ var init_LeadsLinear = __esm({
|
|
|
2101
2166
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2102
2167
|
...props
|
|
2103
2168
|
},
|
|
2104
|
-
/* @__PURE__ */
|
|
2169
|
+
/* @__PURE__ */ React41.createElement(
|
|
2105
2170
|
"path",
|
|
2106
2171
|
{
|
|
2107
2172
|
fillRule: "evenodd",
|
|
@@ -2110,7 +2175,7 @@ var init_LeadsLinear = __esm({
|
|
|
2110
2175
|
fill: "currentColor"
|
|
2111
2176
|
}
|
|
2112
2177
|
),
|
|
2113
|
-
/* @__PURE__ */
|
|
2178
|
+
/* @__PURE__ */ React41.createElement(
|
|
2114
2179
|
"path",
|
|
2115
2180
|
{
|
|
2116
2181
|
fillRule: "evenodd",
|
|
@@ -2119,7 +2184,7 @@ var init_LeadsLinear = __esm({
|
|
|
2119
2184
|
fill: "currentColor"
|
|
2120
2185
|
}
|
|
2121
2186
|
),
|
|
2122
|
-
/* @__PURE__ */
|
|
2187
|
+
/* @__PURE__ */ React41.createElement(
|
|
2123
2188
|
"path",
|
|
2124
2189
|
{
|
|
2125
2190
|
fillRule: "evenodd",
|
|
@@ -2128,7 +2193,7 @@ var init_LeadsLinear = __esm({
|
|
|
2128
2193
|
fill: "currentColor"
|
|
2129
2194
|
}
|
|
2130
2195
|
),
|
|
2131
|
-
/* @__PURE__ */
|
|
2196
|
+
/* @__PURE__ */ React41.createElement(
|
|
2132
2197
|
"path",
|
|
2133
2198
|
{
|
|
2134
2199
|
fillRule: "evenodd",
|
|
@@ -2148,7 +2213,7 @@ var Lock_exports = {};
|
|
|
2148
2213
|
__export(Lock_exports, {
|
|
2149
2214
|
default: () => Lock_default
|
|
2150
2215
|
});
|
|
2151
|
-
import * as
|
|
2216
|
+
import * as React42 from "react";
|
|
2152
2217
|
var SvgLock, Lock_default;
|
|
2153
2218
|
var init_Lock = __esm({
|
|
2154
2219
|
"src/react/Lock.tsx"() {
|
|
@@ -2156,7 +2221,7 @@ var init_Lock = __esm({
|
|
|
2156
2221
|
init_types();
|
|
2157
2222
|
SvgLock = ({ size = 16, ...props }) => {
|
|
2158
2223
|
const sizeValue = resolveSize(size);
|
|
2159
|
-
return /* @__PURE__ */
|
|
2224
|
+
return /* @__PURE__ */ React42.createElement(
|
|
2160
2225
|
"svg",
|
|
2161
2226
|
{
|
|
2162
2227
|
width: sizeValue,
|
|
@@ -2166,7 +2231,7 @@ var init_Lock = __esm({
|
|
|
2166
2231
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2167
2232
|
...props
|
|
2168
2233
|
},
|
|
2169
|
-
/* @__PURE__ */
|
|
2234
|
+
/* @__PURE__ */ React42.createElement(
|
|
2170
2235
|
"path",
|
|
2171
2236
|
{
|
|
2172
2237
|
fillRule: "evenodd",
|
|
@@ -2175,7 +2240,7 @@ var init_Lock = __esm({
|
|
|
2175
2240
|
fill: "currentColor"
|
|
2176
2241
|
}
|
|
2177
2242
|
),
|
|
2178
|
-
/* @__PURE__ */
|
|
2243
|
+
/* @__PURE__ */ React42.createElement(
|
|
2179
2244
|
"path",
|
|
2180
2245
|
{
|
|
2181
2246
|
fillRule: "evenodd",
|
|
@@ -2195,7 +2260,7 @@ var Logout_exports = {};
|
|
|
2195
2260
|
__export(Logout_exports, {
|
|
2196
2261
|
default: () => Logout_default
|
|
2197
2262
|
});
|
|
2198
|
-
import * as
|
|
2263
|
+
import * as React43 from "react";
|
|
2199
2264
|
var SvgLogout, Logout_default;
|
|
2200
2265
|
var init_Logout = __esm({
|
|
2201
2266
|
"src/react/Logout.tsx"() {
|
|
@@ -2203,7 +2268,7 @@ var init_Logout = __esm({
|
|
|
2203
2268
|
init_types();
|
|
2204
2269
|
SvgLogout = ({ size = 16, ...props }) => {
|
|
2205
2270
|
const sizeValue = resolveSize(size);
|
|
2206
|
-
return /* @__PURE__ */
|
|
2271
|
+
return /* @__PURE__ */ React43.createElement(
|
|
2207
2272
|
"svg",
|
|
2208
2273
|
{
|
|
2209
2274
|
width: sizeValue,
|
|
@@ -2213,7 +2278,7 @@ var init_Logout = __esm({
|
|
|
2213
2278
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2214
2279
|
...props
|
|
2215
2280
|
},
|
|
2216
|
-
/* @__PURE__ */
|
|
2281
|
+
/* @__PURE__ */ React43.createElement(
|
|
2217
2282
|
"path",
|
|
2218
2283
|
{
|
|
2219
2284
|
fillRule: "evenodd",
|
|
@@ -2222,7 +2287,7 @@ var init_Logout = __esm({
|
|
|
2222
2287
|
fill: "currentColor"
|
|
2223
2288
|
}
|
|
2224
2289
|
),
|
|
2225
|
-
/* @__PURE__ */
|
|
2290
|
+
/* @__PURE__ */ React43.createElement(
|
|
2226
2291
|
"path",
|
|
2227
2292
|
{
|
|
2228
2293
|
fillRule: "evenodd",
|
|
@@ -2231,7 +2296,7 @@ var init_Logout = __esm({
|
|
|
2231
2296
|
fill: "currentColor"
|
|
2232
2297
|
}
|
|
2233
2298
|
),
|
|
2234
|
-
/* @__PURE__ */
|
|
2299
|
+
/* @__PURE__ */ React43.createElement(
|
|
2235
2300
|
"path",
|
|
2236
2301
|
{
|
|
2237
2302
|
fillRule: "evenodd",
|
|
@@ -2251,7 +2316,7 @@ var Mail_exports = {};
|
|
|
2251
2316
|
__export(Mail_exports, {
|
|
2252
2317
|
default: () => Mail_default
|
|
2253
2318
|
});
|
|
2254
|
-
import * as
|
|
2319
|
+
import * as React44 from "react";
|
|
2255
2320
|
var SvgMail, Mail_default;
|
|
2256
2321
|
var init_Mail = __esm({
|
|
2257
2322
|
"src/react/Mail.tsx"() {
|
|
@@ -2259,7 +2324,7 @@ var init_Mail = __esm({
|
|
|
2259
2324
|
init_types();
|
|
2260
2325
|
SvgMail = ({ size = 16, ...props }) => {
|
|
2261
2326
|
const sizeValue = resolveSize(size);
|
|
2262
|
-
return /* @__PURE__ */
|
|
2327
|
+
return /* @__PURE__ */ React44.createElement(
|
|
2263
2328
|
"svg",
|
|
2264
2329
|
{
|
|
2265
2330
|
width: sizeValue,
|
|
@@ -2269,7 +2334,7 @@ var init_Mail = __esm({
|
|
|
2269
2334
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2270
2335
|
...props
|
|
2271
2336
|
},
|
|
2272
|
-
/* @__PURE__ */
|
|
2337
|
+
/* @__PURE__ */ React44.createElement(
|
|
2273
2338
|
"path",
|
|
2274
2339
|
{
|
|
2275
2340
|
fillRule: "evenodd",
|
|
@@ -2278,7 +2343,7 @@ var init_Mail = __esm({
|
|
|
2278
2343
|
fill: "currentColor"
|
|
2279
2344
|
}
|
|
2280
2345
|
),
|
|
2281
|
-
/* @__PURE__ */
|
|
2346
|
+
/* @__PURE__ */ React44.createElement(
|
|
2282
2347
|
"path",
|
|
2283
2348
|
{
|
|
2284
2349
|
fillRule: "evenodd",
|
|
@@ -2298,7 +2363,7 @@ var MapPin_exports = {};
|
|
|
2298
2363
|
__export(MapPin_exports, {
|
|
2299
2364
|
default: () => MapPin_default
|
|
2300
2365
|
});
|
|
2301
|
-
import * as
|
|
2366
|
+
import * as React45 from "react";
|
|
2302
2367
|
var SvgMapPin, MapPin_default;
|
|
2303
2368
|
var init_MapPin = __esm({
|
|
2304
2369
|
"src/react/MapPin.tsx"() {
|
|
@@ -2306,7 +2371,7 @@ var init_MapPin = __esm({
|
|
|
2306
2371
|
init_types();
|
|
2307
2372
|
SvgMapPin = ({ size = 16, ...props }) => {
|
|
2308
2373
|
const sizeValue = resolveSize(size);
|
|
2309
|
-
return /* @__PURE__ */
|
|
2374
|
+
return /* @__PURE__ */ React45.createElement(
|
|
2310
2375
|
"svg",
|
|
2311
2376
|
{
|
|
2312
2377
|
width: sizeValue,
|
|
@@ -2316,7 +2381,7 @@ var init_MapPin = __esm({
|
|
|
2316
2381
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2317
2382
|
...props
|
|
2318
2383
|
},
|
|
2319
|
-
/* @__PURE__ */
|
|
2384
|
+
/* @__PURE__ */ React45.createElement(
|
|
2320
2385
|
"path",
|
|
2321
2386
|
{
|
|
2322
2387
|
fillRule: "evenodd",
|
|
@@ -2325,7 +2390,7 @@ var init_MapPin = __esm({
|
|
|
2325
2390
|
fill: "currentColor"
|
|
2326
2391
|
}
|
|
2327
2392
|
),
|
|
2328
|
-
/* @__PURE__ */
|
|
2393
|
+
/* @__PURE__ */ React45.createElement(
|
|
2329
2394
|
"path",
|
|
2330
2395
|
{
|
|
2331
2396
|
fillRule: "evenodd",
|
|
@@ -2345,7 +2410,7 @@ var Mortgage_exports = {};
|
|
|
2345
2410
|
__export(Mortgage_exports, {
|
|
2346
2411
|
default: () => Mortgage_default
|
|
2347
2412
|
});
|
|
2348
|
-
import * as
|
|
2413
|
+
import * as React46 from "react";
|
|
2349
2414
|
var SvgMortgage, Mortgage_default;
|
|
2350
2415
|
var init_Mortgage = __esm({
|
|
2351
2416
|
"src/react/Mortgage.tsx"() {
|
|
@@ -2353,7 +2418,7 @@ var init_Mortgage = __esm({
|
|
|
2353
2418
|
init_types();
|
|
2354
2419
|
SvgMortgage = ({ size = 16, ...props }) => {
|
|
2355
2420
|
const sizeValue = resolveSize(size);
|
|
2356
|
-
return /* @__PURE__ */
|
|
2421
|
+
return /* @__PURE__ */ React46.createElement(
|
|
2357
2422
|
"svg",
|
|
2358
2423
|
{
|
|
2359
2424
|
width: sizeValue,
|
|
@@ -2363,7 +2428,7 @@ var init_Mortgage = __esm({
|
|
|
2363
2428
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2364
2429
|
...props
|
|
2365
2430
|
},
|
|
2366
|
-
/* @__PURE__ */
|
|
2431
|
+
/* @__PURE__ */ React46.createElement(
|
|
2367
2432
|
"path",
|
|
2368
2433
|
{
|
|
2369
2434
|
fillRule: "evenodd",
|
|
@@ -2372,7 +2437,7 @@ var init_Mortgage = __esm({
|
|
|
2372
2437
|
fill: "currentColor"
|
|
2373
2438
|
}
|
|
2374
2439
|
),
|
|
2375
|
-
/* @__PURE__ */
|
|
2440
|
+
/* @__PURE__ */ React46.createElement(
|
|
2376
2441
|
"path",
|
|
2377
2442
|
{
|
|
2378
2443
|
fillRule: "evenodd",
|
|
@@ -2381,7 +2446,7 @@ var init_Mortgage = __esm({
|
|
|
2381
2446
|
fill: "currentColor"
|
|
2382
2447
|
}
|
|
2383
2448
|
),
|
|
2384
|
-
/* @__PURE__ */
|
|
2449
|
+
/* @__PURE__ */ React46.createElement(
|
|
2385
2450
|
"path",
|
|
2386
2451
|
{
|
|
2387
2452
|
fillRule: "evenodd",
|
|
@@ -2390,7 +2455,7 @@ var init_Mortgage = __esm({
|
|
|
2390
2455
|
fill: "currentColor"
|
|
2391
2456
|
}
|
|
2392
2457
|
),
|
|
2393
|
-
/* @__PURE__ */
|
|
2458
|
+
/* @__PURE__ */ React46.createElement(
|
|
2394
2459
|
"path",
|
|
2395
2460
|
{
|
|
2396
2461
|
fillRule: "evenodd",
|
|
@@ -2399,7 +2464,7 @@ var init_Mortgage = __esm({
|
|
|
2399
2464
|
fill: "currentColor"
|
|
2400
2465
|
}
|
|
2401
2466
|
),
|
|
2402
|
-
/* @__PURE__ */
|
|
2467
|
+
/* @__PURE__ */ React46.createElement(
|
|
2403
2468
|
"path",
|
|
2404
2469
|
{
|
|
2405
2470
|
fillRule: "evenodd",
|
|
@@ -2408,7 +2473,7 @@ var init_Mortgage = __esm({
|
|
|
2408
2473
|
fill: "currentColor"
|
|
2409
2474
|
}
|
|
2410
2475
|
),
|
|
2411
|
-
/* @__PURE__ */
|
|
2476
|
+
/* @__PURE__ */ React46.createElement(
|
|
2412
2477
|
"path",
|
|
2413
2478
|
{
|
|
2414
2479
|
fillRule: "evenodd",
|
|
@@ -2417,7 +2482,7 @@ var init_Mortgage = __esm({
|
|
|
2417
2482
|
fill: "currentColor"
|
|
2418
2483
|
}
|
|
2419
2484
|
),
|
|
2420
|
-
/* @__PURE__ */
|
|
2485
|
+
/* @__PURE__ */ React46.createElement(
|
|
2421
2486
|
"path",
|
|
2422
2487
|
{
|
|
2423
2488
|
fillRule: "evenodd",
|
|
@@ -2437,7 +2502,7 @@ var Note_exports = {};
|
|
|
2437
2502
|
__export(Note_exports, {
|
|
2438
2503
|
default: () => Note_default
|
|
2439
2504
|
});
|
|
2440
|
-
import * as
|
|
2505
|
+
import * as React47 from "react";
|
|
2441
2506
|
var SvgNote, Note_default;
|
|
2442
2507
|
var init_Note = __esm({
|
|
2443
2508
|
"src/react/Note.tsx"() {
|
|
@@ -2445,7 +2510,7 @@ var init_Note = __esm({
|
|
|
2445
2510
|
init_types();
|
|
2446
2511
|
SvgNote = ({ size = 16, ...props }) => {
|
|
2447
2512
|
const sizeValue = resolveSize(size);
|
|
2448
|
-
return /* @__PURE__ */
|
|
2513
|
+
return /* @__PURE__ */ React47.createElement(
|
|
2449
2514
|
"svg",
|
|
2450
2515
|
{
|
|
2451
2516
|
width: sizeValue,
|
|
@@ -2455,7 +2520,7 @@ var init_Note = __esm({
|
|
|
2455
2520
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2456
2521
|
...props
|
|
2457
2522
|
},
|
|
2458
|
-
/* @__PURE__ */
|
|
2523
|
+
/* @__PURE__ */ React47.createElement(
|
|
2459
2524
|
"path",
|
|
2460
2525
|
{
|
|
2461
2526
|
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",
|
|
@@ -2473,7 +2538,7 @@ var Payments_exports = {};
|
|
|
2473
2538
|
__export(Payments_exports, {
|
|
2474
2539
|
default: () => Payments_default
|
|
2475
2540
|
});
|
|
2476
|
-
import * as
|
|
2541
|
+
import * as React48 from "react";
|
|
2477
2542
|
var SvgPayments, Payments_default;
|
|
2478
2543
|
var init_Payments = __esm({
|
|
2479
2544
|
"src/react/Payments.tsx"() {
|
|
@@ -2481,7 +2546,7 @@ var init_Payments = __esm({
|
|
|
2481
2546
|
init_types();
|
|
2482
2547
|
SvgPayments = ({ size = 16, ...props }) => {
|
|
2483
2548
|
const sizeValue = resolveSize(size);
|
|
2484
|
-
return /* @__PURE__ */
|
|
2549
|
+
return /* @__PURE__ */ React48.createElement(
|
|
2485
2550
|
"svg",
|
|
2486
2551
|
{
|
|
2487
2552
|
width: sizeValue,
|
|
@@ -2491,7 +2556,7 @@ var init_Payments = __esm({
|
|
|
2491
2556
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2492
2557
|
...props
|
|
2493
2558
|
},
|
|
2494
|
-
/* @__PURE__ */
|
|
2559
|
+
/* @__PURE__ */ React48.createElement(
|
|
2495
2560
|
"path",
|
|
2496
2561
|
{
|
|
2497
2562
|
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",
|
|
@@ -2509,7 +2574,7 @@ var Plus_exports = {};
|
|
|
2509
2574
|
__export(Plus_exports, {
|
|
2510
2575
|
default: () => Plus_default
|
|
2511
2576
|
});
|
|
2512
|
-
import * as
|
|
2577
|
+
import * as React49 from "react";
|
|
2513
2578
|
var SvgPlus, Plus_default;
|
|
2514
2579
|
var init_Plus = __esm({
|
|
2515
2580
|
"src/react/Plus.tsx"() {
|
|
@@ -2517,7 +2582,7 @@ var init_Plus = __esm({
|
|
|
2517
2582
|
init_types();
|
|
2518
2583
|
SvgPlus = ({ size = 16, ...props }) => {
|
|
2519
2584
|
const sizeValue = resolveSize(size);
|
|
2520
|
-
return /* @__PURE__ */
|
|
2585
|
+
return /* @__PURE__ */ React49.createElement(
|
|
2521
2586
|
"svg",
|
|
2522
2587
|
{
|
|
2523
2588
|
width: sizeValue,
|
|
@@ -2527,7 +2592,7 @@ var init_Plus = __esm({
|
|
|
2527
2592
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2528
2593
|
...props
|
|
2529
2594
|
},
|
|
2530
|
-
/* @__PURE__ */
|
|
2595
|
+
/* @__PURE__ */ React49.createElement(
|
|
2531
2596
|
"path",
|
|
2532
2597
|
{
|
|
2533
2598
|
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",
|
|
@@ -2540,12 +2605,77 @@ var init_Plus = __esm({
|
|
|
2540
2605
|
}
|
|
2541
2606
|
});
|
|
2542
2607
|
|
|
2608
|
+
// src/react/Promotion.tsx
|
|
2609
|
+
var Promotion_exports = {};
|
|
2610
|
+
__export(Promotion_exports, {
|
|
2611
|
+
default: () => Promotion_default
|
|
2612
|
+
});
|
|
2613
|
+
import * as React50 from "react";
|
|
2614
|
+
var SvgPromotion, Promotion_default;
|
|
2615
|
+
var init_Promotion = __esm({
|
|
2616
|
+
"src/react/Promotion.tsx"() {
|
|
2617
|
+
"use strict";
|
|
2618
|
+
init_types();
|
|
2619
|
+
SvgPromotion = ({ size = 16, ...props }) => {
|
|
2620
|
+
const sizeValue = resolveSize(size);
|
|
2621
|
+
return /* @__PURE__ */ React50.createElement(
|
|
2622
|
+
"svg",
|
|
2623
|
+
{
|
|
2624
|
+
width: sizeValue,
|
|
2625
|
+
height: sizeValue,
|
|
2626
|
+
viewBox: "0 0 25 24",
|
|
2627
|
+
fill: "none",
|
|
2628
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2629
|
+
...props
|
|
2630
|
+
},
|
|
2631
|
+
/* @__PURE__ */ React50.createElement(
|
|
2632
|
+
"path",
|
|
2633
|
+
{
|
|
2634
|
+
fillRule: "evenodd",
|
|
2635
|
+
clipRule: "evenodd",
|
|
2636
|
+
d: "M12.3155 3.13356C13.1502 2.79134 14.1051 3.19146 14.4474 4.02613L15.3692 6.27418C17.0077 5.96566 18.6913 6.83336 19.3487 8.43629C20.0061 10.0394 19.4167 11.8396 18.0333 12.7703L18.839 14.7351C19.1811 15.57 18.7812 16.5246 17.9464 16.867C17.6509 16.9881 17.3262 17.0201 17.0128 16.9588L13.4747 16.2654C12.3276 16.0406 11.1418 16.1369 10.048 16.5408L11.3165 19.6345C11.7925 20.7952 11.237 22.1224 10.0763 22.5984C8.91564 23.0742 7.58834 22.5188 7.11241 21.3582L5.8126 18.1873C3.92282 18.5581 1.97278 17.558 1.21397 15.7088C0.352415 13.6077 1.35716 11.2052 3.45811 10.3435L6.71495 9.00758C7.86584 8.53554 8.85334 7.73575 9.55382 6.70778L11.5851 3.72633C11.7652 3.46195 12.0195 3.25498 12.3155 3.13356ZM7.62706 17.5281L8.89757 20.6267C8.96942 20.8017 9.16978 20.8859 9.34483 20.8142C9.51983 20.7424 9.60297 20.542 9.53135 20.367L8.26085 17.2683L7.62706 17.5281ZM4.18956 12.1277C3.07431 12.5852 2.54089 13.8609 2.99815 14.9763C3.45702 16.0947 4.73607 16.6293 5.8546 16.1707L7.5294 15.4841L5.87022 11.4382L4.18956 12.1277ZM1.57921 16.0115C1.57022 15.9948 1.56063 15.9785 1.55186 15.9617L1.54893 15.9568C1.55856 15.9753 1.56932 15.9932 1.57921 16.0115ZM12.9142 4.84547L17.171 15.2273L17.173 15.2283L12.9142 4.84547ZM11.1476 7.79371C10.2766 9.07184 9.06516 10.0776 7.65343 10.7019L9.31553 14.7556C10.7588 14.2091 12.3274 14.0755 13.8448 14.3728L16.8468 14.9617L12.8712 5.26442L11.1476 7.79371ZM3.6876 12.1697C3.66321 12.1861 3.64094 12.2053 3.61729 12.2224C3.64493 12.2024 3.67164 12.1808 3.7003 12.1619L3.6876 12.1697ZM17.7364 10.533C17.6983 10.6215 17.6531 10.707 17.6017 10.7888C17.5759 10.8298 17.5486 10.87 17.5196 10.9089C17.4619 10.9866 17.3982 11.0603 17.3282 11.1287C17.5035 10.9575 17.6411 10.7544 17.7364 10.533ZM17.2901 10.8757C17.6809 10.4178 17.8085 9.76273 17.5646 9.16774C17.3204 8.57282 16.7699 8.19587 16.17 8.1443L17.2901 10.8757ZM7.74034 8.70875C7.50617 8.85288 7.26277 8.98317 7.01085 9.09742L6.79014 9.19313L3.53428 10.5281L3.34971 10.6091C3.31761 10.6242 3.2865 10.6411 3.25499 10.657C3.34566 10.6113 3.43876 10.5673 3.53428 10.5281L6.79014 9.19313C7.1208 9.05752 7.43865 8.89457 7.74034 8.70875ZM17.7501 9.09254C17.7698 9.14069 17.7864 9.18931 17.8019 9.23805C17.8327 9.33542 17.8559 9.43356 17.8702 9.53199C17.8774 9.58114 17.8817 9.63037 17.8849 9.67945C17.8943 9.82732 17.8866 9.97452 17.8614 10.1179C17.9201 9.78386 17.8883 9.42957 17.7501 9.09254ZM19.0314 8.22731C19.0794 8.31942 19.124 8.41444 19.1642 8.51246L19.0314 8.22731C18.9834 8.13534 18.9323 8.04656 18.8771 7.9607L19.0314 8.22731Z",
|
|
2637
|
+
fill: "currentColor"
|
|
2638
|
+
}
|
|
2639
|
+
),
|
|
2640
|
+
/* @__PURE__ */ React50.createElement(
|
|
2641
|
+
"path",
|
|
2642
|
+
{
|
|
2643
|
+
fillRule: "evenodd",
|
|
2644
|
+
clipRule: "evenodd",
|
|
2645
|
+
d: "M21.3927 10.0916L23.2442 10.3406C23.772 10.412 24.1418 10.8988 24.0704 11.4265C23.9988 11.9541 23.5131 12.3241 22.9855 12.2527L21.1339 12.0027C20.6063 11.9311 20.2363 11.4444 20.3077 10.9168C20.3793 10.3893 20.8652 10.0203 21.3927 10.0916Z",
|
|
2646
|
+
fill: "currentColor"
|
|
2647
|
+
}
|
|
2648
|
+
),
|
|
2649
|
+
/* @__PURE__ */ React50.createElement(
|
|
2650
|
+
"path",
|
|
2651
|
+
{
|
|
2652
|
+
fillRule: "evenodd",
|
|
2653
|
+
clipRule: "evenodd",
|
|
2654
|
+
d: "M22.1398 6.04762C22.6324 5.84569 23.1954 6.08155 23.3976 6.57399C23.5993 7.06657 23.3646 7.62967 22.8722 7.8318L21.1437 8.54078C20.651 8.7428 20.0871 8.50694 19.8849 8.01442C19.6832 7.52183 19.9188 6.95772 20.4112 6.75563L22.1398 6.04762Z",
|
|
2655
|
+
fill: "currentColor"
|
|
2656
|
+
}
|
|
2657
|
+
),
|
|
2658
|
+
/* @__PURE__ */ React50.createElement(
|
|
2659
|
+
"path",
|
|
2660
|
+
{
|
|
2661
|
+
fillRule: "evenodd",
|
|
2662
|
+
clipRule: "evenodd",
|
|
2663
|
+
d: "M18.9073 2.97926C19.233 2.55797 19.8385 2.48091 20.2599 2.80641C20.6813 3.13212 20.7594 3.73757 20.4337 4.15895L19.2911 5.63649C18.9655 6.0578 18.36 6.13585 17.9386 5.81031C17.5173 5.48463 17.4402 4.87914 17.7657 4.45778L18.9073 2.97926Z",
|
|
2664
|
+
fill: "currentColor"
|
|
2665
|
+
}
|
|
2666
|
+
)
|
|
2667
|
+
);
|
|
2668
|
+
};
|
|
2669
|
+
Promotion_default = SvgPromotion;
|
|
2670
|
+
}
|
|
2671
|
+
});
|
|
2672
|
+
|
|
2543
2673
|
// src/react/PropertiesFilled.tsx
|
|
2544
2674
|
var PropertiesFilled_exports = {};
|
|
2545
2675
|
__export(PropertiesFilled_exports, {
|
|
2546
2676
|
default: () => PropertiesFilled_default
|
|
2547
2677
|
});
|
|
2548
|
-
import * as
|
|
2678
|
+
import * as React51 from "react";
|
|
2549
2679
|
var SvgPropertiesFilled, PropertiesFilled_default;
|
|
2550
2680
|
var init_PropertiesFilled = __esm({
|
|
2551
2681
|
"src/react/PropertiesFilled.tsx"() {
|
|
@@ -2553,7 +2683,7 @@ var init_PropertiesFilled = __esm({
|
|
|
2553
2683
|
init_types();
|
|
2554
2684
|
SvgPropertiesFilled = ({ size = 16, ...props }) => {
|
|
2555
2685
|
const sizeValue = resolveSize(size);
|
|
2556
|
-
return /* @__PURE__ */
|
|
2686
|
+
return /* @__PURE__ */ React51.createElement(
|
|
2557
2687
|
"svg",
|
|
2558
2688
|
{
|
|
2559
2689
|
width: sizeValue,
|
|
@@ -2563,7 +2693,7 @@ var init_PropertiesFilled = __esm({
|
|
|
2563
2693
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2564
2694
|
...props
|
|
2565
2695
|
},
|
|
2566
|
-
/* @__PURE__ */
|
|
2696
|
+
/* @__PURE__ */ React51.createElement(
|
|
2567
2697
|
"path",
|
|
2568
2698
|
{
|
|
2569
2699
|
fillRule: "evenodd",
|
|
@@ -2572,7 +2702,7 @@ var init_PropertiesFilled = __esm({
|
|
|
2572
2702
|
fill: "currentColor"
|
|
2573
2703
|
}
|
|
2574
2704
|
),
|
|
2575
|
-
/* @__PURE__ */
|
|
2705
|
+
/* @__PURE__ */ React51.createElement(
|
|
2576
2706
|
"path",
|
|
2577
2707
|
{
|
|
2578
2708
|
fillRule: "evenodd",
|
|
@@ -2581,7 +2711,7 @@ var init_PropertiesFilled = __esm({
|
|
|
2581
2711
|
fill: "currentColor"
|
|
2582
2712
|
}
|
|
2583
2713
|
),
|
|
2584
|
-
/* @__PURE__ */
|
|
2714
|
+
/* @__PURE__ */ React51.createElement(
|
|
2585
2715
|
"path",
|
|
2586
2716
|
{
|
|
2587
2717
|
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",
|
|
@@ -2599,7 +2729,7 @@ var PropertiesLinear_exports = {};
|
|
|
2599
2729
|
__export(PropertiesLinear_exports, {
|
|
2600
2730
|
default: () => PropertiesLinear_default
|
|
2601
2731
|
});
|
|
2602
|
-
import * as
|
|
2732
|
+
import * as React52 from "react";
|
|
2603
2733
|
var SvgPropertiesLinear, PropertiesLinear_default;
|
|
2604
2734
|
var init_PropertiesLinear = __esm({
|
|
2605
2735
|
"src/react/PropertiesLinear.tsx"() {
|
|
@@ -2607,7 +2737,7 @@ var init_PropertiesLinear = __esm({
|
|
|
2607
2737
|
init_types();
|
|
2608
2738
|
SvgPropertiesLinear = ({ size = 16, ...props }) => {
|
|
2609
2739
|
const sizeValue = resolveSize(size);
|
|
2610
|
-
return /* @__PURE__ */
|
|
2740
|
+
return /* @__PURE__ */ React52.createElement(
|
|
2611
2741
|
"svg",
|
|
2612
2742
|
{
|
|
2613
2743
|
width: sizeValue,
|
|
@@ -2617,7 +2747,7 @@ var init_PropertiesLinear = __esm({
|
|
|
2617
2747
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2618
2748
|
...props
|
|
2619
2749
|
},
|
|
2620
|
-
/* @__PURE__ */
|
|
2750
|
+
/* @__PURE__ */ React52.createElement(
|
|
2621
2751
|
"path",
|
|
2622
2752
|
{
|
|
2623
2753
|
fillRule: "evenodd",
|
|
@@ -2626,7 +2756,7 @@ var init_PropertiesLinear = __esm({
|
|
|
2626
2756
|
fill: "currentColor"
|
|
2627
2757
|
}
|
|
2628
2758
|
),
|
|
2629
|
-
/* @__PURE__ */
|
|
2759
|
+
/* @__PURE__ */ React52.createElement(
|
|
2630
2760
|
"path",
|
|
2631
2761
|
{
|
|
2632
2762
|
fillRule: "evenodd",
|
|
@@ -2635,7 +2765,7 @@ var init_PropertiesLinear = __esm({
|
|
|
2635
2765
|
fill: "currentColor"
|
|
2636
2766
|
}
|
|
2637
2767
|
),
|
|
2638
|
-
/* @__PURE__ */
|
|
2768
|
+
/* @__PURE__ */ React52.createElement(
|
|
2639
2769
|
"path",
|
|
2640
2770
|
{
|
|
2641
2771
|
fillRule: "evenodd",
|
|
@@ -2644,7 +2774,7 @@ var init_PropertiesLinear = __esm({
|
|
|
2644
2774
|
fill: "currentColor"
|
|
2645
2775
|
}
|
|
2646
2776
|
),
|
|
2647
|
-
/* @__PURE__ */
|
|
2777
|
+
/* @__PURE__ */ React52.createElement(
|
|
2648
2778
|
"path",
|
|
2649
2779
|
{
|
|
2650
2780
|
fillRule: "evenodd",
|
|
@@ -2653,7 +2783,7 @@ var init_PropertiesLinear = __esm({
|
|
|
2653
2783
|
fill: "currentColor"
|
|
2654
2784
|
}
|
|
2655
2785
|
),
|
|
2656
|
-
/* @__PURE__ */
|
|
2786
|
+
/* @__PURE__ */ React52.createElement(
|
|
2657
2787
|
"path",
|
|
2658
2788
|
{
|
|
2659
2789
|
fillRule: "evenodd",
|
|
@@ -2662,7 +2792,7 @@ var init_PropertiesLinear = __esm({
|
|
|
2662
2792
|
fill: "currentColor"
|
|
2663
2793
|
}
|
|
2664
2794
|
),
|
|
2665
|
-
/* @__PURE__ */
|
|
2795
|
+
/* @__PURE__ */ React52.createElement(
|
|
2666
2796
|
"path",
|
|
2667
2797
|
{
|
|
2668
2798
|
fillRule: "evenodd",
|
|
@@ -2671,7 +2801,7 @@ var init_PropertiesLinear = __esm({
|
|
|
2671
2801
|
fill: "currentColor"
|
|
2672
2802
|
}
|
|
2673
2803
|
),
|
|
2674
|
-
/* @__PURE__ */
|
|
2804
|
+
/* @__PURE__ */ React52.createElement(
|
|
2675
2805
|
"path",
|
|
2676
2806
|
{
|
|
2677
2807
|
fillRule: "evenodd",
|
|
@@ -2691,7 +2821,7 @@ var Rent_exports = {};
|
|
|
2691
2821
|
__export(Rent_exports, {
|
|
2692
2822
|
default: () => Rent_default
|
|
2693
2823
|
});
|
|
2694
|
-
import * as
|
|
2824
|
+
import * as React53 from "react";
|
|
2695
2825
|
var SvgRent, Rent_default;
|
|
2696
2826
|
var init_Rent = __esm({
|
|
2697
2827
|
"src/react/Rent.tsx"() {
|
|
@@ -2699,7 +2829,7 @@ var init_Rent = __esm({
|
|
|
2699
2829
|
init_types();
|
|
2700
2830
|
SvgRent = ({ size = 16, ...props }) => {
|
|
2701
2831
|
const sizeValue = resolveSize(size);
|
|
2702
|
-
return /* @__PURE__ */
|
|
2832
|
+
return /* @__PURE__ */ React53.createElement(
|
|
2703
2833
|
"svg",
|
|
2704
2834
|
{
|
|
2705
2835
|
width: sizeValue,
|
|
@@ -2709,7 +2839,7 @@ var init_Rent = __esm({
|
|
|
2709
2839
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2710
2840
|
...props
|
|
2711
2841
|
},
|
|
2712
|
-
/* @__PURE__ */
|
|
2842
|
+
/* @__PURE__ */ React53.createElement(
|
|
2713
2843
|
"path",
|
|
2714
2844
|
{
|
|
2715
2845
|
fillRule: "evenodd",
|
|
@@ -2718,7 +2848,7 @@ var init_Rent = __esm({
|
|
|
2718
2848
|
fill: "currentColor"
|
|
2719
2849
|
}
|
|
2720
2850
|
),
|
|
2721
|
-
/* @__PURE__ */
|
|
2851
|
+
/* @__PURE__ */ React53.createElement(
|
|
2722
2852
|
"path",
|
|
2723
2853
|
{
|
|
2724
2854
|
fillRule: "evenodd",
|
|
@@ -2727,7 +2857,7 @@ var init_Rent = __esm({
|
|
|
2727
2857
|
fill: "currentColor"
|
|
2728
2858
|
}
|
|
2729
2859
|
),
|
|
2730
|
-
/* @__PURE__ */
|
|
2860
|
+
/* @__PURE__ */ React53.createElement(
|
|
2731
2861
|
"path",
|
|
2732
2862
|
{
|
|
2733
2863
|
fillRule: "evenodd",
|
|
@@ -2747,7 +2877,7 @@ var Sale_exports = {};
|
|
|
2747
2877
|
__export(Sale_exports, {
|
|
2748
2878
|
default: () => Sale_default
|
|
2749
2879
|
});
|
|
2750
|
-
import * as
|
|
2880
|
+
import * as React54 from "react";
|
|
2751
2881
|
var SvgSale, Sale_default;
|
|
2752
2882
|
var init_Sale = __esm({
|
|
2753
2883
|
"src/react/Sale.tsx"() {
|
|
@@ -2755,7 +2885,7 @@ var init_Sale = __esm({
|
|
|
2755
2885
|
init_types();
|
|
2756
2886
|
SvgSale = ({ size = 16, ...props }) => {
|
|
2757
2887
|
const sizeValue = resolveSize(size);
|
|
2758
|
-
return /* @__PURE__ */
|
|
2888
|
+
return /* @__PURE__ */ React54.createElement(
|
|
2759
2889
|
"svg",
|
|
2760
2890
|
{
|
|
2761
2891
|
width: sizeValue,
|
|
@@ -2765,7 +2895,7 @@ var init_Sale = __esm({
|
|
|
2765
2895
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2766
2896
|
...props
|
|
2767
2897
|
},
|
|
2768
|
-
/* @__PURE__ */
|
|
2898
|
+
/* @__PURE__ */ React54.createElement(
|
|
2769
2899
|
"path",
|
|
2770
2900
|
{
|
|
2771
2901
|
fillRule: "evenodd",
|
|
@@ -2774,7 +2904,7 @@ var init_Sale = __esm({
|
|
|
2774
2904
|
fill: "currentColor"
|
|
2775
2905
|
}
|
|
2776
2906
|
),
|
|
2777
|
-
/* @__PURE__ */
|
|
2907
|
+
/* @__PURE__ */ React54.createElement(
|
|
2778
2908
|
"path",
|
|
2779
2909
|
{
|
|
2780
2910
|
fillRule: "evenodd",
|
|
@@ -2783,7 +2913,7 @@ var init_Sale = __esm({
|
|
|
2783
2913
|
fill: "currentColor"
|
|
2784
2914
|
}
|
|
2785
2915
|
),
|
|
2786
|
-
/* @__PURE__ */
|
|
2916
|
+
/* @__PURE__ */ React54.createElement(
|
|
2787
2917
|
"path",
|
|
2788
2918
|
{
|
|
2789
2919
|
fillRule: "evenodd",
|
|
@@ -2803,7 +2933,7 @@ var Search_exports = {};
|
|
|
2803
2933
|
__export(Search_exports, {
|
|
2804
2934
|
default: () => Search_default
|
|
2805
2935
|
});
|
|
2806
|
-
import * as
|
|
2936
|
+
import * as React55 from "react";
|
|
2807
2937
|
var SvgSearch, Search_default;
|
|
2808
2938
|
var init_Search = __esm({
|
|
2809
2939
|
"src/react/Search.tsx"() {
|
|
@@ -2811,7 +2941,7 @@ var init_Search = __esm({
|
|
|
2811
2941
|
init_types();
|
|
2812
2942
|
SvgSearch = ({ size = 16, ...props }) => {
|
|
2813
2943
|
const sizeValue = resolveSize(size);
|
|
2814
|
-
return /* @__PURE__ */
|
|
2944
|
+
return /* @__PURE__ */ React55.createElement(
|
|
2815
2945
|
"svg",
|
|
2816
2946
|
{
|
|
2817
2947
|
width: sizeValue,
|
|
@@ -2821,7 +2951,7 @@ var init_Search = __esm({
|
|
|
2821
2951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2822
2952
|
...props
|
|
2823
2953
|
},
|
|
2824
|
-
/* @__PURE__ */
|
|
2954
|
+
/* @__PURE__ */ React55.createElement(
|
|
2825
2955
|
"path",
|
|
2826
2956
|
{
|
|
2827
2957
|
fillRule: "evenodd",
|
|
@@ -2830,7 +2960,7 @@ var init_Search = __esm({
|
|
|
2830
2960
|
fill: "currentColor"
|
|
2831
2961
|
}
|
|
2832
2962
|
),
|
|
2833
|
-
/* @__PURE__ */
|
|
2963
|
+
/* @__PURE__ */ React55.createElement(
|
|
2834
2964
|
"path",
|
|
2835
2965
|
{
|
|
2836
2966
|
fillRule: "evenodd",
|
|
@@ -2850,7 +2980,7 @@ var SearchX_exports = {};
|
|
|
2850
2980
|
__export(SearchX_exports, {
|
|
2851
2981
|
default: () => SearchX_default
|
|
2852
2982
|
});
|
|
2853
|
-
import * as
|
|
2983
|
+
import * as React56 from "react";
|
|
2854
2984
|
var SvgSearchX, SearchX_default;
|
|
2855
2985
|
var init_SearchX = __esm({
|
|
2856
2986
|
"src/react/SearchX.tsx"() {
|
|
@@ -2858,7 +2988,7 @@ var init_SearchX = __esm({
|
|
|
2858
2988
|
init_types();
|
|
2859
2989
|
SvgSearchX = ({ size = 16, ...props }) => {
|
|
2860
2990
|
const sizeValue = resolveSize(size);
|
|
2861
|
-
return /* @__PURE__ */
|
|
2991
|
+
return /* @__PURE__ */ React56.createElement(
|
|
2862
2992
|
"svg",
|
|
2863
2993
|
{
|
|
2864
2994
|
width: sizeValue,
|
|
@@ -2868,7 +2998,7 @@ var init_SearchX = __esm({
|
|
|
2868
2998
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2869
2999
|
...props
|
|
2870
3000
|
},
|
|
2871
|
-
/* @__PURE__ */
|
|
3001
|
+
/* @__PURE__ */ React56.createElement(
|
|
2872
3002
|
"path",
|
|
2873
3003
|
{
|
|
2874
3004
|
fillRule: "evenodd",
|
|
@@ -2877,7 +3007,7 @@ var init_SearchX = __esm({
|
|
|
2877
3007
|
fill: "currentColor"
|
|
2878
3008
|
}
|
|
2879
3009
|
),
|
|
2880
|
-
/* @__PURE__ */
|
|
3010
|
+
/* @__PURE__ */ React56.createElement(
|
|
2881
3011
|
"path",
|
|
2882
3012
|
{
|
|
2883
3013
|
fillRule: "evenodd",
|
|
@@ -2886,7 +3016,7 @@ var init_SearchX = __esm({
|
|
|
2886
3016
|
fill: "currentColor"
|
|
2887
3017
|
}
|
|
2888
3018
|
),
|
|
2889
|
-
/* @__PURE__ */
|
|
3019
|
+
/* @__PURE__ */ React56.createElement(
|
|
2890
3020
|
"path",
|
|
2891
3021
|
{
|
|
2892
3022
|
fillRule: "evenodd",
|
|
@@ -2895,7 +3025,7 @@ var init_SearchX = __esm({
|
|
|
2895
3025
|
fill: "currentColor"
|
|
2896
3026
|
}
|
|
2897
3027
|
),
|
|
2898
|
-
/* @__PURE__ */
|
|
3028
|
+
/* @__PURE__ */ React56.createElement(
|
|
2899
3029
|
"path",
|
|
2900
3030
|
{
|
|
2901
3031
|
fillRule: "evenodd",
|
|
@@ -2915,7 +3045,7 @@ var Share_exports = {};
|
|
|
2915
3045
|
__export(Share_exports, {
|
|
2916
3046
|
default: () => Share_default
|
|
2917
3047
|
});
|
|
2918
|
-
import * as
|
|
3048
|
+
import * as React57 from "react";
|
|
2919
3049
|
var SvgShare, Share_default;
|
|
2920
3050
|
var init_Share = __esm({
|
|
2921
3051
|
"src/react/Share.tsx"() {
|
|
@@ -2923,7 +3053,7 @@ var init_Share = __esm({
|
|
|
2923
3053
|
init_types();
|
|
2924
3054
|
SvgShare = ({ size = 16, ...props }) => {
|
|
2925
3055
|
const sizeValue = resolveSize(size);
|
|
2926
|
-
return /* @__PURE__ */
|
|
3056
|
+
return /* @__PURE__ */ React57.createElement(
|
|
2927
3057
|
"svg",
|
|
2928
3058
|
{
|
|
2929
3059
|
width: sizeValue,
|
|
@@ -2933,7 +3063,7 @@ var init_Share = __esm({
|
|
|
2933
3063
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2934
3064
|
...props
|
|
2935
3065
|
},
|
|
2936
|
-
/* @__PURE__ */
|
|
3066
|
+
/* @__PURE__ */ React57.createElement(
|
|
2937
3067
|
"path",
|
|
2938
3068
|
{
|
|
2939
3069
|
fillRule: "evenodd",
|
|
@@ -2942,7 +3072,7 @@ var init_Share = __esm({
|
|
|
2942
3072
|
fill: "currentColor"
|
|
2943
3073
|
}
|
|
2944
3074
|
),
|
|
2945
|
-
/* @__PURE__ */
|
|
3075
|
+
/* @__PURE__ */ React57.createElement(
|
|
2946
3076
|
"path",
|
|
2947
3077
|
{
|
|
2948
3078
|
fillRule: "evenodd",
|
|
@@ -2951,7 +3081,7 @@ var init_Share = __esm({
|
|
|
2951
3081
|
fill: "currentColor"
|
|
2952
3082
|
}
|
|
2953
3083
|
),
|
|
2954
|
-
/* @__PURE__ */
|
|
3084
|
+
/* @__PURE__ */ React57.createElement(
|
|
2955
3085
|
"path",
|
|
2956
3086
|
{
|
|
2957
3087
|
fillRule: "evenodd",
|
|
@@ -2971,7 +3101,7 @@ var Size3D_exports = {};
|
|
|
2971
3101
|
__export(Size3D_exports, {
|
|
2972
3102
|
default: () => Size3D_default
|
|
2973
3103
|
});
|
|
2974
|
-
import * as
|
|
3104
|
+
import * as React58 from "react";
|
|
2975
3105
|
var SvgSize3D, Size3D_default;
|
|
2976
3106
|
var init_Size3D = __esm({
|
|
2977
3107
|
"src/react/Size3D.tsx"() {
|
|
@@ -2979,7 +3109,7 @@ var init_Size3D = __esm({
|
|
|
2979
3109
|
init_types();
|
|
2980
3110
|
SvgSize3D = ({ size = 16, ...props }) => {
|
|
2981
3111
|
const sizeValue = resolveSize(size);
|
|
2982
|
-
return /* @__PURE__ */
|
|
3112
|
+
return /* @__PURE__ */ React58.createElement(
|
|
2983
3113
|
"svg",
|
|
2984
3114
|
{
|
|
2985
3115
|
width: sizeValue,
|
|
@@ -2989,7 +3119,7 @@ var init_Size3D = __esm({
|
|
|
2989
3119
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2990
3120
|
...props
|
|
2991
3121
|
},
|
|
2992
|
-
/* @__PURE__ */
|
|
3122
|
+
/* @__PURE__ */ React58.createElement(
|
|
2993
3123
|
"path",
|
|
2994
3124
|
{
|
|
2995
3125
|
fillRule: "evenodd",
|
|
@@ -2998,7 +3128,7 @@ var init_Size3D = __esm({
|
|
|
2998
3128
|
fill: "currentColor"
|
|
2999
3129
|
}
|
|
3000
3130
|
),
|
|
3001
|
-
/* @__PURE__ */
|
|
3131
|
+
/* @__PURE__ */ React58.createElement(
|
|
3002
3132
|
"path",
|
|
3003
3133
|
{
|
|
3004
3134
|
fillRule: "evenodd",
|
|
@@ -3007,7 +3137,7 @@ var init_Size3D = __esm({
|
|
|
3007
3137
|
fill: "currentColor"
|
|
3008
3138
|
}
|
|
3009
3139
|
),
|
|
3010
|
-
/* @__PURE__ */
|
|
3140
|
+
/* @__PURE__ */ React58.createElement(
|
|
3011
3141
|
"path",
|
|
3012
3142
|
{
|
|
3013
3143
|
fillRule: "evenodd",
|
|
@@ -3016,7 +3146,7 @@ var init_Size3D = __esm({
|
|
|
3016
3146
|
fill: "currentColor"
|
|
3017
3147
|
}
|
|
3018
3148
|
),
|
|
3019
|
-
/* @__PURE__ */
|
|
3149
|
+
/* @__PURE__ */ React58.createElement(
|
|
3020
3150
|
"path",
|
|
3021
3151
|
{
|
|
3022
3152
|
fillRule: "evenodd",
|
|
@@ -3036,7 +3166,7 @@ var Trash2_exports = {};
|
|
|
3036
3166
|
__export(Trash2_exports, {
|
|
3037
3167
|
default: () => Trash2_default
|
|
3038
3168
|
});
|
|
3039
|
-
import * as
|
|
3169
|
+
import * as React59 from "react";
|
|
3040
3170
|
var SvgTrash2, Trash2_default;
|
|
3041
3171
|
var init_Trash2 = __esm({
|
|
3042
3172
|
"src/react/Trash2.tsx"() {
|
|
@@ -3044,7 +3174,7 @@ var init_Trash2 = __esm({
|
|
|
3044
3174
|
init_types();
|
|
3045
3175
|
SvgTrash2 = ({ size = 16, ...props }) => {
|
|
3046
3176
|
const sizeValue = resolveSize(size);
|
|
3047
|
-
return /* @__PURE__ */
|
|
3177
|
+
return /* @__PURE__ */ React59.createElement(
|
|
3048
3178
|
"svg",
|
|
3049
3179
|
{
|
|
3050
3180
|
width: sizeValue,
|
|
@@ -3054,7 +3184,7 @@ var init_Trash2 = __esm({
|
|
|
3054
3184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3055
3185
|
...props
|
|
3056
3186
|
},
|
|
3057
|
-
/* @__PURE__ */
|
|
3187
|
+
/* @__PURE__ */ React59.createElement(
|
|
3058
3188
|
"path",
|
|
3059
3189
|
{
|
|
3060
3190
|
fillRule: "evenodd",
|
|
@@ -3063,7 +3193,7 @@ var init_Trash2 = __esm({
|
|
|
3063
3193
|
fill: "currentColor"
|
|
3064
3194
|
}
|
|
3065
3195
|
),
|
|
3066
|
-
/* @__PURE__ */
|
|
3196
|
+
/* @__PURE__ */ React59.createElement(
|
|
3067
3197
|
"path",
|
|
3068
3198
|
{
|
|
3069
3199
|
fillRule: "evenodd",
|
|
@@ -3072,7 +3202,7 @@ var init_Trash2 = __esm({
|
|
|
3072
3202
|
fill: "currentColor"
|
|
3073
3203
|
}
|
|
3074
3204
|
),
|
|
3075
|
-
/* @__PURE__ */
|
|
3205
|
+
/* @__PURE__ */ React59.createElement(
|
|
3076
3206
|
"path",
|
|
3077
3207
|
{
|
|
3078
3208
|
fillRule: "evenodd",
|
|
@@ -3081,7 +3211,7 @@ var init_Trash2 = __esm({
|
|
|
3081
3211
|
fill: "currentColor"
|
|
3082
3212
|
}
|
|
3083
3213
|
),
|
|
3084
|
-
/* @__PURE__ */
|
|
3214
|
+
/* @__PURE__ */ React59.createElement(
|
|
3085
3215
|
"path",
|
|
3086
3216
|
{
|
|
3087
3217
|
fillRule: "evenodd",
|
|
@@ -3090,7 +3220,7 @@ var init_Trash2 = __esm({
|
|
|
3090
3220
|
fill: "currentColor"
|
|
3091
3221
|
}
|
|
3092
3222
|
),
|
|
3093
|
-
/* @__PURE__ */
|
|
3223
|
+
/* @__PURE__ */ React59.createElement(
|
|
3094
3224
|
"path",
|
|
3095
3225
|
{
|
|
3096
3226
|
fillRule: "evenodd",
|
|
@@ -3110,7 +3240,7 @@ var User_exports = {};
|
|
|
3110
3240
|
__export(User_exports, {
|
|
3111
3241
|
default: () => User_default
|
|
3112
3242
|
});
|
|
3113
|
-
import * as
|
|
3243
|
+
import * as React60 from "react";
|
|
3114
3244
|
var SvgUser, User_default;
|
|
3115
3245
|
var init_User = __esm({
|
|
3116
3246
|
"src/react/User.tsx"() {
|
|
@@ -3118,7 +3248,7 @@ var init_User = __esm({
|
|
|
3118
3248
|
init_types();
|
|
3119
3249
|
SvgUser = ({ size = 16, ...props }) => {
|
|
3120
3250
|
const sizeValue = resolveSize(size);
|
|
3121
|
-
return /* @__PURE__ */
|
|
3251
|
+
return /* @__PURE__ */ React60.createElement(
|
|
3122
3252
|
"svg",
|
|
3123
3253
|
{
|
|
3124
3254
|
width: sizeValue,
|
|
@@ -3128,7 +3258,7 @@ var init_User = __esm({
|
|
|
3128
3258
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3129
3259
|
...props
|
|
3130
3260
|
},
|
|
3131
|
-
/* @__PURE__ */
|
|
3261
|
+
/* @__PURE__ */ React60.createElement(
|
|
3132
3262
|
"path",
|
|
3133
3263
|
{
|
|
3134
3264
|
fillRule: "evenodd",
|
|
@@ -3137,7 +3267,7 @@ var init_User = __esm({
|
|
|
3137
3267
|
fill: "currentColor"
|
|
3138
3268
|
}
|
|
3139
3269
|
),
|
|
3140
|
-
/* @__PURE__ */
|
|
3270
|
+
/* @__PURE__ */ React60.createElement(
|
|
3141
3271
|
"path",
|
|
3142
3272
|
{
|
|
3143
3273
|
fillRule: "evenodd",
|
|
@@ -3157,7 +3287,7 @@ var Whatsapp_exports = {};
|
|
|
3157
3287
|
__export(Whatsapp_exports, {
|
|
3158
3288
|
default: () => Whatsapp_default
|
|
3159
3289
|
});
|
|
3160
|
-
import * as
|
|
3290
|
+
import * as React61 from "react";
|
|
3161
3291
|
var SvgWhatsapp, Whatsapp_default;
|
|
3162
3292
|
var init_Whatsapp = __esm({
|
|
3163
3293
|
"src/react/Whatsapp.tsx"() {
|
|
@@ -3165,7 +3295,7 @@ var init_Whatsapp = __esm({
|
|
|
3165
3295
|
init_types();
|
|
3166
3296
|
SvgWhatsapp = ({ size = 16, ...props }) => {
|
|
3167
3297
|
const sizeValue = resolveSize(size);
|
|
3168
|
-
return /* @__PURE__ */
|
|
3298
|
+
return /* @__PURE__ */ React61.createElement(
|
|
3169
3299
|
"svg",
|
|
3170
3300
|
{
|
|
3171
3301
|
width: sizeValue,
|
|
@@ -3175,7 +3305,7 @@ var init_Whatsapp = __esm({
|
|
|
3175
3305
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3176
3306
|
...props
|
|
3177
3307
|
},
|
|
3178
|
-
/* @__PURE__ */
|
|
3308
|
+
/* @__PURE__ */ React61.createElement(
|
|
3179
3309
|
"path",
|
|
3180
3310
|
{
|
|
3181
3311
|
fillRule: "evenodd",
|
|
@@ -3218,6 +3348,7 @@ init_EyeHidden();
|
|
|
3218
3348
|
init_EyeVisible();
|
|
3219
3349
|
init_FaceId();
|
|
3220
3350
|
init_FileCheck();
|
|
3351
|
+
init_FileInput();
|
|
3221
3352
|
init_FileKey();
|
|
3222
3353
|
init_FileLock();
|
|
3223
3354
|
init_FileSignature();
|
|
@@ -3239,6 +3370,7 @@ init_Mortgage();
|
|
|
3239
3370
|
init_Note();
|
|
3240
3371
|
init_Payments();
|
|
3241
3372
|
init_Plus();
|
|
3373
|
+
init_Promotion();
|
|
3242
3374
|
init_PropertiesFilled();
|
|
3243
3375
|
init_PropertiesLinear();
|
|
3244
3376
|
init_Rent();
|
|
@@ -3252,7 +3384,7 @@ init_User();
|
|
|
3252
3384
|
init_Whatsapp();
|
|
3253
3385
|
|
|
3254
3386
|
// src/react/Icon.tsx
|
|
3255
|
-
import * as
|
|
3387
|
+
import * as React62 from "react";
|
|
3256
3388
|
function loadIcon(name) {
|
|
3257
3389
|
switch (name) {
|
|
3258
3390
|
case "alert-triangle":
|
|
@@ -3309,6 +3441,8 @@ function loadIcon(name) {
|
|
|
3309
3441
|
return Promise.resolve().then(() => (init_FaceId(), FaceId_exports)).then((m) => m.default);
|
|
3310
3442
|
case "file-check":
|
|
3311
3443
|
return Promise.resolve().then(() => (init_FileCheck(), FileCheck_exports)).then((m) => m.default);
|
|
3444
|
+
case "file-input":
|
|
3445
|
+
return Promise.resolve().then(() => (init_FileInput(), FileInput_exports)).then((m) => m.default);
|
|
3312
3446
|
case "file-key":
|
|
3313
3447
|
return Promise.resolve().then(() => (init_FileKey(), FileKey_exports)).then((m) => m.default);
|
|
3314
3448
|
case "file-lock":
|
|
@@ -3351,6 +3485,8 @@ function loadIcon(name) {
|
|
|
3351
3485
|
return Promise.resolve().then(() => (init_Payments(), Payments_exports)).then((m) => m.default);
|
|
3352
3486
|
case "plus":
|
|
3353
3487
|
return Promise.resolve().then(() => (init_Plus(), Plus_exports)).then((m) => m.default);
|
|
3488
|
+
case "promotion":
|
|
3489
|
+
return Promise.resolve().then(() => (init_Promotion(), Promotion_exports)).then((m) => m.default);
|
|
3354
3490
|
case "properties-filled":
|
|
3355
3491
|
return Promise.resolve().then(() => (init_PropertiesFilled(), PropertiesFilled_exports)).then((m) => m.default);
|
|
3356
3492
|
case "properties-linear":
|
|
@@ -3378,10 +3514,10 @@ function loadIcon(name) {
|
|
|
3378
3514
|
}
|
|
3379
3515
|
}
|
|
3380
3516
|
var Icon = ({ name, size = 16, color, ...props }) => {
|
|
3381
|
-
const [IconComponent, setIconComponent] =
|
|
3382
|
-
const [loading, setLoading] =
|
|
3383
|
-
const [error, setError] =
|
|
3384
|
-
|
|
3517
|
+
const [IconComponent, setIconComponent] = React62.useState(null);
|
|
3518
|
+
const [loading, setLoading] = React62.useState(true);
|
|
3519
|
+
const [error, setError] = React62.useState(null);
|
|
3520
|
+
React62.useEffect(() => {
|
|
3385
3521
|
setLoading(true);
|
|
3386
3522
|
setError(null);
|
|
3387
3523
|
loadIcon(name).then((Component) => {
|
|
@@ -3400,7 +3536,7 @@ var Icon = ({ name, size = 16, color, ...props }) => {
|
|
|
3400
3536
|
return null;
|
|
3401
3537
|
}
|
|
3402
3538
|
const style = color ? { ...props.style, color } : props.style;
|
|
3403
|
-
return /* @__PURE__ */
|
|
3539
|
+
return /* @__PURE__ */ React62.createElement(IconComponent, { size, ...props, style });
|
|
3404
3540
|
};
|
|
3405
3541
|
var Icon_default = Icon;
|
|
3406
3542
|
|
|
@@ -3434,6 +3570,7 @@ export {
|
|
|
3434
3570
|
EyeVisible_default as EyeVisible,
|
|
3435
3571
|
FaceId_default as FaceId,
|
|
3436
3572
|
FileCheck_default as FileCheck,
|
|
3573
|
+
FileInput_default as FileInput,
|
|
3437
3574
|
FileKey_default as FileKey,
|
|
3438
3575
|
FileLock_default as FileLock,
|
|
3439
3576
|
FileSignature_default as FileSignature,
|
|
@@ -3457,6 +3594,7 @@ export {
|
|
|
3457
3594
|
Note_default as Note,
|
|
3458
3595
|
Payments_default as Payments,
|
|
3459
3596
|
Plus_default as Plus,
|
|
3597
|
+
Promotion_default as Promotion,
|
|
3460
3598
|
PropertiesFilled_default as PropertiesFilled,
|
|
3461
3599
|
PropertiesLinear_default as PropertiesLinear,
|
|
3462
3600
|
Rent_default as Rent,
|