@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.
Files changed (70) hide show
  1. package/README.md +28 -0
  2. package/iconfont/.DS_Store +0 -0
  3. package/iconfont/fonts/tabler-icons.eot +0 -0
  4. package/iconfont/fonts/tabler-icons.svg +60 -0
  5. package/iconfont/fonts/tabler-icons.ttf +0 -0
  6. package/iconfont/fonts/tabler-icons.woff +0 -0
  7. package/iconfont/fonts/tabler-icons.woff2 +0 -0
  8. package/iconfont/tabler-icons.css +81 -1
  9. package/iconfont/tabler-icons.html +182 -2
  10. package/iconfont/tabler-icons.min.css +2 -2
  11. package/iconfont/tabler-icons.scss +41 -1
  12. package/icons/.DS_Store +0 -0
  13. package/icons/arrow-autofit-content.svg +10 -0
  14. package/icons/arrow-autofit-down.svg +8 -0
  15. package/icons/arrow-autofit-height.svg +10 -0
  16. package/icons/arrow-autofit-left.svg +8 -0
  17. package/icons/arrow-autofit-right.svg +8 -0
  18. package/icons/arrow-autofit-up.svg +8 -0
  19. package/icons/arrow-autofit-width.svg +10 -0
  20. package/icons/arrows-diagonal-minimize-2.svg +9 -0
  21. package/icons/arrows-diagonal-minimize.svg +9 -0
  22. package/icons/ballon.svg +8 -0
  23. package/icons/battery-charging-2.svg +10 -0
  24. package/icons/battery-eco.svg +8 -0
  25. package/icons/beach.svg +10 -0
  26. package/icons/brand-bootstrap.svg +8 -0
  27. package/icons/highlight.svg +9 -0
  28. package/icons/list-details.svg +11 -0
  29. package/icons/multiplier-0-5x.svg +9 -0
  30. package/icons/multiplier-1-5x.svg +10 -0
  31. package/icons/multiplier-1x.svg +8 -0
  32. package/icons/multiplier-2x.svg +8 -0
  33. package/icons-png/.DS_Store +0 -0
  34. package/icons-png/arrow-autofit-content.png +0 -0
  35. package/icons-png/arrow-autofit-down.png +0 -0
  36. package/icons-png/arrow-autofit-height.png +0 -0
  37. package/icons-png/arrow-autofit-left.png +0 -0
  38. package/icons-png/arrow-autofit-right.png +0 -0
  39. package/icons-png/arrow-autofit-up.png +0 -0
  40. package/icons-png/arrow-autofit-width.png +0 -0
  41. package/icons-png/arrows-diagonal-minimize-2.png +0 -0
  42. package/icons-png/arrows-diagonal-minimize.png +0 -0
  43. package/icons-png/ballon.png +0 -0
  44. package/icons-png/battery-charging-2.png +0 -0
  45. package/icons-png/battery-eco.png +0 -0
  46. package/icons-png/beach.png +0 -0
  47. package/icons-png/brand-bootstrap.png +0 -0
  48. package/icons-png/highlight.png +0 -0
  49. package/icons-png/list-details.png +0 -0
  50. package/icons-png/multiplier-0-5x.png +0 -0
  51. package/icons-png/multiplier-1-5x.png +0 -0
  52. package/icons-png/multiplier-1x.png +0 -0
  53. package/icons-png/multiplier-2x.png +0 -0
  54. package/icons-react/dist/index.cjs.js +710 -0
  55. package/icons-react/dist/index.cjs.js.map +1 -1
  56. package/icons-react/dist/index.cjs.min.js +1 -1
  57. package/icons-react/dist/index.cjs.min.js.map +1 -1
  58. package/icons-react/dist/index.esm.js +691 -1
  59. package/icons-react/dist/index.esm.js.map +1 -1
  60. package/icons-react/dist/index.esm.min.js +1 -1
  61. package/icons-react/dist/index.esm.min.js.map +1 -1
  62. package/icons-react/dist/index.umd.js +710 -0
  63. package/icons-react/dist/index.umd.js.map +1 -1
  64. package/icons-react/dist/index.umd.min.js +1 -1
  65. package/icons-react/dist/index.umd.min.js.map +1 -1
  66. package/icons-react/index.d.ts +20 -0
  67. package/package.json +1 -1
  68. package/tabler-sprite-nostroke.svg +1 -1
  69. package/tabler-sprite.svg +1 -1
  70. package/tags.json +178 -0
@@ -1579,6 +1579,246 @@
1579
1579
  }));
1580
1580
  }
1581
1581
 
