@tabler/icons 1.44.0 → 1.45.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 (69) hide show
  1. package/README.md +41 -0
  2. package/iconfont/fonts/tabler-icons.eot +0 -0
  3. package/iconfont/fonts/tabler-icons.svg +105 -54
  4. package/iconfont/fonts/tabler-icons.ttf +0 -0
  5. package/iconfont/fonts/tabler-icons.woff +0 -0
  6. package/iconfont/fonts/tabler-icons.woff2 +0 -0
  7. package/iconfont/tabler-icons.css +69 -1
  8. package/iconfont/tabler-icons.html +155 -2
  9. package/iconfont/tabler-icons.min.css +2 -2
  10. package/iconfont/tabler-icons.scss +35 -1
  11. package/icons/.DS_Store +0 -0
  12. package/icons/brand-airtable.svg +8 -0
  13. package/icons/brand-angular.svg +8 -0
  14. package/icons/brand-cucumber.svg +13 -0
  15. package/icons/brand-doctrine.svg +9 -0
  16. package/icons/brand-firebase.svg +8 -0
  17. package/icons/brand-git.svg +12 -0
  18. package/icons/brand-loom.svg +9 -0
  19. package/icons/brand-netbeans.svg +12 -0
  20. package/icons/brand-php.svg +10 -0
  21. package/icons/brand-react-native.svg +12 -0
  22. package/icons/brand-sublime-text.svg +9 -0
  23. package/icons/brand-uber.svg +8 -0
  24. package/icons/brand-visual-studio.svg +6 -0
  25. package/icons/currency-dogecoin.svg +2 -2
  26. package/icons/language-hiragana.svg +10 -0
  27. package/icons/language-katakana.svg +9 -0
  28. package/icons/language.svg +5 -2
  29. package/icons/prison.svg +13 -0
  30. package/icons/strikethrough.svg +2 -2
  31. package/icons/wall.svg +14 -0
  32. package/icons-png/.DS_Store +0 -0
  33. package/icons-png/brand-airtable.png +0 -0
  34. package/icons-png/brand-angular.png +0 -0
  35. package/icons-png/brand-cucumber.png +0 -0
  36. package/icons-png/brand-doctrine.png +0 -0
  37. package/icons-png/brand-firebase.png +0 -0
  38. package/icons-png/brand-git.png +0 -0
  39. package/icons-png/brand-loom.png +0 -0
  40. package/icons-png/brand-netbeans.png +0 -0
  41. package/icons-png/brand-php.png +0 -0
  42. package/icons-png/brand-react-native.png +0 -0
  43. package/icons-png/brand-sublime-text.png +0 -0
  44. package/icons-png/brand-uber.png +0 -0
  45. package/icons-png/brand-visual-studio.png +0 -0
  46. package/icons-png/currency-dogecoin.png +0 -0
  47. package/icons-png/language-hiragana.png +0 -0
  48. package/icons-png/language-katakana.png +0 -0
  49. package/icons-png/language.png +0 -0
  50. package/icons-png/prison.png +0 -0
  51. package/icons-png/strikethrough.png +0 -0
  52. package/icons-png/wall.png +0 -0
  53. package/icons-react/dist/index.cjs.js +666 -7
  54. package/icons-react/dist/index.cjs.js.map +1 -1
  55. package/icons-react/dist/index.cjs.min.js +1 -1
  56. package/icons-react/dist/index.cjs.min.js.map +1 -1
  57. package/icons-react/dist/index.esm.js +650 -8
  58. package/icons-react/dist/index.esm.js.map +1 -1
  59. package/icons-react/dist/index.esm.min.js +1 -1
  60. package/icons-react/dist/index.esm.min.js.map +1 -1
  61. package/icons-react/dist/index.umd.js +666 -7
  62. package/icons-react/dist/index.umd.js.map +1 -1
  63. package/icons-react/dist/index.umd.min.js +1 -1
  64. package/icons-react/dist/index.umd.min.js.map +1 -1
  65. package/icons-react/index.d.ts +17 -0
  66. package/package.json +1 -1
  67. package/tabler-sprite-nostroke.svg +1 -1
  68. package/tabler-sprite.svg +1 -1
  69. package/tags.json +198 -20
@@ -9064,6 +9064,38 @@ function IconBrandAirbnb(_ref) {
9064
9064
  }));
9065
9065
  }
9066
9066
 
9067
+ function IconBrandAirtable(_ref) {
9068
+ var _ref$size = _ref.size,
9069
+ size = _ref$size === void 0 ? 24 : _ref$size,
9070
+ _ref$color = _ref.color,
9071
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
9072
+ _ref$stroke = _ref.stroke,
9073
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
9074
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
9075
+
9076
+ return /*#__PURE__*/React.createElement("svg", _extends({
9077
+ className: "icon icon-tabler icon-tabler-brand-airtable",
9078
+ width: size,
9079
+ height: size,
9080
+ viewBox: "0 0 24 24",
9081
+ strokeWidth: stroke,
9082
+ stroke: color,
9083
+ fill: "none",
9084
+ strokeLinecap: "round",
9085
+ strokeLinejoin: "round"
9086
+ }, props), /*#__PURE__*/React.createElement("path", {
9087
+ stroke: "none",
9088
+ d: "M0 0h24v24H0z",
9089
+ fill: "none"
9090
+ }), /*#__PURE__*/React.createElement("path", {
9091
+ d: "M3 10v8l7 -3v-2.6z"
9092
+ }), /*#__PURE__*/React.createElement("path", {
9093
+ d: "M3 6l9 3l9 -3l-9 -3z"
9094
+ }), /*#__PURE__*/React.createElement("path", {
9095
+ d: "M14 12.3v8.7l7 -3v-8z"
9096
+ }));
9097
+ }
9098
+
9067
9099
  function IconBrandAndroid(_ref) {
9068
9100
  var _ref$size = _ref.size,
9069
9101
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -9122,6 +9154,38 @@ function IconBrandAndroid(_ref) {
9122
9154
  }));
9123
9155
  }
9124
9156
 
