lucide-angular 0.66.0 → 0.67.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 (51) hide show
  1. package/bundles/lucide-angular-src-icons.umd.js +108 -0
  2. package/bundles/lucide-angular-src-icons.umd.js.map +1 -1
  3. package/bundles/lucide-angular-src-icons.umd.min.js +1 -1
  4. package/bundles/lucide-angular-src-icons.umd.min.js.map +1 -1
  5. package/bundles/lucide-angular.umd.js +116 -0
  6. package/bundles/lucide-angular.umd.js.map +1 -1
  7. package/bundles/lucide-angular.umd.min.js +1 -1
  8. package/bundles/lucide-angular.umd.min.js.map +1 -1
  9. package/esm2015/icons/angry.js +15 -0
  10. package/esm2015/icons/annoyed.js +13 -0
  11. package/esm2015/icons/axis-3d.js +8 -0
  12. package/esm2015/icons/bomb.js +17 -0
  13. package/esm2015/icons/index.js +9 -1
  14. package/esm2015/icons/laugh.js +13 -0
  15. package/esm2015/icons/smile-plus.js +15 -0
  16. package/esm2015/icons/sticker.js +19 -0
  17. package/esm2015/icons/sticky-note.js +16 -0
  18. package/esm2015/src/icons/angry.js +15 -0
  19. package/esm2015/src/icons/annoyed.js +13 -0
  20. package/esm2015/src/icons/axis-3d.js +8 -0
  21. package/esm2015/src/icons/bomb.js +17 -0
  22. package/esm2015/src/icons/index.js +9 -1
  23. package/esm2015/src/icons/laugh.js +13 -0
  24. package/esm2015/src/icons/smile-plus.js +15 -0
  25. package/esm2015/src/icons/sticker.js +19 -0
  26. package/esm2015/src/icons/sticky-note.js +16 -0
  27. package/fesm2015/lucide-angular-src-icons.js +101 -1
  28. package/fesm2015/lucide-angular-src-icons.js.map +1 -1
  29. package/fesm2015/lucide-angular.js +109 -1
  30. package/fesm2015/lucide-angular.js.map +1 -1
  31. package/icons/angry.d.ts +3 -0
  32. package/icons/annoyed.d.ts +3 -0
  33. package/icons/axis-3d.d.ts +3 -0
  34. package/icons/bomb.d.ts +3 -0
  35. package/icons/index.d.ts +8 -0
  36. package/icons/laugh.d.ts +3 -0
  37. package/icons/smile-plus.d.ts +3 -0
  38. package/icons/sticker.d.ts +3 -0
  39. package/icons/sticky-note.d.ts +3 -0
  40. package/lucide-angular.metadata.json +1 -1
  41. package/package.json +1 -1
  42. package/src/icons/angry.d.ts +3 -0
  43. package/src/icons/annoyed.d.ts +3 -0
  44. package/src/icons/axis-3d.d.ts +3 -0
  45. package/src/icons/bomb.d.ts +3 -0
  46. package/src/icons/index.d.ts +8 -0
  47. package/src/icons/laugh.d.ts +3 -0
  48. package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
  49. package/src/icons/smile-plus.d.ts +3 -0
  50. package/src/icons/sticker.d.ts +3 -0
  51. package/src/icons/sticky-note.d.ts +3 -0
@@ -464,6 +464,30 @@
464
464
  ],
465
465
  ];
466
466
 
467
+ var Angry = [
468
+ 'svg',
469
+ defaultAttributes,
470
+ [
471
+ ['circle', { cx: '12', cy: '12', r: '10' }],
472
+ ['path', { d: 'M16 16s-1.5-2-4-2-4 2-4 2' }],
473
+ ['path', { d: 'M7.5 8 10 9' }],
474
+ ['path', { d: 'm14 9 2.5-1' }],
475
+ ['path', { d: 'M9 10h0' }],
476
+ ['path', { d: 'M15 10h0' }],
477
+ ],
478
+ ];
479
+
480
+ var Annoyed = [
481
+ 'svg',
482
+ defaultAttributes,
483
+ [
484
+ ['circle', { cx: '12', cy: '12', r: '10' }],
485
+ ['path', { d: 'M8 15h8' }],
486
+ ['path', { d: 'M8 9h2' }],
487
+ ['path', { d: 'M14 9h2' }],
488
+ ],
489
+ ];
490
+
467
491
  var Aperture = [
468
492
  'svg',
469
493
  defaultAttributes,
@@ -708,6 +732,12 @@
708
732
  ],
709
733
  ];
710
734
 
