lucide-angular 0.16.3 → 0.16.7
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 +69 -10
- 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 +74 -10
- 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/archive.js +2 -2
- package/esm2015/icons/bookmark-minus.js +11 -0
- package/esm2015/icons/bookmark-plus.js +12 -0
- package/esm2015/icons/bookmark.js +2 -2
- package/esm2015/icons/flag-triangle-left.js +2 -2
- package/esm2015/icons/flag-triangle-right.js +2 -2
- package/esm2015/icons/index.js +6 -1
- package/esm2015/icons/list-minus.js +13 -0
- package/esm2015/icons/list-plus.js +14 -0
- package/esm2015/icons/list-x.js +14 -0
- package/esm2015/icons/mountain-snow.js +2 -2
- package/esm2015/icons/mountain.js +2 -2
- package/esm2015/icons/sort-asc.js +3 -3
- package/esm2015/icons/sort-desc.js +3 -3
- package/esm2015/src/icons/archive.js +2 -2
- package/esm2015/src/icons/bookmark-minus.js +11 -0
- package/esm2015/src/icons/bookmark-plus.js +12 -0
- package/esm2015/src/icons/bookmark.js +2 -2
- package/esm2015/src/icons/flag-triangle-left.js +2 -2
- package/esm2015/src/icons/flag-triangle-right.js +2 -2
- package/esm2015/src/icons/index.js +6 -1
- package/esm2015/src/icons/list-minus.js +13 -0
- package/esm2015/src/icons/list-plus.js +14 -0
- package/esm2015/src/icons/list-x.js +14 -0
- package/esm2015/src/icons/mountain-snow.js +2 -2
- package/esm2015/src/icons/mountain.js +2 -2
- package/esm2015/src/icons/sort-asc.js +3 -3
- package/esm2015/src/icons/sort-desc.js +3 -3
- package/fesm2015/lucide-angular-src-icons.js +65 -11
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +70 -11
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/bookmark-minus.d.ts +3 -0
- package/icons/bookmark-plus.d.ts +3 -0
- package/icons/index.d.ts +5 -0
- package/icons/list-minus.d.ts +3 -0
- package/icons/list-plus.d.ts +3 -0
- package/icons/list-x.d.ts +3 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +2 -2
- package/src/icons/bookmark-minus.d.ts +3 -0
- package/src/icons/bookmark-plus.d.ts +3 -0
- package/src/icons/index.d.ts +5 -0
- package/src/icons/list-minus.d.ts +3 -0
- package/src/icons/list-plus.d.ts +3 -0
- package/src/icons/list-x.d.ts +3 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
[
|
|
225
225
|
'path',
|
|
226
226
|
{
|
|
227
|
-
d: 'M20 9v9a2 2 0 01-2 2H6a2 2 0 01-2-
|
|
227
|
+
d: 'M20 9v9a2 2 0 01-2 2H6a2 2 0 01-2-2V9m16-5H4a2 2 0 00-2 2v1a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm-10 9h4',
|
|
228
228
|
},
|
|
229
229
|
],
|
|
230
230
|
],
|
|
@@ -663,10 +663,29 @@
|
|
|
663
663
|
],
|
|
664
664
|
];
|
|
665
665
|
|
|
666
|
+
var BookmarkMinus = [
|
|
667
|
+
'svg',
|
|
668
|
+
defaultAttributes,
|
|
669
|
+
[
|
|
670
|
+
['path', { d: 'M19 21l-7-4-7 4V5a2 2 0 012-2h10a2 2 0 012 2v16z' }],
|
|
671
|
+
['line', { x1: '15', x2: '9', y1: '10', y2: '10' }],
|
|
672
|
+
],
|
|
673
|
+
];
|
|
674
|
+
|
|
675
|
+
var BookmarkPlus = [
|
|
676
|
+
'svg',
|
|
677
|
+
defaultAttributes,
|
|
678
|
+
[
|
|
679
|
+
['path', { d: 'M19 21l-7-4-7 4V5a2 2 0 012-2h10a2 2 0 012 2v16z' }],
|
|
680
|
+
['line', { x1: '12', x2: '12', y1: '7', y2: '13' }],
|
|
681
|
+
['line', { x1: '15', x2: '9', y1: '10', y2: '10' }],
|
|
682
|
+
],
|
|
683
|
+
];
|
|
684
|
+
|
|
666
685
|
var Bookmark = [
|
|
667
686
|
'svg',
|
|
668
687
|
defaultAttributes,
|
|
669
|
-
[['path', { d: 'M19 21l-7-
|
|
688
|
+
[['path', { d: 'M19 21l-7-4-7 4V5a2 2 0 012-2h10a2 2 0 012 2v16z' }]],
|
|
670
689
|
];
|
|
671
690
|
|
|
672
691
|
var Bot = [
|
|
@@ -2096,13 +2115,13 @@
|
|
|
2096
2115
|
var FlagTriangleLeft = [
|
|
2097
2116
|
'svg',
|
|
2098
2117
|
defaultAttributes,
|
|
2099
|
-
[['path', { d: 'M17
|
|
2118
|
+
[['path', { d: 'M17 22V2L7 7l10 5' }]],
|
|
2100
2119
|
];
|
|
2101
2120
|
|
|
2102
2121
|
var FlagTriangleRight = [
|
|
2103
2122
|
'svg',
|
|
2104
2123
|
defaultAttributes,
|
|
2105
|
-
[['path', { d: 'M7
|
|
2124
|
+
[['path', { d: 'M7 22V2l10 5-10 5' }]],
|
|
2106
2125
|
];
|
|
2107
2126
|
|
|
2108
2127
|
var Flag = [
|
|
@@ -3178,6 +3197,17 @@
|
|
|
3178
3197
|
],
|
|
3179
3198
|
];
|
|
3180
3199
|
|
|
3200
|
+
var ListMinus = [
|
|
3201
|
+
'svg',
|
|
3202
|
+
defaultAttributes,
|
|
3203
|
+
[
|
|
3204
|
+
['path', { d: 'M11 12H3' }],
|
|
3205
|
+
['path', { d: 'M16 6H3' }],
|
|
3206
|
+
['path', { d: 'M16 18H3' }],
|
|
3207
|
+
['path', { d: 'M21 12h-6' }],
|
|
3208
|
+
],
|
|
3209
|
+
];
|
|
3210
|
+
|
|
3181
3211
|
var ListOrdered = [
|
|
3182
3212
|
'svg',
|
|
3183
3213
|
defaultAttributes,
|
|
@@ -3191,6 +3221,30 @@
|
|
|
3191
3221
|
],
|
|
3192
3222
|
];
|
|
3193
3223
|
|
|
3224
|
+
var ListPlus = [
|
|
3225
|
+
'svg',
|
|
3226
|
+
defaultAttributes,
|
|
3227
|
+
[
|
|
3228
|
+
['path', { d: 'M11 12H3' }],
|
|
3229
|
+
['path', { d: 'M16 6H3' }],
|
|
3230
|
+
['path', { d: 'M16 18H3' }],
|
|
3231
|
+
['path', { d: 'M18 9V15' }],
|
|
3232
|
+
['path', { d: 'M21 12H15' }],
|
|
3233
|
+
],
|
|
3234
|
+
];
|
|
3235
|
+
|
|
3236
|
+
var ListX = [
|
|
3237
|
+
'svg',
|
|
3238
|
+
defaultAttributes,
|
|
3239
|
+
[
|
|
3240
|
+
['path', { d: 'M11 12H3' }],
|
|
3241
|
+
['path', { d: 'M16 6H3' }],
|
|
3242
|
+
['path', { d: 'M16 18H3' }],
|
|
3243
|
+
['path', { d: 'M19 10l-4 4' }],
|
|
3244
|
+
['path', { d: 'M15 10l4 4' }],
|
|
3245
|
+
],
|
|
3246
|
+
];
|
|
3247
|
+
|
|
3194
3248
|
var List = [
|
|
3195
3249
|
'svg',
|
|
3196
3250
|
defaultAttributes,
|
|
@@ -3520,7 +3574,7 @@
|
|
|
3520
3574
|
'svg',
|
|
3521
3575
|
defaultAttributes,
|
|
3522
3576
|
[
|
|
3523
|
-
['path', { d: 'M8
|
|
3577
|
+
['path', { d: 'M8 3l4 8 5-5 5 15H2L8 3z' }],
|
|
3524
3578
|
[
|
|
3525
3579
|
'path',
|
|
3526
3580
|
{ d: 'M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19' },
|
|
@@ -3531,7 +3585,7 @@
|
|
|
3531
3585
|
var Mountain = [
|
|
3532
3586
|
'svg',
|
|
3533
3587
|
defaultAttributes,
|
|
3534
|
-
[['path', { d: 'M8
|
|
3588
|
+
[['path', { d: 'M8 3l4 8 5-5 5 15H2L8 3z' }]],
|
|
3535
3589
|
];
|
|
3536
3590
|
|
|
3537
3591
|
var MousePointer2 = [
|
|
@@ -4809,9 +4863,9 @@
|
|
|
4809
4863
|
'svg',
|
|
4810
4864
|
defaultAttributes,
|
|
4811
4865
|
[
|
|
4812
|
-
['path', { d: 'M11
|
|
4866
|
+
['path', { d: 'M11 5h4' }],
|
|
4813
4867
|
['path', { d: 'M11 9h7' }],
|
|
4814
|
-
['path', { d: 'M11
|
|
4868
|
+
['path', { d: 'M11 13h10' }],
|
|
4815
4869
|
['path', { d: 'M3 17l3 3 3-3' }],
|
|
4816
4870
|
['path', { d: 'M6 18V4' }],
|
|
4817
4871
|
],
|
|
@@ -4821,9 +4875,9 @@
|
|
|
4821
4875
|
'svg',
|
|
4822
4876
|
defaultAttributes,
|
|
4823
4877
|
[
|
|
4824
|
-
['path', { d: 'M11
|
|
4878
|
+
['path', { d: 'M11 5h10' }],
|
|
4825
4879
|
['path', { d: 'M11 9h7' }],
|
|
4826
|
-
['path', { d: 'M11
|
|
4880
|
+
['path', { d: 'M11 13h4' }],
|
|
4827
4881
|
['path', { d: 'M3 17l3 3 3-3' }],
|
|
4828
4882
|
['path', { d: 'M6 18V4' }],
|
|
4829
4883
|
],
|
|
@@ -5790,6 +5844,8 @@
|
|
|
5790
5844
|
exports.Book = Book;
|
|
5791
5845
|
exports.BookOpen = BookOpen;
|
|
5792
5846
|
exports.Bookmark = Bookmark;
|
|
5847
|
+
exports.BookmarkMinus = BookmarkMinus;
|
|
5848
|
+
exports.BookmarkPlus = BookmarkPlus;
|
|
5793
5849
|
exports.Bot = Bot;
|
|
5794
5850
|
exports.Box = Box;
|
|
5795
5851
|
exports.BoxSelect = BoxSelect;
|
|
@@ -6001,7 +6057,10 @@
|
|
|
6001
6057
|
exports.Linkedin = Linkedin;
|
|
6002
6058
|
exports.List = List;
|
|
6003
6059
|
exports.ListChecks = ListChecks;
|
|
6060
|
+
exports.ListMinus = ListMinus;
|
|
6004
6061
|
exports.ListOrdered = ListOrdered;
|
|
6062
|
+
exports.ListPlus = ListPlus;
|
|
6063
|
+
exports.ListX = ListX;
|
|
6005
6064
|
exports.Loader = Loader;
|
|
6006
6065
|
exports.Loader2 = Loader2;
|
|
6007
6066
|
exports.Locate = Locate;
|