9157
+ function IconBrandAngular(_ref) {
9158
+ var _ref$size = _ref.size,
9159
+ size = _ref$size === void 0 ? 24 : _ref$size,
9160
+ _ref$color = _ref.color,
9161
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
9162
+ _ref$stroke = _ref.stroke,
9163
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
9164
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
9165
+
9166
+ return /*#__PURE__*/React.createElement("svg", _extends({
9167
+ className: "icon icon-tabler icon-tabler-brand-angular",
9168
+ width: size,
9169
+ height: size,
9170
+ viewBox: "0 0 24 24",
9171
+ strokeWidth: stroke,
9172
+ stroke: color,
9173
+ fill: "none",
9174
+ strokeLinecap: "round",
9175
+ strokeLinejoin: "round"
9176
+ }, props), /*#__PURE__*/React.createElement("path", {
9177
+ stroke: "none",
9178
+ d: "M0 0h24v24H0z",
9179
+ fill: "none"
9180
+ }), /*#__PURE__*/React.createElement("path", {
9181
+ d: "M5.428 17.245l6.076 3.471a1 1 0 0 0 .992 0l6.076 -3.471a1 1 0 0 0 .495 -.734l1.323 -9.704a1 1 0 0 0 -.658 -1.078l-7.4 -2.612a1 1 0 0 0 -.665 0l-7.399 2.613a1 1 0 0 0 -.658 1.078l1.323 9.704a1 1 0 0 0 .495 .734z"
9182
+ }), /*#__PURE__*/React.createElement("path", {
9183
+ d: "M9 15l3 -8l3 8"
9184
+ }), /*#__PURE__*/React.createElement("path", {
9185
+ d: "M10 13h4"
9186
+ }));
9187
+ }
9188
+
9125
9189
  function IconBrandAppleArcade(_ref) {
9126
9190
  var _ref$size = _ref.size,
9127
9191
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -9604,6 +9668,48 @@ function IconBrandCss3(_ref) {
9604
9668
  }));
9605
9669
  }
9606
9670
 
9671
+ function IconBrandCucumber(_ref) {
9672
+ var _ref$size = _ref.size,
9673
+ size = _ref$size === void 0 ? 24 : _ref$size,
9674
+ _ref$color = _ref.color,
9675
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
9676
+ _ref$stroke = _ref.stroke,
9677
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
9678
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
9679
+
9680
+ return /*#__PURE__*/React.createElement("svg", _extends({
9681
+ className: "icon icon-tabler icon-tabler-brand-cucumber",
9682
+ width: size,
9683
+ height: size,
9684
+ viewBox: "0 0 24 24",
9685
+ strokeWidth: stroke,
9686
+ stroke: color,
9687
+ fill: "none",
9688
+ strokeLinecap: "round",
9689
+ strokeLinejoin: "round"
9690
+ }, props), /*#__PURE__*/React.createElement("path", {
9691
+ stroke: "none",
9692
+ d: "M0 0h24v24H0z",
9693
+ fill: "none"
9694
+ }), /*#__PURE__*/React.createElement("path", {
9695
+ d: "M20 10.99c-.01 5.52 -4.48 10 -10 10.01v-2.26l-.01 -.01c-4.28 -1.11 -6.86 -5.47 -5.76 -9.75a8.001 8.001 0 0 1 9.74 -5.76c3.53 .91 6.03 4.13 6.03 7.78v-.01z"
9696
+ }), /*#__PURE__*/React.createElement("path", {
9697
+ d: "M10.5 8l-.5 -1"
9698
+ }), /*#__PURE__*/React.createElement("path", {
9699
+ d: "M13.5 14l.5 1"
9700
+ }), /*#__PURE__*/React.createElement("path", {
9701
+ d: "M9 12.5l-1 .5"
9702
+ }), /*#__PURE__*/React.createElement("path", {
9703
+ d: "M11 14l-.5 1"
9704
+ }), /*#__PURE__*/React.createElement("path", {
9705
+ d: "M13 8l.5 -1"
9706
+ }), /*#__PURE__*/React.createElement("path", {
9707
+ d: "M16 12.5l-1 -.5"
9708
+ }), /*#__PURE__*/React.createElement("path", {
9709
+ d: "M9 10l-1 -.5"
9710
+ }));
9711
+ }
9712
+
9607
9713
  function IconBrandDebian(_ref) {
9608
9714
  var _ref$size = _ref.size,
9609
9715
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -9783,6 +9889,42 @@ function IconBrandDocker(_ref) {
9783
9889
  }));
9784
9890
  }
9785
9891
 
9892
+ function IconBrandDoctrine(_ref) {
9893
+ var _ref$size = _ref.size,
9894
+ size = _ref$size === void 0 ? 24 : _ref$size,
9895
+ _ref$color = _ref.color,
9896
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
9897
+ _ref$stroke = _ref.stroke,
9898
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
9899
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
9900
+
9901
+ return /*#__PURE__*/React.createElement("svg", _extends({
9902
+ className: "icon icon-tabler icon-tabler-brand-doctrine",
9903
+ width: size,
9904
+ height: size,
9905
+ viewBox: "0 0 24 24",
9906
+ strokeWidth: stroke,
9907
+ stroke: color,
9908
+ fill: "none",
9909
+ strokeLinecap: "round",
9910
+ strokeLinejoin: "round"
9911
+ }, props), /*#__PURE__*/React.createElement("path", {
9912
+ stroke: "none",
9913
+ d: "M0 0h24v24H0z",
9914
+ fill: "none"
9915
+ }), /*#__PURE__*/React.createElement("circle", {
9916
+ cx: 12,
9917
+ cy: 14,
9918
+ r: 7
9919
+ }), /*#__PURE__*/React.createElement("path", {
9920
+ d: "M9 14h6"
9921
+ }), /*#__PURE__*/React.createElement("path", {
9922
+ d: "M12 11l3 3l-3 3"
9923
+ }), /*#__PURE__*/React.createElement("path", {
9924
+ d: "M10 3l6.9 6"
9925
+ }));
9926
+ }
9927
+
9786
9928
  function IconBrandDribbble(_ref) {
9787
9929
  var _ref$size = _ref.size,
9788
9930
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -9919,6 +10061,38 @@ function IconBrandFigma(_ref) {
9919
10061
  }));
9920
10062
  }
9921
10063
 