735
+ var Axis3d = [
736
+ 'svg',
737
+ defaultAttributes,
738
+ [['path', { d: 'M4 4v16h16' }], ['path', { d: 'm4 20 7-7' }]],
739
+ ];
740
+
711
741
  var Baby = [
712
742
  'svg',
713
743
  defaultAttributes,
@@ -1098,6 +1128,21 @@
1098
1128
  ],
1099
1129
  ];
1100
1130
 
1131
+ var Bomb = [
1132
+ 'svg',
1133
+ defaultAttributes,
1134
+ [
1135
+ ['circle', { cx: '11', cy: '13', r: '9' }],
1136
+ [
1137
+ 'path',
1138
+ {
1139
+ d: 'm19.5 9.5 1.8-1.8a2.4 2.4 0 0 0 0-3.4l-1.6-1.6a2.41 2.41 0 0 0-3.4 0l-1.8 1.8',
1140
+ },
1141
+ ],
1142
+ ['path', { d: 'm22 2-1.5 1.5' }],
1143
+ ],
1144
+ ];
1145
+
1101
1146
  var BookOpen = [
1102
1147
  'svg',
1103
1148
  defaultAttributes,
@@ -4457,6 +4502,17 @@
4457
4502
  ],
4458
4503
  ];
4459
4504
 
4505
+ var Laugh = [
4506
+ 'svg',
4507
+ defaultAttributes,
4508
+ [
4509
+ ['circle', { cx: '12', cy: '12', r: '10' }],
4510
+ ['path', { d: 'M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z' }],
4511
+ ['line', { x1: '9', y1: '9', x2: '9.01', y2: '9' }],
4512
+ ['line', { x1: '15', y1: '9', x2: '15.01', y2: '9' }],
4513
+ ],
4514
+ ];
4515
+
4460
4516
  var Layers = [
4461
4517
  'svg',
4462
4518
  defaultAttributes,
@@ -6992,6 +7048,19 @@
6992
7048
  ],
6993
7049
  ];
6994
7050
 
7051
+ var SmilePlus = [
7052
+ 'svg',
7053
+ defaultAttributes,
7054
+ [
7055
+ ['path', { d: 'M22 11v1a10 10 0 1 1-9-10' }],
7056
+ ['path', { d: 'M8 14s1.5 2 4 2 4-2 4-2' }],
7057
+ ['line', { x1: '9', y1: '9', x2: '9.01', y2: '9' }],
7058
+ ['line', { x1: '15', y1: '9', x2: '15.01', y2: '9' }],
7059
+ ['path', { d: 'M16 5h6' }],
7060
+ ['path', { d: 'M19 2v6' }],
7061
+ ],
7062
+ ];
7063
+
6995
7064
  var Smile = [
6996
7065
  'svg',
6997
7066
  defaultAttributes,
@@ -7141,6 +7210,37 @@
7141
7210
  ],
7142
7211
  ];
7143
7212
 
