@tabler/icons 1.46.0 → 1.47.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 (67) hide show
  1. package/iconfont/fonts/tabler-icons.eot +0 -0
  2. package/iconfont/fonts/tabler-icons.svg +98 -44
  3. package/iconfont/fonts/tabler-icons.ttf +0 -0
  4. package/iconfont/fonts/tabler-icons.woff +0 -0
  5. package/iconfont/fonts/tabler-icons.woff2 +0 -0
  6. package/iconfont/tabler-icons.css +73 -1
  7. package/iconfont/tabler-icons.html +164 -2
  8. package/iconfont/tabler-icons.min.css +2 -2
  9. package/iconfont/tabler-icons.scss +37 -1
  10. package/icons/blur.svg +12 -0
  11. package/icons/brand-nytimes.svg +10 -0
  12. package/icons/cpu.svg +15 -0
  13. package/icons/cross.svg +6 -0
  14. package/icons/gavel.svg +10 -0
  15. package/icons/hammer.svg +7 -0
  16. package/icons/heartbeat.svg +7 -0
  17. package/icons/hourglass.svg +9 -0
  18. package/icons/layout-board-split.svg +10 -0
  19. package/icons/layout-board.svg +9 -0
  20. package/icons/mood-nervous.svg +9 -0
  21. package/icons/mountain.svg +7 -0
  22. package/icons/plane-inflight.svg +7 -0
  23. package/icons/prescription.svg +8 -0
  24. package/icons/shield-checkered.svg +8 -0
  25. package/icons/shield-chevron.svg +7 -0
  26. package/icons/sleigh.svg +9 -0
  27. package/icons/stack-2.svg +3 -2
  28. package/icons/stack-3.svg +9 -0
  29. package/icons/stack.svg +2 -3
  30. package/icons-png/.DS_Store +0 -0
  31. package/icons-png/blur.png +0 -0
  32. package/icons-png/brand-nytimes.png +0 -0
  33. package/icons-png/cpu.png +0 -0
  34. package/icons-png/cross.png +0 -0
  35. package/icons-png/gavel.png +0 -0
  36. package/icons-png/hammer.png +0 -0
  37. package/icons-png/heartbeat.png +0 -0
  38. package/icons-png/hourglass.png +0 -0
  39. package/icons-png/layout-board-split.png +0 -0
  40. package/icons-png/layout-board.png +0 -0
  41. package/icons-png/mood-nervous.png +0 -0
  42. package/icons-png/mountain.png +0 -0
  43. package/icons-png/plane-inflight.png +0 -0
  44. package/icons-png/prescription.png +0 -0
  45. package/icons-png/shield-checkered.png +0 -0
  46. package/icons-png/shield-chevron.png +0 -0
  47. package/icons-png/sleigh.png +0 -0
  48. package/icons-png/stack-2.png +0 -0
  49. package/icons-png/stack-3.png +0 -0
  50. package/icons-png/stack.png +0 -0
  51. package/icons-react/dist/index.cjs.js +645 -7
  52. package/icons-react/dist/index.cjs.js.map +1 -1
  53. package/icons-react/dist/index.cjs.min.js +1 -1
  54. package/icons-react/dist/index.cjs.min.js.map +1 -1
  55. package/icons-react/dist/index.esm.js +628 -8
  56. package/icons-react/dist/index.esm.js.map +1 -1
  57. package/icons-react/dist/index.esm.min.js +1 -1
  58. package/icons-react/dist/index.esm.min.js.map +1 -1
  59. package/icons-react/dist/index.umd.js +645 -7
  60. package/icons-react/dist/index.umd.js.map +1 -1
  61. package/icons-react/dist/index.umd.min.js +1 -1
  62. package/icons-react/dist/index.umd.min.js.map +1 -1
  63. package/icons-react/index.d.ts +18 -0
  64. package/package.json +1 -1
  65. package/tabler-sprite-nostroke.svg +1 -1
  66. package/tabler-sprite.svg +1 -1
  67. package/tags.json +177 -17
@@ -6891,6 +6891,46 @@ function IconBluetooth(_ref) {
6891
6891
  }));
6892
6892
  }
6893
6893
 
6894
+ function IconBlur(_ref) {
6895
+ var _ref$size = _ref.size,
6896
+ size = _ref$size === void 0 ? 24 : _ref$size,
6897
+ _ref$color = _ref.color,
6898
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
6899
+ _ref$stroke = _ref.stroke,
6900
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
6901
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
6902
+
6903
+ return /*#__PURE__*/React.createElement("svg", _extends({
6904
+ className: "icon icon-tabler icon-tabler-blur",
6905
+ width: size,
6906
+ height: size,
6907
+ viewBox: "0 0 24 24",
6908
+ strokeWidth: stroke,
6909
+ stroke: color,
6910
+ fill: "none",
6911
+ strokeLinecap: "round",
6912
+ strokeLinejoin: "round"
6913
+ }, props), /*#__PURE__*/React.createElement("path", {
6914
+ stroke: "none",
6915
+ d: "M0 0h24v24H0z",
6916
+ fill: "none"
6917
+ }), /*#__PURE__*/React.createElement("path", {
6918
+ d: "M12 21a9.01 9.01 0 0 0 2.32 -.302a9.004 9.004 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z"
6919
+ }), /*#__PURE__*/React.createElement("path", {
6920
+ d: "M12 3v17"
6921
+ }), /*#__PURE__*/React.createElement("path", {
6922
+ d: "M12 12h9"
6923
+ }), /*#__PURE__*/React.createElement("path", {
6924
+ d: "M12 9h8"
6925
+ }), /*#__PURE__*/React.createElement("path", {
6926
+ d: "M12 6h6"
6927
+ }), /*#__PURE__*/React.createElement("path", {
6928
+ d: "M12 18h6"
6929
+ }), /*#__PURE__*/React.createElement("path", {
6930
+ d: "M12 15h8"
6931
+ }));
6932
+ }
6933
+
6894
6934
  function IconBold(_ref) {
6895
6935
  var _ref$size = _ref.size,
6896
6936
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -11004,6 +11044,42 @@ function IconBrandNotion(_ref) {
11004
11044
  }));