10064
+ function IconBrandFirebase(_ref) {
10065
+ var _ref$size = _ref.size,
10066
+ size = _ref$size === void 0 ? 24 : _ref$size,
10067
+ _ref$color = _ref.color,
10068
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
10069
+ _ref$stroke = _ref.stroke,
10070
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
10071
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
10072
+
10073
+ return /*#__PURE__*/React.createElement("svg", _extends({
10074
+ className: "icon icon-tabler icon-tabler-brand-firebase",
10075
+ width: size,
10076
+ height: size,
10077
+ viewBox: "0 0 24 24",
10078
+ strokeWidth: stroke,
10079
+ stroke: color,
10080
+ fill: "none",
10081
+ strokeLinecap: "round",
10082
+ strokeLinejoin: "round"
10083
+ }, props), /*#__PURE__*/React.createElement("path", {
10084
+ stroke: "none",
10085
+ d: "M0 0h24v24H0z",
10086
+ fill: "none"
10087
+ }), /*#__PURE__*/React.createElement("path", {
10088
+ d: "M4.53 17.05l6.15 -11.72h-.02c.38 -.74 1.28 -1.02 2.01 -.63c.26 .14 .48 .36 .62 .62l1.06 2.01"
10089
+ }), /*#__PURE__*/React.createElement("path", {
10090
+ d: "M15.47 6.45c.58 -.59 1.53 -.59 2.11 -.01c.22 .22 .36 .5 .41 .81l1.5 9.11c.1 .62 -.2 1.24 -.76 1.54l-6.07 2.9c-.46 .25 -1.01 .26 -1.46 0l-6.02 -2.92c-.55 -.31 -.85 -.92 -.75 -1.54l1.96 -12.04c.12 -.82 .89 -1.38 1.7 -1.25c.46 .07 .87 .36 1.09 .77l1.24 1.76"
10091
+ }), /*#__PURE__*/React.createElement("path", {
10092
+ d: "M4.57 17.18l10.93 -10.68"
10093
+ }));
10094
+ }
10095
+
9922
10096
  function IconBrandFirefox(_ref) {
9923
10097
  var _ref$size = _ref.size,
9924
10098
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -10044,6 +10218,52 @@ function IconBrandFramer(_ref) {
10044
10218
  }));
10045
10219
  }
10046
10220
 
10221
+ function IconBrandGit(_ref) {
10222
+ var _ref$size = _ref.size,
10223
+ size = _ref$size === void 0 ? 24 : _ref$size,
10224
+ _ref$color = _ref.color,
10225
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
10226
+ _ref$stroke = _ref.stroke,
10227
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
10228
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
10229
+
10230
+ return /*#__PURE__*/React.createElement("svg", _extends({
10231
+ className: "icon icon-tabler icon-tabler-brand-git",
10232
+ width: size,
10233
+ height: size,
10234
+ viewBox: "0 0 24 24",
10235
+ strokeWidth: stroke,
10236
+ stroke: color,
10237
+ fill: "none",
10238
+ strokeLinecap: "round",
10239
+ strokeLinejoin: "round"
10240
+ }, props), /*#__PURE__*/React.createElement("path", {
10241
+ stroke: "none",
10242
+ d: "M0 0h24v24H0z",
10243
+ fill: "none"
10244
+ }), /*#__PURE__*/React.createElement("circle", {
10245
+ cx: 16,
10246
+ cy: 12,
10247
+ r: 1
10248
+ }), /*#__PURE__*/React.createElement("circle", {
10249
+ cx: 12,
10250
+ cy: 8,
10251
+ r: 1
10252
+ }), /*#__PURE__*/React.createElement("circle", {
10253
+ cx: 12,
10254
+ cy: 16,
10255
+ r: 1
10256
+ }), /*#__PURE__*/React.createElement("path", {
10257
+ d: "M12 15v-6"
10258
+ }), /*#__PURE__*/React.createElement("path", {
10259
+ d: "M15 11l-2 -2"
10260
+ }), /*#__PURE__*/React.createElement("path", {
10261
+ d: "M11 7l-1.9 -1.9"
10262
+ }), /*#__PURE__*/React.createElement("path", {
10263
+ d: "M10.5 20.4l-6.9 -6.9c-.781 -.781 -.781 -2.219 0 -3l6.9 -6.9c.781 -.781 2.219 -.781 3 0l6.9 6.9c.781 .781 .781 2.219 0 3l-6.9 6.9c-.781 .781 -2.219 .781 -3 0z"
10264
+ }));
10265
+ }
10266
+
10047
10267
  function IconBrandGithub(_ref) {
10048
10268
  var _ref$size = _ref.size,
10049
10269
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -10518,6 +10738,40 @@ function IconBrandLinkedin(_ref) {
10518
10738
  }));
10519
10739
  }
10520
10740
 
10741
+ function IconBrandLoom(_ref) {
10742
+ var _ref$size = _ref.size,
10743
+ size = _ref$size === void 0 ? 24 : _ref$size,
10744
+ _ref$color = _ref.color,
10745
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
10746
+ _ref$stroke = _ref.stroke,
10747
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
10748
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
10749
+
10750
+ return /*#__PURE__*/React.createElement("svg", _extends({
10751
+ className: "icon icon-tabler icon-tabler-brand-loom",
10752
+ width: size,
10753
+ height: size,
10754
+ viewBox: "0 0 24 24",
10755
+ strokeWidth: stroke,
10756
+ stroke: color,
10757
+ fill: "none",
10758
+ strokeLinecap: "round",
10759
+ strokeLinejoin: "round"
10760
+ }, props), /*#__PURE__*/React.createElement("path", {
10761
+ stroke: "none",
10762
+ d: "M0 0h24v24H0z",
10763
+ fill: "none"
10764
+ }), /*#__PURE__*/React.createElement("path", {
10765
+ d: "M17.464 6.518a6.001 6.001 0 1 0 -3.023 7.965"
10766
+ }), /*#__PURE__*/React.createElement("path", {
10767
+ d: "M17.482 17.464a6.001 6.001 0 1 0 -7.965 -3.023"
10768
+ }), /*#__PURE__*/React.createElement("path", {
10769
+ d: "M6.54 17.482a6.001 6.001 0 1 0 3.024 -7.965"
10770
+ }), /*#__PURE__*/React.createElement("path", {
10771
+ d: "M6.518 6.54a6.001 6.001 0 1 0 7.965 3.024"
10772
+ }));
10773
+ }
10774
+
10521
10775
  function IconBrandMastercard(_ref) {
10522
10776
  var _ref$size = _ref.size,
10523
10777
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -10640,6 +10894,46 @@ function IconBrandMessenger(_ref) {
10640
10894
  }));
10641
10895
  }
10642
10896
 
