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,
|
|
@@ -9677,6 +9744,7 @@
|
|
|
9677
9744
|
__proto__: null,
|
|
9678
9745
|
Accessibility: Accessibility,
|
|
9679
9746
|
Activity: Activity,
|
|
9747
|
+
AirVent: AirVent,
|
|
9680
9748
|
Airplay: Airplay,
|
|
9681
9749
|
AlarmCheck: AlarmCheck,
|
|
9682
9750
|
AlarmClockOff: AlarmClockOff,
|
|
@@ -10167,6 +10235,7 @@
|
|
|
10167
10235
|
Menu: Menu,
|
|
10168
10236
|
MessageCircle: MessageCircle,
|
|
10169
10237
|
MessageSquare: MessageSquare,
|
|
10238
|
+
Mic2: Mic2,
|
|
10170
10239
|
MicOff: MicOff,
|
|
10171
10240
|
Mic: Mic,
|
|
10172
10241
|
Microscope: Microscope,
|
|
@@ -10194,12 +10263,16 @@
|
|
|
10194
10263
|
MoveHorizontal: MoveHorizontal,
|
|
10195
10264
|
MoveVertical: MoveVertical,
|
|
10196
10265
|
Move: Move,
|
|
10266
|
+
Music2: Music2,
|
|
10267
|
+
Music3: Music3,
|
|
10268
|
+
Music4: Music4,
|
|
10197
10269
|
Music: Music,
|
|
10198
10270
|
Navigation2Off: Navigation2Off,
|
|
10199
10271
|
Navigation2: Navigation2,
|
|
10200
10272
|
NavigationOff: NavigationOff,
|
|
10201
10273
|
Navigation: Navigation,
|
|
10202
10274
|
Network: Network,
|
|
10275
|
+
Newspaper: Newspaper,
|
|
10203
10276
|
Octagon: Octagon,
|
|
10204
10277
|
Option: Option,
|
|
10205
10278
|
Outdent: Outdent,
|
|
@@ -10892,6 +10965,7 @@
|
|
|
10892
10965
|
|
|
10893
10966
|
exports.Accessibility = Accessibility;
|
|
10894
10967
|
exports.Activity = Activity;
|
|
10968
|
+
exports.AirVent = AirVent;
|
|
10895
10969
|
exports.Airplay = Airplay;
|
|
10896
10970
|
exports.AlarmCheck = AlarmCheck;
|
|
10897
10971
|
exports.AlarmClock = AlarmClock;
|
|
@@ -11385,6 +11459,7 @@
|
|
|
11385
11459
|
exports.MessageCircle = MessageCircle;
|
|
11386
11460
|
exports.MessageSquare = MessageSquare;
|
|
11387
11461
|
exports.Mic = Mic;
|
|
11462
|
+
exports.Mic2 = Mic2;
|
|
11388
11463
|
exports.MicOff = MicOff;
|
|
11389
11464
|
exports.Microscope = Microscope;
|
|
11390
11465
|
exports.Milestone = Milestone;
|
|
@@ -11412,11 +11487,15 @@
|
|
|
11412
11487
|
exports.MoveHorizontal = MoveHorizontal;
|
|
11413
11488
|
exports.MoveVertical = MoveVertical;
|
|
11414
11489
|
exports.Music = Music;
|
|
11490
|
+
exports.Music2 = Music2;
|
|
11491
|
+
exports.Music3 = Music3;
|
|
11492
|
+
exports.Music4 = Music4;
|
|
11415
11493
|
exports.Navigation = Navigation;
|
|
11416
11494
|
exports.Navigation2 = Navigation2;
|
|
11417
11495
|
exports.Navigation2Off = Navigation2Off;
|
|
11418
11496
|
exports.NavigationOff = NavigationOff;
|
|
11419
11497
|
exports.Network = Network;
|
|
11498
|
+
exports.Newspaper = Newspaper;
|
|
11420
11499
|
exports.Octagon = Octagon;
|
|
11421
11500
|
exports.Option = Option;
|
|
11422
11501
|
exports.Outdent = Outdent;
|