11005
11045
  }
11006
11046
 
11047
+ function IconBrandNytimes(_ref) {
11048
+ var _ref$size = _ref.size,
11049
+ size = _ref$size === void 0 ? 24 : _ref$size,
11050
+ _ref$color = _ref.color,
11051
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
11052
+ _ref$stroke = _ref.stroke,
11053
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
11054
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
11055
+
11056
+ return /*#__PURE__*/React.createElement("svg", _extends({
11057
+ className: "icon icon-tabler icon-tabler-brand-nytimes",
11058
+ width: size,
11059
+ height: size,
11060
+ viewBox: "0 0 24 24",
11061
+ strokeWidth: stroke,
11062
+ stroke: color,
11063
+ fill: "none",
11064
+ strokeLinecap: "round",
11065
+ strokeLinejoin: "round"
11066
+ }, props), /*#__PURE__*/React.createElement("path", {
11067
+ stroke: "none",
11068
+ d: "M0 0h24v24H0z",
11069
+ fill: "none"
11070
+ }), /*#__PURE__*/React.createElement("path", {
11071
+ d: "M11.036 5.058a8.001 8.001 0 1 0 8.706 9.965"
11072
+ }), /*#__PURE__*/React.createElement("path", {
11073
+ d: "M12 21v-11l-7.5 4"
11074
+ }), /*#__PURE__*/React.createElement("path", {
11075
+ d: "M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91"
11076
+ }), /*#__PURE__*/React.createElement("path", {
11077
+ d: "M9 12v8"
11078
+ }), /*#__PURE__*/React.createElement("path", {
11079
+ d: "M16 13h-.01"
11080
+ }));
11081
+ }
11082
+
11007
11083
  function IconBrandOpenSource(_ref) {
11008
11084
  var _ref$size = _ref.size,
11009
11085
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -19488,6 +19564,56 @@ function IconCornerUpRight(_ref) {
19488
19564
  }));
19489
19565
  }
19490
19566
 
19567
+ function IconCpu(_ref) {
19568
+ var _ref$size = _ref.size,
19569
+ size = _ref$size === void 0 ? 24 : _ref$size,
19570
+ _ref$color = _ref.color,
19571
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
19572
+ _ref$stroke = _ref.stroke,
19573
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
19574
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
19575
+
19576
+ return /*#__PURE__*/React.createElement("svg", _extends({
19577
+ className: "icon icon-tabler icon-tabler-cpu",
19578
+ width: size,
19579
+ height: size,
19580
+ viewBox: "0 0 24 24",
19581
+ strokeWidth: stroke,
19582
+ stroke: color,
19583
+ fill: "none",
19584
+ strokeLinecap: "round",
19585
+ strokeLinejoin: "round"
19586
+ }, props), /*#__PURE__*/React.createElement("path", {
19587
+ stroke: "none",
19588
+ d: "M0 0h24v24H0z",
19589
+ fill: "none"
19590
+ }), /*#__PURE__*/React.createElement("rect", {
19591
+ x: 5,
19592
+ y: 5,
19593
+ width: 14,
19594
+ height: 14,
19595
+ rx: 1
19596
+ }), /*#__PURE__*/React.createElement("path", {
19597
+ d: "M9 9h6v6h-6z"
19598
+ }), /*#__PURE__*/React.createElement("path", {
19599
+ d: "M3 10h2"
19600
+ }), /*#__PURE__*/React.createElement("path", {
19601
+ d: "M3 14h2"
19602
+ }), /*#__PURE__*/React.createElement("path", {
19603
+ d: "M10 3v2"
19604
+ }), /*#__PURE__*/React.createElement("path", {
19605
+ d: "M14 3v2"
19606
+ }), /*#__PURE__*/React.createElement("path", {
19607
+ d: "M21 10h-2"
19608
+ }), /*#__PURE__*/React.createElement("path", {
19609
+ d: "M21 14h-2"
19610
+ }), /*#__PURE__*/React.createElement("path", {
19611
+ d: "M14 21v-2"
19612
+ }), /*#__PURE__*/React.createElement("path", {
19613
+ d: "M10 21v-2"
19614
+ }));
19615
+ }
19616
+
19491
19617
  function IconCrane(_ref) {
19492
19618
  var _ref$size = _ref.size,
19493
19619
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -19654,6 +19780,34 @@ function IconCrop(_ref) {
19654
19780
  }));
19655
19781
  }
19656
19782
 
