lucide-nativewind 1.16.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/icons/globe-check.js +13 -0
- package/cjs/icons/globe-check.web.js +8 -0
- package/cjs/icons/parasol.js +13 -0
- package/cjs/icons/parasol.web.js +8 -0
- package/cjs/icons/play-off.js +13 -0
- package/cjs/icons/play-off.web.js +8 -0
- package/cjs/icons/webcam-off.js +13 -0
- package/cjs/icons/webcam-off.web.js +8 -0
- package/cjs/index.js +52 -0
- package/cjs/index.web.js +52 -0
- package/esm/icons/globe-check.js +7 -0
- package/esm/icons/globe-check.web.js +2 -0
- package/esm/icons/parasol.js +7 -0
- package/esm/icons/parasol.web.js +2 -0
- package/esm/icons/play-off.js +7 -0
- package/esm/icons/play-off.web.js +2 -0
- package/esm/icons/webcam-off.js +7 -0
- package/esm/icons/webcam-off.web.js +2 -0
- package/esm/index.js +4 -0
- package/esm/index.web.js +4 -0
- package/package.json +3 -3
- package/types/icons/globe-check.d.ts +5 -0
- package/types/icons/globe-check.web.d.ts +2 -0
- package/types/icons/parasol.d.ts +5 -0
- package/types/icons/parasol.web.d.ts +2 -0
- package/types/icons/play-off.d.ts +5 -0
- package/types/icons/play-off.web.d.ts +2 -0
- package/types/icons/webcam-off.d.ts +5 -0
- package/types/icons/webcam-off.web.d.ts +2 -0
- package/types/index.d.ts +4 -0
- package/types/index.web.d.ts +4 -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
|
+
* [GlobeCheck on lucide.dev](https://lucide.dev/icons/globe-check)
|
|
12
|
+
*/
|
|
13
|
+
var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.GlobeCheck);
|
|
@@ -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
|
+
* [Parasol on lucide.dev](https://lucide.dev/icons/parasol)
|
|
12
|
+
*/
|
|
13
|
+
var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.Parasol);
|
|
@@ -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
|
+
* [PlayOff on lucide.dev](https://lucide.dev/icons/play-off)
|
|
12
|
+
*/
|
|
13
|
+
var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.PlayOff);
|
|
@@ -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
|
+
* [WebcamOff on lucide.dev](https://lucide.dev/icons/webcam-off)
|
|
12
|
+
*/
|
|
13
|
+
var _default = exports["default"] = (0, _iconWithClassName["default"])(_lucideReactNative.WebcamOff);
|
package/cjs/index.js
CHANGED
|
@@ -5211,6 +5211,12 @@ Object.defineProperty(exports, "Globe2Icon", {
|
|
|
5211
5211
|
return _globe2["default"];
|
|
5212
5212
|
}
|
|
5213
5213
|
});
|
|
5214
|
+
Object.defineProperty(exports, "GlobeCheckIcon", {
|
|
5215
|
+
enumerable: true,
|
|
5216
|
+
get: function get() {
|
|
5217
|
+
return _globeCheck["default"];
|
|
5218
|
+
}
|
|
5219
|
+
});
|
|
5214
5220
|
Object.defineProperty(exports, "GlobeIcon", {
|
|
5215
5221
|
enumerable: true,
|
|
5216
5222
|
get: function get() {
|
|
@@ -11679,6 +11685,12 @@ Object.defineProperty(exports, "LucideGlobe2", {
|
|
|
11679
11685
|
return _globe2["default"];
|
|
11680
11686
|
}
|
|
11681
11687
|
});
|
|
11688
|
+
Object.defineProperty(exports, "LucideGlobeCheck", {
|
|
11689
|
+
enumerable: true,
|
|
11690
|
+
get: function get() {
|
|
11691
|
+
return _globeCheck["default"];
|
|
11692
|
+
}
|
|
11693
|
+
});
|
|
11682
11694
|
Object.defineProperty(exports, "LucideGlobeLock", {
|
|
11683
11695
|
enumerable: true,
|
|
11684
11696
|
get: function get() {
|
|
@@ -14211,6 +14223,12 @@ Object.defineProperty(exports, "LucidePaperclip", {
|
|
|
14211
14223
|
return _paperclip["default"];
|
|
14212
14224
|
}
|
|
14213
14225
|
});
|
|
14226
|
+
Object.defineProperty(exports, "LucideParasol", {
|
|
14227
|
+
enumerable: true,
|
|
14228
|
+
get: function get() {
|
|
14229
|
+
return _parasol["default"];
|
|
14230
|
+
}
|
|
14231
|
+
});
|
|
14214
14232
|
Object.defineProperty(exports, "LucideParentheses", {
|
|
14215
14233
|
enumerable: true,
|
|
14216
14234
|
get: function get() {
|
|
@@ -14565,6 +14583,12 @@ Object.defineProperty(exports, "LucidePlayCircle", {
|
|
|
14565
14583
|
return _playCircle["default"];
|
|
14566
14584
|
}
|
|
14567
14585
|
});
|
|
14586
|
+
Object.defineProperty(exports, "LucidePlayOff", {
|
|
14587
|
+
enumerable: true,
|
|
14588
|
+
get: function get() {
|
|
14589
|
+
return _playOff["default"];
|
|
14590
|
+
}
|
|
14591
|
+
});
|
|
14568
14592
|
Object.defineProperty(exports, "LucidePlaySquare", {
|
|
14569
14593
|
enumerable: true,
|
|
14570
14594
|
get: function get() {
|
|
@@ -17931,6 +17955,12 @@ Object.defineProperty(exports, "LucideWebcam", {
|
|
|
17931
17955
|
return _webcam["default"];
|
|
17932
17956
|
}
|
|
17933
17957
|
});
|
|
17958
|
+
Object.defineProperty(exports, "LucideWebcamOff", {
|
|
17959
|
+
enumerable: true,
|
|
17960
|
+
get: function get() {
|
|
17961
|
+
return _webcamOff["default"];
|
|
17962
|
+
}
|
|
17963
|
+
});
|
|
17934
17964
|
Object.defineProperty(exports, "LucideWebhook", {
|
|
17935
17965
|
enumerable: true,
|
|
17936
17966
|
get: function get() {
|
|
@@ -19485,6 +19515,12 @@ Object.defineProperty(exports, "PaperclipIcon", {
|
|
|
19485
19515
|
return _paperclip["default"];
|
|
19486
19516
|
}
|
|
19487
19517
|
});
|
|
19518
|
+
Object.defineProperty(exports, "ParasolIcon", {
|
|
19519
|
+
enumerable: true,
|
|
19520
|
+
get: function get() {
|
|
19521
|
+
return _parasol["default"];
|
|
19522
|
+
}
|
|
19523
|
+
});
|
|
19488
19524
|
Object.defineProperty(exports, "ParenthesesIcon", {
|
|
19489
19525
|
enumerable: true,
|
|
19490
19526
|
get: function get() {
|
|
@@ -19839,6 +19875,12 @@ Object.defineProperty(exports, "PlayIcon", {
|
|
|
19839
19875
|
return _play["default"];
|
|
19840
19876
|
}
|
|
19841
19877
|
});
|
|
19878
|
+
Object.defineProperty(exports, "PlayOffIcon", {
|
|
19879
|
+
enumerable: true,
|
|
19880
|
+
get: function get() {
|
|
19881
|
+
return _playOff["default"];
|
|
19882
|
+
}
|
|
19883
|
+
});
|
|
19842
19884
|
Object.defineProperty(exports, "PlaySquareIcon", {
|
|
19843
19885
|
enumerable: true,
|
|
19844
19886
|
get: function get() {
|
|
@@ -23205,6 +23247,12 @@ Object.defineProperty(exports, "WebcamIcon", {
|
|
|
23205
23247
|
return _webcam["default"];
|
|
23206
23248
|
}
|
|
23207
23249
|
});
|
|
23250
|
+
Object.defineProperty(exports, "WebcamOffIcon", {
|
|
23251
|
+
enumerable: true,
|
|
23252
|
+
get: function get() {
|
|
23253
|
+
return _webcamOff["default"];
|
|
23254
|
+
}
|
|
23255
|
+
});
|
|
23208
23256
|
Object.defineProperty(exports, "WebhookIcon", {
|
|
23209
23257
|
enumerable: true,
|
|
23210
23258
|
get: function get() {
|
|
@@ -24346,6 +24394,7 @@ var _glassWater = _interopRequireDefault(require("./icons/glass-water"));
|
|
|
24346
24394
|
var _glasses = _interopRequireDefault(require("./icons/glasses"));
|
|
24347
24395
|
var _globe = _interopRequireDefault(require("./icons/globe"));
|
|
24348
24396
|
var _globe2 = _interopRequireDefault(require("./icons/globe2"));
|
|
24397
|
+
var _globeCheck = _interopRequireDefault(require("./icons/globe-check"));
|
|
24349
24398
|
var _globeLock = _interopRequireDefault(require("./icons/globe-lock"));
|
|
24350
24399
|
var _globeOff = _interopRequireDefault(require("./icons/globe-off"));
|
|
24351
24400
|
var _globeX = _interopRequireDefault(require("./icons/globe-x"));
|
|
@@ -24768,6 +24817,7 @@ var _panelsRightBottom = _interopRequireDefault(require("./icons/panels-right-bo
|
|
|
24768
24817
|
var _panelsTopBottom = _interopRequireDefault(require("./icons/panels-top-bottom"));
|
|
24769
24818
|
var _panelsTopLeft = _interopRequireDefault(require("./icons/panels-top-left"));
|
|
24770
24819
|
var _paperclip = _interopRequireDefault(require("./icons/paperclip"));
|
|
24820
|
+
var _parasol = _interopRequireDefault(require("./icons/parasol"));
|
|
24771
24821
|
var _parentheses = _interopRequireDefault(require("./icons/parentheses"));
|
|
24772
24822
|
var _parkingCircle = _interopRequireDefault(require("./icons/parking-circle"));
|
|
24773
24823
|
var _parkingCircleOff = _interopRequireDefault(require("./icons/parking-circle-off"));
|
|
@@ -24827,6 +24877,7 @@ var _planeLanding = _interopRequireDefault(require("./icons/plane-landing"));
|
|
|
24827
24877
|
var _planeTakeoff = _interopRequireDefault(require("./icons/plane-takeoff"));
|
|
24828
24878
|
var _play = _interopRequireDefault(require("./icons/play"));
|
|
24829
24879
|
var _playCircle = _interopRequireDefault(require("./icons/play-circle"));
|
|
24880
|
+
var _playOff = _interopRequireDefault(require("./icons/play-off"));
|
|
24830
24881
|
var _playSquare = _interopRequireDefault(require("./icons/play-square"));
|
|
24831
24882
|
var _plug = _interopRequireDefault(require("./icons/plug"));
|
|
24832
24883
|
var _plug2 = _interopRequireDefault(require("./icons/plug2"));
|
|
@@ -25388,6 +25439,7 @@ var _wavesLadder = _interopRequireDefault(require("./icons/waves-ladder"));
|
|
|
25388
25439
|
var _wavesVertical = _interopRequireDefault(require("./icons/waves-vertical"));
|
|
25389
25440
|
var _waypoints = _interopRequireDefault(require("./icons/waypoints"));
|
|
25390
25441
|
var _webcam = _interopRequireDefault(require("./icons/webcam"));
|
|
25442
|
+
var _webcamOff = _interopRequireDefault(require("./icons/webcam-off"));
|
|
25391
25443
|
var _webhook = _interopRequireDefault(require("./icons/webhook"));
|
|
25392
25444
|
var _webhookOff = _interopRequireDefault(require("./icons/webhook-off"));
|
|
25393
25445
|
var _weight = _interopRequireDefault(require("./icons/weight"));
|
package/cjs/index.web.js
CHANGED
|
@@ -5211,6 +5211,12 @@ Object.defineProperty(exports, "Globe2Icon", {
|
|
|
5211
5211
|
return _globe2["default"];
|
|
5212
5212
|
}
|
|
5213
5213
|
});
|
|
5214
|
+
Object.defineProperty(exports, "GlobeCheckIcon", {
|
|
5215
|
+
enumerable: true,
|
|
5216
|
+
get: function get() {
|
|
5217
|
+
return _globeCheck["default"];
|
|
5218
|
+
}
|
|
5219
|
+
});
|
|
5214
5220
|
Object.defineProperty(exports, "GlobeIcon", {
|
|
5215
5221
|
enumerable: true,
|
|
5216
5222
|
get: function get() {
|
|
@@ -11679,6 +11685,12 @@ Object.defineProperty(exports, "LucideGlobe2", {
|
|
|
11679
11685
|
return _globe2["default"];
|
|
11680
11686
|
}
|
|
11681
11687
|
});
|
|
11688
|
+
Object.defineProperty(exports, "LucideGlobeCheck", {
|
|
11689
|
+
enumerable: true,
|
|
11690
|
+
get: function get() {
|
|
11691
|
+
return _globeCheck["default"];
|
|
11692
|
+
}
|
|
11693
|
+
});
|
|
11682
11694
|
Object.defineProperty(exports, "LucideGlobeLock", {
|
|
11683
11695
|
enumerable: true,
|
|
11684
11696
|
get: function get() {
|
|
@@ -14211,6 +14223,12 @@ Object.defineProperty(exports, "LucidePaperclip", {
|
|
|
14211
14223
|
return _paperclip["default"];
|
|
14212
14224
|
}
|
|
14213
14225
|
});
|
|
14226
|
+
Object.defineProperty(exports, "LucideParasol", {
|
|
14227
|
+
enumerable: true,
|
|
14228
|
+
get: function get() {
|
|
14229
|
+
return _parasol["default"];
|
|
14230
|
+
}
|
|
14231
|
+
});
|
|
14214
14232
|
Object.defineProperty(exports, "LucideParentheses", {
|
|
14215
14233
|
enumerable: true,
|
|
14216
14234
|
get: function get() {
|
|
@@ -14565,6 +14583,12 @@ Object.defineProperty(exports, "LucidePlayCircle", {
|
|
|
14565
14583
|
return _playCircle["default"];
|
|
14566
14584
|
}
|
|
14567
14585
|
});
|
|
14586
|
+
Object.defineProperty(exports, "LucidePlayOff", {
|
|
14587
|
+
enumerable: true,
|
|
14588
|
+
get: function get() {
|
|
14589
|
+
return _playOff["default"];
|
|
14590
|
+
}
|
|
14591
|
+
});
|
|
14568
14592
|
Object.defineProperty(exports, "LucidePlaySquare", {
|
|
14569
14593
|
enumerable: true,
|
|
14570
14594
|
get: function get() {
|
|
@@ -17931,6 +17955,12 @@ Object.defineProperty(exports, "LucideWebcam", {
|
|
|
17931
17955
|
return _webcam["default"];
|
|
17932
17956
|
}
|
|
17933
17957
|
});
|
|
17958
|
+
Object.defineProperty(exports, "LucideWebcamOff", {
|
|
17959
|
+
enumerable: true,
|
|
17960
|
+
get: function get() {
|
|
17961
|
+
return _webcamOff["default"];
|
|
17962
|
+
}
|
|
17963
|
+
});
|
|
17934
17964
|
Object.defineProperty(exports, "LucideWebhook", {
|
|
17935
17965
|
enumerable: true,
|
|
17936
17966
|
get: function get() {
|
|
@@ -19485,6 +19515,12 @@ Object.defineProperty(exports, "PaperclipIcon", {
|
|
|
19485
19515
|
return _paperclip["default"];
|
|
19486
19516
|
}
|
|
19487
19517
|
});
|
|
19518
|
+
Object.defineProperty(exports, "ParasolIcon", {
|
|
19519
|
+
enumerable: true,
|
|
19520
|
+
get: function get() {
|
|
19521
|
+
return _parasol["default"];
|
|
19522
|
+
}
|
|
19523
|
+
});
|
|
19488
19524
|
Object.defineProperty(exports, "ParenthesesIcon", {
|
|
19489
19525
|
enumerable: true,
|
|
19490
19526
|
get: function get() {
|
|
@@ -19839,6 +19875,12 @@ Object.defineProperty(exports, "PlayIcon", {
|
|
|
19839
19875
|
return _play["default"];
|
|
19840
19876
|
}
|
|
19841
19877
|
});
|
|
19878
|
+
Object.defineProperty(exports, "PlayOffIcon", {
|
|
19879
|
+
enumerable: true,
|
|
19880
|
+
get: function get() {
|
|
19881
|
+
return _playOff["default"];
|
|
19882
|
+
}
|
|
19883
|
+
});
|
|
19842
19884
|
Object.defineProperty(exports, "PlaySquareIcon", {
|
|
19843
19885
|
enumerable: true,
|
|
19844
19886
|
get: function get() {
|
|
@@ -23205,6 +23247,12 @@ Object.defineProperty(exports, "WebcamIcon", {
|
|
|
23205
23247
|
return _webcam["default"];
|
|
23206
23248
|
}
|
|
23207
23249
|
});
|
|
23250
|
+
Object.defineProperty(exports, "WebcamOffIcon", {
|
|
23251
|
+
enumerable: true,
|
|
23252
|
+
get: function get() {
|
|
23253
|
+
return _webcamOff["default"];
|
|
23254
|
+
}
|
|
23255
|
+
});
|
|
23208
23256
|
Object.defineProperty(exports, "WebhookIcon", {
|
|
23209
23257
|
enumerable: true,
|
|
23210
23258
|
get: function get() {
|
|
@@ -24340,6 +24388,7 @@ var _glassWater = _interopRequireDefault(require("./icons/glass-water.web"));
|
|
|
24340
24388
|
var _glasses = _interopRequireDefault(require("./icons/glasses.web"));
|
|
24341
24389
|
var _globe = _interopRequireDefault(require("./icons/globe.web"));
|
|
24342
24390
|
var _globe2 = _interopRequireDefault(require("./icons/globe2.web"));
|
|
24391
|
+
var _globeCheck = _interopRequireDefault(require("./icons/globe-check.web"));
|
|
24343
24392
|
var _globeLock = _interopRequireDefault(require("./icons/globe-lock.web"));
|
|
24344
24393
|
var _globeOff = _interopRequireDefault(require("./icons/globe-off.web"));
|
|
24345
24394
|
var _globeX = _interopRequireDefault(require("./icons/globe-x.web"));
|
|
@@ -24762,6 +24811,7 @@ var _panelsRightBottom = _interopRequireDefault(require("./icons/panels-right-bo
|
|
|
24762
24811
|
var _panelsTopBottom = _interopRequireDefault(require("./icons/panels-top-bottom.web"));
|
|
24763
24812
|
var _panelsTopLeft = _interopRequireDefault(require("./icons/panels-top-left.web"));
|
|
24764
24813
|
var _paperclip = _interopRequireDefault(require("./icons/paperclip.web"));
|
|
24814
|
+
var _parasol = _interopRequireDefault(require("./icons/parasol.web"));
|
|
24765
24815
|
var _parentheses = _interopRequireDefault(require("./icons/parentheses.web"));
|
|
24766
24816
|
var _parkingCircle = _interopRequireDefault(require("./icons/parking-circle.web"));
|
|
24767
24817
|
var _parkingCircleOff = _interopRequireDefault(require("./icons/parking-circle-off.web"));
|
|
@@ -24821,6 +24871,7 @@ var _planeLanding = _interopRequireDefault(require("./icons/plane-landing.web"))
|
|
|
24821
24871
|
var _planeTakeoff = _interopRequireDefault(require("./icons/plane-takeoff.web"));
|
|
24822
24872
|
var _play = _interopRequireDefault(require("./icons/play.web"));
|
|
24823
24873
|
var _playCircle = _interopRequireDefault(require("./icons/play-circle.web"));
|
|
24874
|
+
var _playOff = _interopRequireDefault(require("./icons/play-off.web"));
|
|
24824
24875
|
var _playSquare = _interopRequireDefault(require("./icons/play-square.web"));
|
|
24825
24876
|
var _plug = _interopRequireDefault(require("./icons/plug.web"));
|
|
24826
24877
|
var _plug2 = _interopRequireDefault(require("./icons/plug2.web"));
|
|
@@ -25382,6 +25433,7 @@ var _wavesLadder = _interopRequireDefault(require("./icons/waves-ladder.web"));
|
|
|
25382
25433
|
var _wavesVertical = _interopRequireDefault(require("./icons/waves-vertical.web"));
|
|
25383
25434
|
var _waypoints = _interopRequireDefault(require("./icons/waypoints.web"));
|
|
25384
25435
|
var _webcam = _interopRequireDefault(require("./icons/webcam.web"));
|
|
25436
|
+
var _webcamOff = _interopRequireDefault(require("./icons/webcam-off.web"));
|
|
25385
25437
|
var _webhook = _interopRequireDefault(require("./icons/webhook.web"));
|
|
25386
25438
|
var _webhookOff = _interopRequireDefault(require("./icons/webhook-off.web"));
|
|
25387
25439
|
var _weight = _interopRequireDefault(require("./icons/weight.web"));
|
package/esm/index.js
CHANGED
|
@@ -867,6 +867,7 @@ export { default as GlassWaterIcon, default as LucideGlassWater } from './icons/
|
|
|
867
867
|
export { default as GlassesIcon, default as LucideGlasses } from './icons/glasses';
|
|
868
868
|
export { default as GlobeIcon, default as LucideGlobe } from './icons/globe';
|
|
869
869
|
export { default as Globe2Icon, default as LucideGlobe2 } from './icons/globe2';
|
|
870
|
+
export { default as GlobeCheckIcon, default as LucideGlobeCheck } from './icons/globe-check';
|
|
870
871
|
export { default as GlobeLockIcon, default as LucideGlobeLock } from './icons/globe-lock';
|
|
871
872
|
export { default as GlobeOffIcon, default as LucideGlobeOff } from './icons/globe-off';
|
|
872
873
|
export { default as GlobeXIcon, default as LucideGlobeX } from './icons/globe-x';
|
|
@@ -1289,6 +1290,7 @@ export { default as PanelsRightBottomIcon, default as LucidePanelsRightBottom }
|
|
|
1289
1290
|
export { default as PanelsTopBottomIcon, default as LucidePanelsTopBottom } from './icons/panels-top-bottom';
|
|
1290
1291
|
export { default as PanelsTopLeftIcon, default as LucidePanelsTopLeft } from './icons/panels-top-left';
|
|
1291
1292
|
export { default as PaperclipIcon, default as LucidePaperclip } from './icons/paperclip';
|
|
1293
|
+
export { default as ParasolIcon, default as LucideParasol } from './icons/parasol';
|
|
1292
1294
|
export { default as ParenthesesIcon, default as LucideParentheses } from './icons/parentheses';
|
|
1293
1295
|
export { default as ParkingCircleIcon, default as LucideParkingCircle } from './icons/parking-circle';
|
|
1294
1296
|
export { default as ParkingCircleOffIcon, default as LucideParkingCircleOff } from './icons/parking-circle-off';
|
|
@@ -1348,6 +1350,7 @@ export { default as PlaneLandingIcon, default as LucidePlaneLanding } from './ic
|
|
|
1348
1350
|
export { default as PlaneTakeoffIcon, default as LucidePlaneTakeoff } from './icons/plane-takeoff';
|
|
1349
1351
|
export { default as PlayIcon, default as LucidePlay } from './icons/play';
|
|
1350
1352
|
export { default as PlayCircleIcon, default as LucidePlayCircle } from './icons/play-circle';
|
|
1353
|
+
export { default as PlayOffIcon, default as LucidePlayOff } from './icons/play-off';
|
|
1351
1354
|
export { default as PlaySquareIcon, default as LucidePlaySquare } from './icons/play-square';
|
|
1352
1355
|
export { default as PlugIcon, default as LucidePlug } from './icons/plug';
|
|
1353
1356
|
export { default as Plug2Icon, default as LucidePlug2 } from './icons/plug2';
|
|
@@ -1909,6 +1912,7 @@ export { default as WavesLadderIcon, default as LucideWavesLadder } from './icon
|
|
|
1909
1912
|
export { default as WavesVerticalIcon, default as LucideWavesVertical } from './icons/waves-vertical';
|
|
1910
1913
|
export { default as WaypointsIcon, default as LucideWaypoints } from './icons/waypoints';
|
|
1911
1914
|
export { default as WebcamIcon, default as LucideWebcam } from './icons/webcam';
|
|
1915
|
+
export { default as WebcamOffIcon, default as LucideWebcamOff } from './icons/webcam-off';
|
|
1912
1916
|
export { default as WebhookIcon, default as LucideWebhook } from './icons/webhook';
|
|
1913
1917
|
export { default as WebhookOffIcon, default as LucideWebhookOff } from './icons/webhook-off';
|
|
1914
1918
|
export { default as WeightIcon, default as LucideWeight } from './icons/weight';
|
package/esm/index.web.js
CHANGED
|
@@ -867,6 +867,7 @@ export { default as GlassWaterIcon, default as LucideGlassWater } from './icons/
|
|
|
867
867
|
export { default as GlassesIcon, default as LucideGlasses } from './icons/glasses.web';
|
|
868
868
|
export { default as GlobeIcon, default as LucideGlobe } from './icons/globe.web';
|
|
869
869
|
export { default as Globe2Icon, default as LucideGlobe2 } from './icons/globe2.web';
|
|
870
|
+
export { default as GlobeCheckIcon, default as LucideGlobeCheck } from './icons/globe-check.web';
|
|
870
871
|
export { default as GlobeLockIcon, default as LucideGlobeLock } from './icons/globe-lock.web';
|
|
871
872
|
export { default as GlobeOffIcon, default as LucideGlobeOff } from './icons/globe-off.web';
|
|
872
873
|
export { default as GlobeXIcon, default as LucideGlobeX } from './icons/globe-x.web';
|
|
@@ -1289,6 +1290,7 @@ export { default as PanelsRightBottomIcon, default as LucidePanelsRightBottom }
|
|
|
1289
1290
|
export { default as PanelsTopBottomIcon, default as LucidePanelsTopBottom } from './icons/panels-top-bottom.web';
|
|
1290
1291
|
export { default as PanelsTopLeftIcon, default as LucidePanelsTopLeft } from './icons/panels-top-left.web';
|
|
1291
1292
|
export { default as PaperclipIcon, default as LucidePaperclip } from './icons/paperclip.web';
|
|
1293
|
+
export { default as ParasolIcon, default as LucideParasol } from './icons/parasol.web';
|
|
1292
1294
|
export { default as ParenthesesIcon, default as LucideParentheses } from './icons/parentheses.web';
|
|
1293
1295
|
export { default as ParkingCircleIcon, default as LucideParkingCircle } from './icons/parking-circle.web';
|
|
1294
1296
|
export { default as ParkingCircleOffIcon, default as LucideParkingCircleOff } from './icons/parking-circle-off.web';
|
|
@@ -1348,6 +1350,7 @@ export { default as PlaneLandingIcon, default as LucidePlaneLanding } from './ic
|
|
|
1348
1350
|
export { default as PlaneTakeoffIcon, default as LucidePlaneTakeoff } from './icons/plane-takeoff.web';
|
|
1349
1351
|
export { default as PlayIcon, default as LucidePlay } from './icons/play.web';
|
|
1350
1352
|
export { default as PlayCircleIcon, default as LucidePlayCircle } from './icons/play-circle.web';
|
|
1353
|
+
export { default as PlayOffIcon, default as LucidePlayOff } from './icons/play-off.web';
|
|
1351
1354
|
export { default as PlaySquareIcon, default as LucidePlaySquare } from './icons/play-square.web';
|
|
1352
1355
|
export { default as PlugIcon, default as LucidePlug } from './icons/plug.web';
|
|
1353
1356
|
export { default as Plug2Icon, default as LucidePlug2 } from './icons/plug2.web';
|
|
@@ -1909,6 +1912,7 @@ export { default as WavesLadderIcon, default as LucideWavesLadder } from './icon
|
|
|
1909
1912
|
export { default as WavesVerticalIcon, default as LucideWavesVertical } from './icons/waves-vertical.web';
|
|
1910
1913
|
export { default as WaypointsIcon, default as LucideWaypoints } from './icons/waypoints.web';
|
|
1911
1914
|
export { default as WebcamIcon, default as LucideWebcam } from './icons/webcam.web';
|
|
1915
|
+
export { default as WebcamOffIcon, default as LucideWebcamOff } from './icons/webcam-off.web';
|
|
1912
1916
|
export { default as WebhookIcon, default as LucideWebhook } from './icons/webhook.web';
|
|
1913
1917
|
export { default as WebhookOffIcon, default as LucideWebhookOff } from './icons/webhook-off.web';
|
|
1914
1918
|
export { default as WeightIcon, default as LucideWeight } from './icons/weight.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": "1.
|
|
4
|
+
"version": "1.18.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": "1.
|
|
27
|
-
"lucide-react": "1.
|
|
26
|
+
"lucide-react-native": "1.18.0",
|
|
27
|
+
"lucide-react": "1.18.0"
|
|
28
28
|
},
|
|
29
29
|
"main": "cjs/index.js",
|
|
30
30
|
"module": "esm/index.js",
|
package/types/index.d.ts
CHANGED
|
@@ -867,6 +867,7 @@ export { default as GlassWaterIcon, default as LucideGlassWater } from './icons/
|
|
|
867
867
|
export { default as GlassesIcon, default as LucideGlasses } from './icons/glasses';
|
|
868
868
|
export { default as GlobeIcon, default as LucideGlobe } from './icons/globe';
|
|
869
869
|
export { default as Globe2Icon, default as LucideGlobe2 } from './icons/globe2';
|
|
870
|
+
export { default as GlobeCheckIcon, default as LucideGlobeCheck } from './icons/globe-check';
|
|
870
871
|
export { default as GlobeLockIcon, default as LucideGlobeLock } from './icons/globe-lock';
|
|
871
872
|
export { default as GlobeOffIcon, default as LucideGlobeOff } from './icons/globe-off';
|
|
872
873
|
export { default as GlobeXIcon, default as LucideGlobeX } from './icons/globe-x';
|
|
@@ -1289,6 +1290,7 @@ export { default as PanelsRightBottomIcon, default as LucidePanelsRightBottom }
|
|
|
1289
1290
|
export { default as PanelsTopBottomIcon, default as LucidePanelsTopBottom } from './icons/panels-top-bottom';
|
|
1290
1291
|
export { default as PanelsTopLeftIcon, default as LucidePanelsTopLeft } from './icons/panels-top-left';
|
|
1291
1292
|
export { default as PaperclipIcon, default as LucidePaperclip } from './icons/paperclip';
|
|
1293
|
+
export { default as ParasolIcon, default as LucideParasol } from './icons/parasol';
|
|
1292
1294
|
export { default as ParenthesesIcon, default as LucideParentheses } from './icons/parentheses';
|
|
1293
1295
|
export { default as ParkingCircleIcon, default as LucideParkingCircle } from './icons/parking-circle';
|
|
1294
1296
|
export { default as ParkingCircleOffIcon, default as LucideParkingCircleOff } from './icons/parking-circle-off';
|
|
@@ -1348,6 +1350,7 @@ export { default as PlaneLandingIcon, default as LucidePlaneLanding } from './ic
|
|
|
1348
1350
|
export { default as PlaneTakeoffIcon, default as LucidePlaneTakeoff } from './icons/plane-takeoff';
|
|
1349
1351
|
export { default as PlayIcon, default as LucidePlay } from './icons/play';
|
|
1350
1352
|
export { default as PlayCircleIcon, default as LucidePlayCircle } from './icons/play-circle';
|
|
1353
|
+
export { default as PlayOffIcon, default as LucidePlayOff } from './icons/play-off';
|
|
1351
1354
|
export { default as PlaySquareIcon, default as LucidePlaySquare } from './icons/play-square';
|
|
1352
1355
|
export { default as PlugIcon, default as LucidePlug } from './icons/plug';
|
|
1353
1356
|
export { default as Plug2Icon, default as LucidePlug2 } from './icons/plug2';
|
|
@@ -1909,6 +1912,7 @@ export { default as WavesLadderIcon, default as LucideWavesLadder } from './icon
|
|
|
1909
1912
|
export { default as WavesVerticalIcon, default as LucideWavesVertical } from './icons/waves-vertical';
|
|
1910
1913
|
export { default as WaypointsIcon, default as LucideWaypoints } from './icons/waypoints';
|
|
1911
1914
|
export { default as WebcamIcon, default as LucideWebcam } from './icons/webcam';
|
|
1915
|
+
export { default as WebcamOffIcon, default as LucideWebcamOff } from './icons/webcam-off';
|
|
1912
1916
|
export { default as WebhookIcon, default as LucideWebhook } from './icons/webhook';
|
|
1913
1917
|
export { default as WebhookOffIcon, default as LucideWebhookOff } from './icons/webhook-off';
|
|
1914
1918
|
export { default as WeightIcon, default as LucideWeight } from './icons/weight';
|
package/types/index.web.d.ts
CHANGED
|
@@ -867,6 +867,7 @@ export { default as GlassWaterIcon, default as LucideGlassWater } from './icons/
|
|
|
867
867
|
export { default as GlassesIcon, default as LucideGlasses } from './icons/glasses.web';
|
|
868
868
|
export { default as GlobeIcon, default as LucideGlobe } from './icons/globe.web';
|
|
869
869
|
export { default as Globe2Icon, default as LucideGlobe2 } from './icons/globe2.web';
|
|
870
|
+
export { default as GlobeCheckIcon, default as LucideGlobeCheck } from './icons/globe-check.web';
|
|
870
871
|
export { default as GlobeLockIcon, default as LucideGlobeLock } from './icons/globe-lock.web';
|
|
871
872
|
export { default as GlobeOffIcon, default as LucideGlobeOff } from './icons/globe-off.web';
|
|
872
873
|
export { default as GlobeXIcon, default as LucideGlobeX } from './icons/globe-x.web';
|
|
@@ -1289,6 +1290,7 @@ export { default as PanelsRightBottomIcon, default as LucidePanelsRightBottom }
|
|
|
1289
1290
|
export { default as PanelsTopBottomIcon, default as LucidePanelsTopBottom } from './icons/panels-top-bottom.web';
|
|
1290
1291
|
export { default as PanelsTopLeftIcon, default as LucidePanelsTopLeft } from './icons/panels-top-left.web';
|
|
1291
1292
|
export { default as PaperclipIcon, default as LucidePaperclip } from './icons/paperclip.web';
|
|
1293
|
+
export { default as ParasolIcon, default as LucideParasol } from './icons/parasol.web';
|
|
1292
1294
|
export { default as ParenthesesIcon, default as LucideParentheses } from './icons/parentheses.web';
|
|
1293
1295
|
export { default as ParkingCircleIcon, default as LucideParkingCircle } from './icons/parking-circle.web';
|
|
1294
1296
|
export { default as ParkingCircleOffIcon, default as LucideParkingCircleOff } from './icons/parking-circle-off.web';
|
|
@@ -1348,6 +1350,7 @@ export { default as PlaneLandingIcon, default as LucidePlaneLanding } from './ic
|
|
|
1348
1350
|
export { default as PlaneTakeoffIcon, default as LucidePlaneTakeoff } from './icons/plane-takeoff.web';
|
|
1349
1351
|
export { default as PlayIcon, default as LucidePlay } from './icons/play.web';
|
|
1350
1352
|
export { default as PlayCircleIcon, default as LucidePlayCircle } from './icons/play-circle.web';
|
|
1353
|
+
export { default as PlayOffIcon, default as LucidePlayOff } from './icons/play-off.web';
|
|
1351
1354
|
export { default as PlaySquareIcon, default as LucidePlaySquare } from './icons/play-square.web';
|
|
1352
1355
|
export { default as PlugIcon, default as LucidePlug } from './icons/plug.web';
|
|
1353
1356
|
export { default as Plug2Icon, default as LucidePlug2 } from './icons/plug2.web';
|
|
@@ -1909,6 +1912,7 @@ export { default as WavesLadderIcon, default as LucideWavesLadder } from './icon
|
|
|
1909
1912
|
export { default as WavesVerticalIcon, default as LucideWavesVertical } from './icons/waves-vertical.web';
|
|
1910
1913
|
export { default as WaypointsIcon, default as LucideWaypoints } from './icons/waypoints.web';
|
|
1911
1914
|
export { default as WebcamIcon, default as LucideWebcam } from './icons/webcam.web';
|
|
1915
|
+
export { default as WebcamOffIcon, default as LucideWebcamOff } from './icons/webcam-off.web';
|
|
1912
1916
|
export { default as WebhookIcon, default as LucideWebhook } from './icons/webhook.web';
|
|
1913
1917
|
export { default as WebhookOffIcon, default as LucideWebhookOff } from './icons/webhook-off.web';
|
|
1914
1918
|
export { default as WeightIcon, default as LucideWeight } from './icons/weight.web';
|