10897
+ function IconBrandNetbeans(_ref) {
10898
+ var _ref$size = _ref.size,
10899
+ size = _ref$size === void 0 ? 24 : _ref$size,
10900
+ _ref$color = _ref.color,
10901
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
10902
+ _ref$stroke = _ref.stroke,
10903
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
10904
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
10905
+
10906
+ return /*#__PURE__*/React.createElement("svg", _extends({
10907
+ className: "icon icon-tabler icon-tabler-brand-netbeans",
10908
+ width: size,
10909
+ height: size,
10910
+ viewBox: "0 0 24 24",
10911
+ strokeWidth: stroke,
10912
+ stroke: color,
10913
+ fill: "none",
10914
+ strokeLinecap: "round",
10915
+ strokeLinejoin: "round"
10916
+ }, props), /*#__PURE__*/React.createElement("path", {
10917
+ stroke: "none",
10918
+ d: "M0 0h24v24H0z",
10919
+ fill: "none"
10920
+ }), /*#__PURE__*/React.createElement("path", {
10921
+ d: "M19 6.873a2 2 0 0 1 1 1.747v6.536a2 2 0 0 1 -1.029 1.748l-6 3.833a2 2 0 0 1 -1.942 0l-6 -3.833a2 2 0 0 1 -1.029 -1.747v-6.537a2 2 0 0 1 1.029 -1.748l6 -3.572a2.056 2.056 0 0 1 2 0l6 3.573h-.029z"
10922
+ }), /*#__PURE__*/React.createElement("path", {
10923
+ d: "M15.5 9.43a1 1 0 0 1 .5 .874v3.268a1 1 0 0 1 -.515 .874l-3 1.917a1 1 0 0 1 -.97 0l-3 -1.917a1 1 0 0 1 -.515 -.873v-3.269a1 1 0 0 1 .514 -.874l3 -1.786c.311 -.173 .69 -.173 1 0l3 1.787h-.014z"
10924
+ }), /*#__PURE__*/React.createElement("path", {
10925
+ d: "M12 21v-9l-7.5 -4.5"
10926
+ }), /*#__PURE__*/React.createElement("path", {
10927
+ d: "M12 12l7.5 -4.5"
10928
+ }), /*#__PURE__*/React.createElement("path", {
10929
+ d: "M12 3v4.5"
10930
+ }), /*#__PURE__*/React.createElement("path", {
10931
+ d: "M19.5 16l-3.5 -2"
10932
+ }), /*#__PURE__*/React.createElement("path", {
10933
+ d: "M8 14l-3.5 2"
10934
+ }));
10935
+ }
10936
+
10643
10937
  function IconBrandNetflix(_ref) {
10644
10938
  var _ref$size = _ref.size,
10645
10939
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -10819,6 +11113,45 @@ function IconBrandPaypal(_ref) {
10819
11113
  }));
10820
11114
  }
10821
11115
 
11116
+ function IconBrandPhp(_ref) {
11117
+ var _ref$size = _ref.size,
11118
+ size = _ref$size === void 0 ? 24 : _ref$size,
11119
+ _ref$color = _ref.color,
11120
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
11121
+ _ref$stroke = _ref.stroke,
11122
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
11123
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
11124
+
11125
+ return /*#__PURE__*/React.createElement("svg", _extends({
11126
+ className: "icon icon-tabler icon-tabler-brand-php",
11127
+ width: size,
11128
+ height: size,
11129
+ viewBox: "0 0 24 24",
11130
+ strokeWidth: stroke,
11131
+ stroke: color,
11132
+ fill: "none",
11133
+ strokeLinecap: "round",
11134
+ strokeLinejoin: "round"
11135
+ }, props), /*#__PURE__*/React.createElement("path", {
11136
+ stroke: "none",
11137
+ d: "M0 0h24v24H0z",
11138
+ fill: "none"
11139
+ }), /*#__PURE__*/React.createElement("ellipse", {
11140
+ cx: 12,
11141
+ cy: 12,
11142
+ rx: 10,
11143
+ ry: 9
11144
+ }), /*#__PURE__*/React.createElement("path", {
11145
+ d: "M5.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"
11146
+ }), /*#__PURE__*/React.createElement("path", {
11147
+ d: "M15.5 15l.395 -1.974l.605 -3.026h1.32a1 1 0 0 1 .986 1.164l-.167 1a1 1 0 0 1 -.986 .836h-1.653"
11148
+ }), /*#__PURE__*/React.createElement("path", {
11149
+ d: "M12 7.5l-1 5.5"
11150
+ }), /*#__PURE__*/React.createElement("path", {
11151
+ d: "M11.6 10h2.4l-.5 3"
11152
+ }));
11153
+ }
11154
+
10822
11155
  function IconBrandPinterest(_ref) {
10823
11156
  var _ref$size = _ref.size,
10824
11157
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -10960,6 +11293,46 @@ function IconBrandPython(_ref) {
10960
11293
  }));
10961
11294
  }
10962
11295
 