19783
+ function IconCross(_ref) {
19784
+ var _ref$size = _ref.size,
19785
+ size = _ref$size === void 0 ? 24 : _ref$size,
19786
+ _ref$color = _ref.color,
19787
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
19788
+ _ref$stroke = _ref.stroke,
19789
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
19790
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
19791
+
19792
+ return /*#__PURE__*/React.createElement("svg", _extends({
19793
+ className: "icon icon-tabler icon-tabler-cross",
19794
+ width: size,
19795
+ height: size,
19796
+ viewBox: "0 0 24 24",
19797
+ strokeWidth: stroke,
19798
+ stroke: color,
19799
+ fill: "none",
19800
+ strokeLinecap: "round",
19801
+ strokeLinejoin: "round"
19802
+ }, props), /*#__PURE__*/React.createElement("path", {
19803
+ stroke: "none",
19804
+ d: "M0 0h24v24H0z",
19805
+ fill: "none"
19806
+ }), /*#__PURE__*/React.createElement("path", {
19807
+ d: "M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z"
19808
+ }));
19809
+ }
19810
+
19657
19811
  function IconCrosshair(_ref) {
19658
19812
  var _ref$size = _ref.size,
19659
19813
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -27211,6 +27365,42 @@ function IconGauge(_ref) {
27211
27365
  }));
27212
27366
  }
27213
27367
 
27368
+ function IconGavel(_ref) {
27369
+ var _ref$size = _ref.size,
27370
+ size = _ref$size === void 0 ? 24 : _ref$size,
27371
+ _ref$color = _ref.color,
27372
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
27373
+ _ref$stroke = _ref.stroke,
27374
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
27375
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
27376
+
27377
+ return /*#__PURE__*/React.createElement("svg", _extends({
27378
+ className: "icon icon-tabler icon-tabler-gavel",
27379
+ width: size,
27380
+ height: size,
27381
+ viewBox: "0 0 24 24",
27382
+ strokeWidth: stroke,
27383
+ stroke: color,
27384
+ fill: "none",
27385
+ strokeLinecap: "round",
27386
+ strokeLinejoin: "round"
27387
+ }, props), /*#__PURE__*/React.createElement("path", {
27388
+ stroke: "none",
27389
+ d: "M0 0h24v24H0z",
27390
+ fill: "none"
27391
+ }), /*#__PURE__*/React.createElement("path", {
27392
+ d: "M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"
27393
+ }), /*#__PURE__*/React.createElement("path", {
27394
+ d: "M6 9l4 4"
27395
+ }), /*#__PURE__*/React.createElement("path", {
27396
+ d: "M13 10l-4 -4"
27397
+ }), /*#__PURE__*/React.createElement("path", {
27398
+ d: "M3 21h7"
27399
+ }), /*#__PURE__*/React.createElement("path", {
27400
+ d: "M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z"
27401
+ }));
27402
+ }
27403
+
27214
27404
  function IconGeometry(_ref) {
27215
27405
  var _ref$size = _ref.size,
27216
27406
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -28370,6 +28560,36 @@ function IconH6(_ref) {
28370
28560
  }));
28371
28561
  }
28372
28562
 
28563
+ function IconHammer(_ref) {
28564
+ var _ref$size = _ref.size,
28565
+ size = _ref$size === void 0 ? 24 : _ref$size,
28566
+ _ref$color = _ref.color,
28567
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
28568
+ _ref$stroke = _ref.stroke,
28569
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
28570
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
28571
+
28572
+ return /*#__PURE__*/React.createElement("svg", _extends({
28573
+ className: "icon icon-tabler icon-tabler-hammer",
28574
+ width: size,
28575
+ height: size,
28576
+ viewBox: "0 0 24 24",
28577
+ strokeWidth: stroke,
28578
+ stroke: color,
28579
+ fill: "none",
28580
+ strokeLinecap: "round",
28581
+ strokeLinejoin: "round"
28582
+ }, props), /*#__PURE__*/React.createElement("path", {
28583
+ stroke: "none",
28584
+ d: "M0 0h24v24H0z",
28585
+ fill: "none"
28586
+ }), /*#__PURE__*/React.createElement("path", {
28587
+ d: "M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385"
28588
+ }), /*#__PURE__*/React.createElement("path", {
28589
+ d: "M6.293 15.293l-2.586 -2.586a1 1 0 0 1 0 -1.414l7.586 -7.586a1 1 0 0 1 1.414 0l2.586 2.586a1 1 0 0 1 0 1.414l-7.586 7.586a1 1 0 0 1 -1.414 0z"
28590
+ }));
28591
+ }
28592
+
28373
28593
  function IconHandClick(_ref) {
28374
28594
  var _ref$size = _ref.size,
28375
28595
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -29090,6 +29310,36 @@ function IconHeart(_ref) {
29090
29310
  }));
29091
29311
  }
29092
29312
 
29313
+ function IconHeartbeat(_ref) {
29314
+ var _ref$size = _ref.size,
29315
+ size = _ref$size === void 0 ? 24 : _ref$size,
29316
+ _ref$color = _ref.color,
29317
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
29318
+ _ref$stroke = _ref.stroke,
29319
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
29320
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
29321
+
29322
+ return /*#__PURE__*/React.createElement("svg", _extends({
29323
+ className: "icon icon-tabler icon-tabler-heartbeat",
29324
+ width: size,
29325
+ height: size,
29326
+ viewBox: "0 0 24 24",
29327
+ strokeWidth: stroke,
29328
+ stroke: color,
29329
+ fill: "none",
29330
+ strokeLinecap: "round",
29331
+ strokeLinejoin: "round"
29332
+ }, props), /*#__PURE__*/React.createElement("path", {
29333
+ stroke: "none",
29334
+ d: "M0 0h24v24H0z",
29335
+ fill: "none"
29336
+ }), /*#__PURE__*/React.createElement("path", {
29337
+ d: "M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572"
29338
+ }), /*#__PURE__*/React.createElement("path", {
29339
+ d: "M3 13h2l2 3l2 -6l1 3h3"
29340
+ }));
29341
+ }
29342
+
29093
29343
  function IconHelicopterLanding(_ref) {
29094
29344
  var _ref$size = _ref.size,
29095
29345
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -29527,6 +29777,40 @@ function IconHotelService(_ref) {
29527
29777
  }));
