@tabler/icons 1.41.2 → 1.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/iconfont/.DS_Store +0 -0
- package/iconfont/fonts/tabler-icons.eot +0 -0
- package/iconfont/fonts/tabler-icons.svg +60 -0
- package/iconfont/fonts/tabler-icons.ttf +0 -0
- package/iconfont/fonts/tabler-icons.woff +0 -0
- package/iconfont/fonts/tabler-icons.woff2 +0 -0
- package/iconfont/tabler-icons.css +81 -1
- package/iconfont/tabler-icons.html +182 -2
- package/iconfont/tabler-icons.min.css +2 -2
- package/iconfont/tabler-icons.scss +41 -1
- package/icons/.DS_Store +0 -0
- package/icons/arrow-autofit-content.svg +10 -0
- package/icons/arrow-autofit-down.svg +8 -0
- package/icons/arrow-autofit-height.svg +10 -0
- package/icons/arrow-autofit-left.svg +8 -0
- package/icons/arrow-autofit-right.svg +8 -0
- package/icons/arrow-autofit-up.svg +8 -0
- package/icons/arrow-autofit-width.svg +10 -0
- package/icons/arrows-diagonal-minimize-2.svg +9 -0
- package/icons/arrows-diagonal-minimize.svg +9 -0
- package/icons/ballon.svg +8 -0
- package/icons/battery-charging-2.svg +10 -0
- package/icons/battery-eco.svg +8 -0
- package/icons/beach.svg +10 -0
- package/icons/brand-bootstrap.svg +8 -0
- package/icons/highlight.svg +9 -0
- package/icons/list-details.svg +11 -0
- package/icons/multiplier-0-5x.svg +9 -0
- package/icons/multiplier-1-5x.svg +10 -0
- package/icons/multiplier-1x.svg +8 -0
- package/icons/multiplier-2x.svg +8 -0
- package/icons-png/.DS_Store +0 -0
- package/icons-png/arrow-autofit-content.png +0 -0
- package/icons-png/arrow-autofit-down.png +0 -0
- package/icons-png/arrow-autofit-height.png +0 -0
- package/icons-png/arrow-autofit-left.png +0 -0
- package/icons-png/arrow-autofit-right.png +0 -0
- package/icons-png/arrow-autofit-up.png +0 -0
- package/icons-png/arrow-autofit-width.png +0 -0
- package/icons-png/arrows-diagonal-minimize-2.png +0 -0
- package/icons-png/arrows-diagonal-minimize.png +0 -0
- package/icons-png/ballon.png +0 -0
- package/icons-png/battery-charging-2.png +0 -0
- package/icons-png/battery-eco.png +0 -0
- package/icons-png/beach.png +0 -0
- package/icons-png/brand-bootstrap.png +0 -0
- package/icons-png/highlight.png +0 -0
- package/icons-png/list-details.png +0 -0
- package/icons-png/multiplier-0-5x.png +0 -0
- package/icons-png/multiplier-1-5x.png +0 -0
- package/icons-png/multiplier-1x.png +0 -0
- package/icons-png/multiplier-2x.png +0 -0
- package/icons-react/dist/index.cjs.js +710 -0
- package/icons-react/dist/index.cjs.js.map +1 -1
- package/icons-react/dist/index.cjs.min.js +1 -1
- package/icons-react/dist/index.cjs.min.js.map +1 -1
- package/icons-react/dist/index.esm.js +691 -1
- package/icons-react/dist/index.esm.js.map +1 -1
- package/icons-react/dist/index.esm.min.js +1 -1
- package/icons-react/dist/index.esm.min.js.map +1 -1
- package/icons-react/dist/index.umd.js +710 -0
- package/icons-react/dist/index.umd.js.map +1 -1
- package/icons-react/dist/index.umd.min.js +1 -1
- package/icons-react/dist/index.umd.min.js.map +1 -1
- package/icons-react/index.d.ts +20 -0
- package/package.json +1 -1
- package/tabler-sprite-nostroke.svg +1 -1
- package/tabler-sprite.svg +1 -1
- package/tags.json +178 -0
|
@@ -1575,6 +1575,246 @@ function IconArchive(_ref) {
|
|
|
1575
1575
|
}));
|
|
1576
1576
|
}
|
|
1577
1577
|
|
|
1578
|
+
function IconArrowAutofitContent(_ref) {
|
|
1579
|
+
var _ref$size = _ref.size,
|
|
1580
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
1581
|
+
_ref$color = _ref.color,
|
|
1582
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
1583
|
+
_ref$stroke = _ref.stroke,
|
|
1584
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
1585
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
1586
|
+
|
|
1587
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
1588
|
+
className: "icon icon-tabler icon-tabler-arrow-autofit-content",
|
|
1589
|
+
width: size,
|
|
1590
|
+
height: size,
|
|
1591
|
+
viewBox: "0 0 24 24",
|
|
1592
|
+
strokeWidth: stroke,
|
|
1593
|
+
stroke: color,
|
|
1594
|
+
fill: "none",
|
|
1595
|
+
strokeLinecap: "round",
|
|
1596
|
+
strokeLinejoin: "round"
|
|
1597
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
1598
|
+
stroke: "none",
|
|
1599
|
+
d: "M0 0h24v24H0z",
|
|
1600
|
+
fill: "none"
|
|
1601
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1602
|
+
d: "M6 4l-3 3l3 3"
|
|
1603
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1604
|
+
d: "M18 4l3 3l-3 3"
|
|
1605
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
1606
|
+
x: 4,
|
|
1607
|
+
y: 14,
|
|
1608
|
+
width: 16,
|
|
1609
|
+
height: 6,
|
|
1610
|
+
rx: 2
|
|
1611
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1612
|
+
d: "M10 7h-7"
|
|
1613
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1614
|
+
d: "M21 7h-7"
|
|
1615
|
+
}));
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
function IconArrowAutofitDown(_ref) {
|
|
1619
|
+
var _ref$size = _ref.size,
|
|
1620
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
1621
|
+
_ref$color = _ref.color,
|
|
1622
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
1623
|
+
_ref$stroke = _ref.stroke,
|
|
1624
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
1625
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
1626
|
+
|
|
1627
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
1628
|
+
className: "icon icon-tabler icon-tabler-arrow-autofit-down",
|
|
1629
|
+
width: size,
|
|
1630
|
+
height: size,
|
|
1631
|
+
viewBox: "0 0 24 24",
|
|
1632
|
+
strokeWidth: stroke,
|
|
1633
|
+
stroke: color,
|
|
1634
|
+
fill: "none",
|
|
1635
|
+
strokeLinecap: "round",
|
|
1636
|
+
strokeLinejoin: "round"
|
|
1637
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
1638
|
+
stroke: "none",
|
|
1639
|
+
d: "M0 0h24v24H0z",
|
|
1640
|
+
fill: "none"
|
|
1641
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1642
|
+
d: "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"
|
|
1643
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1644
|
+
d: "M18 4v17"
|
|
1645
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1646
|
+
d: "M15 18l3 3l3 -3"
|
|
1647
|
+
}));
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
function IconArrowAutofitHeight(_ref) {
|
|
1651
|
+
var _ref$size = _ref.size,
|
|
1652
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
1653
|
+
_ref$color = _ref.color,
|
|
1654
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
1655
|
+
_ref$stroke = _ref.stroke,
|
|
1656
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
1657
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
1658
|
+
|
|
1659
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
1660
|
+
className: "icon icon-tabler icon-tabler-arrow-autofit-height",
|
|
1661
|
+
width: size,
|
|
1662
|
+
height: size,
|
|
1663
|
+
viewBox: "0 0 24 24",
|
|
1664
|
+
strokeWidth: stroke,
|
|
1665
|
+
stroke: color,
|
|
1666
|
+
fill: "none",
|
|
1667
|
+
strokeLinecap: "round",
|
|
1668
|
+
strokeLinejoin: "round"
|
|
1669
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
1670
|
+
stroke: "none",
|
|
1671
|
+
d: "M0 0h24v24H0z",
|
|
1672
|
+
fill: "none"
|
|
1673
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1674
|
+
d: "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"
|
|
1675
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1676
|
+
d: "M18 14v7"
|
|
1677
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1678
|
+
d: "M18 3v7"
|
|
1679
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1680
|
+
d: "M15 18l3 3l3 -3"
|
|
1681
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1682
|
+
d: "M15 6l3 -3l3 3"
|
|
1683
|
+
}));
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
function IconArrowAutofitLeft(_ref) {
|
|
1687
|
+
var _ref$size = _ref.size,
|
|
1688
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
1689
|
+
_ref$color = _ref.color,
|
|
1690
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
1691
|
+
_ref$stroke = _ref.stroke,
|
|
1692
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
1693
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
1694
|
+
|
|
1695
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
1696
|
+
className: "icon icon-tabler icon-tabler-arrow-autofit-left",
|
|
1697
|
+
width: size,
|
|
1698
|
+
height: size,
|
|
1699
|
+
viewBox: "0 0 24 24",
|
|
1700
|
+
strokeWidth: stroke,
|
|
1701
|
+
stroke: color,
|
|
1702
|
+
fill: "none",
|
|
1703
|
+
strokeLinecap: "round",
|
|
1704
|
+
strokeLinejoin: "round"
|
|
1705
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
1706
|
+
stroke: "none",
|
|
1707
|
+
d: "M0 0h24v24H0z",
|
|
1708
|
+
fill: "none"
|
|
1709
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1710
|
+
d: "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"
|
|
1711
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1712
|
+
d: "M20 18h-17"
|
|
1713
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1714
|
+
d: "M6 15l-3 3l3 3"
|
|
1715
|
+
}));
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
function IconArrowAutofitRight(_ref) {
|
|
1719
|
+
var _ref$size = _ref.size,
|
|
1720
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
1721
|
+
_ref$color = _ref.color,
|
|
1722
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
1723
|
+
_ref$stroke = _ref.stroke,
|
|
1724
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
1725
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
1726
|
+
|
|
1727
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
1728
|
+
className: "icon icon-tabler icon-tabler-arrow-autofit-right",
|
|
1729
|
+
width: size,
|
|
1730
|
+
height: size,
|
|
1731
|
+
viewBox: "0 0 24 24",
|
|
1732
|
+
strokeWidth: stroke,
|
|
1733
|
+
stroke: color,
|
|
1734
|
+
fill: "none",
|
|
1735
|
+
strokeLinecap: "round",
|
|
1736
|
+
strokeLinejoin: "round"
|
|
1737
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
1738
|
+
stroke: "none",
|
|
1739
|
+
d: "M0 0h24v24H0z",
|
|
1740
|
+
fill: "none"
|
|
1741
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1742
|
+
d: "M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"
|
|
1743
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1744
|
+
d: "M4 18h17"
|
|
1745
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1746
|
+
d: "M18 15l3 3l-3 3"
|
|
1747
|
+
}));
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
function IconArrowAutofitUp(_ref) {
|
|
1751
|
+
var _ref$size = _ref.size,
|
|
1752
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
1753
|
+
_ref$color = _ref.color,
|
|
1754
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
1755
|
+
_ref$stroke = _ref.stroke,
|
|
1756
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
1757
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
1758
|
+
|
|
1759
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
1760
|
+
className: "icon icon-tabler icon-tabler-arrow-autofit-up",
|
|
1761
|
+
width: size,
|
|
1762
|
+
height: size,
|
|
1763
|
+
viewBox: "0 0 24 24",
|
|
1764
|
+
strokeWidth: stroke,
|
|
1765
|
+
stroke: color,
|
|
1766
|
+
fill: "none",
|
|
1767
|
+
strokeLinecap: "round",
|
|
1768
|
+
strokeLinejoin: "round"
|
|
1769
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
1770
|
+
stroke: "none",
|
|
1771
|
+
d: "M0 0h24v24H0z",
|
|
1772
|
+
fill: "none"
|
|
1773
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1774
|
+
d: "M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"
|
|
1775
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1776
|
+
d: "M18 20v-17"
|
|
1777
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1778
|
+
d: "M15 6l3 -3l3 3"
|
|
1779
|
+
}));
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
function IconArrowAutofitWidth(_ref) {
|
|
1783
|
+
var _ref$size = _ref.size,
|
|
1784
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
1785
|
+
_ref$color = _ref.color,
|
|
1786
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
1787
|
+
_ref$stroke = _ref.stroke,
|
|
1788
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
1789
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
1790
|
+
|
|
1791
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
1792
|
+
className: "icon icon-tabler icon-tabler-arrow-autofit-width",
|
|
1793
|
+
width: size,
|
|
1794
|
+
height: size,
|
|
1795
|
+
viewBox: "0 0 24 24",
|
|
1796
|
+
strokeWidth: stroke,
|
|
1797
|
+
stroke: color,
|
|
1798
|
+
fill: "none",
|
|
1799
|
+
strokeLinecap: "round",
|
|
1800
|
+
strokeLinejoin: "round"
|
|
1801
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
1802
|
+
stroke: "none",
|
|
1803
|
+
d: "M0 0h24v24H0z",
|
|
1804
|
+
fill: "none"
|
|
1805
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1806
|
+
d: "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"
|
|
1807
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1808
|
+
d: "M10 18h-7"
|
|
1809
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1810
|
+
d: "M21 18h-7"
|
|
1811
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1812
|
+
d: "M6 15l-3 3l3 3"
|
|
1813
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1814
|
+
d: "M18 15l3 3l-3 3"
|
|
1815
|
+
}));
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1578
1818
|
function IconArrowBackUp(_ref) {
|
|
1579
1819
|
var _ref$size = _ref.size,
|
|
1580
1820
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -3700,6 +3940,74 @@ function IconArrowsDiagonal2(_ref) {
|
|
|
3700
3940
|
}));
|
|
3701
3941
|
}
|
|
3702
3942
|
|
|
3943
|
+
function IconArrowsDiagonalMinimize2(_ref) {
|
|
3944
|
+
var _ref$size = _ref.size,
|
|
3945
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
3946
|
+
_ref$color = _ref.color,
|
|
3947
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
3948
|
+
_ref$stroke = _ref.stroke,
|
|
3949
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
3950
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
3951
|
+
|
|
3952
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
3953
|
+
className: "icon icon-tabler icon-tabler-arrows-diagonal-minimize-2",
|
|
3954
|
+
width: size,
|
|
3955
|
+
height: size,
|
|
3956
|
+
viewBox: "0 0 24 24",
|
|
3957
|
+
strokeWidth: stroke,
|
|
3958
|
+
stroke: color,
|
|
3959
|
+
fill: "none",
|
|
3960
|
+
strokeLinecap: "round",
|
|
3961
|
+
strokeLinejoin: "round"
|
|
3962
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
3963
|
+
stroke: "none",
|
|
3964
|
+
d: "M0 0h24v24H0z",
|
|
3965
|
+
fill: "none"
|
|
3966
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3967
|
+
d: "M18 10h-4v-4"
|
|
3968
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3969
|
+
d: "M20 4l-6 6"
|
|
3970
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3971
|
+
d: "M6 14h4v4"
|
|
3972
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3973
|
+
d: "M10 14l-6 6"
|
|
3974
|
+
}));
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
function IconArrowsDiagonalMinimize(_ref) {
|
|
3978
|
+
var _ref$size = _ref.size,
|
|
3979
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
3980
|
+
_ref$color = _ref.color,
|
|
3981
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
3982
|
+
_ref$stroke = _ref.stroke,
|
|
3983
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
3984
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
3985
|
+
|
|
3986
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
3987
|
+
className: "icon icon-tabler icon-tabler-arrows-diagonal-minimize",
|
|
3988
|
+
width: size,
|
|
3989
|
+
height: size,
|
|
3990
|
+
viewBox: "0 0 24 24",
|
|
3991
|
+
strokeWidth: stroke,
|
|
3992
|
+
stroke: color,
|
|
3993
|
+
fill: "none",
|
|
3994
|
+
strokeLinecap: "round",
|
|
3995
|
+
strokeLinejoin: "round"
|
|
3996
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
3997
|
+
stroke: "none",
|
|
3998
|
+
d: "M0 0h24v24H0z",
|
|
3999
|
+
fill: "none"
|
|
4000
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4001
|
+
d: "M6 10h4v-4"
|
|
4002
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4003
|
+
d: "M4 4l6 6"
|
|
4004
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4005
|
+
d: "M18 14h-4v4"
|
|
4006
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4007
|
+
d: "M14 14l6 6"
|
|
4008
|
+
}));
|
|
4009
|
+
}
|
|
4010
|
+
|
|
3703
4011
|
function IconArrowsDiagonal(_ref) {
|
|
3704
4012
|
var _ref$size = _ref.size,
|
|
3705
4013
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -5306,6 +5614,38 @@ function IconBallVolleyball(_ref) {
|
|
|
5306
5614
|
}));
|
|
5307
5615
|
}
|
|
5308
5616
|
|
|
5617
|
+
function IconBallon(_ref) {
|
|
5618
|
+
var _ref$size = _ref.size,
|
|
5619
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
5620
|
+
_ref$color = _ref.color,
|
|
5621
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
5622
|
+
_ref$stroke = _ref.stroke,
|
|
5623
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
5624
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
5625
|
+
|
|
5626
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
5627
|
+
className: "icon icon-tabler icon-tabler-ballon",
|
|
5628
|
+
width: size,
|
|
5629
|
+
height: size,
|
|
5630
|
+
viewBox: "0 0 24 24",
|
|
5631
|
+
strokeWidth: stroke,
|
|
5632
|
+
stroke: color,
|
|
5633
|
+
fill: "none",
|
|
5634
|
+
strokeLinecap: "round",
|
|
5635
|
+
strokeLinejoin: "round"
|
|
5636
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
5637
|
+
stroke: "none",
|
|
5638
|
+
d: "M0 0h24v24H0z",
|
|
5639
|
+
fill: "none"
|
|
5640
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5641
|
+
d: "M14 8a2 2 0 0 0 -2 -2"
|
|
5642
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5643
|
+
d: "M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"
|
|
5644
|
+
}), /*#__PURE__*/createElement("path", {
|
|
5645
|
+
d: "M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"
|
|
5646
|
+
}));
|
|
5647
|
+
}
|
|
5648
|
+
|
|
5309
5649
|
function IconBan(_ref) {
|
|
5310
5650
|
var _ref$size = _ref.size,
|
|
5311
5651
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -5693,6 +6033,42 @@ function IconBatteryAutomotive(_ref) {
|
|
|
5693
6033
|
}));
|
|
5694
6034
|
}
|
|
5695
6035
|
|
|
6036
|
+
function IconBatteryCharging2(_ref) {
|
|
6037
|
+
var _ref$size = _ref.size,
|
|
6038
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
6039
|
+
_ref$color = _ref.color,
|
|
6040
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
6041
|
+
_ref$stroke = _ref.stroke,
|
|
6042
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
6043
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
6044
|
+
|
|
6045
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
6046
|
+
className: "icon icon-tabler icon-tabler-battery-charging-2",
|
|
6047
|
+
width: size,
|
|
6048
|
+
height: size,
|
|
6049
|
+
viewBox: "0 0 24 24",
|
|
6050
|
+
strokeWidth: stroke,
|
|
6051
|
+
stroke: color,
|
|
6052
|
+
fill: "none",
|
|
6053
|
+
strokeLinecap: "round",
|
|
6054
|
+
strokeLinejoin: "round"
|
|
6055
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
6056
|
+
stroke: "none",
|
|
6057
|
+
d: "M0 0h24v24H0z",
|
|
6058
|
+
fill: "none"
|
|
6059
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6060
|
+
d: "M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5"
|
|
6061
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6062
|
+
d: "M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"
|
|
6063
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6064
|
+
d: "M6 22v-3"
|
|
6065
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6066
|
+
d: "M4 15v-2.5"
|
|
6067
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6068
|
+
d: "M8 15v-2.5"
|
|
6069
|
+
}));
|
|
6070
|
+
}
|
|
6071
|
+
|
|
5696
6072
|
function IconBatteryCharging(_ref) {
|
|
5697
6073
|
var _ref$size = _ref.size,
|
|
5698
6074
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -5725,6 +6101,38 @@ function IconBatteryCharging(_ref) {
|
|
|
5725
6101
|
}));
|
|
5726
6102
|
}
|
|
5727
6103
|
|
|
6104
|
+
function IconBatteryEco(_ref) {
|
|
6105
|
+
var _ref$size = _ref.size,
|
|
6106
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
6107
|
+
_ref$color = _ref.color,
|
|
6108
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
6109
|
+
_ref$stroke = _ref.stroke,
|
|
6110
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
6111
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
6112
|
+
|
|
6113
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
6114
|
+
className: "icon icon-tabler icon-tabler-battery-eco",
|
|
6115
|
+
width: size,
|
|
6116
|
+
height: size,
|
|
6117
|
+
viewBox: "0 0 24 24",
|
|
6118
|
+
strokeWidth: stroke,
|
|
6119
|
+
stroke: color,
|
|
6120
|
+
fill: "none",
|
|
6121
|
+
strokeLinecap: "round",
|
|
6122
|
+
strokeLinejoin: "round"
|
|
6123
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
6124
|
+
stroke: "none",
|
|
6125
|
+
d: "M0 0h24v24H0z",
|
|
6126
|
+
fill: "none"
|
|
6127
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6128
|
+
d: "M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a0.5 .5 0 0 0 .5 .5a0.5 .5 0 0 1 .5 .5v3a0.5 .5 0 0 1 -.5 .5a0.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-5.5"
|
|
6129
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6130
|
+
d: "M3 16.143c0 -2.84 2.09 -5.143 4.667 -5.143h2.333v.857c0 2.84 -2.09 5.143 -4.667 5.143h-2.333v-.857z"
|
|
6131
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6132
|
+
d: "M3 20v-3"
|
|
6133
|
+
}));
|
|
6134
|
+
}
|
|
6135
|
+
|
|
5728
6136
|
function IconBatteryOff(_ref) {
|
|
5729
6137
|
var _ref$size = _ref.size,
|
|
5730
6138
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -5786,6 +6194,42 @@ function IconBattery(_ref) {
|
|
|
5786
6194
|
}));
|
|
5787
6195
|
}
|
|
5788
6196
|
|
|
6197
|
+
function IconBeach(_ref) {
|
|
6198
|
+
var _ref$size = _ref.size,
|
|
6199
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
6200
|
+
_ref$color = _ref.color,
|
|
6201
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
6202
|
+
_ref$stroke = _ref.stroke,
|
|
6203
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
6204
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
6205
|
+
|
|
6206
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
6207
|
+
className: "icon icon-tabler icon-tabler-beach",
|
|
6208
|
+
width: size,
|
|
6209
|
+
height: size,
|
|
6210
|
+
viewBox: "0 0 24 24",
|
|
6211
|
+
strokeWidth: stroke,
|
|
6212
|
+
stroke: color,
|
|
6213
|
+
fill: "none",
|
|
6214
|
+
strokeLinecap: "round",
|
|
6215
|
+
strokeLinejoin: "round"
|
|
6216
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
6217
|
+
stroke: "none",
|
|
6218
|
+
d: "M0 0h24v24H0z",
|
|
6219
|
+
fill: "none"
|
|
6220
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6221
|
+
d: "M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"
|
|
6222
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6223
|
+
d: "M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"
|
|
6224
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6225
|
+
d: "M16.732 10c1.658 -2.87 2.225 -5.644 1.268 -6.196c-.957 -.552 -3.075 1.326 -4.732 4.196"
|
|
6226
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6227
|
+
d: "M15 9l-3 5.196"
|
|
6228
|
+
}), /*#__PURE__*/createElement("path", {
|
|
6229
|
+
d: "M3 19.25a2.4 2.4 0 0 1 1 -.25a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 1 .25"
|
|
6230
|
+
}));
|
|
6231
|
+
}
|
|
6232
|
+
|
|
5789
6233
|
function IconBed(_ref) {
|
|
5790
6234
|
var _ref$size = _ref.size,
|
|
5791
6235
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -8812,6 +9256,38 @@ function IconBrandBooking(_ref) {
|
|
|
8812
9256
|
}));
|
|
8813
9257
|
}
|
|
8814
9258
|
|
|
9259
|
+
function IconBrandBootstrap(_ref) {
|
|
9260
|
+
var _ref$size = _ref.size,
|
|
9261
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
9262
|
+
_ref$color = _ref.color,
|
|
9263
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
9264
|
+
_ref$stroke = _ref.stroke,
|
|
9265
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
9266
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
9267
|
+
|
|
9268
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
9269
|
+
className: "icon icon-tabler icon-tabler-brand-bootstrap",
|
|
9270
|
+
width: size,
|
|
9271
|
+
height: size,
|
|
9272
|
+
viewBox: "0 0 24 24",
|
|
9273
|
+
strokeWidth: stroke,
|
|
9274
|
+
stroke: color,
|
|
9275
|
+
fill: "none",
|
|
9276
|
+
strokeLinecap: "round",
|
|
9277
|
+
strokeLinejoin: "round"
|
|
9278
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
9279
|
+
stroke: "none",
|
|
9280
|
+
d: "M0 0h24v24H0z",
|
|
9281
|
+
fill: "none"
|
|
9282
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9283
|
+
d: "M2 12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2"
|
|
9284
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9285
|
+
d: "M2 12a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-4a2 2 0 0 1 2 -2"
|
|
9286
|
+
}), /*#__PURE__*/createElement("path", {
|
|
9287
|
+
d: "M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"
|
|
9288
|
+
}));
|
|
9289
|
+
}
|
|
9290
|
+
|
|
8815
9291
|
function IconBrandChrome(_ref) {
|
|
8816
9292
|
var _ref$size = _ref.size,
|
|
8817
9293
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -27401,6 +27877,40 @@ function IconHierarchy(_ref) {
|
|
|
27401
27877
|
}));
|
|
27402
27878
|
}
|
|
27403
27879
|
|
|
27880
|
+
function IconHighlight(_ref) {
|
|
27881
|
+
var _ref$size = _ref.size,
|
|
27882
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
27883
|
+
_ref$color = _ref.color,
|
|
27884
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
27885
|
+
_ref$stroke = _ref.stroke,
|
|
27886
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
27887
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
27888
|
+
|
|
27889
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
27890
|
+
className: "icon icon-tabler icon-tabler-highlight",
|
|
27891
|
+
width: size,
|
|
27892
|
+
height: size,
|
|
27893
|
+
viewBox: "0 0 24 24",
|
|
27894
|
+
strokeWidth: stroke,
|
|
27895
|
+
stroke: color,
|
|
27896
|
+
fill: "none",
|
|
27897
|
+
strokeLinecap: "round",
|
|
27898
|
+
strokeLinejoin: "round"
|
|
27899
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
27900
|
+
stroke: "none",
|
|
27901
|
+
d: "M0 0h24v24H0z",
|
|
27902
|
+
fill: "none"
|
|
27903
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27904
|
+
d: "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"
|
|
27905
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27906
|
+
d: "M12.5 5.5l4 4"
|
|
27907
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27908
|
+
d: "M4.5 13.5l4 4"
|
|
27909
|
+
}), /*#__PURE__*/createElement("path", {
|
|
27910
|
+
d: "M21 15v4h-8l4 -4z"
|
|
27911
|
+
}));
|
|
27912
|
+
}
|
|
27913
|
+
|
|
27404
27914
|
function IconHistory(_ref) {
|
|
27405
27915
|
var _ref$size = _ref.size,
|
|
27406
27916
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -30779,6 +31289,52 @@ function IconListCheck(_ref) {
|
|
|
30779
31289
|
}));
|
|
30780
31290
|
}
|
|
30781
31291
|
|
|
31292
|
+
function IconListDetails(_ref) {
|
|
31293
|
+
var _ref$size = _ref.size,
|
|
31294
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
31295
|
+
_ref$color = _ref.color,
|
|
31296
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
31297
|
+
_ref$stroke = _ref.stroke,
|
|
31298
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
31299
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
31300
|
+
|
|
31301
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
31302
|
+
className: "icon icon-tabler icon-tabler-list-details",
|
|
31303
|
+
width: size,
|
|
31304
|
+
height: size,
|
|
31305
|
+
viewBox: "0 0 24 24",
|
|
31306
|
+
strokeWidth: stroke,
|
|
31307
|
+
stroke: color,
|
|
31308
|
+
fill: "none",
|
|
31309
|
+
strokeLinecap: "round",
|
|
31310
|
+
strokeLinejoin: "round"
|
|
31311
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
31312
|
+
stroke: "none",
|
|
31313
|
+
d: "M0 0h24v24H0z",
|
|
31314
|
+
fill: "none"
|
|
31315
|
+
}), /*#__PURE__*/createElement("path", {
|
|
31316
|
+
d: "M13 5h8"
|
|
31317
|
+
}), /*#__PURE__*/createElement("path", {
|
|
31318
|
+
d: "M13 9h5"
|
|
31319
|
+
}), /*#__PURE__*/createElement("path", {
|
|
31320
|
+
d: "M13 15h8"
|
|
31321
|
+
}), /*#__PURE__*/createElement("path", {
|
|
31322
|
+
d: "M13 19h5"
|
|
31323
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
31324
|
+
x: 3,
|
|
31325
|
+
y: 4,
|
|
31326
|
+
width: 6,
|
|
31327
|
+
height: 6,
|
|
31328
|
+
rx: 1
|
|
31329
|
+
}), /*#__PURE__*/createElement("rect", {
|
|
31330
|
+
x: 3,
|
|
31331
|
+
y: 14,
|
|
31332
|
+
width: 6,
|
|
31333
|
+
height: 6,
|
|
31334
|
+
rx: 1
|
|
31335
|
+
}));
|
|
31336
|
+
}
|
|
31337
|
+
|
|
30782
31338
|
function IconListNumbers(_ref) {
|
|
30783
31339
|
var _ref$size = _ref.size,
|
|
30784
31340
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -34000,6 +34556,140 @@ function IconMug(_ref) {
|
|
|
34000
34556
|
}));
|
|
34001
34557
|
}
|
|
34002
34558
|
|
|
34559
|
+
function IconMultiplier05x(_ref) {
|
|
34560
|
+
var _ref$size = _ref.size,
|
|
34561
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
34562
|
+
_ref$color = _ref.color,
|
|
34563
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
34564
|
+
_ref$stroke = _ref.stroke,
|
|
34565
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
34566
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
34567
|
+
|
|
34568
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
34569
|
+
className: "icon icon-tabler icon-tabler-multiplier-0-5x",
|
|
34570
|
+
width: size,
|
|
34571
|
+
height: size,
|
|
34572
|
+
viewBox: "0 0 24 24",
|
|
34573
|
+
strokeWidth: stroke,
|
|
34574
|
+
stroke: color,
|
|
34575
|
+
fill: "none",
|
|
34576
|
+
strokeLinecap: "round",
|
|
34577
|
+
strokeLinejoin: "round"
|
|
34578
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34579
|
+
stroke: "none",
|
|
34580
|
+
d: "M0 0h24v24H0z",
|
|
34581
|
+
fill: "none"
|
|
34582
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34583
|
+
d: "M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"
|
|
34584
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34585
|
+
d: "M5 16v.01"
|
|
34586
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34587
|
+
d: "M15 16l4 -4"
|
|
34588
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34589
|
+
d: "M19 16l-4 -4"
|
|
34590
|
+
}));
|
|
34591
|
+
}
|
|
34592
|
+
|
|
34593
|
+
function IconMultiplier15x(_ref) {
|
|
34594
|
+
var _ref$size = _ref.size,
|
|
34595
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
34596
|
+
_ref$color = _ref.color,
|
|
34597
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
34598
|
+
_ref$stroke = _ref.stroke,
|
|
34599
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
34600
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
34601
|
+
|
|
34602
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
34603
|
+
className: "icon icon-tabler icon-tabler-multiplier-1-5x",
|
|
34604
|
+
width: size,
|
|
34605
|
+
height: size,
|
|
34606
|
+
viewBox: "0 0 24 24",
|
|
34607
|
+
strokeWidth: stroke,
|
|
34608
|
+
stroke: color,
|
|
34609
|
+
fill: "none",
|
|
34610
|
+
strokeLinecap: "round",
|
|
34611
|
+
strokeLinejoin: "round"
|
|
34612
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34613
|
+
stroke: "none",
|
|
34614
|
+
d: "M0 0h24v24H0z",
|
|
34615
|
+
fill: "none"
|
|
34616
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34617
|
+
d: "M4 16v-8l-2 2"
|
|
34618
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34619
|
+
d: "M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"
|
|
34620
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34621
|
+
d: "M7 16v.01"
|
|
34622
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34623
|
+
d: "M17 16l4 -4"
|
|
34624
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34625
|
+
d: "M21 16l-4 -4"
|
|
34626
|
+
}));
|
|
34627
|
+
}
|
|
34628
|
+
|
|
34629
|
+
function IconMultiplier1x(_ref) {
|
|
34630
|
+
var _ref$size = _ref.size,
|
|
34631
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
34632
|
+
_ref$color = _ref.color,
|
|
34633
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
34634
|
+
_ref$stroke = _ref.stroke,
|
|
34635
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
34636
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
34637
|
+
|
|
34638
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
34639
|
+
className: "icon icon-tabler icon-tabler-multiplier-1x",
|
|
34640
|
+
width: size,
|
|
34641
|
+
height: size,
|
|
34642
|
+
viewBox: "0 0 24 24",
|
|
34643
|
+
strokeWidth: stroke,
|
|
34644
|
+
stroke: color,
|
|
34645
|
+
fill: "none",
|
|
34646
|
+
strokeLinecap: "round",
|
|
34647
|
+
strokeLinejoin: "round"
|
|
34648
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34649
|
+
stroke: "none",
|
|
34650
|
+
d: "M0 0h24v24H0z",
|
|
34651
|
+
fill: "none"
|
|
34652
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34653
|
+
d: "M9 16v-8l-2 2"
|
|
34654
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34655
|
+
d: "M13 16l4 -4"
|
|
34656
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34657
|
+
d: "M17 16l-4 -4"
|
|
34658
|
+
}));
|
|
34659
|
+
}
|
|
34660
|
+
|
|
34661
|
+
function IconMultiplier2x(_ref) {
|
|
34662
|
+
var _ref$size = _ref.size,
|
|
34663
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
34664
|
+
_ref$color = _ref.color,
|
|
34665
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
34666
|
+
_ref$stroke = _ref.stroke,
|
|
34667
|
+
stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
|
|
34668
|
+
props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
|
|
34669
|
+
|
|
34670
|
+
return /*#__PURE__*/createElement("svg", _extends({
|
|
34671
|
+
className: "icon icon-tabler icon-tabler-multiplier-2x",
|
|
34672
|
+
width: size,
|
|
34673
|
+
height: size,
|
|
34674
|
+
viewBox: "0 0 24 24",
|
|
34675
|
+
strokeWidth: stroke,
|
|
34676
|
+
stroke: color,
|
|
34677
|
+
fill: "none",
|
|
34678
|
+
strokeLinecap: "round",
|
|
34679
|
+
strokeLinejoin: "round"
|
|
34680
|
+
}, props), /*#__PURE__*/createElement("path", {
|
|
34681
|
+
stroke: "none",
|
|
34682
|
+
d: "M0 0h24v24H0z",
|
|
34683
|
+
fill: "none"
|
|
34684
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34685
|
+
d: "M14 16l4 -4"
|
|
34686
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34687
|
+
d: "M18 16l-4 -4"
|
|
34688
|
+
}), /*#__PURE__*/createElement("path", {
|
|
34689
|
+
d: "M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 -.001"
|
|
34690
|
+
}));
|
|
34691
|
+
}
|
|
34692
|
+
|
|
34003
34693
|
function IconMushroom(_ref) {
|
|
34004
34694
|
var _ref$size = _ref.size,
|
|
34005
34695
|
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
@@ -49324,5 +50014,5 @@ function IconZoomMoney(_ref) {
|
|
|
49324
50014
|
}));
|
|
49325
50015
|
}
|
|
49326
50016
|
|
|
49327
|
-
export { Icon2fa, Icon3dCubeSphere, IconAB, IconAccessPoint, IconAccessPointOff, IconAccessible, IconActivity, IconAd, IconAd2, IconAdjustments, IconAdjustmentsAlt, IconAdjustmentsHorizontal, IconAerialLift, IconAffiliate, IconAlarm, IconAlertCircle, IconAlertOctagon, IconAlertTriangle, IconAlien, IconAlignCenter, IconAlignJustified, IconAlignLeft, IconAlignRight, IconAmbulance, IconAnchor, IconAngle, IconAntennaBars1, IconAntennaBars2, IconAntennaBars3, IconAntennaBars4, IconAntennaBars5, IconAperture, IconApple, IconApps, IconArchive, IconArrowBack, IconArrowBackUp, IconArrowBarDown, IconArrowBarLeft, IconArrowBarRight, IconArrowBarToDown, IconArrowBarToLeft, IconArrowBarToRight, IconArrowBarToUp, IconArrowBarUp, IconArrowBigDown, IconArrowBigLeft, IconArrowBigRight, IconArrowBigTop, IconArrowBottomBar, IconArrowBottomCircle, IconArrowBottomSquare, IconArrowBottomTail, IconArrowDown, IconArrowDownCircle, IconArrowDownLeft, IconArrowDownLeftCircle, IconArrowDownRight, IconArrowDownRightCircle, IconArrowForward, IconArrowForwardUp, IconArrowLeft, IconArrowLeftBar, IconArrowLeftCircle, IconArrowLeftSquare, IconArrowLeftTail, IconArrowLoopLeft, IconArrowLoopRight, IconArrowNarrowDown, IconArrowNarrowLeft, IconArrowNarrowRight, IconArrowNarrowUp, IconArrowRampLeft, IconArrowRampRight, IconArrowRight, IconArrowRightBar, IconArrowRightCircle, IconArrowRightSquare, IconArrowRightTail, IconArrowTopBar, IconArrowTopCircle, IconArrowTopSquare, IconArrowTopTail, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpLeftCircle, IconArrowUpRight, IconArrowUpRightCircle, IconArrowWaveLeftDown, IconArrowWaveLeftUp, IconArrowWaveRightDown, IconArrowWaveRightUp, IconArrowsDiagonal, IconArrowsDiagonal2, IconArrowsDoubleNeSw, IconArrowsDoubleNwSe, IconArrowsDoubleSeNw, IconArrowsDoubleSwNe, IconArrowsDown, IconArrowsDownUp, IconArrowsHorizontal, IconArrowsJoin, IconArrowsJoin2, IconArrowsLeft, IconArrowsLeftDown, IconArrowsLeftRight, IconArrowsMaximize, IconArrowsMinimize, IconArrowsRight, IconArrowsRightDown, IconArrowsRightLeft, IconArrowsSort, IconArrowsSplit, IconArrowsSplit2, IconArrowsUp, IconArrowsUpDown, IconArrowsUpLeft, IconArrowsUpRight, IconArrowsVertical, IconArtboard, IconAspectRatio, IconAt, IconAtom, IconAtom2, IconAward, IconBackhoe, IconBackspace, IconBallAmericanFootball, IconBallBasketball, IconBallBowling, IconBallFootball, IconBallFootballOff, IconBallTennis, IconBallVolleyball, IconBan, IconBandage, IconBarcode, IconBasket, IconBattery, IconBattery1, IconBattery2, IconBattery3, IconBattery4, IconBatteryAutomotive, IconBatteryCharging, IconBatteryOff, IconBed, IconBell, IconBellMinus, IconBellOff, IconBellPlus, IconBellRinging, IconBellRinging2, IconBellX, IconBike, IconBinary, IconBiohazard, IconBlockquote, IconBluetooth, IconBluetoothConnected, IconBluetoothOff, IconBold, IconBolt, IconBoltOff, IconBone, IconBook, IconBookmark, IconBookmarkOff, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderNone, IconBorderOuter, IconBorderRadius, IconBorderRight, IconBorderStyle, IconBorderStyle2, IconBorderTop, IconBorderVertical, IconBottle, IconBox, IconBoxMargin, IconBoxModel, IconBoxModel2, IconBoxMultiple, IconBoxMultiple0, IconBoxMultiple1, IconBoxMultiple2, IconBoxMultiple3, IconBoxMultiple4, IconBoxMultiple5, IconBoxMultiple6, IconBoxMultiple7, IconBoxMultiple8, IconBoxMultiple9, IconBoxPadding, IconBraces, IconBrackets, IconBrandAirbnb, IconBrandAndroid, IconBrandApple, IconBrandAppleArcade, IconBrandAppstore, IconBrandAsana, IconBrandBehance, IconBrandBing, IconBrandBitbucket, IconBrandBooking, IconBrandChrome, IconBrandCodepen, IconBrandCodesandbox, IconBrandCss3, IconBrandDeviantart, IconBrandDiscord, IconBrandDisqus, IconBrandDocker, IconBrandDribbble, IconBrandEdge, IconBrandFacebook, IconBrandFigma, IconBrandFirefox, IconBrandFlickr, IconBrandFoursquare, IconBrandFramer, IconBrandGithub, IconBrandGitlab, IconBrandGoogle, IconBrandGoogleAnalytics, IconBrandGoogleDrive, IconBrandGooglePlay, IconBrandGravatar, IconBrandHipchat, IconBrandHtml5, IconBrandInstagram, IconBrandJavascript, IconBrandKickstarter, IconBrandKotlin, IconBrandLinkedin, IconBrandMedium, IconBrandMessenger, IconBrandNetflix, IconBrandOpenSource, IconBrandOpera, IconBrandPagekit, IconBrandPatreon, IconBrandPaypal, IconBrandPinterest, IconBrandPocket, IconBrandProducthunt, IconBrandPython, IconBrandReddit, IconBrandSafari, IconBrandSass, IconBrandSentry, IconBrandShazam, IconBrandSketch, IconBrandSkype, IconBrandSlack, IconBrandSnapchat, IconBrandSoundcloud, IconBrandSpotify, IconBrandSteam, IconBrandStripe, IconBrandTabler, IconBrandTailwind, IconBrandTelegram, IconBrandTidal, IconBrandTiktok, IconBrandTinder, IconBrandTumblr, IconBrandTwitch, IconBrandTwitter, IconBrandUnsplash, IconBrandVercel, IconBrandVimeo, IconBrandVk, IconBrandWhatsapp, IconBrandWindows, IconBrandYahoo, IconBrandYcombinator, IconBrandYoutube, IconBriefcase, IconBrightness, IconBrightness2, IconBrightnessDown, IconBrightnessHalf, IconBrightnessUp, IconBrowser, IconBrush, IconBucket, IconBug, IconBuilding, IconBuildingArch, IconBuildingBank, IconBuildingBridge, IconBuildingBridge2, IconBuildingCarousel, IconBuildingCastle, IconBuildingChurch, IconBuildingCommunity, IconBuildingCottage, IconBuildingFactory, IconBuildingFortress, IconBuildingHospital, IconBuildingLighthouse, IconBuildingMonument, IconBuildingPavilon, IconBuildingSkyscraper, IconBuildingStore, IconBuildingWarehouse, IconBulb, IconBulbOff, IconBulldozer, IconBus, IconBusinessplan, IconCalculator, IconCalendar, IconCalendarEvent, IconCalendarMinus, IconCalendarOff, IconCalendarPlus, IconCalendarStats, IconCalendarTime, IconCamera, IconCameraMinus, IconCameraOff, IconCameraPlus, IconCameraRotate, IconCameraSelfie, IconCandy, IconCapture, IconCar, IconCarCrane, IconCaravan, IconCardboards, IconCaretDown, IconCaretLeft, IconCaretRight, IconCaretUp, IconCash, IconCashBanknote, IconCashBanknoteOff, IconCast, IconCe, IconCertificate, IconChargingPile, IconChartArcs, IconChartArcs3, IconChartArea, IconChartAreaLine, IconChartArrows, IconChartArrowsVertical, IconChartBar, IconChartBubble, IconChartCandle, IconChartCircles, IconChartDonut, IconChartDonut2, IconChartDonut3, IconChartDonut4, IconChartDots, IconChartInfographic, IconChartLine, IconChartPie, IconChartPie2, IconChartPie3, IconChartPie4, IconChartRadar, IconCheck, IconCheckbox, IconChecks, IconCheese, IconChevronDown, IconChevronDownLeft, IconChevronDownRight, IconChevronLeft, IconChevronRight, IconChevronUp, IconChevronUpLeft, IconChevronUpRight, IconChevronsDown, IconChevronsDownLeft, IconChevronsDownRight, IconChevronsLeft, IconChevronsRight, IconChevronsUp, IconChevronsUpLeft, IconChevronsUpRight, IconChristmasTree, IconCircle, IconCircle0, IconCircle1, IconCircle2, IconCircle3, IconCircle4, IconCircle5, IconCircle6, IconCircle7, IconCircle8, IconCircle9, IconCircleCheck, IconCircleDashed, IconCircleDotted, IconCircleHalf, IconCircleHalfVertical, IconCircleMinus, IconCircleOff, IconCirclePlus, IconCircleSquare, IconCircleX, IconCircles, IconClearAll, IconClearFormatting, IconClick, IconClipboard, IconClipboardCheck, IconClipboardList, IconClipboardX, IconClock, IconCloud, IconCloudDownload, IconCloudFog, IconCloudOff, IconCloudRain, IconCloudSnow, IconCloudStorm, IconCloudUpload, IconCode, IconCodeMinus, IconCodePlus, IconCoffee, IconCoin, IconColorPicker, IconColorSwatch, IconColumnInsertLeft, IconColumnInsertRight, IconColumns, IconComet, IconCommand, IconCompass, IconConfetti, IconContainer, IconContrast, IconCookie, IconCopy, IconCopyleft, IconCopyright, IconCornerDownLeft, IconCornerDownLeftDouble, IconCornerDownRight, IconCornerDownRightDouble, IconCornerLeftDown, IconCornerLeftDownDouble, IconCornerLeftUp, IconCornerLeftUpDouble, IconCornerRightDown, IconCornerRightDownDouble, IconCornerRightUp, IconCornerRightUpDouble, IconCornerUpLeft, IconCornerUpLeftDouble, IconCornerUpRight, IconCornerUpRightDouble, IconCrane, IconCreditCard, IconCreditCardOff, IconCrop, IconCrosshair, IconCrown, IconCrownOff, IconCup, IconCurlyLoop, IconCurrencyBahraini, IconCurrencyBath, IconCurrencyBitcoin, IconCurrencyCent, IconCurrencyDinar, IconCurrencyDirham, IconCurrencyDollar, IconCurrencyDollarAustralian, IconCurrencyDollarCanadian, IconCurrencyDollarSingapore, IconCurrencyEthereum, IconCurrencyEuro, IconCurrencyForint, IconCurrencyFrank, IconCurrencyKroneCzech, IconCurrencyKroneDanish, IconCurrencyKroneSwedish, IconCurrencyLeu, IconCurrencyLira, IconCurrencyLitecoin, IconCurrencyNaira, IconCurrencyPound, IconCurrencyReal, IconCurrencyRenminbi, IconCurrencyRipple, IconCurrencyRiyal, IconCurrencyRubel, IconCurrencyRupee, IconCurrencyShekel, IconCurrencyTaka, IconCurrencyTugrik, IconCurrencyWon, IconCurrencyYen, IconCurrencyZloty, IconCurrentLocation, IconCursorText, IconCut, IconDashboard, IconDatabase, IconDatabaseExport, IconDatabaseImport, IconDatabaseOff, IconDetails, IconDeviceAnalytics, IconDeviceAudioTape, IconDeviceCctv, IconDeviceComputerCamera, IconDeviceComputerCameraOff, IconDeviceDesktop, IconDeviceDesktopAnalytics, IconDeviceDesktopOff, IconDeviceFloppy, IconDeviceGamepad, IconDeviceLaptop, IconDeviceMobile, IconDeviceMobileMessage, IconDeviceMobileRotated, IconDeviceMobileVibration, IconDeviceSpeaker, IconDeviceTablet, IconDeviceTv, IconDeviceWatch, IconDevices, IconDevices2, IconDevicesPc, IconDiamond, IconDice, IconDimensions, IconDirection, IconDirectionHorizontal, IconDirections, IconDisabled, IconDisabled2, IconDisc, IconDiscount, IconDiscount2, IconDivide, IconDna, IconDogBowl, IconDots, IconDotsCircleHorizontal, IconDotsDiagonal, IconDotsDiagonal2, IconDotsVertical, IconDownload, IconDragDrop, IconDragDrop2, IconDrone, IconDroneOff, IconDroplet, IconDropletFilled, IconDropletFilled2, IconDropletHalf, IconDropletHalf2, IconDropletOff, IconEar, IconEarOff, IconEdit, IconEditCircle, IconEgg, IconEmphasis, IconEqual, IconEqualNot, IconEraser, IconExchange, IconExposure, IconExternalLink, IconEye, IconEyeCheck, IconEyeOff, IconEyeglass, IconEyeglass2, IconFaceId, IconFall, IconFeather, IconFence, IconFile, IconFileAlert, IconFileAnalytics, IconFileCertificate, IconFileCheck, IconFileCode, IconFileCode2, IconFileDiff, IconFileDislike, IconFileDownload, IconFileExport, IconFileHorizontal, IconFileImport, IconFileInfo, IconFileInvoice, IconFileLike, IconFileMinus, IconFileMusic, IconFileOff, IconFilePhone, IconFilePlus, IconFileReport, IconFileSearch, IconFileShredder, IconFileSymlink, IconFileText, IconFileUpload, IconFileX, IconFileZip, IconFiles, IconFilesOff, IconFilter, IconFilterOff, IconFingerprint, IconFiretruck, IconFish, IconFlag, IconFlag2, IconFlag3, IconFlame, IconFlare, IconFlask, IconFlipHorizontal, IconFlipVertical, IconFloatCenter, IconFloatLeft, IconFloatNone, IconFloatRight, IconFocus, IconFocus2, IconFold, IconFoldDown, IconFoldUp, IconFolder, IconFolderMinus, IconFolderOff, IconFolderPlus, IconFolderX, IconFolders, IconForbid, IconForbid2, IconForklift, IconForms, IconFrame, IconFriends, IconGasStation, IconGauge, IconGeometry, IconGhost, IconGift, IconGitBranch, IconGitCommit, IconGitCompare, IconGitFork, IconGitMerge, IconGitPullRequest, IconGlass, IconGlassFull, IconGlassOff, IconGlobe, IconGolf, IconGps, IconGrain, IconGridDots, IconGripHorizontal, IconGripVertical, IconGrowth, IconH1, IconH2, IconH3, IconH4, IconH5, IconH6, IconHandFinger, IconHandLittleFinger, IconHandMiddleFinger, IconHandOff, IconHandRingFinger, IconHandRock, IconHandStop, IconHandThreeFingers, IconHandTwoFingers, IconHanger, IconHash, IconHeading, IconHeadphones, IconHeadphonesOff, IconHeadset, IconHeart, IconHeartBroken, IconHelicopter, IconHelicopterLanding, IconHelp, IconHexagon, IconHexagonOff, IconHierarchy, IconHierarchy2, IconHistory, IconHome, IconHome2, IconIceCream, IconIceCream2, IconId, IconInbox, IconIndentDecrease, IconIndentIncrease, IconInfinity, IconInfoCircle, IconInfoSquare, IconItalic, IconJumpRope, IconKarate, IconKey, IconKeyboard, IconKeyboardHide, IconKeyboardOff, IconKeyboardShow, IconLanguage, IconLayersDifference, IconLayersIntersect, IconLayersLinked, IconLayersSubtract, IconLayersUnion, IconLayout, IconLayout2, IconLayoutAlignBottom, IconLayoutAlignCenter, IconLayoutAlignLeft, IconLayoutAlignMiddle, IconLayoutAlignRight, IconLayoutAlignTop, IconLayoutBottombar, IconLayoutCards, IconLayoutColumns, IconLayoutDistributeHorizontal, IconLayoutDistributeVertical, IconLayoutGrid, IconLayoutGridAdd, IconLayoutKanban, IconLayoutList, IconLayoutNavbar, IconLayoutRows, IconLayoutSidebar, IconLayoutSidebarRight, IconLeaf, IconLego, IconLemon, IconLetterA, IconLetterB, IconLetterC, IconLetterCase, IconLetterCaseLower, IconLetterCaseToggle, IconLetterCaseUpper, IconLetterD, IconLetterE, IconLetterF, IconLetterG, IconLetterH, IconLetterI, IconLetterJ, IconLetterK, IconLetterL, IconLetterM, IconLetterN, IconLetterO, IconLetterP, IconLetterQ, IconLetterR, IconLetterS, IconLetterSpacing, IconLetterT, IconLetterU, IconLetterV, IconLetterW, IconLetterX, IconLetterY, IconLetterZ, IconLettersCase, IconLicense, IconLifebuoy, IconLine, IconLineDashed, IconLineDotted, IconLineHeight, IconLink, IconList, IconListCheck, IconListNumbers, IconListSearch, IconLivePhoto, IconLiveView, IconLoader, IconLoaderQuarter, IconLocation, IconLock, IconLockAccess, IconLockOff, IconLockOpen, IconLogin, IconLogout, IconMacro, IconMagnet, IconMail, IconMailForward, IconMailOpened, IconMailbox, IconMan, IconManualGearbox, IconMap, IconMap2, IconMapPin, IconMapPinOff, IconMapPins, IconMarkdown, IconMarquee, IconMarquee2, IconMars, IconMask, IconMaskOff, IconMassage, IconMath, IconMathFunction, IconMathSymbols, IconMaximize, IconMeat, IconMedal, IconMedicalCross, IconMenu, IconMenu2, IconMessage, IconMessage2, IconMessageCircle, IconMessageCircle2, IconMessageCircleOff, IconMessageDots, IconMessageOff, IconMessagePlus, IconMessageReport, IconMessages, IconMessagesOff, IconMicrophone, IconMicrophone2, IconMicrophoneOff, IconMilk, IconMinimize, IconMinus, IconMinusVertical, IconMist, IconMoodBoy, IconMoodConfuzed, IconMoodCrazyHappy, IconMoodCry, IconMoodEmpty, IconMoodHappy, IconMoodKid, IconMoodNeutral, IconMoodSad, IconMoodSmile, IconMoodSuprised, IconMoodTongue, IconMoon, IconMoon2, IconMoonStars, IconMoped, IconMotorbike, IconMouse, IconMovie, IconMug, IconMushroom, IconMusic, IconNewSection, IconNews, IconNfc, IconNote, IconNotebook, IconNotes, IconNotification, IconNumber0, IconNumber1, IconNumber2, IconNumber3, IconNumber4, IconNumber5, IconNumber6, IconNumber7, IconNumber8, IconNumber9, IconOctagon, IconOctagonOff, IconOld, IconOlympics, IconOmega, IconOutlet, IconOverline, IconPackage, IconPacman, IconPageBreak, IconPaint, IconPalette, IconPanoramaHorizontal, IconPanoramaVertical, IconPaperclip, IconParachute, IconParentheses, IconParking, IconPeace, IconPencil, IconPennant, IconPepper, IconPercentage, IconPerspective, IconPhone, IconPhoneCall, IconPhoneCalling, IconPhoneCheck, IconPhoneIncoming, IconPhoneOff, IconPhoneOutgoing, IconPhonePause, IconPhonePlus, IconPhoneX, IconPhoto, IconPhotoOff, IconPhysotherapist, IconPictureInPicture, IconPictureInPictureOff, IconPictureInPictureOn, IconPill, IconPin, IconPinned, IconPinnedOff, IconPizza, IconPlane, IconPlaneArrival, IconPlaneDeparture, IconPlanet, IconPlant, IconPlant2, IconPlayCard, IconPlayerPause, IconPlayerPlay, IconPlayerRecord, IconPlayerSkipBack, IconPlayerSkipForward, IconPlayerStop, IconPlayerTrackNext, IconPlayerTrackPrev, IconPlaylist, IconPlug, IconPlus, IconPoint, IconPokeball, IconPolaroid, IconPool, IconPower, IconPray, IconPresentation, IconPresentationAnalytics, IconPrinter, IconPrompt, IconPropeller, IconPuzzle, IconPyramid, IconQrcode, IconQuestionMark, IconRadio, IconRadioactive, IconRadiusBottomLeft, IconRadiusBottomRight, IconRadiusTopLeft, IconRadiusTopRight, IconRainbow, IconReceipt, IconReceipt2, IconReceiptOff, IconReceiptRefund, IconReceiptTax, IconRecharging, IconRecordMail, IconRectangle, IconRectangleVertical, IconRecycle, IconRefresh, IconRefreshAlert, IconRegistered, IconRelationManyToMany, IconRelationOneToMany, IconRelationOneToOne, IconRepeat, IconRepeatOnce, IconReplace, IconReport, IconReportAnalytics, IconReportMedical, IconReportMoney, IconResize, IconRipple, IconRoadSign, IconRocket, IconRotate, IconRotate2, IconRotateClockwise, IconRotateClockwise2, IconRotateRectangle, IconRoute, IconRouter, IconRowInsertBottom, IconRowInsertTop, IconRss, IconRuler, IconRuler2, IconRun, IconSailboat, IconSalt, IconSatellite, IconSausage, IconScale, IconScan, IconSchool, IconScissors, IconScooter, IconScooterElectric, IconScreenShare, IconScreenShareOff, IconScubaMask, IconSearch, IconSection, IconSeeding, IconSelect, IconSelector, IconSend, IconSeparator, IconSeparatorHorizontal, IconSeparatorVertical, IconServer, IconServicemark, IconSettings, IconSettingsAutomation, IconShadow, IconShadowOff, IconShape, IconShape2, IconShape3, IconShare, IconShield, IconShieldCheck, IconShieldLock, IconShieldOff, IconShieldX, IconShip, IconShirt, IconShoppingCart, IconShoppingCartDiscount, IconShoppingCartOff, IconShoppingCartPlus, IconShoppingCartX, IconShredder, IconSignature, IconSitemap, IconSkateboard, IconSlice, IconSlideshow, IconSmartHome, IconSmoking, IconSmokingNo, IconSnowflake, IconSoccerField, IconSocial, IconSock, IconSortAscending, IconSortAscending2, IconSortAscendingLetters, IconSortAscendingNumbers, IconSortDescending, IconSortDescending2, IconSortDescendingLetters, IconSortDescendingNumbers, IconSoup, IconSpace, IconSpeakerphone, IconSpeedboat, IconSportBillard, IconSquare, IconSquare0, IconSquare1, IconSquare2, IconSquare3, IconSquare4, IconSquare5, IconSquare6, IconSquare7, IconSquare8, IconSquare9, IconSquareCheck, IconSquareDot, IconSquareForbid, IconSquareForbid2, IconSquareMinus, IconSquareOff, IconSquarePlus, IconSquareRoot, IconSquareRoot2, IconSquareRotated, IconSquareRotatedOff, IconSquareToggle, IconSquareToggleHorizontal, IconSquareX, IconSquaresDiagonal, IconSquaresFilled, IconStack, IconStack2, IconStairs, IconStairsDown, IconStairsUp, IconStar, IconStarHalf, IconStarOff, IconStars, IconSteeringWheel, IconStepInto, IconStepOut, IconStethoscope, IconSticker, IconStrikethrough, IconSubmarine, IconSubscript, IconSubtask, IconSum, IconSun, IconSunOff, IconSunrise, IconSunset, IconSuperscript, IconSwimming, IconSwitch, IconSwitch2, IconSwitch3, IconSwitchHorizontal, IconSwitchVertical, IconTable, IconTableExport, IconTableImport, IconTableOff, IconTag, IconTallymark1, IconTallymark2, IconTallymark3, IconTallymark4, IconTallymarks, IconTank, IconTarget, IconTemperature, IconTemperatureCelsius, IconTemperatureFahrenheit, IconTemperatureMinus, IconTemperaturePlus, IconTemplate, IconTent, IconTerminal, IconTerminal2, IconTestPipe, IconTextDirectionLtr, IconTextDirectionRtl, IconTextWrap, IconTextWrapDisabled, IconThumbDown, IconThumbUp, IconTicket, IconTiltShift, IconTir, IconToggleLeft, IconToggleRight, IconTool, IconTools, IconToolsKitchen, IconToolsKitchen2, IconTornado, IconTournament, IconTrack, IconTractor, IconTrademark, IconTrafficCone, IconTrafficLights, IconTrain, IconTransferIn, IconTransferOut, IconTrash, IconTrashOff, IconTree, IconTrees, IconTrendingDown, IconTrendingDown2, IconTrendingDown3, IconTrendingUp, IconTrendingUp2, IconTrendingUp3, IconTriangle, IconTriangleOff, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTruck, IconTruckDelivery, IconTruckOff, IconTruckReturn, IconTypography, IconUmbrella, IconUnderline, IconUnlink, IconUpload, IconUrgent, IconUser, IconUserCheck, IconUserExclamation, IconUserMinus, IconUserOff, IconUserPlus, IconUserX, IconUsers, IconVaccine, IconVariable, IconVector, IconVectorBeizer2, IconVectorBezier, IconVectorTriangle, IconVenus, IconVersions, IconVideo, IconVideoMinus, IconVideoOff, IconVideoPlus, IconView360, IconViewfinder, IconViewportNarrow, IconViewportWide, IconVirus, IconVirusOff, IconVirusSearch, IconVocabulary, IconVolume, IconVolume2, IconVolume3, IconWalk, IconWallet, IconWand, IconWaveSawTool, IconWaveSine, IconWaveSquare, IconWifi, IconWifi0, IconWifi1, IconWifi2, IconWifiOff, IconWind, IconWindmill, IconWindow, IconWiper, IconWiperWash, IconWoman, IconWorld, IconWorldLatitude, IconWorldLongitude, IconWreckingBall, IconWriting, IconWritingSign, IconX, IconYinYang, IconZodiacAquarius, IconZodiacAries, IconZodiacCancer, IconZodiacCapricorn, IconZodiacGemini, IconZodiacLeo, IconZodiacLibra, IconZodiacPisces, IconZodiacSagittarius, IconZodiacScorpio, IconZodiacTaurus, IconZodiacVirgo, IconZoomCancel, IconZoomCheck, IconZoomIn, IconZoomMoney };
|
|
50017
|
+
export { Icon2fa, Icon3dCubeSphere, IconAB, IconAccessPoint, IconAccessPointOff, IconAccessible, IconActivity, IconAd, IconAd2, IconAdjustments, IconAdjustmentsAlt, IconAdjustmentsHorizontal, IconAerialLift, IconAffiliate, IconAlarm, IconAlertCircle, IconAlertOctagon, IconAlertTriangle, IconAlien, IconAlignCenter, IconAlignJustified, IconAlignLeft, IconAlignRight, IconAmbulance, IconAnchor, IconAngle, IconAntennaBars1, IconAntennaBars2, IconAntennaBars3, IconAntennaBars4, IconAntennaBars5, IconAperture, IconApple, IconApps, IconArchive, IconArrowAutofitContent, IconArrowAutofitDown, IconArrowAutofitHeight, IconArrowAutofitLeft, IconArrowAutofitRight, IconArrowAutofitUp, IconArrowAutofitWidth, IconArrowBack, IconArrowBackUp, IconArrowBarDown, IconArrowBarLeft, IconArrowBarRight, IconArrowBarToDown, IconArrowBarToLeft, IconArrowBarToRight, IconArrowBarToUp, IconArrowBarUp, IconArrowBigDown, IconArrowBigLeft, IconArrowBigRight, IconArrowBigTop, IconArrowBottomBar, IconArrowBottomCircle, IconArrowBottomSquare, IconArrowBottomTail, IconArrowDown, IconArrowDownCircle, IconArrowDownLeft, IconArrowDownLeftCircle, IconArrowDownRight, IconArrowDownRightCircle, IconArrowForward, IconArrowForwardUp, IconArrowLeft, IconArrowLeftBar, IconArrowLeftCircle, IconArrowLeftSquare, IconArrowLeftTail, IconArrowLoopLeft, IconArrowLoopRight, IconArrowNarrowDown, IconArrowNarrowLeft, IconArrowNarrowRight, IconArrowNarrowUp, IconArrowRampLeft, IconArrowRampRight, IconArrowRight, IconArrowRightBar, IconArrowRightCircle, IconArrowRightSquare, IconArrowRightTail, IconArrowTopBar, IconArrowTopCircle, IconArrowTopSquare, IconArrowTopTail, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpLeftCircle, IconArrowUpRight, IconArrowUpRightCircle, IconArrowWaveLeftDown, IconArrowWaveLeftUp, IconArrowWaveRightDown, IconArrowWaveRightUp, IconArrowsDiagonal, IconArrowsDiagonal2, IconArrowsDiagonalMinimize, IconArrowsDiagonalMinimize2, IconArrowsDoubleNeSw, IconArrowsDoubleNwSe, IconArrowsDoubleSeNw, IconArrowsDoubleSwNe, IconArrowsDown, IconArrowsDownUp, IconArrowsHorizontal, IconArrowsJoin, IconArrowsJoin2, IconArrowsLeft, IconArrowsLeftDown, IconArrowsLeftRight, IconArrowsMaximize, IconArrowsMinimize, IconArrowsRight, IconArrowsRightDown, IconArrowsRightLeft, IconArrowsSort, IconArrowsSplit, IconArrowsSplit2, IconArrowsUp, IconArrowsUpDown, IconArrowsUpLeft, IconArrowsUpRight, IconArrowsVertical, IconArtboard, IconAspectRatio, IconAt, IconAtom, IconAtom2, IconAward, IconBackhoe, IconBackspace, IconBallAmericanFootball, IconBallBasketball, IconBallBowling, IconBallFootball, IconBallFootballOff, IconBallTennis, IconBallVolleyball, IconBallon, IconBan, IconBandage, IconBarcode, IconBasket, IconBattery, IconBattery1, IconBattery2, IconBattery3, IconBattery4, IconBatteryAutomotive, IconBatteryCharging, IconBatteryCharging2, IconBatteryEco, IconBatteryOff, IconBeach, IconBed, IconBell, IconBellMinus, IconBellOff, IconBellPlus, IconBellRinging, IconBellRinging2, IconBellX, IconBike, IconBinary, IconBiohazard, IconBlockquote, IconBluetooth, IconBluetoothConnected, IconBluetoothOff, IconBold, IconBolt, IconBoltOff, IconBone, IconBook, IconBookmark, IconBookmarkOff, IconBookmarks, IconBorderAll, IconBorderBottom, IconBorderHorizontal, IconBorderInner, IconBorderLeft, IconBorderNone, IconBorderOuter, IconBorderRadius, IconBorderRight, IconBorderStyle, IconBorderStyle2, IconBorderTop, IconBorderVertical, IconBottle, IconBox, IconBoxMargin, IconBoxModel, IconBoxModel2, IconBoxMultiple, IconBoxMultiple0, IconBoxMultiple1, IconBoxMultiple2, IconBoxMultiple3, IconBoxMultiple4, IconBoxMultiple5, IconBoxMultiple6, IconBoxMultiple7, IconBoxMultiple8, IconBoxMultiple9, IconBoxPadding, IconBraces, IconBrackets, IconBrandAirbnb, IconBrandAndroid, IconBrandApple, IconBrandAppleArcade, IconBrandAppstore, IconBrandAsana, IconBrandBehance, IconBrandBing, IconBrandBitbucket, IconBrandBooking, IconBrandBootstrap, IconBrandChrome, IconBrandCodepen, IconBrandCodesandbox, IconBrandCss3, IconBrandDeviantart, IconBrandDiscord, IconBrandDisqus, IconBrandDocker, IconBrandDribbble, IconBrandEdge, IconBrandFacebook, IconBrandFigma, IconBrandFirefox, IconBrandFlickr, IconBrandFoursquare, IconBrandFramer, IconBrandGithub, IconBrandGitlab, IconBrandGoogle, IconBrandGoogleAnalytics, IconBrandGoogleDrive, IconBrandGooglePlay, IconBrandGravatar, IconBrandHipchat, IconBrandHtml5, IconBrandInstagram, IconBrandJavascript, IconBrandKickstarter, IconBrandKotlin, IconBrandLinkedin, IconBrandMedium, IconBrandMessenger, IconBrandNetflix, IconBrandOpenSource, IconBrandOpera, IconBrandPagekit, IconBrandPatreon, IconBrandPaypal, IconBrandPinterest, IconBrandPocket, IconBrandProducthunt, IconBrandPython, IconBrandReddit, IconBrandSafari, IconBrandSass, IconBrandSentry, IconBrandShazam, IconBrandSketch, IconBrandSkype, IconBrandSlack, IconBrandSnapchat, IconBrandSoundcloud, IconBrandSpotify, IconBrandSteam, IconBrandStripe, IconBrandTabler, IconBrandTailwind, IconBrandTelegram, IconBrandTidal, IconBrandTiktok, IconBrandTinder, IconBrandTumblr, IconBrandTwitch, IconBrandTwitter, IconBrandUnsplash, IconBrandVercel, IconBrandVimeo, IconBrandVk, IconBrandWhatsapp, IconBrandWindows, IconBrandYahoo, IconBrandYcombinator, IconBrandYoutube, IconBriefcase, IconBrightness, IconBrightness2, IconBrightnessDown, IconBrightnessHalf, IconBrightnessUp, IconBrowser, IconBrush, IconBucket, IconBug, IconBuilding, IconBuildingArch, IconBuildingBank, IconBuildingBridge, IconBuildingBridge2, IconBuildingCarousel, IconBuildingCastle, IconBuildingChurch, IconBuildingCommunity, IconBuildingCottage, IconBuildingFactory, IconBuildingFortress, IconBuildingHospital, IconBuildingLighthouse, IconBuildingMonument, IconBuildingPavilon, IconBuildingSkyscraper, IconBuildingStore, IconBuildingWarehouse, IconBulb, IconBulbOff, IconBulldozer, IconBus, IconBusinessplan, IconCalculator, IconCalendar, IconCalendarEvent, IconCalendarMinus, IconCalendarOff, IconCalendarPlus, IconCalendarStats, IconCalendarTime, IconCamera, IconCameraMinus, IconCameraOff, IconCameraPlus, IconCameraRotate, IconCameraSelfie, IconCandy, IconCapture, IconCar, IconCarCrane, IconCaravan, IconCardboards, IconCaretDown, IconCaretLeft, IconCaretRight, IconCaretUp, IconCash, IconCashBanknote, IconCashBanknoteOff, IconCast, IconCe, IconCertificate, IconChargingPile, IconChartArcs, IconChartArcs3, IconChartArea, IconChartAreaLine, IconChartArrows, IconChartArrowsVertical, IconChartBar, IconChartBubble, IconChartCandle, IconChartCircles, IconChartDonut, IconChartDonut2, IconChartDonut3, IconChartDonut4, IconChartDots, IconChartInfographic, IconChartLine, IconChartPie, IconChartPie2, IconChartPie3, IconChartPie4, IconChartRadar, IconCheck, IconCheckbox, IconChecks, IconCheese, IconChevronDown, IconChevronDownLeft, IconChevronDownRight, IconChevronLeft, IconChevronRight, IconChevronUp, IconChevronUpLeft, IconChevronUpRight, IconChevronsDown, IconChevronsDownLeft, IconChevronsDownRight, IconChevronsLeft, IconChevronsRight, IconChevronsUp, IconChevronsUpLeft, IconChevronsUpRight, IconChristmasTree, IconCircle, IconCircle0, IconCircle1, IconCircle2, IconCircle3, IconCircle4, IconCircle5, IconCircle6, IconCircle7, IconCircle8, IconCircle9, IconCircleCheck, IconCircleDashed, IconCircleDotted, IconCircleHalf, IconCircleHalfVertical, IconCircleMinus, IconCircleOff, IconCirclePlus, IconCircleSquare, IconCircleX, IconCircles, IconClearAll, IconClearFormatting, IconClick, IconClipboard, IconClipboardCheck, IconClipboardList, IconClipboardX, IconClock, IconCloud, IconCloudDownload, IconCloudFog, IconCloudOff, IconCloudRain, IconCloudSnow, IconCloudStorm, IconCloudUpload, IconCode, IconCodeMinus, IconCodePlus, IconCoffee, IconCoin, IconColorPicker, IconColorSwatch, IconColumnInsertLeft, IconColumnInsertRight, IconColumns, IconComet, IconCommand, IconCompass, IconConfetti, IconContainer, IconContrast, IconCookie, IconCopy, IconCopyleft, IconCopyright, IconCornerDownLeft, IconCornerDownLeftDouble, IconCornerDownRight, IconCornerDownRightDouble, IconCornerLeftDown, IconCornerLeftDownDouble, IconCornerLeftUp, IconCornerLeftUpDouble, IconCornerRightDown, IconCornerRightDownDouble, IconCornerRightUp, IconCornerRightUpDouble, IconCornerUpLeft, IconCornerUpLeftDouble, IconCornerUpRight, IconCornerUpRightDouble, IconCrane, IconCreditCard, IconCreditCardOff, IconCrop, IconCrosshair, IconCrown, IconCrownOff, IconCup, IconCurlyLoop, IconCurrencyBahraini, IconCurrencyBath, IconCurrencyBitcoin, IconCurrencyCent, IconCurrencyDinar, IconCurrencyDirham, IconCurrencyDollar, IconCurrencyDollarAustralian, IconCurrencyDollarCanadian, IconCurrencyDollarSingapore, IconCurrencyEthereum, IconCurrencyEuro, IconCurrencyForint, IconCurrencyFrank, IconCurrencyKroneCzech, IconCurrencyKroneDanish, IconCurrencyKroneSwedish, IconCurrencyLeu, IconCurrencyLira, IconCurrencyLitecoin, IconCurrencyNaira, IconCurrencyPound, IconCurrencyReal, IconCurrencyRenminbi, IconCurrencyRipple, IconCurrencyRiyal, IconCurrencyRubel, IconCurrencyRupee, IconCurrencyShekel, IconCurrencyTaka, IconCurrencyTugrik, IconCurrencyWon, IconCurrencyYen, IconCurrencyZloty, IconCurrentLocation, IconCursorText, IconCut, IconDashboard, IconDatabase, IconDatabaseExport, IconDatabaseImport, IconDatabaseOff, IconDetails, IconDeviceAnalytics, IconDeviceAudioTape, IconDeviceCctv, IconDeviceComputerCamera, IconDeviceComputerCameraOff, IconDeviceDesktop, IconDeviceDesktopAnalytics, IconDeviceDesktopOff, IconDeviceFloppy, IconDeviceGamepad, IconDeviceLaptop, IconDeviceMobile, IconDeviceMobileMessage, IconDeviceMobileRotated, IconDeviceMobileVibration, IconDeviceSpeaker, IconDeviceTablet, IconDeviceTv, IconDeviceWatch, IconDevices, IconDevices2, IconDevicesPc, IconDiamond, IconDice, IconDimensions, IconDirection, IconDirectionHorizontal, IconDirections, IconDisabled, IconDisabled2, IconDisc, IconDiscount, IconDiscount2, IconDivide, IconDna, IconDogBowl, IconDots, IconDotsCircleHorizontal, IconDotsDiagonal, IconDotsDiagonal2, IconDotsVertical, IconDownload, IconDragDrop, IconDragDrop2, IconDrone, IconDroneOff, IconDroplet, IconDropletFilled, IconDropletFilled2, IconDropletHalf, IconDropletHalf2, IconDropletOff, IconEar, IconEarOff, IconEdit, IconEditCircle, IconEgg, IconEmphasis, IconEqual, IconEqualNot, IconEraser, IconExchange, IconExposure, IconExternalLink, IconEye, IconEyeCheck, IconEyeOff, IconEyeglass, IconEyeglass2, IconFaceId, IconFall, IconFeather, IconFence, IconFile, IconFileAlert, IconFileAnalytics, IconFileCertificate, IconFileCheck, IconFileCode, IconFileCode2, IconFileDiff, IconFileDislike, IconFileDownload, IconFileExport, IconFileHorizontal, IconFileImport, IconFileInfo, IconFileInvoice, IconFileLike, IconFileMinus, IconFileMusic, IconFileOff, IconFilePhone, IconFilePlus, IconFileReport, IconFileSearch, IconFileShredder, IconFileSymlink, IconFileText, IconFileUpload, IconFileX, IconFileZip, IconFiles, IconFilesOff, IconFilter, IconFilterOff, IconFingerprint, IconFiretruck, IconFish, IconFlag, IconFlag2, IconFlag3, IconFlame, IconFlare, IconFlask, IconFlipHorizontal, IconFlipVertical, IconFloatCenter, IconFloatLeft, IconFloatNone, IconFloatRight, IconFocus, IconFocus2, IconFold, IconFoldDown, IconFoldUp, IconFolder, IconFolderMinus, IconFolderOff, IconFolderPlus, IconFolderX, IconFolders, IconForbid, IconForbid2, IconForklift, IconForms, IconFrame, IconFriends, IconGasStation, IconGauge, IconGeometry, IconGhost, IconGift, IconGitBranch, IconGitCommit, IconGitCompare, IconGitFork, IconGitMerge, IconGitPullRequest, IconGlass, IconGlassFull, IconGlassOff, IconGlobe, IconGolf, IconGps, IconGrain, IconGridDots, IconGripHorizontal, IconGripVertical, IconGrowth, IconH1, IconH2, IconH3, IconH4, IconH5, IconH6, IconHandFinger, IconHandLittleFinger, IconHandMiddleFinger, IconHandOff, IconHandRingFinger, IconHandRock, IconHandStop, IconHandThreeFingers, IconHandTwoFingers, IconHanger, IconHash, IconHeading, IconHeadphones, IconHeadphonesOff, IconHeadset, IconHeart, IconHeartBroken, IconHelicopter, IconHelicopterLanding, IconHelp, IconHexagon, IconHexagonOff, IconHierarchy, IconHierarchy2, IconHighlight, IconHistory, IconHome, IconHome2, IconIceCream, IconIceCream2, IconId, IconInbox, IconIndentDecrease, IconIndentIncrease, IconInfinity, IconInfoCircle, IconInfoSquare, IconItalic, IconJumpRope, IconKarate, IconKey, IconKeyboard, IconKeyboardHide, IconKeyboardOff, IconKeyboardShow, IconLanguage, IconLayersDifference, IconLayersIntersect, IconLayersLinked, IconLayersSubtract, IconLayersUnion, IconLayout, IconLayout2, IconLayoutAlignBottom, IconLayoutAlignCenter, IconLayoutAlignLeft, IconLayoutAlignMiddle, IconLayoutAlignRight, IconLayoutAlignTop, IconLayoutBottombar, IconLayoutCards, IconLayoutColumns, IconLayoutDistributeHorizontal, IconLayoutDistributeVertical, IconLayoutGrid, IconLayoutGridAdd, IconLayoutKanban, IconLayoutList, IconLayoutNavbar, IconLayoutRows, IconLayoutSidebar, IconLayoutSidebarRight, IconLeaf, IconLego, IconLemon, IconLetterA, IconLetterB, IconLetterC, IconLetterCase, IconLetterCaseLower, IconLetterCaseToggle, IconLetterCaseUpper, IconLetterD, IconLetterE, IconLetterF, IconLetterG, IconLetterH, IconLetterI, IconLetterJ, IconLetterK, IconLetterL, IconLetterM, IconLetterN, IconLetterO, IconLetterP, IconLetterQ, IconLetterR, IconLetterS, IconLetterSpacing, IconLetterT, IconLetterU, IconLetterV, IconLetterW, IconLetterX, IconLetterY, IconLetterZ, IconLettersCase, IconLicense, IconLifebuoy, IconLine, IconLineDashed, IconLineDotted, IconLineHeight, IconLink, IconList, IconListCheck, IconListDetails, IconListNumbers, IconListSearch, IconLivePhoto, IconLiveView, IconLoader, IconLoaderQuarter, IconLocation, IconLock, IconLockAccess, IconLockOff, IconLockOpen, IconLogin, IconLogout, IconMacro, IconMagnet, IconMail, IconMailForward, IconMailOpened, IconMailbox, IconMan, IconManualGearbox, IconMap, IconMap2, IconMapPin, IconMapPinOff, IconMapPins, IconMarkdown, IconMarquee, IconMarquee2, IconMars, IconMask, IconMaskOff, IconMassage, IconMath, IconMathFunction, IconMathSymbols, IconMaximize, IconMeat, IconMedal, IconMedicalCross, IconMenu, IconMenu2, IconMessage, IconMessage2, IconMessageCircle, IconMessageCircle2, IconMessageCircleOff, IconMessageDots, IconMessageOff, IconMessagePlus, IconMessageReport, IconMessages, IconMessagesOff, IconMicrophone, IconMicrophone2, IconMicrophoneOff, IconMilk, IconMinimize, IconMinus, IconMinusVertical, IconMist, IconMoodBoy, IconMoodConfuzed, IconMoodCrazyHappy, IconMoodCry, IconMoodEmpty, IconMoodHappy, IconMoodKid, IconMoodNeutral, IconMoodSad, IconMoodSmile, IconMoodSuprised, IconMoodTongue, IconMoon, IconMoon2, IconMoonStars, IconMoped, IconMotorbike, IconMouse, IconMovie, IconMug, IconMultiplier05x, IconMultiplier15x, IconMultiplier1x, IconMultiplier2x, IconMushroom, IconMusic, IconNewSection, IconNews, IconNfc, IconNote, IconNotebook, IconNotes, IconNotification, IconNumber0, IconNumber1, IconNumber2, IconNumber3, IconNumber4, IconNumber5, IconNumber6, IconNumber7, IconNumber8, IconNumber9, IconOctagon, IconOctagonOff, IconOld, IconOlympics, IconOmega, IconOutlet, IconOverline, IconPackage, IconPacman, IconPageBreak, IconPaint, IconPalette, IconPanoramaHorizontal, IconPanoramaVertical, IconPaperclip, IconParachute, IconParentheses, IconParking, IconPeace, IconPencil, IconPennant, IconPepper, IconPercentage, IconPerspective, IconPhone, IconPhoneCall, IconPhoneCalling, IconPhoneCheck, IconPhoneIncoming, IconPhoneOff, IconPhoneOutgoing, IconPhonePause, IconPhonePlus, IconPhoneX, IconPhoto, IconPhotoOff, IconPhysotherapist, IconPictureInPicture, IconPictureInPictureOff, IconPictureInPictureOn, IconPill, IconPin, IconPinned, IconPinnedOff, IconPizza, IconPlane, IconPlaneArrival, IconPlaneDeparture, IconPlanet, IconPlant, IconPlant2, IconPlayCard, IconPlayerPause, IconPlayerPlay, IconPlayerRecord, IconPlayerSkipBack, IconPlayerSkipForward, IconPlayerStop, IconPlayerTrackNext, IconPlayerTrackPrev, IconPlaylist, IconPlug, IconPlus, IconPoint, IconPokeball, IconPolaroid, IconPool, IconPower, IconPray, IconPresentation, IconPresentationAnalytics, IconPrinter, IconPrompt, IconPropeller, IconPuzzle, IconPyramid, IconQrcode, IconQuestionMark, IconRadio, IconRadioactive, IconRadiusBottomLeft, IconRadiusBottomRight, IconRadiusTopLeft, IconRadiusTopRight, IconRainbow, IconReceipt, IconReceipt2, IconReceiptOff, IconReceiptRefund, IconReceiptTax, IconRecharging, IconRecordMail, IconRectangle, IconRectangleVertical, IconRecycle, IconRefresh, IconRefreshAlert, IconRegistered, IconRelationManyToMany, IconRelationOneToMany, IconRelationOneToOne, IconRepeat, IconRepeatOnce, IconReplace, IconReport, IconReportAnalytics, IconReportMedical, IconReportMoney, IconResize, IconRipple, IconRoadSign, IconRocket, IconRotate, IconRotate2, IconRotateClockwise, IconRotateClockwise2, IconRotateRectangle, IconRoute, IconRouter, IconRowInsertBottom, IconRowInsertTop, IconRss, IconRuler, IconRuler2, IconRun, IconSailboat, IconSalt, IconSatellite, IconSausage, IconScale, IconScan, IconSchool, IconScissors, IconScooter, IconScooterElectric, IconScreenShare, IconScreenShareOff, IconScubaMask, IconSearch, IconSection, IconSeeding, IconSelect, IconSelector, IconSend, IconSeparator, IconSeparatorHorizontal, IconSeparatorVertical, IconServer, IconServicemark, IconSettings, IconSettingsAutomation, IconShadow, IconShadowOff, IconShape, IconShape2, IconShape3, IconShare, IconShield, IconShieldCheck, IconShieldLock, IconShieldOff, IconShieldX, IconShip, IconShirt, IconShoppingCart, IconShoppingCartDiscount, IconShoppingCartOff, IconShoppingCartPlus, IconShoppingCartX, IconShredder, IconSignature, IconSitemap, IconSkateboard, IconSlice, IconSlideshow, IconSmartHome, IconSmoking, IconSmokingNo, IconSnowflake, IconSoccerField, IconSocial, IconSock, IconSortAscending, IconSortAscending2, IconSortAscendingLetters, IconSortAscendingNumbers, IconSortDescending, IconSortDescending2, IconSortDescendingLetters, IconSortDescendingNumbers, IconSoup, IconSpace, IconSpeakerphone, IconSpeedboat, IconSportBillard, IconSquare, IconSquare0, IconSquare1, IconSquare2, IconSquare3, IconSquare4, IconSquare5, IconSquare6, IconSquare7, IconSquare8, IconSquare9, IconSquareCheck, IconSquareDot, IconSquareForbid, IconSquareForbid2, IconSquareMinus, IconSquareOff, IconSquarePlus, IconSquareRoot, IconSquareRoot2, IconSquareRotated, IconSquareRotatedOff, IconSquareToggle, IconSquareToggleHorizontal, IconSquareX, IconSquaresDiagonal, IconSquaresFilled, IconStack, IconStack2, IconStairs, IconStairsDown, IconStairsUp, IconStar, IconStarHalf, IconStarOff, IconStars, IconSteeringWheel, IconStepInto, IconStepOut, IconStethoscope, IconSticker, IconStrikethrough, IconSubmarine, IconSubscript, IconSubtask, IconSum, IconSun, IconSunOff, IconSunrise, IconSunset, IconSuperscript, IconSwimming, IconSwitch, IconSwitch2, IconSwitch3, IconSwitchHorizontal, IconSwitchVertical, IconTable, IconTableExport, IconTableImport, IconTableOff, IconTag, IconTallymark1, IconTallymark2, IconTallymark3, IconTallymark4, IconTallymarks, IconTank, IconTarget, IconTemperature, IconTemperatureCelsius, IconTemperatureFahrenheit, IconTemperatureMinus, IconTemperaturePlus, IconTemplate, IconTent, IconTerminal, IconTerminal2, IconTestPipe, IconTextDirectionLtr, IconTextDirectionRtl, IconTextWrap, IconTextWrapDisabled, IconThumbDown, IconThumbUp, IconTicket, IconTiltShift, IconTir, IconToggleLeft, IconToggleRight, IconTool, IconTools, IconToolsKitchen, IconToolsKitchen2, IconTornado, IconTournament, IconTrack, IconTractor, IconTrademark, IconTrafficCone, IconTrafficLights, IconTrain, IconTransferIn, IconTransferOut, IconTrash, IconTrashOff, IconTree, IconTrees, IconTrendingDown, IconTrendingDown2, IconTrendingDown3, IconTrendingUp, IconTrendingUp2, IconTrendingUp3, IconTriangle, IconTriangleOff, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTruck, IconTruckDelivery, IconTruckOff, IconTruckReturn, IconTypography, IconUmbrella, IconUnderline, IconUnlink, IconUpload, IconUrgent, IconUser, IconUserCheck, IconUserExclamation, IconUserMinus, IconUserOff, IconUserPlus, IconUserX, IconUsers, IconVaccine, IconVariable, IconVector, IconVectorBeizer2, IconVectorBezier, IconVectorTriangle, IconVenus, IconVersions, IconVideo, IconVideoMinus, IconVideoOff, IconVideoPlus, IconView360, IconViewfinder, IconViewportNarrow, IconViewportWide, IconVirus, IconVirusOff, IconVirusSearch, IconVocabulary, IconVolume, IconVolume2, IconVolume3, IconWalk, IconWallet, IconWand, IconWaveSawTool, IconWaveSine, IconWaveSquare, IconWifi, IconWifi0, IconWifi1, IconWifi2, IconWifiOff, IconWind, IconWindmill, IconWindow, IconWiper, IconWiperWash, IconWoman, IconWorld, IconWorldLatitude, IconWorldLongitude, IconWreckingBall, IconWriting, IconWritingSign, IconX, IconYinYang, IconZodiacAquarius, IconZodiacAries, IconZodiacCancer, IconZodiacCapricorn, IconZodiacGemini, IconZodiacLeo, IconZodiacLibra, IconZodiacPisces, IconZodiacSagittarius, IconZodiacScorpio, IconZodiacTaurus, IconZodiacVirgo, IconZoomCancel, IconZoomCheck, IconZoomIn, IconZoomMoney };
|
|
49328
50018
|
//# sourceMappingURL=index.esm.js.map
|