lucide-angular 0.30.0 → 0.31.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 +87 -28
- 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 +91 -28
- 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/video-off.js +4 -5
- package/esm2015/icons/video.js +3 -3
- package/esm2015/icons/view.js +3 -7
- 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/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/zap-off.js +2 -2
- package/fesm2015/lucide-angular-src-icons.js +84 -29
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +88 -29
- 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
|
@@ -630,8 +630,8 @@ const Award = [
|
|
|
630
630
|
'svg',
|
|
631
631
|
defaultAttributes,
|
|
632
632
|
[
|
|
633
|
-
['circle', { cx: '12', cy: '8', r: '
|
|
634
|
-
['
|
|
633
|
+
['circle', { cx: '12', cy: '8', r: '6' }],
|
|
634
|
+
['path', { d: 'M15.477 12.89 17 22l-5-3-5 3 1.523-9.11' }],
|
|
635
635
|
],
|
|
636
636
|
];
|
|
637
637
|
|
|
@@ -1291,6 +1291,12 @@ const ChevronsDown = [
|
|
|
1291
1291
|
],
|
|
1292
1292
|
];
|
|
1293
1293
|
|
|
1294
|
+
const ChevronsLeftRight = [
|
|
1295
|
+
'svg',
|
|
1296
|
+
defaultAttributes,
|
|
1297
|
+
[['path', { d: 'M9 7L4 12L9 17' }], ['path', { d: 'M15 7L20 12L15 17' }]],
|
|
1298
|
+
];
|
|
1299
|
+
|
|
1294
1300
|
const ChevronsLeft = [
|
|
1295
1301
|
'svg',
|
|
1296
1302
|
defaultAttributes,
|
|
@@ -1300,6 +1306,12 @@ const ChevronsLeft = [
|
|
|
1300
1306
|
],
|
|
1301
1307
|
];
|
|
1302
1308
|
|
|
1309
|
+
const ChevronsRightLeft = [
|
|
1310
|
+
'svg',
|
|
1311
|
+
defaultAttributes,
|
|
1312
|
+
[['path', { d: 'M20 17L15 12L20 7' }], ['path', { d: 'M4 17L9 12L4 7' }]],
|
|
1313
|
+
];
|
|
1314
|
+
|
|
1303
1315
|
const ChevronsRight = [
|
|
1304
1316
|
'svg',
|
|
1305
1317
|
defaultAttributes,
|
|
@@ -1794,11 +1806,11 @@ const Coffee = [
|
|
|
1794
1806
|
'svg',
|
|
1795
1807
|
defaultAttributes,
|
|
1796
1808
|
[
|
|
1797
|
-
['path', { d: '
|
|
1798
|
-
['path', { d: '
|
|
1799
|
-
['line', { x1: '6', y1: '
|
|
1800
|
-
['line', { x1: '10', y1: '
|
|
1801
|
-
['line', { x1: '14', y1: '
|
|
1809
|
+
['path', { d: 'M17 8h1a4 4 0 1 1 0 8H17' }],
|
|
1810
|
+
['path', { d: 'M3 8H17v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4Z' }],
|
|
1811
|
+
['line', { x1: '6', y1: '2', x2: '6', y2: '4' }],
|
|
1812
|
+
['line', { x1: '10', y1: '2', x2: '10', y2: '4' }],
|
|
1813
|
+
['line', { x1: '14', y1: '2', x2: '14', y2: '4' }],
|
|
1802
1814
|
],
|
|
1803
1815
|
];
|
|
1804
1816
|
|
|
@@ -1806,10 +1818,10 @@ const Coins = [
|
|
|
1806
1818
|
'svg',
|
|
1807
1819
|
defaultAttributes,
|
|
1808
1820
|
[
|
|
1809
|
-
['circle', { cx: '8', cy: '8', r: '
|
|
1810
|
-
['path', { d: '
|
|
1811
|
-
['path', { d: 'M7
|
|
1812
|
-
['path', { d: '
|
|
1821
|
+
['circle', { cx: '8', cy: '8', r: '6' }],
|
|
1822
|
+
['path', { d: 'M18.09 10.37A6 6 0 1 1 10.34 18' }],
|
|
1823
|
+
['path', { d: 'M7 6H8v4' }],
|
|
1824
|
+
['path', { d: 'M16.71 13.88l.7.71-2.82 2.82' }],
|
|
1813
1825
|
],
|
|
1814
1826
|
];
|
|
1815
1827
|
|
|
@@ -2395,13 +2407,20 @@ const EyeOff = [
|
|
|
2395
2407
|
'svg',
|
|
2396
2408
|
defaultAttributes,
|
|
2397
2409
|
[
|
|
2410
|
+
['path', { d: 'm9.88 9.88a3 3 0 1 0 4.24 4.24' }],
|
|
2398
2411
|
[
|
|
2399
2412
|
'path',
|
|
2400
2413
|
{
|
|
2401
|
-
d: '
|
|
2414
|
+
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',
|
|
2402
2415
|
},
|
|
2403
2416
|
],
|
|
2404
|
-
[
|
|
2417
|
+
[
|
|
2418
|
+
'path',
|
|
2419
|
+
{
|
|
2420
|
+
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',
|
|
2421
|
+
},
|
|
2422
|
+
],
|
|
2423
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
2405
2424
|
],
|
|
2406
2425
|
];
|
|
2407
2426
|
|
|
@@ -2409,7 +2428,7 @@ const Eye = [
|
|
|
2409
2428
|
'svg',
|
|
2410
2429
|
defaultAttributes,
|
|
2411
2430
|
[
|
|
2412
|
-
['path', { d: '
|
|
2431
|
+
['path', { d: 'M2 12S5 5 12 5s10 7 10 7-3 7-10 7S2 12 2 12Z' }],
|
|
2413
2432
|
['circle', { cx: '12', cy: '12', r: '3' }],
|
|
2414
2433
|
],
|
|
2415
2434
|
];
|
|
@@ -3326,6 +3345,26 @@ const Headphones = [
|
|
|
3326
3345
|
],
|
|
3327
3346
|
];
|
|
3328
3347
|
|
|
3348
|
+
const HeartOff = [
|
|
3349
|
+
'svg',
|
|
3350
|
+
defaultAttributes,
|
|
3351
|
+
[
|
|
3352
|
+
[
|
|
3353
|
+
'path',
|
|
3354
|
+
{
|
|
3355
|
+
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',
|
|
3356
|
+
},
|
|
3357
|
+
],
|
|
3358
|
+
[
|
|
3359
|
+
'path',
|
|
3360
|
+
{
|
|
3361
|
+
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',
|
|
3362
|
+
},
|
|
3363
|
+
],
|
|
3364
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
3365
|
+
],
|
|
3366
|
+
];
|
|
3367
|
+
|
|
3329
3368
|
const Heart = [
|
|
3330
3369
|
'svg',
|
|
3331
3370
|
defaultAttributes,
|
|
@@ -3393,6 +3432,27 @@ const Home = [
|
|
|
3393
3432
|
],
|
|
3394
3433
|
];
|
|
3395
3434
|
|
|
3435
|
+
const Hourglass = [
|
|
3436
|
+
'svg',
|
|
3437
|
+
defaultAttributes,
|
|
3438
|
+
[
|
|
3439
|
+
['path', { d: 'M5 22h14' }],
|
|
3440
|
+
['path', { d: 'M5 2h14' }],
|
|
3441
|
+
[
|
|
3442
|
+
'path',
|
|
3443
|
+
{
|
|
3444
|
+
d: 'M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22',
|
|
3445
|
+
},
|
|
3446
|
+
],
|
|
3447
|
+
[
|
|
3448
|
+
'path',
|
|
3449
|
+
{
|
|
3450
|
+
d: 'M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2',
|
|
3451
|
+
},
|
|
3452
|
+
],
|
|
3453
|
+
],
|
|
3454
|
+
];
|
|
3455
|
+
|
|
3396
3456
|
const ImageMinus = [
|
|
3397
3457
|
'svg',
|
|
3398
3458
|
defaultAttributes,
|
|
@@ -5487,7 +5547,7 @@ const ShieldOff = [
|
|
|
5487
5547
|
'path',
|
|
5488
5548
|
{ d: 'M4.73 4.73 4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38' },
|
|
5489
5549
|
],
|
|
5490
|
-
['line', { x1: '
|
|
5550
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
5491
5551
|
],
|
|
5492
5552
|
];
|
|
5493
5553
|
|
|
@@ -6532,13 +6592,12 @@ const VideoOff = [
|
|
|
6532
6592
|
'svg',
|
|
6533
6593
|
defaultAttributes,
|
|
6534
6594
|
[
|
|
6595
|
+
['path', { d: 'M10.66 6H14a2 2 0 0 1 2 2v2.34l1 1L22 8v8' }],
|
|
6535
6596
|
[
|
|
6536
6597
|
'path',
|
|
6537
|
-
{
|
|
6538
|
-
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',
|
|
6539
|
-
},
|
|
6598
|
+
{ d: 'M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2l10 10Z' },
|
|
6540
6599
|
],
|
|
6541
|
-
['line', { x1: '
|
|
6600
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
6542
6601
|
],
|
|
6543
6602
|
];
|
|
6544
6603
|
|
|
@@ -6546,8 +6605,8 @@ const Video = [
|
|
|
6546
6605
|
'svg',
|
|
6547
6606
|
defaultAttributes,
|
|
6548
6607
|
[
|
|
6549
|
-
['
|
|
6550
|
-
['rect', { x: '
|
|
6608
|
+
['path', { d: 'M22 8L16 12L22 16V8Z' }],
|
|
6609
|
+
['rect', { x: '2', y: '6', width: '14', height: '12', rx: '2', ry: '2' }],
|
|
6551
6610
|
],
|
|
6552
6611
|
];
|
|
6553
6612
|
|
|
@@ -6560,12 +6619,8 @@ const View = [
|
|
|
6560
6619
|
{ 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' },
|
|
6561
6620
|
],
|
|
6562
6621
|
['path', { d: 'M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2z' }],
|
|
6563
|
-
[
|
|
6564
|
-
|
|
6565
|
-
{
|
|
6566
|
-
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',
|
|
6567
|
-
},
|
|
6568
|
-
],
|
|
6622
|
+
['path', { d: 'M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V17' }],
|
|
6623
|
+
['path', { d: 'M21 7V5a2 2 0 0 0-2-2H5A2 2 0 0 0 3 5V7' }],
|
|
6569
6624
|
],
|
|
6570
6625
|
];
|
|
6571
6626
|
|
|
@@ -6810,7 +6865,7 @@ const ZapOff = [
|
|
|
6810
6865
|
['polyline', { points: '12.41 6.75 13 2 10.57 4.92' }],
|
|
6811
6866
|
['polyline', { points: '18.57 12.91 21 10 15.66 10' }],
|
|
6812
6867
|
['polyline', { points: '8 8 3 14 12 14 11 22 16 16' }],
|
|
6813
|
-
['line', { x1: '
|
|
6868
|
+
['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
|
|
6814
6869
|
],
|
|
6815
6870
|
];
|
|
6816
6871
|
|
|
@@ -6845,5 +6900,5 @@ const ZoomOut = [
|
|
|
6845
6900
|
* Generated bundle index. Do not edit.
|
|
6846
6901
|
*/
|
|
6847
6902
|
|
|
6848
|
-
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, 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 };
|
|
6903
|
+
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, 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 };
|
|
6849
6904
|
//# sourceMappingURL=lucide-angular-src-icons.js.map
|