29528
29778
  }
29529
29779
 
29780
+ function IconHourglass(_ref) {
29781
+ var _ref$size = _ref.size,
29782
+ size = _ref$size === void 0 ? 24 : _ref$size,
29783
+ _ref$color = _ref.color,
29784
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
29785
+ _ref$stroke = _ref.stroke,
29786
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
29787
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
29788
+
29789
+ return /*#__PURE__*/React.createElement("svg", _extends({
29790
+ className: "icon icon-tabler icon-tabler-hourglass",
29791
+ width: size,
29792
+ height: size,
29793
+ viewBox: "0 0 24 24",
29794
+ strokeWidth: stroke,
29795
+ stroke: color,
29796
+ fill: "none",
29797
+ strokeLinecap: "round",
29798
+ strokeLinejoin: "round"
29799
+ }, props), /*#__PURE__*/React.createElement("path", {
29800
+ stroke: "none",
29801
+ d: "M0 0h24v24H0z",
29802
+ fill: "none"
29803
+ }), /*#__PURE__*/React.createElement("path", {
29804
+ d: "M6.5 7h11"
29805
+ }), /*#__PURE__*/React.createElement("path", {
29806
+ d: "M6.5 17h11"
29807
+ }), /*#__PURE__*/React.createElement("path", {
29808
+ d: "M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z"
29809
+ }), /*#__PURE__*/React.createElement("path", {
29810
+ d: "M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z"
29811
+ }));
29812
+ }
29813
+
29530
29814
  function IconIceCream2(_ref) {
29531
29815
  var _ref$size = _ref.size,
29532
29816
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -30855,6 +31139,84 @@ function IconLayoutAlignTop(_ref) {
30855
31139
  }));
30856
31140
  }
30857
31141
 
31142
+ function IconLayoutBoardSplit(_ref) {
31143
+ var _ref$size = _ref.size,
31144
+ size = _ref$size === void 0 ? 24 : _ref$size,
31145
+ _ref$color = _ref.color,
31146
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
31147
+ _ref$stroke = _ref.stroke,
31148
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
31149
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
31150
+
31151
+ return /*#__PURE__*/React.createElement("svg", _extends({
31152
+ className: "icon icon-tabler icon-tabler-layout-board-split",
31153
+ width: size,
31154
+ height: size,
31155
+ viewBox: "0 0 24 24",
31156
+ strokeWidth: stroke,
31157
+ stroke: color,
31158
+ fill: "none",
31159
+ strokeLinecap: "round",
31160
+ strokeLinejoin: "round"
31161
+ }, props), /*#__PURE__*/React.createElement("path", {
31162
+ stroke: "none",
31163
+ d: "M0 0h24v24H0z",
31164
+ fill: "none"
31165
+ }), /*#__PURE__*/React.createElement("rect", {
31166
+ x: 4,
31167
+ y: 4,
31168
+ width: 16,
31169
+ height: 16,
31170
+ rx: 2
31171
+ }), /*#__PURE__*/React.createElement("path", {
31172
+ d: "M4 12h8"
31173
+ }), /*#__PURE__*/React.createElement("path", {
31174
+ d: "M12 15h8"
31175
+ }), /*#__PURE__*/React.createElement("path", {
31176
+ d: "M12 9h8"
31177
+ }), /*#__PURE__*/React.createElement("path", {
31178
+ d: "M12 4v16"
31179
+ }));
31180
+ }
31181
+
31182
+ function IconLayoutBoard(_ref) {
31183
+ var _ref$size = _ref.size,
31184
+ size = _ref$size === void 0 ? 24 : _ref$size,
31185
+ _ref$color = _ref.color,
31186
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
31187
+ _ref$stroke = _ref.stroke,
31188
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
31189
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
31190
+
31191
+ return /*#__PURE__*/React.createElement("svg", _extends({
31192
+ className: "icon icon-tabler icon-tabler-layout-board",
31193
+ width: size,
31194
+ height: size,
31195
+ viewBox: "0 0 24 24",
31196
+ strokeWidth: stroke,
31197
+ stroke: color,
31198
+ fill: "none",
31199
+ strokeLinecap: "round",
31200
+ strokeLinejoin: "round"
31201
+ }, props), /*#__PURE__*/React.createElement("path", {
31202
+ stroke: "none",
31203
+ d: "M0 0h24v24H0z",
31204
+ fill: "none"
31205
+ }), /*#__PURE__*/React.createElement("rect", {
31206
+ x: 4,
31207
+ y: 4,
31208
+ width: 16,
31209
+ height: 16,
31210
+ rx: 2
31211
+ }), /*#__PURE__*/React.createElement("path", {
31212
+ d: "M4 9h8"
31213
+ }), /*#__PURE__*/React.createElement("path", {
31214
+ d: "M12 15h8"
31215
+ }), /*#__PURE__*/React.createElement("path", {
31216
+ d: "M12 4v16"
31217
+ }));
31218
+ }
31219
+
30858
31220
  function IconLayoutBottombar(_ref) {
30859
31221
  var _ref$size = _ref.size,
30860
31222
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -35854,6 +36216,42 @@ function IconMoodKid(_ref) {
35854
36216
  }));
35855
36217
  }
35856
36218
 