1582
+ function IconArrowAutofitContent(_ref) {
1583
+ var _ref$size = _ref.size,
1584
+ size = _ref$size === void 0 ? 24 : _ref$size,
1585
+ _ref$color = _ref.color,
1586
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
1587
+ _ref$stroke = _ref.stroke,
1588
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
1589
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
1590
+
1591
+ return /*#__PURE__*/React.createElement("svg", _extends({
1592
+ className: "icon icon-tabler icon-tabler-arrow-autofit-content",
1593
+ width: size,
1594
+ height: size,
1595
+ viewBox: "0 0 24 24",
1596
+ strokeWidth: stroke,
1597
+ stroke: color,
1598
+ fill: "none",
1599
+ strokeLinecap: "round",
1600
+ strokeLinejoin: "round"
1601
+ }, props), /*#__PURE__*/React.createElement("path", {
1602
+ stroke: "none",
1603
+ d: "M0 0h24v24H0z",
1604
+ fill: "none"
1605
+ }), /*#__PURE__*/React.createElement("path", {
1606
+ d: "M6 4l-3 3l3 3"
1607
+ }), /*#__PURE__*/React.createElement("path", {
1608
+ d: "M18 4l3 3l-3 3"
1609
+ }), /*#__PURE__*/React.createElement("rect", {
1610
+ x: 4,
1611
+ y: 14,
1612
+ width: 16,
1613
+ height: 6,
1614
+ rx: 2
1615
+ }), /*#__PURE__*/React.createElement("path", {
1616
+ d: "M10 7h-7"
1617
+ }), /*#__PURE__*/React.createElement("path", {
1618
+ d: "M21 7h-7"
1619
+ }));
1620
+ }
1621
+
1622
+ function IconArrowAutofitDown(_ref) {
1623
+ var _ref$size = _ref.size,
1624
+ size = _ref$size === void 0 ? 24 : _ref$size,
1625
+ _ref$color = _ref.color,
1626
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
1627
+ _ref$stroke = _ref.stroke,
1628
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
1629
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
1630
+
1631
+ return /*#__PURE__*/React.createElement("svg", _extends({
1632
+ className: "icon icon-tabler icon-tabler-arrow-autofit-down",
1633
+ width: size,
1634
+ height: size,
1635
+ viewBox: "0 0 24 24",
1636
+ strokeWidth: stroke,
1637
+ stroke: color,
1638
+ fill: "none",
1639
+ strokeLinecap: "round",
1640
+ strokeLinejoin: "round"
1641
+ }, props), /*#__PURE__*/React.createElement("path", {
1642
+ stroke: "none",
1643
+ d: "M0 0h24v24H0z",
1644
+ fill: "none"
1645
+ }), /*#__PURE__*/React.createElement("path", {
1646
+ d: "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h8"
1647
+ }), /*#__PURE__*/React.createElement("path", {
1648
+ d: "M18 4v17"
1649
+ }), /*#__PURE__*/React.createElement("path", {
1650
+ d: "M15 18l3 3l3 -3"
1651
+ }));
1652
+ }
1653
+
1654
+ function IconArrowAutofitHeight(_ref) {
1655
+ var _ref$size = _ref.size,
1656
+ size = _ref$size === void 0 ? 24 : _ref$size,
1657
+ _ref$color = _ref.color,
1658
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
1659
+ _ref$stroke = _ref.stroke,
1660
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
1661
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
1662
+
1663
+ return /*#__PURE__*/React.createElement("svg", _extends({
1664
+ className: "icon icon-tabler icon-tabler-arrow-autofit-height",
1665
+ width: size,
1666
+ height: size,
1667
+ viewBox: "0 0 24 24",
1668
+ strokeWidth: stroke,
1669
+ stroke: color,
1670
+ fill: "none",
1671
+ strokeLinecap: "round",
1672
+ strokeLinejoin: "round"
1673
+ }, props), /*#__PURE__*/React.createElement("path", {
1674
+ stroke: "none",
1675
+ d: "M0 0h24v24H0z",
1676
+ fill: "none"
1677
+ }), /*#__PURE__*/React.createElement("path", {
1678
+ d: "M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h6"
1679
+ }), /*#__PURE__*/React.createElement("path", {
1680
+ d: "M18 14v7"
1681
+ }), /*#__PURE__*/React.createElement("path", {
1682
+ d: "M18 3v7"
1683
+ }), /*#__PURE__*/React.createElement("path", {
1684
+ d: "M15 18l3 3l3 -3"
1685
+ }), /*#__PURE__*/React.createElement("path", {
1686
+ d: "M15 6l3 -3l3 3"
1687
+ }));
1688
+ }
1689
+
1690
+ function IconArrowAutofitLeft(_ref) {
1691
+ var _ref$size = _ref.size,
1692
+ size = _ref$size === void 0 ? 24 : _ref$size,
1693
+ _ref$color = _ref.color,
1694
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
1695
+ _ref$stroke = _ref.stroke,
1696
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
1697
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
1698
+
1699
+ return /*#__PURE__*/React.createElement("svg", _extends({
1700
+ className: "icon icon-tabler icon-tabler-arrow-autofit-left",
1701
+ width: size,
1702
+ height: size,
1703
+ viewBox: "0 0 24 24",
1704
+ strokeWidth: stroke,
1705
+ stroke: color,
1706
+ fill: "none",
1707
+ strokeLinecap: "round",
1708
+ strokeLinejoin: "round"
1709
+ }, props), /*#__PURE__*/React.createElement("path", {
1710
+ stroke: "none",
1711
+ d: "M0 0h24v24H0z",
1712
+ fill: "none"
1713
+ }), /*#__PURE__*/React.createElement("path", {
1714
+ d: "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8"
1715
+ }), /*#__PURE__*/React.createElement("path", {
1716
+ d: "M20 18h-17"
1717
+ }), /*#__PURE__*/React.createElement("path", {
1718
+ d: "M6 15l-3 3l3 3"
1719
+ }));
1720
+ }
1721
+
1722
+ function IconArrowAutofitRight(_ref) {
1723
+ var _ref$size = _ref.size,
1724
+ size = _ref$size === void 0 ? 24 : _ref$size,
1725
+ _ref$color = _ref.color,
1726
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
1727
+ _ref$stroke = _ref.stroke,
1728
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
1729
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
1730
+
1731
+ return /*#__PURE__*/React.createElement("svg", _extends({
1732
+ className: "icon icon-tabler icon-tabler-arrow-autofit-right",
1733
+ width: size,
1734
+ height: size,
1735
+ viewBox: "0 0 24 24",
1736
+ strokeWidth: stroke,
1737
+ stroke: color,
1738
+ fill: "none",
1739
+ strokeLinecap: "round",
1740
+ strokeLinejoin: "round"
1741
+ }, props), /*#__PURE__*/React.createElement("path", {
1742
+ stroke: "none",
1743
+ d: "M0 0h24v24H0z",
1744
+ fill: "none"
1745
+ }), /*#__PURE__*/React.createElement("path", {
1746
+ d: "M20 12v-6a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v8"
1747
+ }), /*#__PURE__*/React.createElement("path", {
1748
+ d: "M4 18h17"
1749
+ }), /*#__PURE__*/React.createElement("path", {
1750
+ d: "M18 15l3 3l-3 3"
1751
+ }));
1752
+ }
1753
+
1754
+ function IconArrowAutofitUp(_ref) {
1755
+ var _ref$size = _ref.size,
1756
+ size = _ref$size === void 0 ? 24 : _ref$size,
1757
+ _ref$color = _ref.color,
1758
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
1759
+ _ref$stroke = _ref.stroke,
1760
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
1761
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
1762
+
1763
+ return /*#__PURE__*/React.createElement("svg", _extends({
1764
+ className: "icon icon-tabler icon-tabler-arrow-autofit-up",
1765
+ width: size,
1766
+ height: size,
1767
+ viewBox: "0 0 24 24",
1768
+ strokeWidth: stroke,
1769
+ stroke: color,
1770
+ fill: "none",
1771
+ strokeLinecap: "round",
1772
+ strokeLinejoin: "round"
1773
+ }, props), /*#__PURE__*/React.createElement("path", {
1774
+ stroke: "none",
1775
+ d: "M0 0h24v24H0z",
1776
+ fill: "none"
1777
+ }), /*#__PURE__*/React.createElement("path", {
1778
+ d: "M12 4h-6a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h8"
1779
+ }), /*#__PURE__*/React.createElement("path", {
1780
+ d: "M18 20v-17"
1781
+ }), /*#__PURE__*/React.createElement("path", {
1782
+ d: "M15 6l3 -3l3 3"
1783
+ }));
1784
+ }
1785
+
1786
+ function IconArrowAutofitWidth(_ref) {
1787
+ var _ref$size = _ref.size,
1788
+ size = _ref$size === void 0 ? 24 : _ref$size,
1789
+ _ref$color = _ref.color,
1790
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
1791
+ _ref$stroke = _ref.stroke,
1792
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
1793
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
1794
+
1795
+ return /*#__PURE__*/React.createElement("svg", _extends({
1796
+ className: "icon icon-tabler icon-tabler-arrow-autofit-width",
1797
+ width: size,
1798
+ height: size,
1799
+ viewBox: "0 0 24 24",
1800
+ strokeWidth: stroke,
1801
+ stroke: color,
1802
+ fill: "none",
1803
+ strokeLinecap: "round",
1804
+ strokeLinejoin: "round"
1805
+ }, props), /*#__PURE__*/React.createElement("path", {
1806
+ stroke: "none",
1807
+ d: "M0 0h24v24H0z",
1808
+ fill: "none"
1809
+ }), /*#__PURE__*/React.createElement("path", {
1810
+ d: "M4 12v-6a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v6"
1811
+ }), /*#__PURE__*/React.createElement("path", {
1812
+ d: "M10 18h-7"
1813
+ }), /*#__PURE__*/React.createElement("path", {
1814
+ d: "M21 18h-7"
1815
+ }), /*#__PURE__*/React.createElement("path", {
1816
+ d: "M6 15l-3 3l3 3"
1817
+ }), /*#__PURE__*/React.createElement("path", {
1818
+ d: "M18 15l3 3l-3 3"
1819
+ }));
1820
+ }
1821
+
1582
1822
  function IconArrowBackUp(_ref) {
1583
1823
  var _ref$size = _ref.size,
1584
1824
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -3704,6 +3944,74 @@
3704
3944
  }));