7213
+ var Sticker = [
7214
+ 'svg',
7215
+ defaultAttributes,
7216
+ [
7217
+ [
7218
+ 'path',
7219
+ {
7220
+ d: 'M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z',
7221
+ },
7222
+ ],
7223
+ ['path', { d: 'M15 3v6h6' }],
7224
+ ['path', { d: 'M10 16s.8 1 2 1c1.3 0 2-1 2-1' }],
7225
+ ['path', { d: 'M8 13h0' }],
7226
+ ['path', { d: 'M16 13h0' }],
7227
+ ],
7228
+ ];
7229
+
7230
+ var StickyNote = [
7231
+ 'svg',
7232
+ defaultAttributes,
7233
+ [
7234
+ [
7235
+ 'path',
7236
+ {
7237
+ d: 'M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z',
7238
+ },
7239
+ ],
7240
+ ['path', { d: 'M15 3v6h6' }],
7241
+ ],
7242
+ ];
7243
+
7144
7244
  var StopCircle = [
7145
7245
  'svg',
7146
7246
  defaultAttributes,
@@ -8427,6 +8527,8 @@
8427
8527
  AlignVerticalSpaceAround: AlignVerticalSpaceAround,
8428
8528
  AlignVerticalSpaceBetween: AlignVerticalSpaceBetween,
8429
8529
  Anchor: Anchor,
8530
+ Angry: Angry,
8531
+ Annoyed: Annoyed,
8430
8532
  Aperture: Aperture,
8431
8533
  ArchiveRestore: ArchiveRestore,
8432
8534
  Archive: Archive,
@@ -8452,6 +8554,7 @@
8452
8554
  AtSign: AtSign,
8453
8555
  Award: Award,
8454
8556
  Axe: Axe,
8557
+ Axis3d: Axis3d,
8455
8558
  Baby: Baby,
8456
8559
  Backpack: Backpack,
8457
8560
  BaggageClaim: BaggageClaim,
@@ -8486,6 +8589,7 @@
8486
8589
  BluetoothSearching: BluetoothSearching,
8487
8590
  Bluetooth: Bluetooth,
8488
8591
  Bold: Bold,
8592
+ Bomb: Bomb,
8489
8593
  BookOpen: BookOpen,
8490
8594
  Book: Book,
8491
8595
  BookmarkMinus: BookmarkMinus,
@@ -8758,6 +8862,7 @@
8758
8862
  Laptop: Laptop,
8759
8863
  LassoSelect: LassoSelect,
8760
8864
  Lasso: Lasso,
8865
+ Laugh: Laugh,
8761
8866
  Layers: Layers,
8762
8867
  LayoutDashboard: LayoutDashboard,
8763
8868
  LayoutGrid: LayoutGrid,
@@ -8966,6 +9071,7 @@
8966
9071
  Sliders: Sliders,
8967
9072
  SmartphoneCharging: SmartphoneCharging,
8968
9073
  Smartphone: Smartphone,
9074
+ SmilePlus: SmilePlus,
8969
9075
  Smile: Smile,
8970
9076
  Snowflake: Snowflake,
8971
9077
  Sofa: Sofa,
@@ -8978,6 +9084,8 @@
8978
9084
  StarOff: StarOff,
8979
9085
  Star: Star,
8980
9086
  Stethoscope: Stethoscope,
9087
+ Sticker: Sticker,
9088
+ StickyNote: StickyNote,
8981
9089
  StopCircle: StopCircle,
8982
9090
  StretchHorizontal: StretchHorizontal,
8983
9091
  StretchVertical: StretchVertical,
@@ -9560,6 +9668,8 @@
9560
9668
  exports.AlignVerticalSpaceAround = AlignVerticalSpaceAround;
9561
9669
  exports.AlignVerticalSpaceBetween = AlignVerticalSpaceBetween;
9562
9670
  exports.Anchor = Anchor;
9671
+ exports.Angry = Angry;
9672
+ exports.Annoyed = Annoyed;
9563
9673
  exports.Aperture = Aperture;
9564
9674
  exports.Archive = Archive;
9565
9675
  exports.ArchiveRestore = ArchiveRestore;
@@ -9585,6 +9695,7 @@
9585
9695
  exports.AtSign = AtSign;
9586
9696
  exports.Award = Award;
9587
9697
  exports.Axe = Axe;
9698
+ exports.Axis3d = Axis3d;
9588
9699
  exports.Baby = Baby;
9589
9700
  exports.Backpack = Backpack;
9590
9701
  exports.BaggageClaim = BaggageClaim;
@@ -9619,6 +9730,7 @@
9619
9730
  exports.BluetoothOff = BluetoothOff;
9620
9731
  exports.BluetoothSearching = BluetoothSearching;
9621
9732
  exports.Bold = Bold;
9733
+ exports.Bomb = Bomb;
9622
9734
  exports.Book = Book;
9623
9735
  exports.BookOpen = BookOpen;
9624
9736
  exports.Bookmark = Bookmark;
@@ -9891,6 +10003,7 @@
9891
10003
  exports.Laptop2 = Laptop2;
9892
10004
  exports.Lasso = Lasso;
9893
10005
  exports.LassoSelect = LassoSelect;
10006
+ exports.Laugh = Laugh;
9894
10007
  exports.Layers = Layers;
9895
10008
  exports.Layout = Layout;
9896
10009
  exports.LayoutDashboard = LayoutDashboard;
@@ -10102,6 +10215,7 @@
10102
10215
  exports.Smartphone = Smartphone;
10103
10216
  exports.SmartphoneCharging = SmartphoneCharging;
10104
10217
  exports.Smile = Smile;
10218
+ exports.SmilePlus = SmilePlus;
10105
10219
  exports.Snowflake = Snowflake;
10106
10220
  exports.Sofa = Sofa;
10107
10221
  exports.SortAsc = SortAsc;
@@ -10113,6 +10227,8 @@
10113
10227
  exports.StarHalf = StarHalf;
10114
10228
  exports.StarOff = StarOff;
10115
10229
  exports.Stethoscope = Stethoscope;
10230
+ exports.Sticker = Sticker;
10231
+ exports.StickyNote = StickyNote;
10116
10232
  exports.StopCircle = StopCircle;
10117
10233
  exports.StretchHorizontal = StretchHorizontal;
10118
10234
  exports.StretchVertical = StretchVertical;