11296
+ function IconBrandReactNative(_ref) {
11297
+ var _ref$size = _ref.size,
11298
+ size = _ref$size === void 0 ? 24 : _ref$size,
11299
+ _ref$color = _ref.color,
11300
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
11301
+ _ref$stroke = _ref.stroke,
11302
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
11303
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
11304
+
11305
+ return /*#__PURE__*/React.createElement("svg", _extends({
11306
+ className: "icon icon-tabler icon-tabler-brand-react-native",
11307
+ width: size,
11308
+ height: size,
11309
+ viewBox: "0 0 24 24",
11310
+ strokeWidth: stroke,
11311
+ stroke: color,
11312
+ fill: "none",
11313
+ strokeLinecap: "round",
11314
+ strokeLinejoin: "round"
11315
+ }, props), /*#__PURE__*/React.createElement("path", {
11316
+ stroke: "none",
11317
+ d: "M0 0h24v24H0z",
11318
+ fill: "none"
11319
+ }), /*#__PURE__*/React.createElement("path", {
11320
+ d: "M6.357 9c-2.637 .68 -4.357 1.845 -4.357 3.175c0 2.107 4.405 3.825 9.85 3.825c.74 0 1.26 -.039 1.95 -.097"
11321
+ }), /*#__PURE__*/React.createElement("path", {
11322
+ d: "M9.837 15.9c-.413 -.596 -.806 -1.133 -1.18 -1.8c-2.751 -4.9 -3.488 -9.77 -1.63 -10.873c1.15 -.697 3.047 .253 4.974 2.254"
11323
+ }), /*#__PURE__*/React.createElement("path", {
11324
+ d: "M6.429 15.387c-.702 2.688 -.56 4.716 .56 5.395c1.783 1.08 5.387 -1.958 8.043 -6.804c.36 -.67 .683 -1.329 .968 -1.978"
11325
+ }), /*#__PURE__*/React.createElement("path", {
11326
+ d: "M12 18.52c1.928 2 3.817 2.95 4.978 2.253c1.85 -1.102 1.121 -5.972 -1.633 -10.873c-.384 -.677 -.777 -1.204 -1.18 -1.8"
11327
+ }), /*#__PURE__*/React.createElement("path", {
11328
+ d: "M17.66 15c2.612 -.687 4.34 -1.85 4.34 -3.176c0 -2.11 -4.408 -3.824 -9.845 -3.824c-.747 0 -1.266 .029 -1.955 .087"
11329
+ }), /*#__PURE__*/React.createElement("path", {
11330
+ d: "M8 12c.285 -.66 .607 -1.308 .968 -1.978c2.647 -4.844 6.253 -7.89 8.046 -6.801c1.11 .679 1.262 2.706 .56 5.393"
11331
+ }), /*#__PURE__*/React.createElement("path", {
11332
+ d: "M12.26 12.015h-.01c-.01 .13 -.12 .24 -.26 .24a0.263 .263 0 0 1 -.25 -.26c0 -.14 .11 -.25 .24 -.25h-.01c.13 -.01 .25 .11 .25 .24"
11333
+ }));
11334
+ }
11335
+
10963
11336
  function IconBrandReddit(_ref) {
10964
11337
  var _ref$size = _ref.size,
10965
11338
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -11428,6 +11801,40 @@ function IconBrandStripe(_ref) {
11428
11801
  }));
11429
11802
  }
11430
11803
 
11804
+ function IconBrandSublimeText(_ref) {
11805
+ var _ref$size = _ref.size,
11806
+ size = _ref$size === void 0 ? 24 : _ref$size,
11807
+ _ref$color = _ref.color,
11808
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
11809
+ _ref$stroke = _ref.stroke,
11810
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
11811
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
11812
+
11813
+ return /*#__PURE__*/React.createElement("svg", _extends({
11814
+ className: "icon icon-tabler icon-tabler-brand-sublime-text",
11815
+ width: size,
11816
+ height: size,
11817
+ viewBox: "0 0 24 24",
11818
+ strokeWidth: stroke,
11819
+ stroke: color,
11820
+ fill: "none",
11821
+ strokeLinecap: "round",
11822
+ strokeLinejoin: "round"
11823
+ }, props), /*#__PURE__*/React.createElement("path", {
11824
+ stroke: "none",
11825
+ d: "M0 0h24v24H0z",
11826
+ fill: "none"
11827
+ }), /*#__PURE__*/React.createElement("path", {
11828
+ d: "M19 8l-14 4.5v-5.5l14 -4.5z"
11829
+ }), /*#__PURE__*/React.createElement("path", {
11830
+ d: "M19 17l-14 4.5v-5.5l14 -4.5z"
11831
+ }), /*#__PURE__*/React.createElement("path", {
11832
+ d: "M19 11.5l-14 -4.5"
11833
+ }), /*#__PURE__*/React.createElement("path", {
11834
+ d: "M5 12.5l14 4.5"
11835
+ }));
11836
+ }
11837
+
11431
11838
  function IconBrandTabler(_ref) {
11432
11839
  var _ref$size = _ref.size,
11433
11840
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -11707,6 +12114,44 @@ function IconBrandTwitter(_ref) {
11707
12114
  }));
11708
12115
  }
11709
12116
 
12117
+ function IconBrandUber(_ref) {
12118
+ var _ref$size = _ref.size,
12119
+ size = _ref$size === void 0 ? 24 : _ref$size,
12120
+ _ref$color = _ref.color,
12121
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
12122
+ _ref$stroke = _ref.stroke,
12123
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
12124
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
12125
+
12126
+ return /*#__PURE__*/React.createElement("svg", _extends({
12127
+ className: "icon icon-tabler icon-tabler-brand-uber",
12128
+ width: size,
12129
+ height: size,
12130
+ viewBox: "0 0 24 24",
12131
+ strokeWidth: stroke,
12132
+ stroke: color,
12133
+ fill: "none",
12134
+ strokeLinecap: "round",
12135
+ strokeLinejoin: "round"
12136
+ }, props), /*#__PURE__*/React.createElement("path", {
12137
+ stroke: "none",
12138
+ d: "M0 0h24v24H0z",
12139
+ fill: "none"
12140
+ }), /*#__PURE__*/React.createElement("circle", {
12141
+ cx: 12,
12142
+ cy: 12,
12143
+ r: 9
12144
+ }), /*#__PURE__*/React.createElement("rect", {
12145
+ x: 9,
12146
+ y: 9,
12147
+ width: 6,
12148
+ height: 6,
12149
+ rx: 1
12150
+ }), /*#__PURE__*/React.createElement("path", {
12151
+ d: "M3 12h6"
12152
+ }));
12153
+ }
12154
+
11710
12155
  function IconBrandUbuntu(_ref) {
11711
12156
  var _ref$size = _ref.size,
11712
12157
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -11831,6 +12276,34 @@ function IconBrandVimeo(_ref) {
11831
12276
  }));
11832
12277
  }
11833
12278
 
12279
+ function IconBrandVisualStudio(_ref) {
12280
+ var _ref$size = _ref.size,
12281
+ size = _ref$size === void 0 ? 24 : _ref$size,
12282
+ _ref$color = _ref.color,
12283
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
12284
+ _ref$stroke = _ref.stroke,
12285
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
12286
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
12287
+
12288
+ return /*#__PURE__*/React.createElement("svg", _extends({
12289
+ className: "icon icon-tabler icon-tabler-brand-visual-studio",
12290
+ width: size,
12291
+ height: size,
12292
+ viewBox: "0 0 24 24",
12293
+ strokeWidth: stroke,
12294
+ stroke: color,
12295
+ fill: "none",
12296
+ strokeLinecap: "round",
12297
+ strokeLinejoin: "round"
12298
+ }, props), /*#__PURE__*/React.createElement("path", {
12299
+ stroke: "none",
12300
+ d: "M0 0h24v24H0z",
12301
+ fill: "none"
12302
+ }), /*#__PURE__*/React.createElement("path", {
12303
+ d: "M4 8l2 -1l10 13l4 -2v-12l-4 -2l-10 13l-2 -1z"
12304
+ }));
12305
+ }
12306
+
11834
12307
  function IconBrandVk(_ref) {
11835
12308
  var _ref$size = _ref.size,
11836
12309
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -19602,9 +20075,9 @@ function IconCurrencyDogecoin(_ref) {
19602
20075
  }), /*#__PURE__*/React.createElement("path", {
19603
20076
  d: "M6 12h6"
19604
20077
  }), /*#__PURE__*/React.createElement("path", {
19605
- d: "M8 5v14"
20078
+ d: "M9 6v12"
19606
20079
  }), /*#__PURE__*/React.createElement("path", {
19607
- d: "M5 19h7a7 7 0 0 0 0 -14h-7"
20080
+ d: "M6 18h6a6 6 0 1 0 0 -12h-6"
19608
20081
  }));
