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
package/icons/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { default as Accessibility } from './accessibility';
|
|
2
2
|
export { default as Activity } from './activity';
|
|
3
|
+
export { default as AirVent } from './air-vent';
|
|
3
4
|
export { default as Airplay } from './airplay';
|
|
4
5
|
export { default as AlarmCheck } from './alarm-check';
|
|
5
6
|
export { default as AlarmClockOff } from './alarm-clock-off';
|
|
@@ -490,6 +491,7 @@ export { default as Meh } from './meh';
|
|
|
490
491
|
export { default as Menu } from './menu';
|
|
491
492
|
export { default as MessageCircle } from './message-circle';
|
|
492
493
|
export { default as MessageSquare } from './message-square';
|
|
494
|
+
export { default as Mic2 } from './mic-2';
|
|
493
495
|
export { default as MicOff } from './mic-off';
|
|
494
496
|
export { default as Mic } from './mic';
|
|
495
497
|
export { default as Microscope } from './microscope';
|
|
@@ -517,12 +519,16 @@ export { default as MoveDiagonal } from './move-diagonal';
|
|
|
517
519
|
export { default as MoveHorizontal } from './move-horizontal';
|
|
518
520
|
export { default as MoveVertical } from './move-vertical';
|
|
519
521
|
export { default as Move } from './move';
|
|
522
|
+
export { default as Music2 } from './music-2';
|
|
523
|
+
export { default as Music3 } from './music-3';
|
|
524
|
+
export { default as Music4 } from './music-4';
|
|
520
525
|
export { default as Music } from './music';
|
|
521
526
|
export { default as Navigation2Off } from './navigation-2-off';
|
|
522
527
|
export { default as Navigation2 } from './navigation-2';
|
|
523
528
|
export { default as NavigationOff } from './navigation-off';
|
|
524
529
|
export { default as Navigation } from './navigation';
|
|
525
530
|
export { default as Network } from './network';
|
|
531
|
+
export { default as Newspaper } from './newspaper';
|
|
526
532
|
export { default as Octagon } from './octagon';
|
|
527
533
|
export { default as Option } from './option';
|
|
528
534
|
export { default as Outdent } from './outdent';
|
package/icons/mic-2.d.ts
ADDED