3705
3945
  }
3706
3946
 
3947
+ function IconArrowsDiagonalMinimize2(_ref) {
3948
+ var _ref$size = _ref.size,
3949
+ size = _ref$size === void 0 ? 24 : _ref$size,
3950
+ _ref$color = _ref.color,
3951
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
3952
+ _ref$stroke = _ref.stroke,
3953
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
3954
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
3955
+
3956
+ return /*#__PURE__*/React.createElement("svg", _extends({
3957
+ className: "icon icon-tabler icon-tabler-arrows-diagonal-minimize-2",
3958
+ width: size,
3959
+ height: size,
3960
+ viewBox: "0 0 24 24",
3961
+ strokeWidth: stroke,
3962
+ stroke: color,
3963
+ fill: "none",
3964
+ strokeLinecap: "round",
3965
+ strokeLinejoin: "round"
3966
+ }, props), /*#__PURE__*/React.createElement("path", {
3967
+ stroke: "none",
3968
+ d: "M0 0h24v24H0z",
3969
+ fill: "none"
3970
+ }), /*#__PURE__*/React.createElement("path", {
3971
+ d: "M18 10h-4v-4"
3972
+ }), /*#__PURE__*/React.createElement("path", {
3973
+ d: "M20 4l-6 6"
3974
+ }), /*#__PURE__*/React.createElement("path", {
3975
+ d: "M6 14h4v4"
3976
+ }), /*#__PURE__*/React.createElement("path", {
3977
+ d: "M10 14l-6 6"
3978
+ }));
3979
+ }
3980
+
3981
+ function IconArrowsDiagonalMinimize(_ref) {
3982
+ var _ref$size = _ref.size,
3983
+ size = _ref$size === void 0 ? 24 : _ref$size,
3984
+ _ref$color = _ref.color,
3985
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
3986
+ _ref$stroke = _ref.stroke,
3987
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
3988
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
3989
+
3990
+ return /*#__PURE__*/React.createElement("svg", _extends({
3991
+ className: "icon icon-tabler icon-tabler-arrows-diagonal-minimize",
3992
+ width: size,
3993
+ height: size,
3994
+ viewBox: "0 0 24 24",
3995
+ strokeWidth: stroke,
3996
+ stroke: color,
3997
+ fill: "none",
3998
+ strokeLinecap: "round",
3999
+ strokeLinejoin: "round"
4000
+ }, props), /*#__PURE__*/React.createElement("path", {
4001
+ stroke: "none",
4002
+ d: "M0 0h24v24H0z",
4003
+ fill: "none"
4004
+ }), /*#__PURE__*/React.createElement("path", {
4005
+ d: "M6 10h4v-4"
4006
+ }), /*#__PURE__*/React.createElement("path", {
4007
+ d: "M4 4l6 6"
4008
+ }), /*#__PURE__*/React.createElement("path", {
4009
+ d: "M18 14h-4v4"
4010
+ }), /*#__PURE__*/React.createElement("path", {
4011
+ d: "M14 14l6 6"
4012
+ }));
4013
+ }
4014
+
3707
4015
  function IconArrowsDiagonal(_ref) {
3708
4016
  var _ref$size = _ref.size,
3709
4017
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -5310,6 +5618,38 @@
5310
5618
  }));