19609
20082
  }
19610
20083
 
@@ -29598,6 +30071,76 @@ function IconKeyboard(_ref) {
29598
30071
  }));
29599
30072
  }
29600
30073
 
30074
+ function IconLanguageHiragana(_ref) {
30075
+ var _ref$size = _ref.size,
30076
+ size = _ref$size === void 0 ? 24 : _ref$size,
30077
+ _ref$color = _ref.color,
30078
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
30079
+ _ref$stroke = _ref.stroke,
30080
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
30081
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
30082
+
30083
+ return /*#__PURE__*/React.createElement("svg", _extends({
30084
+ className: "icon icon-tabler icon-tabler-language-hiragana",
30085
+ width: size,
30086
+ height: size,
30087
+ viewBox: "0 0 24 24",
30088
+ strokeWidth: stroke,
30089
+ stroke: color,
30090
+ fill: "none",
30091
+ strokeLinecap: "round",
30092
+ strokeLinejoin: "round"
30093
+ }, props), /*#__PURE__*/React.createElement("path", {
30094
+ stroke: "none",
30095
+ d: "M0 0h24v24H0z",
30096
+ fill: "none"
30097
+ }), /*#__PURE__*/React.createElement("path", {
30098
+ d: "M4 5h7"
30099
+ }), /*#__PURE__*/React.createElement("path", {
30100
+ d: "M7 4c0 4.846 0 7 .5 8"
30101
+ }), /*#__PURE__*/React.createElement("path", {
30102
+ d: "M10 8.5c0 2.286 -2 4.5 -3.5 4.5s-2.5 -1.135 -2.5 -2c0 -2 1 -3 3 -3s5 .57 5 2.857c0 1.524 -.667 2.571 -2 3.143"
30103
+ }), /*#__PURE__*/React.createElement("path", {
30104
+ d: "M12 20l4 -9l4 9"
30105
+ }), /*#__PURE__*/React.createElement("path", {
30106
+ d: "M19.1 18h-6.2"
30107
+ }));
30108
+ }
30109
+
30110
+ function IconLanguageKatakana(_ref) {
30111
+ var _ref$size = _ref.size,
30112
+ size = _ref$size === void 0 ? 24 : _ref$size,
30113
+ _ref$color = _ref.color,
30114
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
30115
+ _ref$stroke = _ref.stroke,
30116
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
30117
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
30118
+
30119
+ return /*#__PURE__*/React.createElement("svg", _extends({
30120
+ className: "icon icon-tabler icon-tabler-language-katakana",
30121
+ width: size,
30122
+ height: size,
30123
+ viewBox: "0 0 24 24",
30124
+ strokeWidth: stroke,
30125
+ stroke: color,
30126
+ fill: "none",
30127
+ strokeLinecap: "round",
30128
+ strokeLinejoin: "round"
30129
+ }, props), /*#__PURE__*/React.createElement("path", {
30130
+ stroke: "none",
30131
+ d: "M0 0h24v24H0z",
30132
+ fill: "none"
30133
+ }), /*#__PURE__*/React.createElement("path", {
30134
+ d: "M5 5h6.586a1 1 0 0 1 .707 1.707l-1.293 1.293"
30135
+ }), /*#__PURE__*/React.createElement("path", {
30136
+ d: "M8 8c0 1.5 .5 3 -2 5"
30137
+ }), /*#__PURE__*/React.createElement("path", {
30138
+ d: "M12 20l4 -9l4 9"
30139
+ }), /*#__PURE__*/React.createElement("path", {
30140
+ d: "M19.1 18h-6.2"
30141
+ }));
30142
+ }
30143
+
29601
30144
  function IconLanguage(_ref) {
29602
30145
  var _ref$size = _ref.size,
29603
30146
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -29622,9 +30165,15 @@ function IconLanguage(_ref) {
29622
30165
  d: "M0 0h24v24H0z",
29623
30166
  fill: "none"
29624
30167
  }), /*#__PURE__*/React.createElement("path", {
29625
- d: "M5 7h7m-2 -2v2a5 8 0 0 1 -5 8m1 -4a7 4 0 0 0 6.7 4"
30168
+ d: "M4 5h7"
30169
+ }), /*#__PURE__*/React.createElement("path", {
30170
+ d: "M9 3v2c0 4.418 -2.239 8 -5 8"
30171
+ }), /*#__PURE__*/React.createElement("path", {
30172
+ d: "M5 9c-.003 2.144 2.952 3.908 6.7 4"
29626
30173
  }), /*#__PURE__*/React.createElement("path", {
29627
- d: "M11 19l4 -9l4 9m-.9 -2h-6.2"
30174
+ d: "M12 20l4 -9l4 9"
30175
+ }), /*#__PURE__*/React.createElement("path", {
30176
+ d: "M19.1 18h-6.2"
29628
30177
  }));
29629
30178
  }
29630
30179
 
@@ -38942,6 +39491,48 @@ function IconPrinter(_ref) {
38942
39491
  }));
38943
39492
  }
38944
39493
 