36219
+ function IconMoodNervous(_ref) {
36220
+ var _ref$size = _ref.size,
36221
+ size = _ref$size === void 0 ? 24 : _ref$size,
36222
+ _ref$color = _ref.color,
36223
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
36224
+ _ref$stroke = _ref.stroke,
36225
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
36226
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
36227
+
36228
+ return /*#__PURE__*/React.createElement("svg", _extends({
36229
+ className: "icon icon-tabler icon-tabler-mood-nervous",
36230
+ width: size,
36231
+ height: size,
36232
+ viewBox: "0 0 24 24",
36233
+ strokeWidth: stroke,
36234
+ stroke: color,
36235
+ fill: "none",
36236
+ strokeLinecap: "round",
36237
+ strokeLinejoin: "round"
36238
+ }, props), /*#__PURE__*/React.createElement("path", {
36239
+ stroke: "none",
36240
+ d: "M0 0h24v24H0z",
36241
+ fill: "none"
36242
+ }), /*#__PURE__*/React.createElement("circle", {
36243
+ cx: 12,
36244
+ cy: 12,
36245
+ r: 9
36246
+ }), /*#__PURE__*/React.createElement("path", {
36247
+ d: "M9 10h.01"
36248
+ }), /*#__PURE__*/React.createElement("path", {
36249
+ d: "M15 10h.01"
36250
+ }), /*#__PURE__*/React.createElement("path", {
36251
+ d: "M8 16l2 -2l2 2l2 -2l2 2"
36252
+ }));
36253
+ }
36254
+
35857
36255
  function IconMoodNeutral(_ref) {
35858
36256
  var _ref$size = _ref.size,
35859
36257
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -36231,6 +36629,36 @@ function IconMotorbike(_ref) {
36231
36629
  }));
36232
36630
  }
36233
36631
 
36632
+ function IconMountain(_ref) {
36633
+ var _ref$size = _ref.size,
36634
+ size = _ref$size === void 0 ? 24 : _ref$size,
36635
+ _ref$color = _ref.color,
36636
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
36637
+ _ref$stroke = _ref.stroke,
36638
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
36639
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
36640
+
36641
+ return /*#__PURE__*/React.createElement("svg", _extends({
36642
+ className: "icon icon-tabler icon-tabler-mountain",
36643
+ width: size,
36644
+ height: size,
36645
+ viewBox: "0 0 24 24",
36646
+ strokeWidth: stroke,
36647
+ stroke: color,
36648
+ fill: "none",
36649
+ strokeLinecap: "round",
36650
+ strokeLinejoin: "round"
36651
+ }, props), /*#__PURE__*/React.createElement("path", {
36652
+ stroke: "none",
36653
+ d: "M0 0h24v24H0z",
36654
+ fill: "none"
36655
+ }), /*#__PURE__*/React.createElement("path", {
36656
+ d: "M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z"
36657
+ }), /*#__PURE__*/React.createElement("path", {
36658
+ d: "M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2"
36659
+ }));
36660
+ }
36661
+
36234
36662
  function IconMouse(_ref) {
36235
36663
  var _ref$size = _ref.size,
36236
36664
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -38895,6 +39323,36 @@ function IconPlaneDeparture(_ref) {
38895
39323
  }));
38896
39324
  }
38897
39325
 
39326
+ function IconPlaneInflight(_ref) {
39327
+ var _ref$size = _ref.size,
39328
+ size = _ref$size === void 0 ? 24 : _ref$size,
39329
+ _ref$color = _ref.color,
39330
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
39331
+ _ref$stroke = _ref.stroke,
39332
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
39333
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
39334
+
39335
+ return /*#__PURE__*/React.createElement("svg", _extends({
39336
+ className: "icon icon-tabler icon-tabler-plane-inflight",
39337
+ width: size,
39338
+ height: size,
39339
+ viewBox: "0 0 24 24",
39340
+ strokeWidth: stroke,
39341
+ stroke: color,
39342
+ fill: "none",
39343
+ strokeLinecap: "round",
39344
+ strokeLinejoin: "round"
39345
+ }, props), /*#__PURE__*/React.createElement("path", {
39346
+ stroke: "none",
39347
+ d: "M0 0h24v24H0z",
39348
+ fill: "none"
39349
+ }), /*#__PURE__*/React.createElement("path", {
39350
+ d: "M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z"
39351
+ }), /*#__PURE__*/React.createElement("path", {
39352
+ d: "M3 21h18"
39353
+ }));
39354
+ }
39355
+
38898
39356
  function IconPlane(_ref) {
38899
39357
  var _ref$size = _ref.size,
38900
39358
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -39666,6 +40124,38 @@ function IconPray(_ref) {
39666
40124
  }));
39667
40125
  }
39668
40126
 
40127
+ function IconPrescription(_ref) {
40128
+ var _ref$size = _ref.size,
40129
+ size = _ref$size === void 0 ? 24 : _ref$size,
40130
+ _ref$color = _ref.color,
40131
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
40132
+ _ref$stroke = _ref.stroke,
40133
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
40134
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
40135
+
40136
+ return /*#__PURE__*/React.createElement("svg", _extends({
40137
+ className: "icon icon-tabler icon-tabler-prescription",
40138
+ width: size,
40139
+ height: size,
40140
+ viewBox: "0 0 24 24",
40141
+ strokeWidth: stroke,
40142
+ stroke: color,
40143
+ fill: "none",
40144
+ strokeLinecap: "round",
40145
+ strokeLinejoin: "round"
40146
+ }, props), /*#__PURE__*/React.createElement("path", {
40147
+ stroke: "none",
40148
+ d: "M0 0h24v24H0z",
40149
+ fill: "none"
40150
+ }), /*#__PURE__*/React.createElement("path", {
40151
+ d: "M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5"
40152
+ }), /*#__PURE__*/React.createElement("path", {
40153
+ d: "M19 21l-9 -9"
40154
+ }), /*#__PURE__*/React.createElement("path", {
40155
+ d: "M13 21l6 -6"
40156
+ }));
40157
+ }
40158
+
39669
40159
  function IconPresentationAnalytics(_ref) {
39670
40160
  var _ref$size = _ref.size,
39671
40161
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -43231,6 +43721,68 @@ function IconShieldCheck(_ref) {
43231
43721
  }));