5311
5619
  }
5312
5620
 
5621
+ function IconBallon(_ref) {
5622
+ var _ref$size = _ref.size,
5623
+ size = _ref$size === void 0 ? 24 : _ref$size,
5624
+ _ref$color = _ref.color,
5625
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
5626
+ _ref$stroke = _ref.stroke,
5627
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
5628
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
5629
+
5630
+ return /*#__PURE__*/React.createElement("svg", _extends({
5631
+ className: "icon icon-tabler icon-tabler-ballon",
5632
+ width: size,
5633
+ height: size,
5634
+ viewBox: "0 0 24 24",
5635
+ strokeWidth: stroke,
5636
+ stroke: color,
5637
+ fill: "none",
5638
+ strokeLinecap: "round",
5639
+ strokeLinejoin: "round"
5640
+ }, props), /*#__PURE__*/React.createElement("path", {
5641
+ stroke: "none",
5642
+ d: "M0 0h24v24H0z",
5643
+ fill: "none"
5644
+ }), /*#__PURE__*/React.createElement("path", {
5645
+ d: "M14 8a2 2 0 0 0 -2 -2"
5646
+ }), /*#__PURE__*/React.createElement("path", {
5647
+ d: "M6 8a6 6 0 1 1 12 0c0 4.97 -2.686 9 -6 9s-6 -4.03 -6 -9"
5648
+ }), /*#__PURE__*/React.createElement("path", {
5649
+ d: "M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2"
5650
+ }));
5651
+ }
5652
+
5313
5653
  function IconBan(_ref) {
5314
5654
  var _ref$size = _ref.size,
5315
5655
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -5697,6 +6037,42 @@
5697
6037
  }));
5698
6038
  }
5699
6039
 
6040
+ function IconBatteryCharging2(_ref) {
6041
+ var _ref$size = _ref.size,
6042
+ size = _ref$size === void 0 ? 24 : _ref$size,
6043
+ _ref$color = _ref.color,
6044
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
6045
+ _ref$stroke = _ref.stroke,
6046
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
6047
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
6048
+
6049
+ return /*#__PURE__*/React.createElement("svg", _extends({
6050
+ className: "icon icon-tabler icon-tabler-battery-charging-2",
6051
+ width: size,
6052
+ height: size,
6053
+ viewBox: "0 0 24 24",
6054
+ strokeWidth: stroke,
6055
+ stroke: color,
6056
+ fill: "none",
6057
+ strokeLinecap: "round",
6058
+ strokeLinejoin: "round"
6059
+ }, props), /*#__PURE__*/React.createElement("path", {
6060
+ stroke: "none",
6061
+ d: "M0 0h24v24H0z",
6062
+ fill: "none"
6063
+ }), /*#__PURE__*/React.createElement("path", {
6064
+ 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"
6065
+ }), /*#__PURE__*/React.createElement("path", {
6066
+ d: "M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z"
6067
+ }), /*#__PURE__*/React.createElement("path", {
6068
+ d: "M6 22v-3"
6069
+ }), /*#__PURE__*/React.createElement("path", {
6070
+ d: "M4 15v-2.5"
6071
+ }), /*#__PURE__*/React.createElement("path", {
6072
+ d: "M8 15v-2.5"
6073
+ }));
6074
+ }
6075
+
5700
6076
  function IconBatteryCharging(_ref) {
5701
6077
  var _ref$size = _ref.size,
5702
6078
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -5729,6 +6105,38 @@
5729
6105
  }));