39494
+ function IconPrison(_ref) {
39495
+ var _ref$size = _ref.size,
39496
+ size = _ref$size === void 0 ? 24 : _ref$size,
39497
+ _ref$color = _ref.color,
39498
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
39499
+ _ref$stroke = _ref.stroke,
39500
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
39501
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
39502
+
39503
+ return /*#__PURE__*/React.createElement("svg", _extends({
39504
+ className: "icon icon-tabler icon-tabler-prison",
39505
+ width: size,
39506
+ height: size,
39507
+ viewBox: "0 0 24 24",
39508
+ strokeWidth: stroke,
39509
+ stroke: color,
39510
+ fill: "none",
39511
+ strokeLinecap: "round",
39512
+ strokeLinejoin: "round"
39513
+ }, props), /*#__PURE__*/React.createElement("path", {
39514
+ stroke: "none",
39515
+ d: "M0 0h24v24H0z",
39516
+ fill: "none"
39517
+ }), /*#__PURE__*/React.createElement("path", {
39518
+ d: "M18 4v16"
39519
+ }), /*#__PURE__*/React.createElement("path", {
39520
+ d: "M14 4v16"
39521
+ }), /*#__PURE__*/React.createElement("path", {
39522
+ d: "M6 4v5"
39523
+ }), /*#__PURE__*/React.createElement("path", {
39524
+ d: "M6 15v5"
39525
+ }), /*#__PURE__*/React.createElement("path", {
39526
+ d: "M10 4v5"
39527
+ }), /*#__PURE__*/React.createElement("path", {
39528
+ d: "M11 9h-6v6h6z"
39529
+ }), /*#__PURE__*/React.createElement("path", {
39530
+ d: "M10 15v5"
39531
+ }), /*#__PURE__*/React.createElement("path", {
39532
+ d: "M8 12h-.01"
39533
+ }));
39534
+ }
39535
+
38945
39536
  function IconPrompt(_ref) {
38946
39537
  var _ref$size = _ref.size,
38947
39538
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -45150,10 +45741,13 @@ function IconStrikethrough(_ref) {
45150
45741
  stroke: "none",
45151
45742
  d: "M0 0h24v24H0z",
45152
45743
  fill: "none"
45744
+ }), /*#__PURE__*/React.createElement("line", {
45745
+ x1: 5,
45746
+ y1: 12,
45747
+ x2: 19,
45748
+ y2: 12
45153
45749
  }), /*#__PURE__*/React.createElement("path", {
45154
- d: "M7 5v9a5 5 0 0 0 10 0v-9"
45155
- }), /*#__PURE__*/React.createElement("path", {
45156
- d: "M4 12h16"
45750
+ d: "M16 6.5a4 2 0 0 0 -4 -1.5h-1a3.5 3.5 0 0 0 0 7h2a3.5 3.5 0 0 1 0 7h-1.5a4 2 0 0 1 -4 -1.5"
45157
45751
  }));
45158
45752
  }
45159
45753
 
@@ -49832,6 +50426,54 @@ function IconWalk(_ref) {
49832
50426
  }));
49833
50427
  }
49834
50428
 
