lucide-angular 0.71.0 → 0.74.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/bundles/lucide-angular-src-icons.umd.js +73 -0
- package/bundles/lucide-angular-src-icons.umd.js.map +1 -1
- package/bundles/lucide-angular-src-icons.umd.min.js +1 -1
- package/bundles/lucide-angular-src-icons.umd.min.js.map +1 -1
- package/bundles/lucide-angular.umd.js +79 -0
- package/bundles/lucide-angular.umd.js.map +1 -1
- package/bundles/lucide-angular.umd.min.js +1 -1
- package/bundles/lucide-angular.umd.min.js.map +1 -1
- package/esm2015/icons/air-vent.js +21 -0
- package/esm2015/icons/index.js +7 -1
- package/esm2015/icons/mic-2.js +11 -0
- package/esm2015/icons/music-2.js +8 -0
- package/esm2015/icons/music-3.js +8 -0
- package/esm2015/icons/music-4.js +13 -0
- package/esm2015/icons/newspaper.js +18 -0
- package/esm2015/src/icons/air-vent.js +21 -0
- package/esm2015/src/icons/index.js +7 -1
- package/esm2015/src/icons/mic-2.js +11 -0
- package/esm2015/src/icons/music-2.js +8 -0
- package/esm2015/src/icons/music-3.js +8 -0
- package/esm2015/src/icons/music-4.js +13 -0
- package/esm2015/src/icons/newspaper.js +18 -0
- package/fesm2015/lucide-angular-src-icons.js +68 -1
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +74 -1
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/air-vent.d.ts +3 -0
- package/icons/index.d.ts +6 -0
- package/icons/mic-2.d.ts +3 -0
- package/icons/music-2.d.ts +3 -0
- package/icons/music-3.d.ts +3 -0
- package/icons/music-4.d.ts +3 -0
- package/icons/newspaper.d.ts +3 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/air-vent.d.ts +3 -0
- package/src/icons/index.d.ts +6 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
- package/src/icons/mic-2.d.ts +3 -0
- package/src/icons/music-2.d.ts +3 -0
- package/src/icons/music-3.d.ts +3 -0
- package/src/icons/music-4.d.ts +3 -0
- package/src/icons/newspaper.d.ts +3 -0
|
@@ -44,6 +44,25 @@
|
|
|
44
44
|
[['polyline', { points: '22 12 18 12 15 21 9 3 6 12 2 12' }]],
|
|
45
45
|
];
|
|
46
46
|
|
|
47
|
+
var AirVent = [
|
|
48
|
+
'svg',
|
|
49
|
+
defaultAttributes,
|
|
50
|
+
[
|
|
51
|
+
[
|
|
52
|
+
'path',
|
|
53
|
+
{
|
|
54
|
+
d: 'M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2',
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
['path', { d: 'M6 8h12' }],
|
|
58
|
+
[
|
|
59
|
+
'path',
|
|
60
|
+
{ d: 'M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12' },
|
|
61
|
+
],
|
|
62
|
+
['path', { d: 'M6.6 15.6A2 2 0 1 0 10 17v-5' }],
|
|
63
|
+
],
|
|
64
|
+
];
|
|
65
|
+
|
|
47
66
|
var Airplay = [
|
|
48
67
|
'svg',
|
|
49
68
|
defaultAttributes,
|
|
@@ -6188,6 +6207,15 @@
|
|
|
6188
6207
|
],
|
|
6189
6208
|
];
|
|
6190
6209
|
|
|
6210
|
+
var Mic2 = [
|
|
6211
|
+
'svg',
|
|
6212
|
+
defaultAttributes,
|
|
6213
|
+
[
|
|
6214
|
+
['path', { d: 'm12 8-9.04 9.06a2.82 2.82 0 1 0 3.98 3.98L16 12' }],
|
|
6215
|
+
['circle', { cx: '17', cy: '7', r: '5' }],
|
|
6216
|
+
],
|
|
6217
|
+
];
|
|
6218
|
+
|
|
6191
6219
|
var MicOff = [
|
|
6192
6220
|
'svg',
|
|
6193
6221
|
defaultAttributes,
|
|
@@ -6466,6 +6494,29 @@
|
|
|
6466
6494
|
],
|
|
6467
6495
|
];
|
|
6468
6496
|
|
|
6497
|
+
var Music2 = [
|
|
6498
|
+
'svg',
|
|
6499
|
+
defaultAttributes,
|
|
6500
|
+
[['circle', { cx: '8', cy: '18', r: '4' }], ['path', { d: 'M12 18V2l7 4' }]],
|
|
6501
|
+
];
|
|
6502
|
+
|
|
6503
|
+
var Music3 = [
|
|
6504
|
+
'svg',
|
|
6505
|
+
defaultAttributes,
|
|
6506
|
+
[['circle', { cx: '12', cy: '18', r: '4' }], ['path', { d: 'M16 18V2' }]],
|
|
6507
|
+
];
|
|
6508
|
+
|
|
6509
|
+
var Music4 = [
|
|
6510
|
+
'svg',
|
|
6511
|
+
defaultAttributes,
|
|
6512
|
+
[
|
|
6513
|
+
['path', { d: 'M9 18V5l12-2v13' }],
|
|
6514
|
+
['path', { d: 'M9 9l12-2' }],
|
|
6515
|
+
['circle', { cx: '6', cy: '18', r: '3' }],
|
|
6516
|
+
['circle', { cx: '18', cy: '16', r: '3' }],
|
|
6517
|
+
],
|
|
6518
|
+
];
|
|
6519
|
+
|
|
6469
6520
|
var Music = [
|
|
6470
6521
|
'svg',
|
|
6471
6522
|
defaultAttributes,
|
|
@@ -6520,6 +6571,22 @@
|
|
|
6520
6571
|
],
|
|
6521
6572
|
];
|
|
6522
6573
|
|
|
6574
|
+
var Newspaper = [
|
|
6575
|
+
'svg',
|
|
6576
|
+
defaultAttributes,
|
|
6577
|
+
[
|
|
6578
|
+
[
|
|
6579
|
+
'path',
|
|
6580
|
+
{
|
|
6581
|
+
d: 'M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2',
|
|
6582
|
+
},
|
|
6583
|
+
],
|
|
6584
|
+
['path', { d: 'M18 14h-8' }],
|
|
6585
|
+
['path', { d: 'M15 18h-5' }],
|
|
6586
|
+
['path', { d: 'M10 6h8v4h-8V6Z' }],
|
|
6587
|
+
],
|
|
6588
|
+
];
|
|
6589
|
+
|
|
6523
6590
|
var Octagon = [
|
|
6524
6591
|
'svg',
|
|
6525
6592
|
defaultAttributes,
|
|
@@ -9679,6 +9746,7 @@
|
|
|
9679
9746
|
|
|
9680
9747
|
exports.Accessibility = Accessibility;
|
|
9681
9748
|
exports.Activity = Activity;
|
|
9749
|
+
exports.AirVent = AirVent;
|
|
9682
9750
|
exports.Airplay = Airplay;
|
|
9683
9751
|
exports.AlarmCheck = AlarmCheck;
|
|
9684
9752
|
exports.AlarmClock = AlarmClock;
|
|
@@ -10170,6 +10238,7 @@
|
|
|
10170
10238
|
exports.MessageCircle = MessageCircle;
|
|
10171
10239
|
exports.MessageSquare = MessageSquare;
|
|
10172
10240
|
exports.Mic = Mic;
|
|
10241
|
+
exports.Mic2 = Mic2;
|
|
10173
10242
|
exports.MicOff = MicOff;
|
|
10174
10243
|
exports.Microscope = Microscope;
|
|
10175
10244
|
exports.Milestone = Milestone;
|
|
@@ -10197,11 +10266,15 @@
|
|
|
10197
10266
|
exports.MoveHorizontal = MoveHorizontal;
|
|
10198
10267
|
exports.MoveVertical = MoveVertical;
|
|
10199
10268
|
exports.Music = Music;
|
|
10269
|
+
exports.Music2 = Music2;
|
|
10270
|
+
exports.Music3 = Music3;
|
|
10271
|
+
exports.Music4 = Music4;
|
|
10200
10272
|
exports.Navigation = Navigation;
|
|
10201
10273
|
exports.Navigation2 = Navigation2;
|
|
10202
10274
|
exports.Navigation2Off = Navigation2Off;
|
|
10203
10275
|
exports.NavigationOff = NavigationOff;
|
|
10204
10276
|
exports.Network = Network;
|
|
10277
|
+
exports.Newspaper = Newspaper;
|
|
10205
10278
|
exports.Octagon = Octagon;
|
|
10206
10279
|
exports.Option = Option;
|
|
10207
10280
|
exports.Outdent = Outdent;
|