5730
6106
  }
5731
6107
 
6108
+ function IconBatteryEco(_ref) {
6109
+ var _ref$size = _ref.size,
6110
+ size = _ref$size === void 0 ? 24 : _ref$size,
6111
+ _ref$color = _ref.color,
6112
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
6113
+ _ref$stroke = _ref.stroke,
6114
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
6115
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
6116
+
6117
+ return /*#__PURE__*/React.createElement("svg", _extends({
6118
+ className: "icon icon-tabler icon-tabler-battery-eco",
6119
+ width: size,
6120
+ height: size,
6121
+ viewBox: "0 0 24 24",
6122
+ strokeWidth: stroke,
6123
+ stroke: color,
6124
+ fill: "none",
6125
+ strokeLinecap: "round",
6126
+ strokeLinejoin: "round"
6127
+ }, props), /*#__PURE__*/React.createElement("path", {
6128
+ stroke: "none",
6129
+ d: "M0 0h24v24H0z",
6130
+ fill: "none"
6131
+ }), /*#__PURE__*/React.createElement("path", {
6132
+ 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"
6133
+ }), /*#__PURE__*/React.createElement("path", {
6134
+ 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"
6135
+ }), /*#__PURE__*/React.createElement("path", {
6136
+ d: "M3 20v-3"
6137
+ }));
6138
+ }
6139
+
5732
6140
  function IconBatteryOff(_ref) {
5733
6141
  var _ref$size = _ref.size,
5734
6142
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -5790,6 +6198,42 @@
5790
6198
  }));
5791
6199
  }
5792
6200
 
6201
+ function IconBeach(_ref) {
6202
+ var _ref$size = _ref.size,
6203
+ size = _ref$size === void 0 ? 24 : _ref$size,
6204
+ _ref$color = _ref.color,
6205
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
6206
+ _ref$stroke = _ref.stroke,
6207
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
6208
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
6209
+
6210
+ return /*#__PURE__*/React.createElement("svg", _extends({
6211
+ className: "icon icon-tabler icon-tabler-beach",
6212
+ width: size,
6213
+ height: size,
6214
+ viewBox: "0 0 24 24",
6215
+ strokeWidth: stroke,
6216
+ stroke: color,
6217
+ fill: "none",
6218
+ strokeLinecap: "round",
6219
+ strokeLinejoin: "round"
6220
+ }, props), /*#__PURE__*/React.createElement("path", {
6221
+ stroke: "none",
6222
+ d: "M0 0h24v24H0z",
6223
+ fill: "none"
6224
+ }), /*#__PURE__*/React.createElement("path", {
6225
+ d: "M17.553 16.75a7.5 7.5 0 0 0 -10.606 0"
6226
+ }), /*#__PURE__*/React.createElement("path", {
6227
+ d: "M18 3.804a6 6 0 0 0 -8.196 2.196l10.392 6a6 6 0 0 0 -2.196 -8.196z"
6228
+ }), /*#__PURE__*/React.createElement("path", {
6229
+ 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"
6230
+ }), /*#__PURE__*/React.createElement("path", {
6231
+ d: "M15 9l-3 5.196"
6232
+ }), /*#__PURE__*/React.createElement("path", {
6233
+ 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"
6234
+ }));
6235
+ }
6236
+
5793
6237
  function IconBed(_ref) {
5794
6238
  var _ref$size = _ref.size,
5795
6239
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -8816,6 +9260,38 @@
8816
9260
  }));
8817
9261
  }
8818
9262
 
9263
+ function IconBrandBootstrap(_ref) {
9264
+ var _ref$size = _ref.size,
9265
+ size = _ref$size === void 0 ? 24 : _ref$size,
9266
+ _ref$color = _ref.color,
9267
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
9268
+ _ref$stroke = _ref.stroke,
9269
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
9270
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
9271
+
9272
+ return /*#__PURE__*/React.createElement("svg", _extends({
9273
+ className: "icon icon-tabler icon-tabler-brand-bootstrap",
9274
+ width: size,
9275
+ height: size,
9276
+ viewBox: "0 0 24 24",
9277
+ strokeWidth: stroke,
9278
+ stroke: color,
9279
+ fill: "none",
9280
+ strokeLinecap: "round",
9281
+ strokeLinejoin: "round"
9282
+ }, props), /*#__PURE__*/React.createElement("path", {
9283
+ stroke: "none",
9284
+ d: "M0 0h24v24H0z",
9285
+ fill: "none"
9286
+ }), /*#__PURE__*/React.createElement("path", {
9287
+ 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"
9288
+ }), /*#__PURE__*/React.createElement("path", {
9289
+ 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"
9290
+ }), /*#__PURE__*/React.createElement("path", {
9291
+ d: "M9 16v-8h3.5a2 2 0 1 1 0 4h-3.5h4a2 2 0 1 1 0 4h-4z"
9292
+ }));
9293
+ }
9294
+
8819
9295
  function IconBrandChrome(_ref) {
8820
9296
  var _ref$size = _ref.size,
8821
9297
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -27405,6 +27881,40 @@
27405
27881
  }));
