lucide-nativewind 0.477.0 → 0.483.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 (43) hide show
  1. package/cjs/icons/clock-fading.js +13 -0
  2. package/cjs/icons/clock-fading.web.js +8 -0
  3. package/cjs/icons/funnel-plus.js +13 -0
  4. package/cjs/icons/funnel-plus.web.js +8 -0
  5. package/cjs/icons/funnel-x.js +13 -0
  6. package/cjs/icons/funnel-x.web.js +8 -0
  7. package/cjs/icons/funnel.js +13 -0
  8. package/cjs/icons/funnel.web.js +8 -0
  9. package/cjs/icons/saudi-riyal.js +13 -0
  10. package/cjs/icons/saudi-riyal.web.js +8 -0
  11. package/cjs/icons/shrimp.js +13 -0
  12. package/cjs/icons/shrimp.web.js +8 -0
  13. package/cjs/index.js +78 -0
  14. package/cjs/index.web.js +78 -0
  15. package/esm/icons/clock-fading.js +7 -0
  16. package/esm/icons/clock-fading.web.js +2 -0
  17. package/esm/icons/funnel-plus.js +7 -0
  18. package/esm/icons/funnel-plus.web.js +2 -0
  19. package/esm/icons/funnel-x.js +7 -0
  20. package/esm/icons/funnel-x.web.js +2 -0
  21. package/esm/icons/funnel.js +7 -0
  22. package/esm/icons/funnel.web.js +2 -0
  23. package/esm/icons/saudi-riyal.js +7 -0
  24. package/esm/icons/saudi-riyal.web.js +2 -0
  25. package/esm/icons/shrimp.js +7 -0
  26. package/esm/icons/shrimp.web.js +2 -0
  27. package/esm/index.js +6 -0
  28. package/esm/index.web.js +6 -0
  29. package/package.json +3 -3
  30. package/types/icons/clock-fading.d.ts +5 -0
  31. package/types/icons/clock-fading.web.d.ts +2 -0
  32. package/types/icons/funnel-plus.d.ts +5 -0
  33. package/types/icons/funnel-plus.web.d.ts +2 -0
  34. package/types/icons/funnel-x.d.ts +5 -0
  35. package/types/icons/funnel-x.web.d.ts +2 -0
  36. package/types/icons/funnel.d.ts +5 -0
  37. package/types/icons/funnel.web.d.ts +2 -0
  38. package/types/icons/saudi-riyal.d.ts +5 -0
  39. package/types/icons/saudi-riyal.web.d.ts +2 -0
  40. package/types/icons/shrimp.d.ts +5 -0
  41. package/types/icons/shrimp.web.d.ts +2 -0
  42. package/types/index.d.ts +6 -0
  43. package/types/index.web.d.ts +6 -0
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReactNative = require("lucide-react-native");
8
+ var _iconWithClassName = _interopRequireDefault(require("../iconWithClassName"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ /**
11
+ * [ClockFading on lucide.dev](https://lucide.dev/icons/clock-fading)
12
+ */
13
+ var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.ClockFading);
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReact = require("lucide-react");
8
+ var _default = exports["default"] = _lucideReact.ClockFading;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReactNative = require("lucide-react-native");
8
+ var _iconWithClassName = _interopRequireDefault(require("../iconWithClassName"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ /**
11
+ * [FunnelPlus on lucide.dev](https://lucide.dev/icons/funnel-plus)
12
+ */
13
+ var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.FunnelPlus);
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReact = require("lucide-react");
8
+ var _default = exports["default"] = _lucideReact.FunnelPlus;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReactNative = require("lucide-react-native");
8
+ var _iconWithClassName = _interopRequireDefault(require("../iconWithClassName"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ /**
11
+ * [FunnelX on lucide.dev](https://lucide.dev/icons/funnel-x)
12
+ */
13
+ var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.FunnelX);
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReact = require("lucide-react");
8
+ var _default = exports["default"] = _lucideReact.FunnelX;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReactNative = require("lucide-react-native");
8
+ var _iconWithClassName = _interopRequireDefault(require("../iconWithClassName"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ /**
11
+ * [Funnel on lucide.dev](https://lucide.dev/icons/funnel)
12
+ */
13
+ var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.Funnel);
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReact = require("lucide-react");
8
+ var _default = exports["default"] = _lucideReact.Funnel;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReactNative = require("lucide-react-native");
8
+ var _iconWithClassName = _interopRequireDefault(require("../iconWithClassName"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ /**
11
+ * [SaudiRiyal on lucide.dev](https://lucide.dev/icons/saudi-riyal)
12
+ */
13
+ var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.SaudiRiyal);
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReact = require("lucide-react");
8
+ var _default = exports["default"] = _lucideReact.SaudiRiyal;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReactNative = require("lucide-react-native");
8
+ var _iconWithClassName = _interopRequireDefault(require("../iconWithClassName"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ /**
11
+ * [Shrimp on lucide.dev](https://lucide.dev/icons/shrimp)
12
+ */
13
+ var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.Shrimp);
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _lucideReact = require("lucide-react");
8
+ var _default = exports["default"] = _lucideReact.Shrimp;
package/cjs/index.js CHANGED
@@ -2763,6 +2763,12 @@ Object.defineProperty(exports, "ClockArrowUpIcon", {
2763
2763
  return _clockArrowUp["default"];
2764
2764
  }
2765
2765
  });
2766
+ Object.defineProperty(exports, "ClockFadingIcon", {
2767
+ enumerable: true,
2768
+ get: function get() {
2769
+ return _clockFading["default"];
2770
+ }
2771
+ });
2766
2772
  Object.defineProperty(exports, "ClockIcon", {
2767
2773
  enumerable: true,
2768
2774
  get: function get() {
@@ -4563,6 +4569,24 @@ Object.defineProperty(exports, "FunctionSquareIcon", {
4563
4569
  return _functionSquare["default"];
4564
4570
  }
4565
4571
  });
4572
+ Object.defineProperty(exports, "FunnelIcon", {
4573
+ enumerable: true,
4574
+ get: function get() {
4575
+ return _funnel["default"];
4576
+ }
4577
+ });
4578
+ Object.defineProperty(exports, "FunnelPlusIcon", {
4579
+ enumerable: true,
4580
+ get: function get() {
4581
+ return _funnelPlus["default"];
4582
+ }
4583
+ });
4584
+ Object.defineProperty(exports, "FunnelXIcon", {
4585
+ enumerable: true,
4586
+ get: function get() {
4587
+ return _funnelX["default"];
4588
+ }
4589
+ });
4566
4590
  Object.defineProperty(exports, "GalleryHorizontalEndIcon", {
4567
4591
  enumerable: true,
4568
4592
  get: function get() {
@@ -8637,6 +8661,12 @@ Object.defineProperty(exports, "LucideClockArrowUp", {
8637
8661
  return _clockArrowUp["default"];
8638
8662
  }
8639
8663
  });
8664
+ Object.defineProperty(exports, "LucideClockFading", {
8665
+ enumerable: true,
8666
+ get: function get() {
8667
+ return _clockFading["default"];
8668
+ }
8669
+ });
8640
8670
  Object.defineProperty(exports, "LucideCloud", {
8641
8671
  enumerable: true,
8642
8672
  get: function get() {
@@ -10431,6 +10461,24 @@ Object.defineProperty(exports, "LucideFunctionSquare", {
10431
10461
  return _functionSquare["default"];
10432
10462
  }
10433
10463
  });
10464
+ Object.defineProperty(exports, "LucideFunnel", {
10465
+ enumerable: true,
10466
+ get: function get() {
10467
+ return _funnel["default"];
10468
+ }
10469
+ });
10470
+ Object.defineProperty(exports, "LucideFunnelPlus", {
10471
+ enumerable: true,
10472
+ get: function get() {
10473
+ return _funnelPlus["default"];
10474
+ }
10475
+ });
10476
+ Object.defineProperty(exports, "LucideFunnelX", {
10477
+ enumerable: true,
10478
+ get: function get() {
10479
+ return _funnelX["default"];
10480
+ }
10481
+ });
10434
10482
  Object.defineProperty(exports, "LucideGalleryHorizontal", {
10435
10483
  enumerable: true,
10436
10484
  get: function get() {
@@ -13851,6 +13899,12 @@ Object.defineProperty(exports, "LucideSatelliteDish", {
13851
13899
  return _satelliteDish["default"];
13852
13900
  }
13853
13901
  });
13902
+ Object.defineProperty(exports, "LucideSaudiRiyal", {
13903
+ enumerable: true,
13904
+ get: function get() {
13905
+ return _saudiRiyal["default"];
13906
+ }
13907
+ });
13854
13908
  Object.defineProperty(exports, "LucideSave", {
13855
13909
  enumerable: true,
13856
13910
  get: function get() {
@@ -14277,6 +14331,12 @@ Object.defineProperty(exports, "LucideShowerHead", {
14277
14331
  return _showerHead["default"];
14278
14332
  }
14279
14333
  });
14334
+ Object.defineProperty(exports, "LucideShrimp", {
14335
+ enumerable: true,
14336
+ get: function get() {
14337
+ return _shrimp["default"];
14338
+ }
14339
+ });
14280
14340
  Object.defineProperty(exports, "LucideShrink", {
14281
14341
  enumerable: true,
14282
14342
  get: function get() {
@@ -18531,6 +18591,12 @@ Object.defineProperty(exports, "SatelliteIcon", {
18531
18591
  return _satellite["default"];
18532
18592
  }
18533
18593
  });
18594
+ Object.defineProperty(exports, "SaudiRiyalIcon", {
18595
+ enumerable: true,
18596
+ get: function get() {
18597
+ return _saudiRiyal["default"];
18598
+ }
18599
+ });
18534
18600
  Object.defineProperty(exports, "SaveAllIcon", {
18535
18601
  enumerable: true,
18536
18602
  get: function get() {
@@ -18957,6 +19023,12 @@ Object.defineProperty(exports, "ShowerHeadIcon", {
18957
19023
  return _showerHead["default"];
18958
19024
  }
18959
19025
  });
19026
+ Object.defineProperty(exports, "ShrimpIcon", {
19027
+ enumerable: true,
19028
+ get: function get() {
19029
+ return _shrimp["default"];
19030
+ }
19031
+ });
18960
19032
  Object.defineProperty(exports, "ShrinkIcon", {
18961
19033
  enumerable: true,
18962
19034
  get: function get() {
@@ -21562,6 +21634,7 @@ var _clock13 = _interopRequireDefault(require("./icons/clock9"));
21562
21634
  var _clockAlert = _interopRequireDefault(require("./icons/clock-alert"));
21563
21635
  var _clockArrowDown = _interopRequireDefault(require("./icons/clock-arrow-down"));
21564
21636
  var _clockArrowUp = _interopRequireDefault(require("./icons/clock-arrow-up"));
21637
+ var _clockFading = _interopRequireDefault(require("./icons/clock-fading"));
21565
21638
  var _cloud = _interopRequireDefault(require("./icons/cloud"));
21566
21639
  var _cloudAlert = _interopRequireDefault(require("./icons/cloud-alert"));
21567
21640
  var _cloudCog = _interopRequireDefault(require("./icons/cloud-cog"));
@@ -21861,6 +21934,9 @@ var _frown = _interopRequireDefault(require("./icons/frown"));
21861
21934
  var _fuel = _interopRequireDefault(require("./icons/fuel"));
21862
21935
  var _fullscreen = _interopRequireDefault(require("./icons/fullscreen"));
21863
21936
  var _functionSquare = _interopRequireDefault(require("./icons/function-square"));
21937
+ var _funnel = _interopRequireDefault(require("./icons/funnel"));
21938
+ var _funnelPlus = _interopRequireDefault(require("./icons/funnel-plus"));
21939
+ var _funnelX = _interopRequireDefault(require("./icons/funnel-x"));
21864
21940
  var _galleryHorizontal = _interopRequireDefault(require("./icons/gallery-horizontal"));
21865
21941
  var _galleryHorizontalEnd = _interopRequireDefault(require("./icons/gallery-horizontal-end"));
21866
21942
  var _galleryThumbnails = _interopRequireDefault(require("./icons/gallery-thumbnails"));
@@ -22431,6 +22507,7 @@ var _salad = _interopRequireDefault(require("./icons/salad"));
22431
22507
  var _sandwich = _interopRequireDefault(require("./icons/sandwich"));
22432
22508
  var _satellite = _interopRequireDefault(require("./icons/satellite"));
22433
22509
  var _satelliteDish = _interopRequireDefault(require("./icons/satellite-dish"));
22510
+ var _saudiRiyal = _interopRequireDefault(require("./icons/saudi-riyal"));
22434
22511
  var _save = _interopRequireDefault(require("./icons/save"));
22435
22512
  var _saveAll = _interopRequireDefault(require("./icons/save-all"));
22436
22513
  var _saveOff = _interopRequireDefault(require("./icons/save-off"));
@@ -22502,6 +22579,7 @@ var _shoppingBasket = _interopRequireDefault(require("./icons/shopping-basket"))
22502
22579
  var _shoppingCart = _interopRequireDefault(require("./icons/shopping-cart"));
22503
22580
  var _shovel = _interopRequireDefault(require("./icons/shovel"));
22504
22581
  var _showerHead = _interopRequireDefault(require("./icons/shower-head"));
22582
+ var _shrimp = _interopRequireDefault(require("./icons/shrimp"));
22505
22583
  var _shrink = _interopRequireDefault(require("./icons/shrink"));
22506
22584
  var _shrub = _interopRequireDefault(require("./icons/shrub"));
22507
22585
  var _shuffle = _interopRequireDefault(require("./icons/shuffle"));
package/cjs/index.web.js CHANGED
@@ -2763,6 +2763,12 @@ Object.defineProperty(exports, "ClockArrowUpIcon", {
2763
2763
  return _clockArrowUp["default"];
2764
2764
  }
2765
2765
  });
2766
+ Object.defineProperty(exports, "ClockFadingIcon", {
2767
+ enumerable: true,
2768
+ get: function get() {
2769
+ return _clockFading["default"];
2770
+ }
2771
+ });
2766
2772
  Object.defineProperty(exports, "ClockIcon", {
2767
2773
  enumerable: true,
2768
2774
  get: function get() {
@@ -4563,6 +4569,24 @@ Object.defineProperty(exports, "FunctionSquareIcon", {
4563
4569
  return _functionSquare["default"];
4564
4570
  }
4565
4571
  });
4572
+ Object.defineProperty(exports, "FunnelIcon", {
4573
+ enumerable: true,
4574
+ get: function get() {
4575
+ return _funnel["default"];
4576
+ }
4577
+ });
4578
+ Object.defineProperty(exports, "FunnelPlusIcon", {
4579
+ enumerable: true,
4580
+ get: function get() {
4581
+ return _funnelPlus["default"];
4582
+ }
4583
+ });
4584
+ Object.defineProperty(exports, "FunnelXIcon", {
4585
+ enumerable: true,
4586
+ get: function get() {
4587
+ return _funnelX["default"];
4588
+ }
4589
+ });
4566
4590
  Object.defineProperty(exports, "GalleryHorizontalEndIcon", {
4567
4591
  enumerable: true,
4568
4592
  get: function get() {
@@ -8637,6 +8661,12 @@ Object.defineProperty(exports, "LucideClockArrowUp", {
8637
8661
  return _clockArrowUp["default"];
8638
8662
  }
8639
8663
  });
8664
+ Object.defineProperty(exports, "LucideClockFading", {
8665
+ enumerable: true,
8666
+ get: function get() {
8667
+ return _clockFading["default"];
8668
+ }
8669
+ });
8640
8670
  Object.defineProperty(exports, "LucideCloud", {
8641
8671
  enumerable: true,
8642
8672
  get: function get() {
@@ -10431,6 +10461,24 @@ Object.defineProperty(exports, "LucideFunctionSquare", {
10431
10461
  return _functionSquare["default"];
10432
10462
  }
10433
10463
  });
10464
+ Object.defineProperty(exports, "LucideFunnel", {
10465
+ enumerable: true,
10466
+ get: function get() {
10467
+ return _funnel["default"];
10468
+ }
10469
+ });
10470
+ Object.defineProperty(exports, "LucideFunnelPlus", {
10471
+ enumerable: true,
10472
+ get: function get() {
10473
+ return _funnelPlus["default"];
10474
+ }
10475
+ });
10476
+ Object.defineProperty(exports, "LucideFunnelX", {
10477
+ enumerable: true,
10478
+ get: function get() {
10479
+ return _funnelX["default"];
10480
+ }
10481
+ });
10434
10482
  Object.defineProperty(exports, "LucideGalleryHorizontal", {
10435
10483
  enumerable: true,
10436
10484
  get: function get() {
@@ -13851,6 +13899,12 @@ Object.defineProperty(exports, "LucideSatelliteDish", {
13851
13899
  return _satelliteDish["default"];
13852
13900
  }
13853
13901
  });
13902
+ Object.defineProperty(exports, "LucideSaudiRiyal", {
13903
+ enumerable: true,
13904
+ get: function get() {
13905
+ return _saudiRiyal["default"];
13906
+ }
13907
+ });
13854
13908
  Object.defineProperty(exports, "LucideSave", {
13855
13909
  enumerable: true,
13856
13910
  get: function get() {
@@ -14277,6 +14331,12 @@ Object.defineProperty(exports, "LucideShowerHead", {
14277
14331
  return _showerHead["default"];
14278
14332
  }
14279
14333
  });
14334
+ Object.defineProperty(exports, "LucideShrimp", {
14335
+ enumerable: true,
14336
+ get: function get() {
14337
+ return _shrimp["default"];
14338
+ }
14339
+ });
14280
14340
  Object.defineProperty(exports, "LucideShrink", {
14281
14341
  enumerable: true,
14282
14342
  get: function get() {
@@ -18531,6 +18591,12 @@ Object.defineProperty(exports, "SatelliteIcon", {
18531
18591
  return _satellite["default"];
18532
18592
  }
18533
18593
  });
18594
+ Object.defineProperty(exports, "SaudiRiyalIcon", {
18595
+ enumerable: true,
18596
+ get: function get() {
18597
+ return _saudiRiyal["default"];
18598
+ }
18599
+ });
18534
18600
  Object.defineProperty(exports, "SaveAllIcon", {
18535
18601
  enumerable: true,
18536
18602
  get: function get() {
@@ -18957,6 +19023,12 @@ Object.defineProperty(exports, "ShowerHeadIcon", {
18957
19023
  return _showerHead["default"];
18958
19024
  }
18959
19025
  });
19026
+ Object.defineProperty(exports, "ShrimpIcon", {
19027
+ enumerable: true,
19028
+ get: function get() {
19029
+ return _shrimp["default"];
19030
+ }
19031
+ });
18960
19032
  Object.defineProperty(exports, "ShrinkIcon", {
18961
19033
  enumerable: true,
18962
19034
  get: function get() {
@@ -21556,6 +21628,7 @@ var _clock13 = _interopRequireDefault(require("./icons/clock9.web"));
21556
21628
  var _clockAlert = _interopRequireDefault(require("./icons/clock-alert.web"));
21557
21629
  var _clockArrowDown = _interopRequireDefault(require("./icons/clock-arrow-down.web"));
21558
21630
  var _clockArrowUp = _interopRequireDefault(require("./icons/clock-arrow-up.web"));
21631
+ var _clockFading = _interopRequireDefault(require("./icons/clock-fading.web"));
21559
21632
  var _cloud = _interopRequireDefault(require("./icons/cloud.web"));
21560
21633
  var _cloudAlert = _interopRequireDefault(require("./icons/cloud-alert.web"));
21561
21634
  var _cloudCog = _interopRequireDefault(require("./icons/cloud-cog.web"));
@@ -21855,6 +21928,9 @@ var _frown = _interopRequireDefault(require("./icons/frown.web"));
21855
21928
  var _fuel = _interopRequireDefault(require("./icons/fuel.web"));
21856
21929
  var _fullscreen = _interopRequireDefault(require("./icons/fullscreen.web"));
21857
21930
  var _functionSquare = _interopRequireDefault(require("./icons/function-square.web"));
21931
+ var _funnel = _interopRequireDefault(require("./icons/funnel.web"));
21932
+ var _funnelPlus = _interopRequireDefault(require("./icons/funnel-plus.web"));
21933
+ var _funnelX = _interopRequireDefault(require("./icons/funnel-x.web"));
21858
21934
  var _galleryHorizontal = _interopRequireDefault(require("./icons/gallery-horizontal.web"));
21859
21935
  var _galleryHorizontalEnd = _interopRequireDefault(require("./icons/gallery-horizontal-end.web"));
21860
21936
  var _galleryThumbnails = _interopRequireDefault(require("./icons/gallery-thumbnails.web"));
@@ -22425,6 +22501,7 @@ var _salad = _interopRequireDefault(require("./icons/salad.web"));
22425
22501
  var _sandwich = _interopRequireDefault(require("./icons/sandwich.web"));
22426
22502
  var _satellite = _interopRequireDefault(require("./icons/satellite.web"));
22427
22503
  var _satelliteDish = _interopRequireDefault(require("./icons/satellite-dish.web"));
22504
+ var _saudiRiyal = _interopRequireDefault(require("./icons/saudi-riyal.web"));
22428
22505
  var _save = _interopRequireDefault(require("./icons/save.web"));
22429
22506
  var _saveAll = _interopRequireDefault(require("./icons/save-all.web"));
22430
22507
  var _saveOff = _interopRequireDefault(require("./icons/save-off.web"));
@@ -22496,6 +22573,7 @@ var _shoppingBasket = _interopRequireDefault(require("./icons/shopping-basket.we
22496
22573
  var _shoppingCart = _interopRequireDefault(require("./icons/shopping-cart.web"));
22497
22574
  var _shovel = _interopRequireDefault(require("./icons/shovel.web"));
22498
22575
  var _showerHead = _interopRequireDefault(require("./icons/shower-head.web"));
22576
+ var _shrimp = _interopRequireDefault(require("./icons/shrimp.web"));
22499
22577
  var _shrink = _interopRequireDefault(require("./icons/shrink.web"));
22500
22578
  var _shrub = _interopRequireDefault(require("./icons/shrub.web"));
22501
22579
  var _shuffle = _interopRequireDefault(require("./icons/shuffle.web"));
@@ -0,0 +1,7 @@
1
+ import { ClockFading } from "lucide-react-native";
2
+ import iconWithClassName from '../iconWithClassName';
3
+ /**
4
+ * [ClockFading on lucide.dev](https://lucide.dev/icons/clock-fading)
5
+ */
6
+
7
+ export default iconWithClassName(ClockFading);
@@ -0,0 +1,2 @@
1
+ import { ClockFading } from "lucide-react";
2
+ export default ClockFading;
@@ -0,0 +1,7 @@
1
+ import { FunnelPlus } from "lucide-react-native";
2
+ import iconWithClassName from '../iconWithClassName';
3
+ /**
4
+ * [FunnelPlus on lucide.dev](https://lucide.dev/icons/funnel-plus)
5
+ */
6
+
7
+ export default iconWithClassName(FunnelPlus);
@@ -0,0 +1,2 @@
1
+ import { FunnelPlus } from "lucide-react";
2
+ export default FunnelPlus;
@@ -0,0 +1,7 @@
1
+ import { FunnelX } from "lucide-react-native";
2
+ import iconWithClassName from '../iconWithClassName';
3
+ /**
4
+ * [FunnelX on lucide.dev](https://lucide.dev/icons/funnel-x)
5
+ */
6
+
7
+ export default iconWithClassName(FunnelX);
@@ -0,0 +1,2 @@
1
+ import { FunnelX } from "lucide-react";
2
+ export default FunnelX;
@@ -0,0 +1,7 @@
1
+ import { Funnel } from "lucide-react-native";
2
+ import iconWithClassName from '../iconWithClassName';
3
+ /**
4
+ * [Funnel on lucide.dev](https://lucide.dev/icons/funnel)
5
+ */
6
+
7
+ export default iconWithClassName(Funnel);
@@ -0,0 +1,2 @@
1
+ import { Funnel } from "lucide-react";
2
+ export default Funnel;
@@ -0,0 +1,7 @@
1
+ import { SaudiRiyal } from "lucide-react-native";
2
+ import iconWithClassName from '../iconWithClassName';
3
+ /**
4
+ * [SaudiRiyal on lucide.dev](https://lucide.dev/icons/saudi-riyal)
5
+ */
6
+
7
+ export default iconWithClassName(SaudiRiyal);
@@ -0,0 +1,2 @@
1
+ import { SaudiRiyal } from "lucide-react";
2
+ export default SaudiRiyal;
@@ -0,0 +1,7 @@
1
+ import { Shrimp } from "lucide-react-native";
2
+ import iconWithClassName from '../iconWithClassName';
3
+ /**
4
+ * [Shrimp on lucide.dev](https://lucide.dev/icons/shrimp)
5
+ */
6
+
7
+ export default iconWithClassName(Shrimp);
@@ -0,0 +1,2 @@
1
+ import { Shrimp } from "lucide-react";
2
+ export default Shrimp;
package/esm/index.js CHANGED
@@ -459,6 +459,7 @@ export { default as Clock9Icon, default as LucideClock9 } from './icons/clock9';
459
459
  export { default as ClockAlertIcon, default as LucideClockAlert } from './icons/clock-alert';
460
460
  export { default as ClockArrowDownIcon, default as LucideClockArrowDown } from './icons/clock-arrow-down';
461
461
  export { default as ClockArrowUpIcon, default as LucideClockArrowUp } from './icons/clock-arrow-up';
462
+ export { default as ClockFadingIcon, default as LucideClockFading } from './icons/clock-fading';
462
463
  export { default as CloudIcon, default as LucideCloud } from './icons/cloud';
463
464
  export { default as CloudAlertIcon, default as LucideCloudAlert } from './icons/cloud-alert';
464
465
  export { default as CloudCogIcon, default as LucideCloudCog } from './icons/cloud-cog';
@@ -758,6 +759,9 @@ export { default as FrownIcon, default as LucideFrown } from './icons/frown';
758
759
  export { default as FuelIcon, default as LucideFuel } from './icons/fuel';
759
760
  export { default as FullscreenIcon, default as LucideFullscreen } from './icons/fullscreen';
760
761
  export { default as FunctionSquareIcon, default as LucideFunctionSquare } from './icons/function-square';
762
+ export { default as FunnelIcon, default as LucideFunnel } from './icons/funnel';
763
+ export { default as FunnelPlusIcon, default as LucideFunnelPlus } from './icons/funnel-plus';
764
+ export { default as FunnelXIcon, default as LucideFunnelX } from './icons/funnel-x';
761
765
  export { default as GalleryHorizontalIcon, default as LucideGalleryHorizontal } from './icons/gallery-horizontal';
762
766
  export { default as GalleryHorizontalEndIcon, default as LucideGalleryHorizontalEnd } from './icons/gallery-horizontal-end';
763
767
  export { default as GalleryThumbnailsIcon, default as LucideGalleryThumbnails } from './icons/gallery-thumbnails';
@@ -1328,6 +1332,7 @@ export { default as SaladIcon, default as LucideSalad } from './icons/salad';
1328
1332
  export { default as SandwichIcon, default as LucideSandwich } from './icons/sandwich';
1329
1333
  export { default as SatelliteIcon, default as LucideSatellite } from './icons/satellite';
1330
1334
  export { default as SatelliteDishIcon, default as LucideSatelliteDish } from './icons/satellite-dish';
1335
+ export { default as SaudiRiyalIcon, default as LucideSaudiRiyal } from './icons/saudi-riyal';
1331
1336
  export { default as SaveIcon, default as LucideSave } from './icons/save';
1332
1337
  export { default as SaveAllIcon, default as LucideSaveAll } from './icons/save-all';
1333
1338
  export { default as SaveOffIcon, default as LucideSaveOff } from './icons/save-off';
@@ -1399,6 +1404,7 @@ export { default as ShoppingBasketIcon, default as LucideShoppingBasket } from '
1399
1404
  export { default as ShoppingCartIcon, default as LucideShoppingCart } from './icons/shopping-cart';
1400
1405
  export { default as ShovelIcon, default as LucideShovel } from './icons/shovel';
1401
1406
  export { default as ShowerHeadIcon, default as LucideShowerHead } from './icons/shower-head';
1407
+ export { default as ShrimpIcon, default as LucideShrimp } from './icons/shrimp';
1402
1408
  export { default as ShrinkIcon, default as LucideShrink } from './icons/shrink';
1403
1409
  export { default as ShrubIcon, default as LucideShrub } from './icons/shrub';
1404
1410
  export { default as ShuffleIcon, default as LucideShuffle } from './icons/shuffle';
package/esm/index.web.js CHANGED
@@ -459,6 +459,7 @@ export { default as Clock9Icon, default as LucideClock9 } from './icons/clock9.w
459
459
  export { default as ClockAlertIcon, default as LucideClockAlert } from './icons/clock-alert.web';
460
460
  export { default as ClockArrowDownIcon, default as LucideClockArrowDown } from './icons/clock-arrow-down.web';
461
461
  export { default as ClockArrowUpIcon, default as LucideClockArrowUp } from './icons/clock-arrow-up.web';
462
+ export { default as ClockFadingIcon, default as LucideClockFading } from './icons/clock-fading.web';
462
463
  export { default as CloudIcon, default as LucideCloud } from './icons/cloud.web';
463
464
  export { default as CloudAlertIcon, default as LucideCloudAlert } from './icons/cloud-alert.web';
464
465
  export { default as CloudCogIcon, default as LucideCloudCog } from './icons/cloud-cog.web';
@@ -758,6 +759,9 @@ export { default as FrownIcon, default as LucideFrown } from './icons/frown.web'
758
759
  export { default as FuelIcon, default as LucideFuel } from './icons/fuel.web';
759
760
  export { default as FullscreenIcon, default as LucideFullscreen } from './icons/fullscreen.web';
760
761
  export { default as FunctionSquareIcon, default as LucideFunctionSquare } from './icons/function-square.web';
762
+ export { default as FunnelIcon, default as LucideFunnel } from './icons/funnel.web';
763
+ export { default as FunnelPlusIcon, default as LucideFunnelPlus } from './icons/funnel-plus.web';
764
+ export { default as FunnelXIcon, default as LucideFunnelX } from './icons/funnel-x.web';
761
765
  export { default as GalleryHorizontalIcon, default as LucideGalleryHorizontal } from './icons/gallery-horizontal.web';
762
766
  export { default as GalleryHorizontalEndIcon, default as LucideGalleryHorizontalEnd } from './icons/gallery-horizontal-end.web';
763
767
  export { default as GalleryThumbnailsIcon, default as LucideGalleryThumbnails } from './icons/gallery-thumbnails.web';
@@ -1328,6 +1332,7 @@ export { default as SaladIcon, default as LucideSalad } from './icons/salad.web'
1328
1332
  export { default as SandwichIcon, default as LucideSandwich } from './icons/sandwich.web';
1329
1333
  export { default as SatelliteIcon, default as LucideSatellite } from './icons/satellite.web';
1330
1334
  export { default as SatelliteDishIcon, default as LucideSatelliteDish } from './icons/satellite-dish.web';
1335
+ export { default as SaudiRiyalIcon, default as LucideSaudiRiyal } from './icons/saudi-riyal.web';
1331
1336
  export { default as SaveIcon, default as LucideSave } from './icons/save.web';
1332
1337
  export { default as SaveAllIcon, default as LucideSaveAll } from './icons/save-all.web';
1333
1338
  export { default as SaveOffIcon, default as LucideSaveOff } from './icons/save-off.web';
@@ -1399,6 +1404,7 @@ export { default as ShoppingBasketIcon, default as LucideShoppingBasket } from '
1399
1404
  export { default as ShoppingCartIcon, default as LucideShoppingCart } from './icons/shopping-cart.web';
1400
1405
  export { default as ShovelIcon, default as LucideShovel } from './icons/shovel.web';
1401
1406
  export { default as ShowerHeadIcon, default as LucideShowerHead } from './icons/shower-head.web';
1407
+ export { default as ShrimpIcon, default as LucideShrimp } from './icons/shrimp.web';
1402
1408
  export { default as ShrinkIcon, default as LucideShrink } from './icons/shrink.web';
1403
1409
  export { default as ShrubIcon, default as LucideShrub } from './icons/shrub.web';
1404
1410
  export { default as ShuffleIcon, default as LucideShuffle } from './icons/shuffle.web';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lucide-nativewind",
3
3
  "description": "Lucide icons for React Native, with a ClassName prop for nativewind",
4
- "version": "0.477.0",
4
+ "version": "0.483.0",
5
5
  "packageManager": "yarn@4.5.2",
6
6
  "sideEffects": false,
7
7
  "author": "Alexander Nicholson",
@@ -23,8 +23,8 @@
23
23
  "mui"
24
24
  ],
25
25
  "dependencies": {
26
- "lucide-react-native": "0.477.0",
27
- "lucide-react": "0.477.0"
26
+ "lucide-react-native": "0.483.0",
27
+ "lucide-react": "0.483.0"
28
28
  },
29
29
  "main": "cjs/index.js",
30
30
  "module": "esm/index.js",
@@ -0,0 +1,5 @@
1
+ /**
2
+ * [ClockFading on lucide.dev](https://lucide.dev/icons/clock-fading)
3
+ */
4
+ declare const _default: import("react").FunctionComponent<import("../iconWithClassName").LucidePropsWithClassName>;
5
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { ClockFading } from "lucide-react";
2
+ export default ClockFading;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * [FunnelPlus on lucide.dev](https://lucide.dev/icons/funnel-plus)
3
+ */
4
+ declare const _default: import("react").FunctionComponent<import("../iconWithClassName").LucidePropsWithClassName>;
5
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { FunnelPlus } from "lucide-react";
2
+ export default FunnelPlus;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * [FunnelX on lucide.dev](https://lucide.dev/icons/funnel-x)
3
+ */
4
+ declare const _default: import("react").FunctionComponent<import("../iconWithClassName").LucidePropsWithClassName>;
5
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { FunnelX } from "lucide-react";
2
+ export default FunnelX;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * [Funnel on lucide.dev](https://lucide.dev/icons/funnel)
3
+ */
4
+ declare const _default: import("react").FunctionComponent<import("../iconWithClassName").LucidePropsWithClassName>;
5
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { Funnel } from "lucide-react";
2
+ export default Funnel;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * [SaudiRiyal on lucide.dev](https://lucide.dev/icons/saudi-riyal)
3
+ */
4
+ declare const _default: import("react").FunctionComponent<import("../iconWithClassName").LucidePropsWithClassName>;
5
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { SaudiRiyal } from "lucide-react";
2
+ export default SaudiRiyal;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * [Shrimp on lucide.dev](https://lucide.dev/icons/shrimp)
3
+ */
4
+ declare const _default: import("react").FunctionComponent<import("../iconWithClassName").LucidePropsWithClassName>;
5
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { Shrimp } from "lucide-react";
2
+ export default Shrimp;
package/types/index.d.ts CHANGED
@@ -459,6 +459,7 @@ export { default as Clock9Icon, default as LucideClock9 } from './icons/clock9';
459
459
  export { default as ClockAlertIcon, default as LucideClockAlert } from './icons/clock-alert';
460
460
  export { default as ClockArrowDownIcon, default as LucideClockArrowDown } from './icons/clock-arrow-down';
461
461
  export { default as ClockArrowUpIcon, default as LucideClockArrowUp } from './icons/clock-arrow-up';
462
+ export { default as ClockFadingIcon, default as LucideClockFading } from './icons/clock-fading';
462
463
  export { default as CloudIcon, default as LucideCloud } from './icons/cloud';
463
464
  export { default as CloudAlertIcon, default as LucideCloudAlert } from './icons/cloud-alert';
464
465
  export { default as CloudCogIcon, default as LucideCloudCog } from './icons/cloud-cog';
@@ -758,6 +759,9 @@ export { default as FrownIcon, default as LucideFrown } from './icons/frown';
758
759
  export { default as FuelIcon, default as LucideFuel } from './icons/fuel';
759
760
  export { default as FullscreenIcon, default as LucideFullscreen } from './icons/fullscreen';
760
761
  export { default as FunctionSquareIcon, default as LucideFunctionSquare } from './icons/function-square';
762
+ export { default as FunnelIcon, default as LucideFunnel } from './icons/funnel';
763
+ export { default as FunnelPlusIcon, default as LucideFunnelPlus } from './icons/funnel-plus';
764
+ export { default as FunnelXIcon, default as LucideFunnelX } from './icons/funnel-x';
761
765
  export { default as GalleryHorizontalIcon, default as LucideGalleryHorizontal } from './icons/gallery-horizontal';
762
766
  export { default as GalleryHorizontalEndIcon, default as LucideGalleryHorizontalEnd } from './icons/gallery-horizontal-end';
763
767
  export { default as GalleryThumbnailsIcon, default as LucideGalleryThumbnails } from './icons/gallery-thumbnails';
@@ -1328,6 +1332,7 @@ export { default as SaladIcon, default as LucideSalad } from './icons/salad';
1328
1332
  export { default as SandwichIcon, default as LucideSandwich } from './icons/sandwich';
1329
1333
  export { default as SatelliteIcon, default as LucideSatellite } from './icons/satellite';
1330
1334
  export { default as SatelliteDishIcon, default as LucideSatelliteDish } from './icons/satellite-dish';
1335
+ export { default as SaudiRiyalIcon, default as LucideSaudiRiyal } from './icons/saudi-riyal';
1331
1336
  export { default as SaveIcon, default as LucideSave } from './icons/save';
1332
1337
  export { default as SaveAllIcon, default as LucideSaveAll } from './icons/save-all';
1333
1338
  export { default as SaveOffIcon, default as LucideSaveOff } from './icons/save-off';
@@ -1399,6 +1404,7 @@ export { default as ShoppingBasketIcon, default as LucideShoppingBasket } from '
1399
1404
  export { default as ShoppingCartIcon, default as LucideShoppingCart } from './icons/shopping-cart';
1400
1405
  export { default as ShovelIcon, default as LucideShovel } from './icons/shovel';
1401
1406
  export { default as ShowerHeadIcon, default as LucideShowerHead } from './icons/shower-head';
1407
+ export { default as ShrimpIcon, default as LucideShrimp } from './icons/shrimp';
1402
1408
  export { default as ShrinkIcon, default as LucideShrink } from './icons/shrink';
1403
1409
  export { default as ShrubIcon, default as LucideShrub } from './icons/shrub';
1404
1410
  export { default as ShuffleIcon, default as LucideShuffle } from './icons/shuffle';
@@ -459,6 +459,7 @@ export { default as Clock9Icon, default as LucideClock9 } from './icons/clock9.w
459
459
  export { default as ClockAlertIcon, default as LucideClockAlert } from './icons/clock-alert.web';
460
460
  export { default as ClockArrowDownIcon, default as LucideClockArrowDown } from './icons/clock-arrow-down.web';
461
461
  export { default as ClockArrowUpIcon, default as LucideClockArrowUp } from './icons/clock-arrow-up.web';
462
+ export { default as ClockFadingIcon, default as LucideClockFading } from './icons/clock-fading.web';
462
463
  export { default as CloudIcon, default as LucideCloud } from './icons/cloud.web';
463
464
  export { default as CloudAlertIcon, default as LucideCloudAlert } from './icons/cloud-alert.web';
464
465
  export { default as CloudCogIcon, default as LucideCloudCog } from './icons/cloud-cog.web';
@@ -758,6 +759,9 @@ export { default as FrownIcon, default as LucideFrown } from './icons/frown.web'
758
759
  export { default as FuelIcon, default as LucideFuel } from './icons/fuel.web';
759
760
  export { default as FullscreenIcon, default as LucideFullscreen } from './icons/fullscreen.web';
760
761
  export { default as FunctionSquareIcon, default as LucideFunctionSquare } from './icons/function-square.web';
762
+ export { default as FunnelIcon, default as LucideFunnel } from './icons/funnel.web';
763
+ export { default as FunnelPlusIcon, default as LucideFunnelPlus } from './icons/funnel-plus.web';
764
+ export { default as FunnelXIcon, default as LucideFunnelX } from './icons/funnel-x.web';
761
765
  export { default as GalleryHorizontalIcon, default as LucideGalleryHorizontal } from './icons/gallery-horizontal.web';
762
766
  export { default as GalleryHorizontalEndIcon, default as LucideGalleryHorizontalEnd } from './icons/gallery-horizontal-end.web';
763
767
  export { default as GalleryThumbnailsIcon, default as LucideGalleryThumbnails } from './icons/gallery-thumbnails.web';
@@ -1328,6 +1332,7 @@ export { default as SaladIcon, default as LucideSalad } from './icons/salad.web'
1328
1332
  export { default as SandwichIcon, default as LucideSandwich } from './icons/sandwich.web';
1329
1333
  export { default as SatelliteIcon, default as LucideSatellite } from './icons/satellite.web';
1330
1334
  export { default as SatelliteDishIcon, default as LucideSatelliteDish } from './icons/satellite-dish.web';
1335
+ export { default as SaudiRiyalIcon, default as LucideSaudiRiyal } from './icons/saudi-riyal.web';
1331
1336
  export { default as SaveIcon, default as LucideSave } from './icons/save.web';
1332
1337
  export { default as SaveAllIcon, default as LucideSaveAll } from './icons/save-all.web';
1333
1338
  export { default as SaveOffIcon, default as LucideSaveOff } from './icons/save-off.web';
@@ -1399,6 +1404,7 @@ export { default as ShoppingBasketIcon, default as LucideShoppingBasket } from '
1399
1404
  export { default as ShoppingCartIcon, default as LucideShoppingCart } from './icons/shopping-cart.web';
1400
1405
  export { default as ShovelIcon, default as LucideShovel } from './icons/shovel.web';
1401
1406
  export { default as ShowerHeadIcon, default as LucideShowerHead } from './icons/shower-head.web';
1407
+ export { default as ShrimpIcon, default as LucideShrimp } from './icons/shrimp.web';
1402
1408
  export { default as ShrinkIcon, default as LucideShrink } from './icons/shrink.web';
1403
1409
  export { default as ShrubIcon, default as LucideShrub } from './icons/shrub.web';
1404
1410
  export { default as ShuffleIcon, default as LucideShuffle } from './icons/shuffle.web';