43232
43722
  }
43233
43723
 
43724
+ function IconShieldCheckered(_ref) {
43725
+ var _ref$size = _ref.size,
43726
+ size = _ref$size === void 0 ? 24 : _ref$size,
43727
+ _ref$color = _ref.color,
43728
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
43729
+ _ref$stroke = _ref.stroke,
43730
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
43731
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
43732
+
43733
+ return /*#__PURE__*/React.createElement("svg", _extends({
43734
+ className: "icon icon-tabler icon-tabler-shield-checkered",
43735
+ width: size,
43736
+ height: size,
43737
+ viewBox: "0 0 24 24",
43738
+ strokeWidth: stroke,
43739
+ stroke: color,
43740
+ fill: "none",
43741
+ strokeLinecap: "round",
43742
+ strokeLinejoin: "round"
43743
+ }, props), /*#__PURE__*/React.createElement("path", {
43744
+ stroke: "none",
43745
+ d: "M0 0h24v24H0z",
43746
+ fill: "none"
43747
+ }), /*#__PURE__*/React.createElement("path", {
43748
+ d: "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"
43749
+ }), /*#__PURE__*/React.createElement("path", {
43750
+ d: "M12 3v18"
43751
+ }), /*#__PURE__*/React.createElement("path", {
43752
+ d: "M3.5 12h17"
43753
+ }));
43754
+ }
43755
+
43756
+ function IconShieldChevron(_ref) {
43757
+ var _ref$size = _ref.size,
43758
+ size = _ref$size === void 0 ? 24 : _ref$size,
43759
+ _ref$color = _ref.color,
43760
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
43761
+ _ref$stroke = _ref.stroke,
43762
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
43763
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
43764
+
43765
+ return /*#__PURE__*/React.createElement("svg", _extends({
43766
+ className: "icon icon-tabler icon-tabler-shield-chevron",
43767
+ width: size,
43768
+ height: size,
43769
+ viewBox: "0 0 24 24",
43770
+ strokeWidth: stroke,
43771
+ stroke: color,
43772
+ fill: "none",
43773
+ strokeLinecap: "round",
43774
+ strokeLinejoin: "round"
43775
+ }, props), /*#__PURE__*/React.createElement("path", {
43776
+ stroke: "none",
43777
+ d: "M0 0h24v24H0z",
43778
+ fill: "none"
43779
+ }), /*#__PURE__*/React.createElement("path", {
43780
+ d: "M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3"
43781
+ }), /*#__PURE__*/React.createElement("path", {
43782
+ d: "M4 14l8 -3l8 3"
43783
+ }));
43784
+ }
43785
+
43234
43786
  function IconShieldLock(_ref) {
43235
43787
  var _ref$size = _ref.size,
43236
43788
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -43776,6 +44328,40 @@ function IconSkateboard(_ref) {
43776
44328
  }));
43777
44329
  }
43778
44330
 
44331
+ function IconSleigh(_ref) {
44332
+ var _ref$size = _ref.size,
44333
+ size = _ref$size === void 0 ? 24 : _ref$size,
44334
+ _ref$color = _ref.color,
44335
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
44336
+ _ref$stroke = _ref.stroke,
44337
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
44338
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
44339
+
44340
+ return /*#__PURE__*/React.createElement("svg", _extends({
44341
+ className: "icon icon-tabler icon-tabler-sleigh",
44342
+ width: size,
44343
+ height: size,
44344
+ viewBox: "0 0 24 24",
44345
+ strokeWidth: stroke,
44346
+ stroke: color,
44347
+ fill: "none",
44348
+ strokeLinecap: "round",
44349
+ strokeLinejoin: "round"
44350
+ }, props), /*#__PURE__*/React.createElement("path", {
44351
+ stroke: "none",
44352
+ d: "M0 0h24v24H0z",
44353
+ fill: "none"
44354
+ }), /*#__PURE__*/React.createElement("path", {
44355
+ d: "M3 19h15a4 4 0 0 0 4 -4"
44356
+ }), /*#__PURE__*/React.createElement("path", {
44357
+ d: "M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z"
44358
+ }), /*#__PURE__*/React.createElement("path", {
44359
+ d: "M15 15v4"
44360
+ }), /*#__PURE__*/React.createElement("path", {
44361
+ d: "M7 15v4"
44362
+ }));
44363
+ }
44364
+
43779
44365
  function IconSlice(_ref) {
43780
44366
  var _ref$size = _ref.size,
43781
44367
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -45675,8 +46261,44 @@ function IconStack2(_ref) {
45675
46261
  stroke: "none",
45676
46262
  d: "M0 0h24v24H0z",
45677
46263
  fill: "none"
46264
+ }), /*#__PURE__*/React.createElement("polyline", {
46265
+ points: "12 4 4 8 12 12 20 8 12 4"
46266
+ }), /*#__PURE__*/React.createElement("polyline", {
46267
+ points: "4 12 12 16 20 12"
46268
+ }), /*#__PURE__*/React.createElement("polyline", {
46269
+ points: "4 16 12 20 20 16"
46270
+ }));
46271
+ }
46272
+
46273
+ function IconStack3(_ref) {
46274
+ var _ref$size = _ref.size,
46275
+ size = _ref$size === void 0 ? 24 : _ref$size,
46276
+ _ref$color = _ref.color,
46277
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
46278
+ _ref$stroke = _ref.stroke,
46279
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
46280
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
46281
+
46282
+ return /*#__PURE__*/React.createElement("svg", _extends({
46283
+ className: "icon icon-tabler icon-tabler-stack-3",
46284
+ width: size,
46285
+ height: size,
46286
+ viewBox: "0 0 24 24",
46287
+ strokeWidth: stroke,
46288
+ stroke: color,
46289
+ fill: "none",
46290
+ strokeLinecap: "round",
46291
+ strokeLinejoin: "round"
46292
+ }, props), /*#__PURE__*/React.createElement("path", {
46293
+ stroke: "none",
46294
+ d: "M0 0h24v24H0z",
46295
+ fill: "none"
45678
46296
  }), /*#__PURE__*/React.createElement("path", {
45679
- d: "M12 6l-8 4l8 4l8 -4l-8 -4"
46297
+ d: "M12 2l-8 4l8 4l8 -4l-8 -4"
46298
+ }), /*#__PURE__*/React.createElement("path", {
46299
+ d: "M4 10l8 4l8 -4"
46300
+ }), /*#__PURE__*/React.createElement("path", {
46301
+ d: "M4 18l8 4l8 -4"
45680
46302
  }), /*#__PURE__*/React.createElement("path", {
45681
46303
  d: "M4 14l8 4l8 -4"
45682
46304
  }));
@@ -45705,12 +46327,10 @@ function IconStack(_ref) {
45705
46327
  stroke: "none",
45706
46328
  d: "M0 0h24v24H0z",
45707
46329
  fill: "none"
45708
- }), /*#__PURE__*/React.createElement("polyline", {
45709
- points: "12 4 4 8 12 12 20 8 12 4"
45710
- }), /*#__PURE__*/React.createElement("polyline", {
45711
- points: "4 12 12 16 20 12"
45712
- }), /*#__PURE__*/React.createElement("polyline", {
45713
- points: "4 16 12 20 20 16"
46330
+ }), /*#__PURE__*/React.createElement("path", {
46331
+ d: "M12 6l-8 4l8 4l8 -4l-8 -4"
46332
+ }), /*#__PURE__*/React.createElement("path", {
46333
+ d: "M4 14l8 4l8 -4"
45714
46334
  }));