27406
27882
  }
27407
27883
 
27884
+ function IconHighlight(_ref) {
27885
+ var _ref$size = _ref.size,
27886
+ size = _ref$size === void 0 ? 24 : _ref$size,
27887
+ _ref$color = _ref.color,
27888
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
27889
+ _ref$stroke = _ref.stroke,
27890
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
27891
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
27892
+
27893
+ return /*#__PURE__*/React.createElement("svg", _extends({
27894
+ className: "icon icon-tabler icon-tabler-highlight",
27895
+ width: size,
27896
+ height: size,
27897
+ viewBox: "0 0 24 24",
27898
+ strokeWidth: stroke,
27899
+ stroke: color,
27900
+ fill: "none",
27901
+ strokeLinecap: "round",
27902
+ strokeLinejoin: "round"
27903
+ }, props), /*#__PURE__*/React.createElement("path", {
27904
+ stroke: "none",
27905
+ d: "M0 0h24v24H0z",
27906
+ fill: "none"
27907
+ }), /*#__PURE__*/React.createElement("path", {
27908
+ d: "M3 19h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4"
27909
+ }), /*#__PURE__*/React.createElement("path", {
27910
+ d: "M12.5 5.5l4 4"
27911
+ }), /*#__PURE__*/React.createElement("path", {
27912
+ d: "M4.5 13.5l4 4"
27913
+ }), /*#__PURE__*/React.createElement("path", {
27914
+ d: "M21 15v4h-8l4 -4z"
27915
+ }));
27916
+ }
27917
+
27408
27918
  function IconHistory(_ref) {
27409
27919
  var _ref$size = _ref.size,
27410
27920
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -30783,6 +31293,52 @@
30783
31293
  }));
30784
31294
  }
30785
31295
 
31296
+ function IconListDetails(_ref) {
31297
+ var _ref$size = _ref.size,
31298
+ size = _ref$size === void 0 ? 24 : _ref$size,
31299
+ _ref$color = _ref.color,
31300
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
31301
+ _ref$stroke = _ref.stroke,
31302
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
31303
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
31304
+
31305
+ return /*#__PURE__*/React.createElement("svg", _extends({
31306
+ className: "icon icon-tabler icon-tabler-list-details",
31307
+ width: size,
31308
+ height: size,
31309
+ viewBox: "0 0 24 24",
31310
+ strokeWidth: stroke,
31311
+ stroke: color,
31312
+ fill: "none",
31313
+ strokeLinecap: "round",
31314
+ strokeLinejoin: "round"
31315
+ }, props), /*#__PURE__*/React.createElement("path", {
31316
+ stroke: "none",
31317
+ d: "M0 0h24v24H0z",
31318
+ fill: "none"
31319
+ }), /*#__PURE__*/React.createElement("path", {
31320
+ d: "M13 5h8"
31321
+ }), /*#__PURE__*/React.createElement("path", {
31322
+ d: "M13 9h5"
31323
+ }), /*#__PURE__*/React.createElement("path", {
31324
+ d: "M13 15h8"
31325
+ }), /*#__PURE__*/React.createElement("path", {
31326
+ d: "M13 19h5"
31327
+ }), /*#__PURE__*/React.createElement("rect", {
31328
+ x: 3,
31329
+ y: 4,
31330
+ width: 6,
31331
+ height: 6,
31332
+ rx: 1
31333
+ }), /*#__PURE__*/React.createElement("rect", {
31334
+ x: 3,
31335
+ y: 14,
31336
+ width: 6,
31337
+ height: 6,
31338
+ rx: 1
31339
+ }));
31340
+ }
31341
+
30786
31342
  function IconListNumbers(_ref) {
30787
31343
  var _ref$size = _ref.size,
30788
31344
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -34004,6 +34560,140 @@
34004
34560
  }));
34005
34561
  }
34006
34562
 