50429
+ function IconWall(_ref) {
50430
+ var _ref$size = _ref.size,
50431
+ size = _ref$size === void 0 ? 24 : _ref$size,
50432
+ _ref$color = _ref.color,
50433
+ color = _ref$color === void 0 ? "currentColor" : _ref$color,
50434
+ _ref$stroke = _ref.stroke,
50435
+ stroke = _ref$stroke === void 0 ? 2 : _ref$stroke,
50436
+ props = _objectWithoutProperties(_ref, ["size", "color", "stroke"]);
50437
+
50438
+ return /*#__PURE__*/React.createElement("svg", _extends({
50439
+ className: "icon icon-tabler icon-tabler-wall",
50440
+ width: size,
50441
+ height: size,
50442
+ viewBox: "0 0 24 24",
50443
+ strokeWidth: stroke,
50444
+ stroke: color,
50445
+ fill: "none",
50446
+ strokeLinecap: "round",
50447
+ strokeLinejoin: "round"
50448
+ }, props), /*#__PURE__*/React.createElement("path", {
50449
+ stroke: "none",
50450
+ d: "M0 0h24v24H0z",
50451
+ fill: "none"
50452
+ }), /*#__PURE__*/React.createElement("rect", {
50453
+ x: 4,
50454
+ y: 4,
50455
+ width: 16,
50456
+ height: 16,
50457
+ rx: 2
50458
+ }), /*#__PURE__*/React.createElement("path", {
50459
+ d: "M4 8h16"
50460
+ }), /*#__PURE__*/React.createElement("path", {
50461
+ d: "M20 12h-16"
50462
+ }), /*#__PURE__*/React.createElement("path", {
50463
+ d: "M4 16h16"
50464
+ }), /*#__PURE__*/React.createElement("path", {
50465
+ d: "M9 4v4"
50466
+ }), /*#__PURE__*/React.createElement("path", {
50467
+ d: "M14 8v4"
50468
+ }), /*#__PURE__*/React.createElement("path", {
50469
+ d: "M8 12v4"
50470
+ }), /*#__PURE__*/React.createElement("path", {
50471
+ d: "M16 12v4"
50472
+ }), /*#__PURE__*/React.createElement("path", {
50473
+ d: "M11 16v4"
50474
+ }));
50475
+ }
50476
+
49835
50477
  function IconWallet(_ref) {
49836
50478
  var _ref$size = _ref.size,
49837
50479
  size = _ref$size === void 0 ? 24 : _ref$size,
@@ -51542,7 +52184,9 @@ exports.IconBoxPadding = IconBoxPadding;
51542
52184
  exports.IconBraces = IconBraces;
51543
52185
  exports.IconBrackets = IconBrackets;
51544
52186
  exports.IconBrandAirbnb = IconBrandAirbnb;
52187
+ exports.IconBrandAirtable = IconBrandAirtable;
51545
52188
  exports.IconBrandAndroid = IconBrandAndroid;
52189
+ exports.IconBrandAngular = IconBrandAngular;
51546
52190
  exports.IconBrandApple = IconBrandApple;
51547
52191
  exports.IconBrandAppleArcade = IconBrandAppleArcade;
51548
52192
  exports.IconBrandAppstore = IconBrandAppstore;
@@ -51556,19 +52200,23 @@ exports.IconBrandChrome = IconBrandChrome;
51556
52200
  exports.IconBrandCodepen = IconBrandCodepen;
51557
52201
  exports.IconBrandCodesandbox = IconBrandCodesandbox;
51558
52202
  exports.IconBrandCss3 = IconBrandCss3;
52203
+ exports.IconBrandCucumber = IconBrandCucumber;
51559
52204
  exports.IconBrandDebian = IconBrandDebian;
51560
52205
  exports.IconBrandDeviantart = IconBrandDeviantart;
51561
52206
  exports.IconBrandDiscord = IconBrandDiscord;
51562
52207
  exports.IconBrandDisqus = IconBrandDisqus;
51563
52208
  exports.IconBrandDocker = IconBrandDocker;
52209
+ exports.IconBrandDoctrine = IconBrandDoctrine;
51564
52210
  exports.IconBrandDribbble = IconBrandDribbble;
51565
52211
  exports.IconBrandEdge = IconBrandEdge;
51566
52212
  exports.IconBrandFacebook = IconBrandFacebook;
51567
52213
  exports.IconBrandFigma = IconBrandFigma;
52214
+ exports.IconBrandFirebase = IconBrandFirebase;
51568
52215
  exports.IconBrandFirefox = IconBrandFirefox;
51569
52216
  exports.IconBrandFlickr = IconBrandFlickr;
51570
52217
  exports.IconBrandFoursquare = IconBrandFoursquare;
51571
52218
  exports.IconBrandFramer = IconBrandFramer;
52219
+ exports.IconBrandGit = IconBrandGit;
51572
52220
  exports.IconBrandGithub = IconBrandGithub;
51573
52221
  exports.IconBrandGitlab = IconBrandGitlab;
51574
52222
  exports.IconBrandGoogle = IconBrandGoogle;
@@ -51583,19 +52231,23 @@ exports.IconBrandJavascript = IconBrandJavascript;
51583
52231
  exports.IconBrandKickstarter = IconBrandKickstarter;
51584
52232
  exports.IconBrandKotlin = IconBrandKotlin;
51585
52233
  exports.IconBrandLinkedin = IconBrandLinkedin;
52234
+ exports.IconBrandLoom = IconBrandLoom;
51586
52235
  exports.IconBrandMastercard = IconBrandMastercard;
51587
52236
  exports.IconBrandMedium = IconBrandMedium;
51588
52237
  exports.IconBrandMessenger = IconBrandMessenger;
52238
+ exports.IconBrandNetbeans = IconBrandNetbeans;
51589
52239
  exports.IconBrandNetflix = IconBrandNetflix;
51590
52240
  exports.IconBrandOpenSource = IconBrandOpenSource;
51591
52241
  exports.IconBrandOpera = IconBrandOpera;
51592
52242
  exports.IconBrandPagekit = IconBrandPagekit;
51593
52243
  exports.IconBrandPatreon = IconBrandPatreon;
51594
52244
  exports.IconBrandPaypal = IconBrandPaypal;
52245
+ exports.IconBrandPhp = IconBrandPhp;
51595
52246
  exports.IconBrandPinterest = IconBrandPinterest;
51596
52247
  exports.IconBrandPocket = IconBrandPocket;
51597
52248
  exports.IconBrandProducthunt = IconBrandProducthunt;
51598
52249
  exports.IconBrandPython = IconBrandPython;
52250
+ exports.IconBrandReactNative = IconBrandReactNative;
51599
52251
  exports.IconBrandReddit = IconBrandReddit;
51600
52252
  exports.IconBrandSafari = IconBrandSafari;
51601
52253
  exports.IconBrandSass = IconBrandSass;
@@ -51610,6 +52262,7 @@ exports.IconBrandSpotify = IconBrandSpotify;
51610
52262
  exports.IconBrandStackoverflow = IconBrandStackoverflow;
51611
52263
  exports.IconBrandSteam = IconBrandSteam;
51612
52264
  exports.IconBrandStripe = IconBrandStripe;
52265
+ exports.IconBrandSublimeText = IconBrandSublimeText;
51613
52266
  exports.IconBrandTabler = IconBrandTabler;
51614
52267
  exports.IconBrandTailwind = IconBrandTailwind;
51615
52268
  exports.IconBrandTelegram = IconBrandTelegram;
@@ -51619,10 +52272,12 @@ exports.IconBrandTinder = IconBrandTinder;
51619
52272
  exports.IconBrandTumblr = IconBrandTumblr;
51620
52273
  exports.IconBrandTwitch = IconBrandTwitch;
51621
52274
  exports.IconBrandTwitter = IconBrandTwitter;
52275
+ exports.IconBrandUber = IconBrandUber;
51622
52276
  exports.IconBrandUbuntu = IconBrandUbuntu;
51623
52277
  exports.IconBrandUnsplash = IconBrandUnsplash;
51624
52278
  exports.IconBrandVercel = IconBrandVercel;
51625
52279
  exports.IconBrandVimeo = IconBrandVimeo;
52280
+ exports.IconBrandVisualStudio = IconBrandVisualStudio;
51626
52281
  exports.IconBrandVk = IconBrandVk;
51627
52282
  exports.IconBrandWhatsapp = IconBrandWhatsapp;
51628
52283
  exports.IconBrandWindows = IconBrandWindows;
@@ -52089,6 +52744,8 @@ exports.IconKeyboardHide = IconKeyboardHide;
52089
52744
  exports.IconKeyboardOff = IconKeyboardOff;
52090
52745
  exports.IconKeyboardShow = IconKeyboardShow;
52091
52746
  exports.IconLanguage = IconLanguage;
52747
+ exports.IconLanguageHiragana = IconLanguageHiragana;
52748
+ exports.IconLanguageKatakana = IconLanguageKatakana;
52092
52749
  exports.IconLayersDifference = IconLayersDifference;
52093
52750
  exports.IconLayersIntersect = IconLayersIntersect;
52094
52751
  exports.IconLayersLinked = IconLayersLinked;
@@ -52343,6 +53000,7 @@ exports.IconPray = IconPray;
52343
53000
  exports.IconPresentation = IconPresentation;
52344
53001
  exports.IconPresentationAnalytics = IconPresentationAnalytics;
52345
53002
  exports.IconPrinter = IconPrinter;
53003
+ exports.IconPrison = IconPrison;
52346
53004
  exports.IconPrompt = IconPrompt;
52347
53005
  exports.IconPropeller = IconPropeller;
52348
53006
  exports.IconPuzzle = IconPuzzle;
@@ -52633,6 +53291,7 @@ exports.IconVolume = IconVolume;
52633
53291
  exports.IconVolume2 = IconVolume2;
52634
53292
  exports.IconVolume3 = IconVolume3;
52635
53293
  exports.IconWalk = IconWalk;
53294
+ exports.IconWall = IconWall;
52636
53295
  exports.IconWallet = IconWallet;
52637
53296
  exports.IconWallpaper = IconWallpaper;
52638
53297
  exports.IconWand = IconWand;