45715
46335
  }
45716
46336
 
@@ -52790,6 +53410,7 @@ exports.IconBlockquote = IconBlockquote;
52790
53410
  exports.IconBluetooth = IconBluetooth;
52791
53411
  exports.IconBluetoothConnected = IconBluetoothConnected;
52792
53412
  exports.IconBluetoothOff = IconBluetoothOff;
53413
+ exports.IconBlur = IconBlur;
52793
53414
  exports.IconBold = IconBold;
52794
53415
  exports.IconBolt = IconBolt;
52795
53416
  exports.IconBoltOff = IconBoltOff;
@@ -52885,6 +53506,7 @@ exports.IconBrandMessenger = IconBrandMessenger;
52885
53506
  exports.IconBrandNetbeans = IconBrandNetbeans;
52886
53507
  exports.IconBrandNetflix = IconBrandNetflix;
52887
53508
  exports.IconBrandNotion = IconBrandNotion;
53509
+ exports.IconBrandNytimes = IconBrandNytimes;
52888
53510
  exports.IconBrandOpenSource = IconBrandOpenSource;
52889
53511
  exports.IconBrandOpera = IconBrandOpera;
52890
53512
  exports.IconBrandPagekit = IconBrandPagekit;
@@ -53115,10 +53737,12 @@ exports.IconCornerUpLeft = IconCornerUpLeft;
53115
53737
  exports.IconCornerUpLeftDouble = IconCornerUpLeftDouble;
53116
53738
  exports.IconCornerUpRight = IconCornerUpRight;
53117
53739
  exports.IconCornerUpRightDouble = IconCornerUpRightDouble;
53740
+ exports.IconCpu = IconCpu;
53118
53741
  exports.IconCrane = IconCrane;
53119
53742
  exports.IconCreditCard = IconCreditCard;
53120
53743
  exports.IconCreditCardOff = IconCreditCardOff;
53121
53744
  exports.IconCrop = IconCrop;
53745
+ exports.IconCross = IconCross;
53122
53746
  exports.IconCrosshair = IconCrosshair;
53123
53747
  exports.IconCrown = IconCrown;
53124
53748
  exports.IconCrownOff = IconCrownOff;
@@ -53320,6 +53944,7 @@ exports.IconFrame = IconFrame;
53320
53944
  exports.IconFriends = IconFriends;
53321
53945
  exports.IconGasStation = IconGasStation;
53322
53946
  exports.IconGauge = IconGauge;
53947
+ exports.IconGavel = IconGavel;
53323
53948
  exports.IconGeometry = IconGeometry;
53324
53949
  exports.IconGhost = IconGhost;
53325
53950
  exports.IconGift = IconGift;
@@ -53347,6 +53972,7 @@ exports.IconH3 = IconH3;
53347
53972
  exports.IconH4 = IconH4;
53348
53973
  exports.IconH5 = IconH5;
53349
53974
  exports.IconH6 = IconH6;
53975
+ exports.IconHammer = IconHammer;
53350
53976
  exports.IconHandClick = IconHandClick;
53351
53977
  exports.IconHandFinger = IconHandFinger;
53352
53978
  exports.IconHandLittleFinger = IconHandLittleFinger;
@@ -53367,6 +53993,7 @@ exports.IconHeadset = IconHeadset;
53367
53993
  exports.IconHeart = IconHeart;