34563
+ function IconMultiplier05x(_ref) {
34564
+ var _ref$size = _ref.size,
34565
+ size = _ref$size === void 0 ? 24 : _ref$size,
34566
+ _ref$color = _ref.color,
34567
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
34568
+ _ref$stroke = _ref.stroke,
34569
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
34570
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
34571
+
34572
+ return /*#__PURE__*/React.createElement("svg", _extends({
34573
+ className: "icon icon-tabler icon-tabler-multiplier-0-5x",
34574
+ width: size,
34575
+ height: size,
34576
+ viewBox: "0 0 24 24",
34577
+ strokeWidth: stroke,
34578
+ stroke: color,
34579
+ fill: "none",
34580
+ strokeLinecap: "round",
34581
+ strokeLinejoin: "round"
34582
+ }, props), /*#__PURE__*/React.createElement("path", {
34583
+ stroke: "none",
34584
+ d: "M0 0h24v24H0z",
34585
+ fill: "none"
34586
+ }), /*#__PURE__*/React.createElement("path", {
34587
+ d: "M8 16h2a2 2 0 1 0 0 -4h-2v-4h4"
34588
+ }), /*#__PURE__*/React.createElement("path", {
34589
+ d: "M5 16v.01"
34590
+ }), /*#__PURE__*/React.createElement("path", {
34591
+ d: "M15 16l4 -4"
34592
+ }), /*#__PURE__*/React.createElement("path", {
34593
+ d: "M19 16l-4 -4"
34594
+ }));
34595
+ }
34596
+
34597
+ function IconMultiplier15x(_ref) {
34598
+ var _ref$size = _ref.size,
34599
+ size = _ref$size === void 0 ? 24 : _ref$size,
34600
+ _ref$color = _ref.color,
34601
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
34602
+ _ref$stroke = _ref.stroke,
34603
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
34604
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
34605
+
34606
+ return /*#__PURE__*/React.createElement("svg", _extends({
34607
+ className: "icon icon-tabler icon-tabler-multiplier-1-5x",
34608
+ width: size,
34609
+ height: size,
34610
+ viewBox: "0 0 24 24",
34611
+ strokeWidth: stroke,
34612
+ stroke: color,
34613
+ fill: "none",
34614
+ strokeLinecap: "round",
34615
+ strokeLinejoin: "round"
34616
+ }, props), /*#__PURE__*/React.createElement("path", {
34617
+ stroke: "none",
34618
+ d: "M0 0h24v24H0z",
34619
+ fill: "none"
34620
+ }), /*#__PURE__*/React.createElement("path", {
34621
+ d: "M4 16v-8l-2 2"
34622
+ }), /*#__PURE__*/React.createElement("path", {
34623
+ d: "M10 16h2a2 2 0 1 0 0 -4h-2v-4h4"
34624
+ }), /*#__PURE__*/React.createElement("path", {
34625
+ d: "M7 16v.01"
34626
+ }), /*#__PURE__*/React.createElement("path", {
34627
+ d: "M17 16l4 -4"
34628
+ }), /*#__PURE__*/React.createElement("path", {
34629
+ d: "M21 16l-4 -4"
34630
+ }));
34631
+ }
34632
+
34633
+ function IconMultiplier1x(_ref) {
34634
+ var _ref$size = _ref.size,
34635
+ size = _ref$size === void 0 ? 24 : _ref$size,
34636
+ _ref$color = _ref.color,
34637
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
34638
+ _ref$stroke = _ref.stroke,
34639
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
34640
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
34641
+
34642
+ return /*#__PURE__*/React.createElement("svg", _extends({
34643
+ className: "icon icon-tabler icon-tabler-multiplier-1x",
34644
+ width: size,
34645
+ height: size,
34646
+ viewBox: "0 0 24 24",
34647
+ strokeWidth: stroke,
34648
+ stroke: color,
34649
+ fill: "none",
34650
+ strokeLinecap: "round",
34651
+ strokeLinejoin: "round"
34652
+ }, props), /*#__PURE__*/React.createElement("path", {
34653
+ stroke: "none",
34654
+ d: "M0 0h24v24H0z",
34655
+ fill: "none"
34656
+ }), /*#__PURE__*/React.createElement("path", {
34657
+ d: "M9 16v-8l-2 2"
34658
+ }), /*#__PURE__*/React.createElement("path", {
34659
+ d: "M13 16l4 -4"
34660
+ }), /*#__PURE__*/React.createElement("path", {
34661
+ d: "M17 16l-4 -4"
34662
+ }));
34663
+ }
34664
+
34665
+ function IconMultiplier2x(_ref) {
34666
+ var _ref$size = _ref.size,
34667
+ size = _ref$size === void 0 ? 24 : _ref$size,
34668
+ _ref$color = _ref.color,
34669
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
34670
+ _ref$stroke = _ref.stroke,
34671
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
34672
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
34673
+
34674
+ return /*#__PURE__*/React.createElement("svg", _extends({
34675
+ className: "icon icon-tabler icon-tabler-multiplier-2x",
34676
+ width: size,
34677
+ height: size,
34678
+ viewBox: "0 0 24 24",
34679
+ strokeWidth: stroke,
34680
+ stroke: color,
34681
+ fill: "none",
34682
+ strokeLinecap: "round",
34683
+ strokeLinejoin: "round"
34684
+ }, props), /*#__PURE__*/React.createElement("path", {
34685
+ stroke: "none",
34686
+ d: "M0 0h24v24H0z",
34687
+ fill: "none"
34688
+ }), /*#__PURE__*/React.createElement("path", {
34689
+ d: "M14 16l4 -4"
34690
+ }), /*#__PURE__*/React.createElement("path", {
34691
+ d: "M18 16l-4 -4"
34692
+ }), /*#__PURE__*/React.createElement("path", {
34693
+ d: "M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 -.001"
34694
+ }));
34695
+ }
34696
+
34007
34697
  function IconMushroom(_ref) {
34008
34698
  var _ref$size = _ref.size,
34009
34699
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -49363,6 +50053,13 @@
49363
50053
  exports.IconApple = IconApple;
49364
50054
  exports.IconApps = IconApps;
49365
50055
  exports.IconArchive = IconArchive;
50056
+ exports.IconArrowAutofitContent = IconArrowAutofitContent;
50057
+ exports.IconArrowAutofitDown = IconArrowAutofitDown;
50058
+ exports.IconArrowAutofitHeight = IconArrowAutofitHeight;
50059
+ exports.IconArrowAutofitLeft = IconArrowAutofitLeft;
50060
+ exports.IconArrowAutofitRight = IconArrowAutofitRight;
50061
+ exports.IconArrowAutofitUp = IconArrowAutofitUp;
50062
+ exports.IconArrowAutofitWidth = IconArrowAutofitWidth;
49366
50063
  exports.IconArrowBack = IconArrowBack;
49367
50064
  exports.IconArrowBackUp = IconArrowBackUp;
49368
50065
  exports.IconArrowBarDown = IconArrowBarDown;
@@ -49423,6 +50120,8 @@
49423
50120
  exports.IconArrowWaveRightUp = IconArrowWaveRightUp;
49424
50121
  exports.IconArrowsDiagonal = IconArrowsDiagonal;
49425
50122
  exports.IconArrowsDiagonal2 = IconArrowsDiagonal2;
50123
+ exports.IconArrowsDiagonalMinimize = IconArrowsDiagonalMinimize;
50124
+ exports.IconArrowsDiagonalMinimize2 = IconArrowsDiagonalMinimize2;
49426
50125
  exports.IconArrowsDoubleNeSw = IconArrowsDoubleNeSw;
49427
50126
  exports.IconArrowsDoubleNwSe = IconArrowsDoubleNwSe;
49428
50127
  exports.IconArrowsDoubleSeNw = IconArrowsDoubleSeNw;
@@ -49463,6 +50162,7 @@
49463
50162
  exports.IconBallFootballOff = IconBallFootballOff;
49464
50163
  exports.IconBallTennis = IconBallTennis;
49465
50164
  exports.IconBallVolleyball = IconBallVolleyball;
50165
+ exports.IconBallon = IconBallon;
49466
50166
  exports.IconBan = IconBan;
49467
50167
  exports.IconBandage = IconBandage;
49468
50168
  exports.IconBarcode = IconBarcode;
@@ -49474,7 +50174,10 @@
49474
50174
  exports.IconBattery4 = IconBattery4;
49475
50175
  exports.IconBatteryAutomotive = IconBatteryAutomotive;
49476
50176
  exports.IconBatteryCharging = IconBatteryCharging;
50177
+ exports.IconBatteryCharging2 = IconBatteryCharging2;
50178
+ exports.IconBatteryEco = IconBatteryEco;
49477
50179
  exports.IconBatteryOff = IconBatteryOff;
50180
+ exports.IconBeach = IconBeach;
49478
50181
  exports.IconBed = IconBed;
49479
50182
  exports.IconBell = IconBell;
49480
50183
  exports.IconBellMinus = IconBellMinus;
@@ -49540,6 +50243,7 @@
49540
50243
  exports.IconBrandBing = IconBrandBing;
49541
50244
  exports.IconBrandBitbucket = IconBrandBitbucket;
49542
50245
  exports.IconBrandBooking = IconBrandBooking;
50246
+ exports.IconBrandBootstrap = IconBrandBootstrap;
49543
50247
  exports.IconBrandChrome = IconBrandChrome;
49544
50248
  exports.IconBrandCodepen = IconBrandCodepen;
49545
50249
  exports.IconBrandCodesandbox = IconBrandCodesandbox;
@@ -50037,6 +50741,7 @@
50037
50741
  exports.IconHexagonOff = IconHexagonOff;
50038
50742
  exports.IconHierarchy = IconHierarchy;
50039
50743
  exports.IconHierarchy2 = IconHierarchy2;
50744
+ exports.IconHighlight = IconHighlight;
50040
50745
  exports.IconHistory = IconHistory;
50041
50746
  exports.IconHome = IconHome;
50042
50747
  exports.IconHome2 = IconHome2;
@@ -50128,6 +50833,7 @@
50128
50833
  exports.IconLink = IconLink;
50129
50834
  exports.IconList = IconList;
50130
50835
  exports.IconListCheck = IconListCheck;
50836
+ exports.IconListDetails = IconListDetails;
50131
50837
  exports.IconListNumbers = IconListNumbers;
50132
50838
  exports.IconListSearch = IconListSearch;
50133
50839
  exports.IconLivePhoto = IconLivePhoto;
@@ -50209,6 +50915,10 @@
50209
50915
  exports.IconMouse = IconMouse;
50210
50916
  exports.IconMovie = IconMovie;
50211
50917
  exports.IconMug = IconMug;
50918
+ exports.IconMultiplier05x = IconMultiplier05x;
50919
+ exports.IconMultiplier15x = IconMultiplier15x;
50920
+ exports.IconMultiplier1x = IconMultiplier1x;
50921
+ exports.IconMultiplier2x = IconMultiplier2x;
50212
50922
  exports.IconMushroom = IconMushroom;
50213
50923
  exports.IconMusic = IconMusic;
50214
50924
  exports.IconNewSection = IconNewSection;