lucide-angular 0.29.0 → 0.32.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 +104 -41
- 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 +108 -41
- 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/award.js +3 -3
- package/esm2015/icons/chevrons-left-right.js +8 -0
- package/esm2015/icons/chevrons-right-left.js +8 -0
- package/esm2015/icons/coffee.js +6 -6
- package/esm2015/icons/coins.js +5 -5
- package/esm2015/icons/eye-off.js +10 -3
- package/esm2015/icons/eye.js +2 -2
- package/esm2015/icons/heart-off.js +22 -0
- package/esm2015/icons/hourglass.js +23 -0
- package/esm2015/icons/index.js +5 -1
- package/esm2015/icons/shield-off.js +2 -2
- package/esm2015/icons/trending-down.js +3 -3
- package/esm2015/icons/trending-up.js +3 -3
- package/esm2015/icons/twitter.js +2 -2
- package/esm2015/icons/video-off.js +4 -5
- package/esm2015/icons/video.js +3 -3
- package/esm2015/icons/view.js +3 -7
- package/esm2015/icons/voicemail.js +4 -4
- package/esm2015/icons/watch.js +8 -4
- package/esm2015/icons/youtube.js +3 -3
- package/esm2015/icons/zap-off.js +2 -2
- package/esm2015/src/icons/award.js +3 -3
- package/esm2015/src/icons/chevrons-left-right.js +8 -0
- package/esm2015/src/icons/chevrons-right-left.js +8 -0
- package/esm2015/src/icons/coffee.js +6 -6
- package/esm2015/src/icons/coins.js +5 -5
- package/esm2015/src/icons/eye-off.js +10 -3
- package/esm2015/src/icons/eye.js +2 -2
- package/esm2015/src/icons/heart-off.js +22 -0
- package/esm2015/src/icons/hourglass.js +23 -0
- package/esm2015/src/icons/index.js +5 -1
- package/esm2015/src/icons/shield-off.js +2 -2
- package/esm2015/src/icons/trending-down.js +3 -3
- package/esm2015/src/icons/trending-up.js +3 -3
- package/esm2015/src/icons/twitter.js +2 -2
- package/esm2015/src/icons/video-off.js +4 -5
- package/esm2015/src/icons/video.js +3 -3
- package/esm2015/src/icons/view.js +3 -7
- package/esm2015/src/icons/voicemail.js +4 -4
- package/esm2015/src/icons/watch.js +8 -4
- package/esm2015/src/icons/youtube.js +3 -3
- package/esm2015/src/icons/zap-off.js +2 -2
- package/fesm2015/lucide-angular-src-icons.js +101 -42
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +105 -42
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/chevrons-left-right.d.ts +3 -0
- package/icons/chevrons-right-left.d.ts +3 -0
- package/icons/heart-off.d.ts +3 -0
- package/icons/hourglass.d.ts +3 -0
- package/icons/index.d.ts +4 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/chevrons-left-right.d.ts +3 -0
- package/src/icons/chevrons-right-left.d.ts +3 -0
- package/src/icons/heart-off.d.ts +3 -0
- package/src/icons/hourglass.d.ts +3 -0
- package/src/icons/index.d.ts +4 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
|
@@ -632,8 +632,8 @@ const Award = [
|
|
|
632
632
|
'svg',
|
|
633
633
|
defaultAttributes,
|
|
634
634
|
[
|
|
635
|
-
['circle', { cx: '12', cy: '8', r: '
|
|
636
|
-
['
|
|
635
|
+
['circle', { cx: '12', cy: '8', r: '6' }],
|
|
636
|
+
['path', { d: 'M15.477 12.89 17 22l-5-3-5 3 1.523-9.11' }],
|
|
637
637
|
],
|
|
638
638
|
];
|
|
639
639
|
|
|
@@ -1293,6 +1293,12 @@ const ChevronsDown = [
|
|
|
1293
1293
|
],
|
|
1294
1294
|
];
|
|
1295
1295
|
|
|
1296
|
+
const ChevronsLeftRight = [
|
|
1297
|
+
'svg',
|
|
1298
|
+
defaultAttributes,
|
|
1299
|
+
[['path', { d: 'M9 7L4 12L9 17' }], ['path', { d: 'M15 7L20 12L15 17' }]],
|
|
1300
|
+
];
|
|
1301
|
+
|
|
1296
1302
|
const ChevronsLeft = [
|
|
1297
1303
|
'svg',
|
|
1298
1304
|
defaultAttributes,
|
|
@@ -1302,6 +1308,12 @@ const ChevronsLeft = [
|
|
|
1302
1308
|
],
|
|
1303
1309
|
];
|
|
1304
1310
|
|
|
1311
|
+
const ChevronsRightLeft = [
|
|
1312
|
+
'svg',
|
|
1313
|
+
defaultAttributes,
|
|
1314
|
+
[['path', { d: 'M20 17L15 12L20 7' }], ['path', { d: 'M4 17L9 12L4 7' }]],
|
|
1315
|
+
];
|
|
1316
|
+
|
|
1305
1317
|
const ChevronsRight = [
|
|
1306
1318
|
'svg',
|
|
1307
1319
|
defaultAttributes,
|
|
@@ -1796,11 +1808,11 @@ const Coffee = [
|
|
|
1796
1808
|
'svg',
|
|
1797
1809
|
defaultAttributes,
|
|
1798
1810
|
[
|
|
1799
|
-
['path', { d: '
|
|
1800
|
-
['path', { d: '
|
|
1801
|
-
['line', { x1: '6', y1: '
|
|
1802
|
-
['line', { x1: '10', y1: '
|
|
1803
|
-
['line', { x1: '14', y1: '
|
|
1811
|
+
['path', { d: 'M17 8h1a4 4 0 1 1 0 8H17' }],
|
|
1812
|
+
['path', { d: 'M3 8H17v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4Z' }],
|
|
1813
|
+
['line', { x1: '6', y1: '2', x2: '6', y2: '4' }],
|
|
1814
|
+
['line', { x1: '10', y1: '2', x2: '10', y2: '4' }],
|
|
1815
|
+
['line', { x1: '14', y1: '2', x2: '14', y2: '4' }],
|
|
1804
1816
|
],
|
|
1805
1817
|
];
|
|
1806
1818
|
|
|
@@ -1808,10 +1820,10 @@ const Coins = [
|
|
|
1808
1820
|
'svg',
|
|
1809
1821
|
defaultAttributes,
|
|
1810
1822
|
[
|
|
1811
|
-
['circle', { cx: '8', cy: '8', r: '
|
|
1812
|
-
['path', { d: '
|
|
1813
|
-
['path', { d: 'M7
|
|
1814
|
-
['path', { d: '
|
|
1823
|
+
['circle', { cx: '8', cy: '8', r: '6' }],
|
|
1824
|
+
['path', { d: 'M18.09 10.37A6 6 0 1 1 10.34 18' }],
|
|
1825
|
+
['path', { d: 'M7 6H8v4' }],
|
|
1826
|
+
['path', { d: 'M16.71 13.88l.7.71-2.82 2.82' }],
|
|
1815
1827
|
],
|
|
1816
1828
|
];
|
|
1817
1829
|
|
|
@@ -2397,13 +2409,20 @@ const EyeOff = [
|
|
|
2397
2409
|
'svg',
|
|
2398
2410
|
defaultAttributes,
|
|
2399
2411
|
[
|
|
2412
|
+
['path', { d: 'm9.88 9.88a3 3 0 1 0 4.24 4.24' }],
|
|
2400
2413
|
[
|
|
2401
2414
|
'path',
|
|
2402
2415
|
{
|
|
2403
|
-
d: '
|
|
2416
|
+
d: 'M10.73 5.08A10.43 10.43 0 0 1 12 5c7 0 10 7 10 7a13.16 13.16 0 0 1-1.67 2.68',
|
|
2404
2417
|
},
|
|
2405
2418
|
],
|
|
2406
|
-
[
|
|
2419
|
+
[
|
|
2420
|
+
'path',
|
|
2421
|
+
{
|
|
2422
|
+
d: 'm6.61 6.61c-1.989 1.355-3.58 3.215-4.61 5.39 0 0 3 7 10 7 1.916 0.0051 3.791-0.5549 5.39-1.61',
|
|
2423
|
+
},
|
|
2424
|
+
],
|
|
2425
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
2407
2426
|
],
|
|
2408
2427
|
];
|
|
2409
2428
|
|
|
@@ -2411,7 +2430,7 @@ const Eye = [
|
|
|
2411
2430
|
'svg',
|
|
2412
2431
|
defaultAttributes,
|
|
2413
2432
|
[
|
|
2414
|
-
['path', { d: '
|
|
2433
|
+
['path', { d: 'M2 12S5 5 12 5s10 7 10 7-3 7-10 7S2 12 2 12Z' }],
|
|
2415
2434
|
['circle', { cx: '12', cy: '12', r: '3' }],
|
|
2416
2435
|
],
|
|
2417
2436
|
];
|
|
@@ -3328,6 +3347,26 @@ const Headphones = [
|
|
|
3328
3347
|
],
|
|
3329
3348
|
];
|
|
3330
3349
|
|
|
3350
|
+
const HeartOff = [
|
|
3351
|
+
'svg',
|
|
3352
|
+
defaultAttributes,
|
|
3353
|
+
[
|
|
3354
|
+
[
|
|
3355
|
+
'path',
|
|
3356
|
+
{
|
|
3357
|
+
d: 'M4.12 4.107a5.4 5.4 0 0 0-.538.473C1.46 6.7 1.33 10.28 4 13l8 8 4.5-4.5',
|
|
3358
|
+
},
|
|
3359
|
+
],
|
|
3360
|
+
[
|
|
3361
|
+
'path',
|
|
3362
|
+
{
|
|
3363
|
+
d: 'M19.328 13.672 20 13c2.67-2.72 2.54-6.3.42-8.42a5.4 5.4 0 0 0-7.65 0l-.77.78-.77-.78a5.4 5.4 0 0 0-2.386-1.393',
|
|
3364
|
+
},
|
|
3365
|
+
],
|
|
3366
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
3367
|
+
],
|
|
3368
|
+
];
|
|
3369
|
+
|
|
3331
3370
|
const Heart = [
|
|
3332
3371
|
'svg',
|
|
3333
3372
|
defaultAttributes,
|
|
@@ -3395,6 +3434,27 @@ const Home = [
|
|
|
3395
3434
|
],
|
|
3396
3435
|
];
|
|
3397
3436
|
|
|
3437
|
+
const Hourglass = [
|
|
3438
|
+
'svg',
|
|
3439
|
+
defaultAttributes,
|
|
3440
|
+
[
|
|
3441
|
+
['path', { d: 'M5 22h14' }],
|
|
3442
|
+
['path', { d: 'M5 2h14' }],
|
|
3443
|
+
[
|
|
3444
|
+
'path',
|
|
3445
|
+
{
|
|
3446
|
+
d: 'M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22',
|
|
3447
|
+
},
|
|
3448
|
+
],
|
|
3449
|
+
[
|
|
3450
|
+
'path',
|
|
3451
|
+
{
|
|
3452
|
+
d: 'M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2',
|
|
3453
|
+
},
|
|
3454
|
+
],
|
|
3455
|
+
],
|
|
3456
|
+
];
|
|
3457
|
+
|
|
3398
3458
|
const ImageMinus = [
|
|
3399
3459
|
'svg',
|
|
3400
3460
|
defaultAttributes,
|
|
@@ -5489,7 +5549,7 @@ const ShieldOff = [
|
|
|
5489
5549
|
'path',
|
|
5490
5550
|
{ d: 'M4.73 4.73 4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38' },
|
|
5491
5551
|
],
|
|
5492
|
-
['line', { x1: '
|
|
5552
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
5493
5553
|
],
|
|
5494
5554
|
];
|
|
5495
5555
|
|
|
@@ -6274,8 +6334,8 @@ const TrendingDown = [
|
|
|
6274
6334
|
'svg',
|
|
6275
6335
|
defaultAttributes,
|
|
6276
6336
|
[
|
|
6277
|
-
['polyline', { points: '
|
|
6278
|
-
['polyline', { points: '17
|
|
6337
|
+
['polyline', { points: '22 17 13.5 8.5 8.5 13.5 2 7' }],
|
|
6338
|
+
['polyline', { points: '16 17 22 17 22 11' }],
|
|
6279
6339
|
],
|
|
6280
6340
|
];
|
|
6281
6341
|
|
|
@@ -6283,8 +6343,8 @@ const TrendingUp = [
|
|
|
6283
6343
|
'svg',
|
|
6284
6344
|
defaultAttributes,
|
|
6285
6345
|
[
|
|
6286
|
-
['polyline', { points: '
|
|
6287
|
-
['polyline', { points: '
|
|
6346
|
+
['polyline', { points: '22 7 13.5 15.5 8.5 10.5 2 17' }],
|
|
6347
|
+
['polyline', { points: '16 7 22 7 22 13' }],
|
|
6288
6348
|
],
|
|
6289
6349
|
];
|
|
6290
6350
|
|
|
@@ -6345,7 +6405,7 @@ const Twitter = [
|
|
|
6345
6405
|
[
|
|
6346
6406
|
'path',
|
|
6347
6407
|
{
|
|
6348
|
-
d: '
|
|
6408
|
+
d: 'M22 4c0 0-0.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6c2.2 0.1 4.4-0.6 6-2C3 15.5 0.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4 c-0.9-4.2 4-6.6 7-3.8C20.1 5.2 22 4 22 4z',
|
|
6349
6409
|
},
|
|
6350
6410
|
],
|
|
6351
6411
|
],
|
|
@@ -6534,13 +6594,12 @@ const VideoOff = [
|
|
|
6534
6594
|
'svg',
|
|
6535
6595
|
defaultAttributes,
|
|
6536
6596
|
[
|
|
6597
|
+
['path', { d: 'M10.66 6H14a2 2 0 0 1 2 2v2.34l1 1L22 8v8' }],
|
|
6537
6598
|
[
|
|
6538
6599
|
'path',
|
|
6539
|
-
{
|
|
6540
|
-
d: 'M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10',
|
|
6541
|
-
},
|
|
6600
|
+
{ d: 'M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2l10 10Z' },
|
|
6542
6601
|
],
|
|
6543
|
-
['line', { x1: '
|
|
6602
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
6544
6603
|
],
|
|
6545
6604
|
];
|
|
6546
6605
|
|
|
@@ -6548,8 +6607,8 @@ const Video = [
|
|
|
6548
6607
|
'svg',
|
|
6549
6608
|
defaultAttributes,
|
|
6550
6609
|
[
|
|
6551
|
-
['
|
|
6552
|
-
['rect', { x: '
|
|
6610
|
+
['path', { d: 'M22 8L16 12L22 16V8Z' }],
|
|
6611
|
+
['rect', { x: '2', y: '6', width: '14', height: '12', rx: '2', ry: '2' }],
|
|
6553
6612
|
],
|
|
6554
6613
|
];
|
|
6555
6614
|
|
|
@@ -6562,12 +6621,8 @@ const View = [
|
|
|
6562
6621
|
{ d: 'M5 12s2.545-5 7-5c4.454 0 7 5 7 5s-2.546 5-7 5c-4.455 0-7-5-7-5z' },
|
|
6563
6622
|
],
|
|
6564
6623
|
['path', { d: 'M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2z' }],
|
|
6565
|
-
[
|
|
6566
|
-
|
|
6567
|
-
{
|
|
6568
|
-
d: 'M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3m18 8v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3',
|
|
6569
|
-
},
|
|
6570
|
-
],
|
|
6624
|
+
['path', { d: 'M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V17' }],
|
|
6625
|
+
['path', { d: 'M21 7V5a2 2 0 0 0-2-2H5A2 2 0 0 0 3 5V7' }],
|
|
6571
6626
|
],
|
|
6572
6627
|
];
|
|
6573
6628
|
|
|
@@ -6575,9 +6630,9 @@ const Voicemail = [
|
|
|
6575
6630
|
'svg',
|
|
6576
6631
|
defaultAttributes,
|
|
6577
6632
|
[
|
|
6578
|
-
['circle', { cx: '
|
|
6579
|
-
['circle', { cx: '18
|
|
6580
|
-
['line', { x1: '
|
|
6633
|
+
['circle', { cx: '6', cy: '12', r: '4' }],
|
|
6634
|
+
['circle', { cx: '18', cy: '12', r: '4' }],
|
|
6635
|
+
['line', { x1: '6', y1: '16', x2: '18', y2: '16' }],
|
|
6581
6636
|
],
|
|
6582
6637
|
];
|
|
6583
6638
|
|
|
@@ -6648,14 +6703,18 @@ const Watch = [
|
|
|
6648
6703
|
'svg',
|
|
6649
6704
|
defaultAttributes,
|
|
6650
6705
|
[
|
|
6651
|
-
['circle', { cx: '12', cy: '12', r: '
|
|
6652
|
-
['polyline', { points: '12
|
|
6706
|
+
['circle', { cx: '12', cy: '12', r: '6' }],
|
|
6707
|
+
['polyline', { points: '12 10 12 12 13 13' }],
|
|
6653
6708
|
[
|
|
6654
6709
|
'path',
|
|
6655
6710
|
{
|
|
6656
|
-
d: '
|
|
6711
|
+
d: 'M16.13 7.66l-.81-4.05a2 2 0 0 0-2-1.61H10.64a2 2 0 0 0-2 1.61L7.86 7.66',
|
|
6657
6712
|
},
|
|
6658
6713
|
],
|
|
6714
|
+
[
|
|
6715
|
+
'path',
|
|
6716
|
+
{ d: 'M7.88 16.36l.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05' },
|
|
6717
|
+
],
|
|
6659
6718
|
],
|
|
6660
6719
|
];
|
|
6661
6720
|
|
|
@@ -6798,10 +6857,10 @@ const Youtube = [
|
|
|
6798
6857
|
[
|
|
6799
6858
|
'path',
|
|
6800
6859
|
{
|
|
6801
|
-
d: '
|
|
6860
|
+
d: 'M12 19c-2.3 0-6.4-0.2-8.1-0.6c-0.7-0.2-1.2-0.7-1.4-1.4C2.2 15.9 2 13.6 2 12c0-1.6 0.2-3.9 0.5-5 c0.2-0.7 0.7-1.2 1.4-1.4C5.6 5.2 9.7 5 12 5c2.3 0 6.4 0.2 8.1 0.6c0.7 0.2 1.2 0.7 1.4 1.4c0.3 1.1 0.5 3.4 0.5 5 c0 1.6-0.2 3.9-0.5 5c-0.2 0.7-0.7 1.2-1.4 1.4C18.4 18.8 14.3 19 12 19C12 19 12 19 12 19z',
|
|
6802
6861
|
},
|
|
6803
6862
|
],
|
|
6804
|
-
['polygon', { points: '
|
|
6863
|
+
['polygon', { points: '10 15 15 12 10 9' }],
|
|
6805
6864
|
],
|
|
6806
6865
|
];
|
|
6807
6866
|
|
|
@@ -6812,7 +6871,7 @@ const ZapOff = [
|
|
|
6812
6871
|
['polyline', { points: '12.41 6.75 13 2 10.57 4.92' }],
|
|
6813
6872
|
['polyline', { points: '18.57 12.91 21 10 15.66 10' }],
|
|
6814
6873
|
['polyline', { points: '8 8 3 14 12 14 11 22 16 16' }],
|
|
6815
|
-
['line', { x1: '
|
|
6874
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
6816
6875
|
],
|
|
6817
6876
|
];
|
|
6818
6877
|
|
|
@@ -6962,7 +7021,9 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
6962
7021
|
ChevronUp: ChevronUp,
|
|
6963
7022
|
ChevronsDownUp: ChevronsDownUp,
|
|
6964
7023
|
ChevronsDown: ChevronsDown,
|
|
7024
|
+
ChevronsLeftRight: ChevronsLeftRight,
|
|
6965
7025
|
ChevronsLeft: ChevronsLeft,
|
|
7026
|
+
ChevronsRightLeft: ChevronsRightLeft,
|
|
6966
7027
|
ChevronsRight: ChevronsRight,
|
|
6967
7028
|
ChevronsUpDown: ChevronsUpDown,
|
|
6968
7029
|
ChevronsUp: ChevronsUp,
|
|
@@ -7133,12 +7194,14 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
7133
7194
|
Hash: Hash,
|
|
7134
7195
|
Haze: Haze,
|
|
7135
7196
|
Headphones: Headphones,
|
|
7197
|
+
HeartOff: HeartOff,
|
|
7136
7198
|
Heart: Heart,
|
|
7137
7199
|
HelpCircle: HelpCircle,
|
|
7138
7200
|
Hexagon: Hexagon,
|
|
7139
7201
|
Highlighter: Highlighter,
|
|
7140
7202
|
History: History,
|
|
7141
7203
|
Home: Home,
|
|
7204
|
+
Hourglass: Hourglass,
|
|
7142
7205
|
ImageMinus: ImageMinus,
|
|
7143
7206
|
ImageOff: ImageOff,
|
|
7144
7207
|
ImagePlus: ImagePlus,
|
|
@@ -7562,5 +7625,5 @@ LucideAngularModule.ctorParameters = () => [
|
|
|
7562
7625
|
* Generated bundle index. Do not edit.
|
|
7563
7626
|
*/
|
|
7564
7627
|
|
|
7565
|
-
export { Activity, Airplay, AlarmCheck, AlarmClock, AlarmClockOff, AlarmMinus, AlarmPlus, Album, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignCenterHorizontal, AlignCenterVertical, AlignEndHorizontal, AlignEndVertical, AlignHorizontalDistributeCenter, AlignHorizontalDistributeEnd, AlignHorizontalDistributeStart, AlignHorizontalJustifyCenter, AlignHorizontalJustifyEnd, AlignHorizontalJustifyStart, AlignHorizontalSpaceAround, AlignHorizontalSpaceBetween, AlignJustify, AlignLeft, AlignRight, AlignStartHorizontal, AlignStartVertical, AlignVerticalDistributeCenter, AlignVerticalDistributeEnd, AlignVerticalDistributeStart, AlignVerticalJustifyCenter, AlignVerticalJustifyEnd, AlignVerticalJustifyStart, AlignVerticalSpaceAround, AlignVerticalSpaceBetween, Anchor, Aperture, Archive, ArrowBigDown, ArrowBigLeft, ArrowBigRight, ArrowBigUp, ArrowDown, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftCircle, ArrowLeftRight, ArrowRight, ArrowRightCircle, ArrowUp, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Asterisk, AtSign, Award, Axe, Banknote, BarChart, BarChart2, Baseline, Battery, BatteryCharging, BatteryFull, BatteryLow, BatteryMedium, Beaker, Bell, BellMinus, BellOff, BellPlus, BellRing, Bike, Binary, Bitcoin, Bluetooth, BluetoothConnected, BluetoothOff, BluetoothSearching, Bold, Book, BookOpen, Bookmark, BookmarkMinus, BookmarkPlus, Bot, Box, BoxSelect, Briefcase, Brush, Bug, Building, Building2, Bus, Calculator, Calendar, Camera, CameraOff, Car, Carrot, Cast, Check, CheckCircle, CheckCircle2, CheckSquare, ChevronDown, ChevronFirst, ChevronLast, ChevronLeft, ChevronRight, ChevronUp, ChevronsDown, ChevronsDownUp, ChevronsLeft, ChevronsRight, ChevronsUp, ChevronsUpDown, Chrome, Circle, CircleSlashed, Clipboard, ClipboardCheck, ClipboardCopy, ClipboardList, ClipboardX, Clock, Clock1, Clock10, Clock11, Clock12, Clock2, Clock3, Clock4, Clock5, Clock6, Clock7, Clock8, Clock9, Cloud, CloudDrizzle, CloudFog, CloudHail, CloudLightning, CloudMoon, CloudOff, CloudRain, CloudRainWind, CloudSnow, CloudSun, Cloudy, Clover, Code, Code2, Codepen, Codesandbox, Coffee, Coins, Columns, Command, Compass, Contact, Contrast, Cookie, Copy, Copyleft, Copyright, CornerDownLeft, CornerDownRight, CornerLeftDown, CornerLeftUp, CornerRightDown, CornerRightUp, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Crop, Cross, Crosshair, Crown, Currency, Database, Delete, Dice1, Dice2, Dice3, Dice4, Dice5, Dice6, Disc, Divide, DivideCircle, DivideSquare, DollarSign, Download, DownloadCloud, Dribbble, Droplet, Droplets, Drumstick, Edit, Edit2, Edit3, Egg, Equal, EqualNot, Eraser, Euro, Expand, ExternalLink, Eye, EyeOff, Facebook, FastForward, Feather, Figma, File, FileCheck, FileCheck2, FileCode, FileDigit, FileInput, FileMinus, FileMinus2, FileOutput, FilePlus, FilePlus2, FileSearch, FileText, FileX, FileX2, Files, Film, Filter, Flag, FlagOff, FlagTriangleLeft, FlagTriangleRight, Flame, Flashlight, FlashlightOff, FlaskConical, FlaskRound, Folder, FolderMinus, FolderOpen, FolderPlus, FormInput, Forward, Frame, Framer, Frown, FunctionSquare, Gamepad, Gamepad2, Gauge, Gavel, Gem, Ghost, Gift, GitBranch, GitBranchPlus, GitCommit, GitFork, GitMerge, GitPullRequest, Github, Gitlab, Glasses, Globe, Globe2, Grab, GraduationCap, Grid, GripHorizontal, GripVertical, Hammer, Hand, HandMetal, HardDrive, HardHat, Hash, Haze, Headphones, Heart, HelpCircle, Hexagon, Highlighter, History, Home, Image, ImageMinus, ImageOff, ImagePlus, Import, Inbox, Indent, IndianRupee, Infinity, Info, Inspect, Instagram, Italic, JapaneseYen, Key, Keyboard, Landmark, Languages, Laptop, Laptop2, Lasso, LassoSelect, Layers, Layout, LayoutDashboard, LayoutGrid, LayoutList, LayoutTemplate, Library, LifeBuoy, Lightbulb, LightbulbOff, Link, Link2, Link2Off, Linkedin, List, ListChecks, ListMinus, ListOrdered, ListPlus, ListX, Loader, Loader2, Locate, LocateFixed, LocateOff, Lock, LogIn, LogOut, LucideAngularComponent, LucideAngularModule, Mail, Map, MapPin, Maximize, Maximize2, Megaphone, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, MonitorOff, MonitorSpeaker, Moon, MoreHorizontal, MoreVertical, Mountain, MountainSnow, Mouse, MousePointer, MousePointer2, MousePointerClick, Move, MoveDiagonal, MoveDiagonal2, MoveHorizontal, MoveVertical, Music, Navigation, Navigation2, Network, Octagon, Option, Outdent, Package, PackageCheck, PackageMinus, PackagePlus, PackageSearch, PackageX, Palette, Palmtree, Paperclip, Pause, PauseCircle, PauseOctagon, PenTool, Pencil, Percent, PersonStanding, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, PiggyBank, Pin, Pipette, Plane, Play, PlayCircle, PlugZap, Plus, PlusCircle, PlusSquare, Pocket, Podcast, Pointer, PoundSterling, Power, PowerOff, Printer, QrCode, Quote, Radio, RadioReceiver, Redo, RefreshCcw, RefreshCw, Regex, Repeat, Repeat1, Reply, ReplyAll, Rewind, Rocket, RockingChair, RotateCcw, RotateCw, Rss, Ruler, RussianRuble, Save, Scale, Scan, ScanLine, Scissors, ScreenShare, ScreenShareOff, Search, Send, SeparatorHorizontal, SeparatorVertical, Server, ServerCrash, ServerOff, Settings, Settings2, Share, Share2, Sheet, Shield, ShieldAlert, ShieldCheck, ShieldClose, ShieldOff, Shirt, ShoppingBag, ShoppingCart, Shovel, Shrink, Shuffle, Sidebar, SidebarClose, SidebarOpen, Sigma, Signal, SignalHigh, SignalLow, SignalMedium, SignalZero, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, StretchHorizontal, StretchVertical, Strikethrough, Subscript, Sun, Sunrise, Sunset, Superscript, SwissFranc, SwitchCamera, Table, Tablet, Tag, Target, Tent, Terminal, TerminalSquare, TextCursor, TextCursorInput, Thermometer, ThermometerSnowflake, ThermometerSun, ThumbsDown, ThumbsUp, Ticket, Timer, TimerOff, TimerReset, ToggleLeft, ToggleRight, Tornado, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Truck, Tv, Tv2, Twitch, Twitter, Type, Umbrella, Underline, Undo, Unlink, Unlink2, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Verified, Vibrate, Video, VideoOff, View, Voicemail, Volume, Volume1, Volume2, VolumeX, Wallet, Wand, Watch, Waves, Webcam, Wifi, WifiOff, Wind, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut, createElement, index as icons, Icons as ɵa };
|
|
7628
|
+
export { Activity, Airplay, AlarmCheck, AlarmClock, AlarmClockOff, AlarmMinus, AlarmPlus, Album, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignCenterHorizontal, AlignCenterVertical, AlignEndHorizontal, AlignEndVertical, AlignHorizontalDistributeCenter, AlignHorizontalDistributeEnd, AlignHorizontalDistributeStart, AlignHorizontalJustifyCenter, AlignHorizontalJustifyEnd, AlignHorizontalJustifyStart, AlignHorizontalSpaceAround, AlignHorizontalSpaceBetween, AlignJustify, AlignLeft, AlignRight, AlignStartHorizontal, AlignStartVertical, AlignVerticalDistributeCenter, AlignVerticalDistributeEnd, AlignVerticalDistributeStart, AlignVerticalJustifyCenter, AlignVerticalJustifyEnd, AlignVerticalJustifyStart, AlignVerticalSpaceAround, AlignVerticalSpaceBetween, Anchor, Aperture, Archive, ArrowBigDown, ArrowBigLeft, ArrowBigRight, ArrowBigUp, ArrowDown, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftCircle, ArrowLeftRight, ArrowRight, ArrowRightCircle, ArrowUp, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Asterisk, AtSign, Award, Axe, Banknote, BarChart, BarChart2, Baseline, Battery, BatteryCharging, BatteryFull, BatteryLow, BatteryMedium, Beaker, Bell, BellMinus, BellOff, BellPlus, BellRing, Bike, Binary, Bitcoin, Bluetooth, BluetoothConnected, BluetoothOff, BluetoothSearching, Bold, Book, BookOpen, Bookmark, BookmarkMinus, BookmarkPlus, Bot, Box, BoxSelect, Briefcase, Brush, Bug, Building, Building2, Bus, Calculator, Calendar, Camera, CameraOff, Car, Carrot, Cast, Check, CheckCircle, CheckCircle2, CheckSquare, ChevronDown, ChevronFirst, ChevronLast, ChevronLeft, ChevronRight, ChevronUp, ChevronsDown, ChevronsDownUp, ChevronsLeft, ChevronsLeftRight, ChevronsRight, ChevronsRightLeft, ChevronsUp, ChevronsUpDown, Chrome, Circle, CircleSlashed, Clipboard, ClipboardCheck, ClipboardCopy, ClipboardList, ClipboardX, Clock, Clock1, Clock10, Clock11, Clock12, Clock2, Clock3, Clock4, Clock5, Clock6, Clock7, Clock8, Clock9, Cloud, CloudDrizzle, CloudFog, CloudHail, CloudLightning, CloudMoon, CloudOff, CloudRain, CloudRainWind, CloudSnow, CloudSun, Cloudy, Clover, Code, Code2, Codepen, Codesandbox, Coffee, Coins, Columns, Command, Compass, Contact, Contrast, Cookie, Copy, Copyleft, Copyright, CornerDownLeft, CornerDownRight, CornerLeftDown, CornerLeftUp, CornerRightDown, CornerRightUp, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Crop, Cross, Crosshair, Crown, Currency, Database, Delete, Dice1, Dice2, Dice3, Dice4, Dice5, Dice6, Disc, Divide, DivideCircle, DivideSquare, DollarSign, Download, DownloadCloud, Dribbble, Droplet, Droplets, Drumstick, Edit, Edit2, Edit3, Egg, Equal, EqualNot, Eraser, Euro, Expand, ExternalLink, Eye, EyeOff, Facebook, FastForward, Feather, Figma, File, FileCheck, FileCheck2, FileCode, FileDigit, FileInput, FileMinus, FileMinus2, FileOutput, FilePlus, FilePlus2, FileSearch, FileText, FileX, FileX2, Files, Film, Filter, Flag, FlagOff, FlagTriangleLeft, FlagTriangleRight, Flame, Flashlight, FlashlightOff, FlaskConical, FlaskRound, Folder, FolderMinus, FolderOpen, FolderPlus, FormInput, Forward, Frame, Framer, Frown, FunctionSquare, Gamepad, Gamepad2, Gauge, Gavel, Gem, Ghost, Gift, GitBranch, GitBranchPlus, GitCommit, GitFork, GitMerge, GitPullRequest, Github, Gitlab, Glasses, Globe, Globe2, Grab, GraduationCap, Grid, GripHorizontal, GripVertical, Hammer, Hand, HandMetal, HardDrive, HardHat, Hash, Haze, Headphones, Heart, HeartOff, HelpCircle, Hexagon, Highlighter, History, Home, Hourglass, Image, ImageMinus, ImageOff, ImagePlus, Import, Inbox, Indent, IndianRupee, Infinity, Info, Inspect, Instagram, Italic, JapaneseYen, Key, Keyboard, Landmark, Languages, Laptop, Laptop2, Lasso, LassoSelect, Layers, Layout, LayoutDashboard, LayoutGrid, LayoutList, LayoutTemplate, Library, LifeBuoy, Lightbulb, LightbulbOff, Link, Link2, Link2Off, Linkedin, List, ListChecks, ListMinus, ListOrdered, ListPlus, ListX, Loader, Loader2, Locate, LocateFixed, LocateOff, Lock, LogIn, LogOut, LucideAngularComponent, LucideAngularModule, Mail, Map, MapPin, Maximize, Maximize2, Megaphone, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, MonitorOff, MonitorSpeaker, Moon, MoreHorizontal, MoreVertical, Mountain, MountainSnow, Mouse, MousePointer, MousePointer2, MousePointerClick, Move, MoveDiagonal, MoveDiagonal2, MoveHorizontal, MoveVertical, Music, Navigation, Navigation2, Network, Octagon, Option, Outdent, Package, PackageCheck, PackageMinus, PackagePlus, PackageSearch, PackageX, Palette, Palmtree, Paperclip, Pause, PauseCircle, PauseOctagon, PenTool, Pencil, Percent, PersonStanding, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, PiggyBank, Pin, Pipette, Plane, Play, PlayCircle, PlugZap, Plus, PlusCircle, PlusSquare, Pocket, Podcast, Pointer, PoundSterling, Power, PowerOff, Printer, QrCode, Quote, Radio, RadioReceiver, Redo, RefreshCcw, RefreshCw, Regex, Repeat, Repeat1, Reply, ReplyAll, Rewind, Rocket, RockingChair, RotateCcw, RotateCw, Rss, Ruler, RussianRuble, Save, Scale, Scan, ScanLine, Scissors, ScreenShare, ScreenShareOff, Search, Send, SeparatorHorizontal, SeparatorVertical, Server, ServerCrash, ServerOff, Settings, Settings2, Share, Share2, Sheet, Shield, ShieldAlert, ShieldCheck, ShieldClose, ShieldOff, Shirt, ShoppingBag, ShoppingCart, Shovel, Shrink, Shuffle, Sidebar, SidebarClose, SidebarOpen, Sigma, Signal, SignalHigh, SignalLow, SignalMedium, SignalZero, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, StretchHorizontal, StretchVertical, Strikethrough, Subscript, Sun, Sunrise, Sunset, Superscript, SwissFranc, SwitchCamera, Table, Tablet, Tag, Target, Tent, Terminal, TerminalSquare, TextCursor, TextCursorInput, Thermometer, ThermometerSnowflake, ThermometerSun, ThumbsDown, ThumbsUp, Ticket, Timer, TimerOff, TimerReset, ToggleLeft, ToggleRight, Tornado, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Truck, Tv, Tv2, Twitch, Twitter, Type, Umbrella, Underline, Undo, Unlink, Unlink2, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Verified, Vibrate, Video, VideoOff, View, Voicemail, Volume, Volume1, Volume2, VolumeX, Wallet, Wand, Watch, Waves, Webcam, Wifi, WifiOff, Wind, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut, createElement, index as icons, Icons as ɵa };
|
|
7566
7629
|
//# sourceMappingURL=lucide-angular.js.map
|