53368
53994
  exports.IconHeartBroken = IconHeartBroken;
53369
53995
  exports.IconHeartRateMonitor = IconHeartRateMonitor;
53996
+ exports.IconHeartbeat = IconHeartbeat;
53370
53997
  exports.IconHelicopter = IconHelicopter;
53371
53998
  exports.IconHelicopterLanding = IconHelicopterLanding;
53372
53999
  exports.IconHelp = IconHelp;
@@ -53379,6 +54006,7 @@ exports.IconHistory = IconHistory;
53379
54006
  exports.IconHome = IconHome;
53380
54007
  exports.IconHome2 = IconHome2;
53381
54008
  exports.IconHotelService = IconHotelService;
54009
+ exports.IconHourglass = IconHourglass;
53382
54010
  exports.IconIceCream = IconIceCream;
53383
54011
  exports.IconIceCream2 = IconIceCream2;
53384
54012
  exports.IconId = IconId;
@@ -53412,6 +54040,8 @@ exports.IconLayoutAlignLeft = IconLayoutAlignLeft;
53412
54040
  exports.IconLayoutAlignMiddle = IconLayoutAlignMiddle;
53413
54041
  exports.IconLayoutAlignRight = IconLayoutAlignRight;
53414
54042
  exports.IconLayoutAlignTop = IconLayoutAlignTop;
54043
+ exports.IconLayoutBoard = IconLayoutBoard;
54044
+ exports.IconLayoutBoardSplit = IconLayoutBoardSplit;
53415
54045
  exports.IconLayoutBottombar = IconLayoutBottombar;
53416
54046
  exports.IconLayoutCards = IconLayoutCards;
53417
54047
  exports.IconLayoutColumns = IconLayoutColumns;
@@ -53544,6 +54174,7 @@ exports.IconMoodCry = IconMoodCry;
53544
54174
  exports.IconMoodEmpty = IconMoodEmpty;
53545
54175
  exports.IconMoodHappy = IconMoodHappy;
53546
54176
  exports.IconMoodKid = IconMoodKid;
54177
+ exports.IconMoodNervous = IconMoodNervous;
53547
54178
  exports.IconMoodNeutral = IconMoodNeutral;
53548
54179
  exports.IconMoodSad = IconMoodSad;
53549
54180
  exports.IconMoodSmile = IconMoodSmile;
@@ -53554,6 +54185,7 @@ exports.IconMoon2 = IconMoon2;
53554
54185
  exports.IconMoonStars = IconMoonStars;
53555
54186
  exports.IconMoped = IconMoped;
53556
54187
  exports.IconMotorbike = IconMotorbike;
54188
+ exports.IconMountain = IconMountain;
53557
54189
  exports.IconMouse = IconMouse;
53558
54190
  exports.IconMovie = IconMovie;
53559
54191
  exports.IconMug = IconMug;
@@ -53631,6 +54263,7 @@ exports.IconPizza = IconPizza;
53631
54263
  exports.IconPlane = IconPlane;
53632
54264
  exports.IconPlaneArrival = IconPlaneArrival;
53633
54265
  exports.IconPlaneDeparture = IconPlaneDeparture;
54266
+ exports.IconPlaneInflight = IconPlaneInflight;
53634
54267
  exports.IconPlanet = IconPlanet;
53635
54268
  exports.IconPlant = IconPlant;
53636
54269
  exports.IconPlant2 = IconPlant2;
@@ -53652,6 +54285,7 @@ exports.IconPolaroid = IconPolaroid;
53652
54285
  exports.IconPool = IconPool;
53653
54286
  exports.IconPower = IconPower;
53654
54287
  exports.IconPray = IconPray;
54288
+ exports.IconPrescription = IconPrescription;
53655
54289
  exports.IconPresentation = IconPresentation;
53656
54290
  exports.IconPresentationAnalytics = IconPresentationAnalytics;
53657
54291
  exports.IconPrinter = IconPrinter;
@@ -53747,6 +54381,8 @@ exports.IconShape3 = IconShape3;
53747
54381
  exports.IconShare = IconShare;
53748
54382
  exports.IconShield = IconShield;
53749
54383
  exports.IconShieldCheck = IconShieldCheck;
54384
+ exports.IconShieldCheckered = IconShieldCheckered;
54385
+ exports.IconShieldChevron = IconShieldChevron;
53750
54386
  exports.IconShieldLock = IconShieldLock;
53751
54387
  exports.IconShieldOff = IconShieldOff;
53752
54388
  exports.IconShieldX = IconShieldX;
@@ -53761,6 +54397,7 @@ exports.IconShredder = IconShredder;
53761
54397
  exports.IconSignature = IconSignature;
53762
54398
  exports.IconSitemap = IconSitemap;
53763
54399
  exports.IconSkateboard = IconSkateboard;
54400
+ exports.IconSleigh = IconSleigh;
53764
54401
  exports.IconSlice = IconSlice;
53765
54402
  exports.IconSlideshow = IconSlideshow;
53766
54403
  exports.IconSmartHome = IconSmartHome;
@@ -53814,6 +54451,7 @@ exports.IconSquaresDiagonal = IconSquaresDiagonal;
53814
54451
  exports.IconSquaresFilled = IconSquaresFilled;
53815
54452
  exports.IconStack = IconStack;
53816
54453
  exports.IconStack2 = IconStack2;
54454
+ exports.IconStack3 = IconStack3;
53817
54455
  exports.IconStairs = IconStairs;
53818
54456
  exports.IconStairsDown = IconStairsDown;
53819
54457
  exports.IconStairsUp = IconStairsUp;