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.
- package/bundles/lucide-angular-src-icons.umd.js +108 -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 +116 -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/angry.js +15 -0
- package/esm2015/icons/annoyed.js +13 -0
- package/esm2015/icons/axis-3d.js +8 -0
- package/esm2015/icons/bomb.js +17 -0
- package/esm2015/icons/index.js +9 -1
- package/esm2015/icons/laugh.js +13 -0
- package/esm2015/icons/smile-plus.js +15 -0
- package/esm2015/icons/sticker.js +19 -0
- package/esm2015/icons/sticky-note.js +16 -0
- package/esm2015/src/icons/angry.js +15 -0
- package/esm2015/src/icons/annoyed.js +13 -0
- package/esm2015/src/icons/axis-3d.js +8 -0
- package/esm2015/src/icons/bomb.js +17 -0
- package/esm2015/src/icons/index.js +9 -1
- package/esm2015/src/icons/laugh.js +13 -0
- package/esm2015/src/icons/smile-plus.js +15 -0
- package/esm2015/src/icons/sticker.js +19 -0
- package/esm2015/src/icons/sticky-note.js +16 -0
- package/fesm2015/lucide-angular-src-icons.js +101 -1
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +109 -1
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/angry.d.ts +3 -0
- package/icons/annoyed.d.ts +3 -0
- package/icons/axis-3d.d.ts +3 -0
- package/icons/bomb.d.ts +3 -0
- package/icons/index.d.ts +8 -0
- package/icons/laugh.d.ts +3 -0
- package/icons/smile-plus.d.ts +3 -0
- package/icons/sticker.d.ts +3 -0
- package/icons/sticky-note.d.ts +3 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/angry.d.ts +3 -0
- package/src/icons/annoyed.d.ts +3 -0
- package/src/icons/axis-3d.d.ts +3 -0
- package/src/icons/bomb.d.ts +3 -0
- package/src/icons/index.d.ts +8 -0
- package/src/icons/laugh.d.ts +3 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
- package/src/icons/smile-plus.d.ts +3 -0
- package/src/icons/sticker.d.ts +3 -0
- package/src/icons/sticky-note.d.ts +3 -0
|
@@ -458,6 +458,30 @@ const Anchor = [
|
|
|
458
458
|
],
|
|
459
459
|
];
|
|
460
460
|
|
|
461
|
+
const Angry = [
|
|
462
|
+
'svg',
|
|
463
|
+
defaultAttributes,
|
|
464
|
+
[
|
|
465
|
+
['circle', { cx: '12', cy: '12', r: '10' }],
|
|
466
|
+
['path', { d: 'M16 16s-1.5-2-4-2-4 2-4 2' }],
|
|
467
|
+
['path', { d: 'M7.5 8 10 9' }],
|
|
468
|
+
['path', { d: 'm14 9 2.5-1' }],
|
|
469
|
+
['path', { d: 'M9 10h0' }],
|
|
470
|
+
['path', { d: 'M15 10h0' }],
|
|
471
|
+
],
|
|
472
|
+
];
|
|
473
|
+
|
|
474
|
+
const Annoyed = [
|
|
475
|
+
'svg',
|
|
476
|
+
defaultAttributes,
|
|
477
|
+
[
|
|
478
|
+
['circle', { cx: '12', cy: '12', r: '10' }],
|
|
479
|
+
['path', { d: 'M8 15h8' }],
|
|
480
|
+
['path', { d: 'M8 9h2' }],
|
|
481
|
+
['path', { d: 'M14 9h2' }],
|
|
482
|
+
],
|
|
483
|
+
];
|
|
484
|
+
|
|
461
485
|
const Aperture = [
|
|
462
486
|
'svg',
|
|
463
487
|
defaultAttributes,
|
|
@@ -702,6 +726,12 @@ const Axe = [
|
|
|
702
726
|
],
|
|
703
727
|
];
|
|
704
728
|
|
|
729
|
+
const Axis3d = [
|
|
730
|
+
'svg',
|
|
731
|
+
defaultAttributes,
|
|
732
|
+
[['path', { d: 'M4 4v16h16' }], ['path', { d: 'm4 20 7-7' }]],
|
|
733
|
+
];
|
|
734
|
+
|
|
705
735
|
const Baby = [
|
|
706
736
|
'svg',
|
|
707
737
|
defaultAttributes,
|
|
@@ -1092,6 +1122,21 @@ const Bold = [
|
|
|
1092
1122
|
],
|
|
1093
1123
|
];
|
|
1094
1124
|
|
|
1125
|
+
const Bomb = [
|
|
1126
|
+
'svg',
|
|
1127
|
+
defaultAttributes,
|
|
1128
|
+
[
|
|
1129
|
+
['circle', { cx: '11', cy: '13', r: '9' }],
|
|
1130
|
+
[
|
|
1131
|
+
'path',
|
|
1132
|
+
{
|
|
1133
|
+
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',
|
|
1134
|
+
},
|
|
1135
|
+
],
|
|
1136
|
+
['path', { d: 'm22 2-1.5 1.5' }],
|
|
1137
|
+
],
|
|
1138
|
+
];
|
|
1139
|
+
|
|
1095
1140
|
const BookOpen = [
|
|
1096
1141
|
'svg',
|
|
1097
1142
|
defaultAttributes,
|
|
@@ -4451,6 +4496,17 @@ const Lasso = [
|
|
|
4451
4496
|
],
|
|
4452
4497
|
];
|
|
4453
4498
|
|
|
4499
|
+
const Laugh = [
|
|
4500
|
+
'svg',
|
|
4501
|
+
defaultAttributes,
|
|
4502
|
+
[
|
|
4503
|
+
['circle', { cx: '12', cy: '12', r: '10' }],
|
|
4504
|
+
['path', { d: 'M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z' }],
|
|
4505
|
+
['line', { x1: '9', y1: '9', x2: '9.01', y2: '9' }],
|
|
4506
|
+
['line', { x1: '15', y1: '9', x2: '15.01', y2: '9' }],
|
|
4507
|
+
],
|
|
4508
|
+
];
|
|
4509
|
+
|
|
4454
4510
|
const Layers = [
|
|
4455
4511
|
'svg',
|
|
4456
4512
|
defaultAttributes,
|
|
@@ -6986,6 +7042,19 @@ const Smartphone = [
|
|
|
6986
7042
|
],
|
|
6987
7043
|
];
|
|
6988
7044
|
|
|
7045
|
+
const SmilePlus = [
|
|
7046
|
+
'svg',
|
|
7047
|
+
defaultAttributes,
|
|
7048
|
+
[
|
|
7049
|
+
['path', { d: 'M22 11v1a10 10 0 1 1-9-10' }],
|
|
7050
|
+
['path', { d: 'M8 14s1.5 2 4 2 4-2 4-2' }],
|
|
7051
|
+
['line', { x1: '9', y1: '9', x2: '9.01', y2: '9' }],
|
|
7052
|
+
['line', { x1: '15', y1: '9', x2: '15.01', y2: '9' }],
|
|
7053
|
+
['path', { d: 'M16 5h6' }],
|
|
7054
|
+
['path', { d: 'M19 2v6' }],
|
|
7055
|
+
],
|
|
7056
|
+
];
|
|
7057
|
+
|
|
6989
7058
|
const Smile = [
|
|
6990
7059
|
'svg',
|
|
6991
7060
|
defaultAttributes,
|
|
@@ -7135,6 +7204,37 @@ const Stethoscope = [
|
|
|
7135
7204
|
],
|
|
7136
7205
|
];
|
|
7137
7206
|
|
|
7207
|
+
const Sticker = [
|
|
7208
|
+
'svg',
|
|
7209
|
+
defaultAttributes,
|
|
7210
|
+
[
|
|
7211
|
+
[
|
|
7212
|
+
'path',
|
|
7213
|
+
{
|
|
7214
|
+
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',
|
|
7215
|
+
},
|
|
7216
|
+
],
|
|
7217
|
+
['path', { d: 'M15 3v6h6' }],
|
|
7218
|
+
['path', { d: 'M10 16s.8 1 2 1c1.3 0 2-1 2-1' }],
|
|
7219
|
+
['path', { d: 'M8 13h0' }],
|
|
7220
|
+
['path', { d: 'M16 13h0' }],
|
|
7221
|
+
],
|
|
7222
|
+
];
|
|
7223
|
+
|
|
7224
|
+
const StickyNote = [
|
|
7225
|
+
'svg',
|
|
7226
|
+
defaultAttributes,
|
|
7227
|
+
[
|
|
7228
|
+
[
|
|
7229
|
+
'path',
|
|
7230
|
+
{
|
|
7231
|
+
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',
|
|
7232
|
+
},
|
|
7233
|
+
],
|
|
7234
|
+
['path', { d: 'M15 3v6h6' }],
|
|
7235
|
+
],
|
|
7236
|
+
];
|
|
7237
|
+
|
|
7138
7238
|
const StopCircle = [
|
|
7139
7239
|
'svg',
|
|
7140
7240
|
defaultAttributes,
|
|
@@ -8384,5 +8484,5 @@ const ZoomOut = [
|
|
|
8384
8484
|
* Generated bundle index. Do not edit.
|
|
8385
8485
|
*/
|
|
8386
8486
|
|
|
8387
|
-
export { Accessibility, 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, ArchiveRestore, Armchair, ArrowBigDown, ArrowBigLeft, ArrowBigRight, ArrowBigUp, ArrowDown, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftCircle, ArrowLeftRight, ArrowRight, ArrowRightCircle, ArrowUp, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Asterisk, AtSign, Award, Axe, Baby, Backpack, BaggageClaim, Banknote, BarChart, BarChart2, BarChart3, BarChart4, BarChartHorizontal, Baseline, Bath, Battery, BatteryCharging, BatteryFull, BatteryLow, BatteryMedium, Beaker, Bed, BedDouble, BedSingle, Beer, Bell, BellMinus, BellOff, BellPlus, BellRing, Bike, Binary, Bitcoin, Bluetooth, BluetoothConnected, BluetoothOff, BluetoothSearching, Bold, Book, BookOpen, Bookmark, BookmarkMinus, BookmarkPlus, Bot, Box, BoxSelect, Boxes, Briefcase, Brush, Bug, Building, Building2, Bus, Calculator, Calendar, CalendarCheck, CalendarCheck2, CalendarDays, CalendarMinus, CalendarOff, CalendarPlus, CalendarRange, CalendarX, CalendarX2, Camera, CameraOff, Car, Carrot, Cast, Check, CheckCircle, CheckCircle2, CheckSquare, ChefHat, ChevronDown, ChevronFirst, ChevronLast, ChevronLeft, ChevronRight, ChevronUp, ChevronsDown, ChevronsDownUp, ChevronsLeft, ChevronsLeftRight, ChevronsRight, ChevronsRightLeft, ChevronsUp, ChevronsUpDown, Chrome, Cigarette, CigaretteOff, Circle, CircleSlashed, Clapperboard, Clipboard, ClipboardCheck, ClipboardCopy, ClipboardList, ClipboardX, Clock, Clock1, Clock10, Clock11, Clock12, Clock2, Clock3, Clock4, Clock5, Clock6, Clock7, Clock8, Clock9, Cloud, CloudDrizzle, CloudFog, CloudHail, CloudLightning, CloudMoon, CloudMoonRain, CloudOff, CloudRain, CloudRainWind, CloudSnow, CloudSun, CloudSunRain, Cloudy, Clover, Code, Code2, Codepen, Codesandbox, Coffee, Coins, Columns, Command, Compass, Component, Contact, Contrast, Cookie, Copy, Copyleft, Copyright, CornerDownLeft, CornerDownRight, CornerLeftDown, CornerLeftUp, CornerRightDown, CornerRightUp, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Croissant, Crop, Cross, Crosshair, Crown, CupSoda, Currency, Database, Delete, Diamond, Dice1, Dice2, Dice3, Dice4, Dice5, Dice6, Dices, Disc, Divide, DivideCircle, DivideSquare, DollarSign, Download, DownloadCloud, Dribbble, Droplet, Droplets, Drumstick, Edit, Edit2, Edit3, Egg, Equal, EqualNot, Eraser, Euro, Expand, ExternalLink, Eye, EyeOff, Facebook, Factory, FastForward, Feather, Figma, File, FileCheck, FileCheck2, FileCode, FileDigit, FileInput, FileMinus, FileMinus2, FileOutput, FilePlus, FilePlus2, FileSearch, FileText, FileX, FileX2, Files, Film, Filter, Fingerprint, Flag, FlagOff, FlagTriangleLeft, FlagTriangleRight, Flame, Flashlight, FlashlightOff, FlaskConical, FlaskRound, Flower, Flower2, Focus, Folder, FolderMinus, FolderOpen, FolderPlus, FormInput, Forward, Frame, Framer, Frown, Fuel, FunctionSquare, Gamepad, Gamepad2, Gauge, Gavel, Gem, Ghost, Gift, GitBranch, GitBranchPlus, GitCommit, GitFork, GitMerge, GitPullRequest, Github, Gitlab, GlassWater, Glasses, Globe, Globe2, Grab, GraduationCap, Grid, GripHorizontal, GripVertical, Hammer, Hand, HandMetal, HardDrive, HardHat, Hash, Haze, Headphones, Heart, HeartCrack, HeartHandshake, HeartOff, HelpCircle, Hexagon, Highlighter, History, Home, Hourglass, Image, ImageMinus, ImageOff, ImagePlus, Import, Inbox, Indent, IndianRupee, Infinity, Info, Inspect, Instagram, Italic, JapaneseYen, Key, Keyboard, Lamp, LampCeiling, LampDesk, LampFloor, LampWallDown, LampWallUp, Landmark, Languages, Laptop, Laptop2, Lasso, LassoSelect, Layers, Layout, LayoutDashboard, LayoutGrid, LayoutList, LayoutTemplate, Leaf, Library, LifeBuoy, Lightbulb, LightbulbOff, LineChart, Link, Link2, Link2Off, Linkedin, List, ListChecks, ListEnd, ListMinus, ListMusic, ListOrdered, ListPlus, ListStart, ListVideo, ListX, Loader, Loader2, Locate, LocateFixed, LocateOff, Lock, LogIn, LogOut, Luggage, Magnet, Mail, Map, MapPin, MapPinOff, Martini, Maximize, Maximize2, Megaphone, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Microscope, Milestone, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, MonitorOff, MonitorSpeaker, Moon, MoreHorizontal, MoreVertical, Mountain, MountainSnow, Mouse, MousePointer, MousePointer2, MousePointerClick, Move, Move3d, MoveDiagonal, MoveDiagonal2, MoveHorizontal, MoveVertical, Music, Navigation, Navigation2, Navigation2Off, NavigationOff, Network, Octagon, Option, Outdent, Package, PackageCheck, PackageMinus, PackageOpen, PackagePlus, PackageSearch, PackageX, PaintBucket, Paintbrush, Paintbrush2, Palette, Palmtree, Paperclip, Pause, PauseCircle, PauseOctagon, PenTool, Pencil, Percent, PersonStanding, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, PiggyBank, Pin, PinOff, Pipette, Plane, Play, PlayCircle, PlugZap, Plus, PlusCircle, PlusSquare, Pocket, Podcast, Pointer, PoundSterling, Power, PowerOff, Printer, Puzzle, QrCode, Quote, Radio, RadioReceiver, Recycle, Redo, Redo2, RefreshCcw, RefreshCw, Regex, Repeat, Repeat1, Reply, ReplyAll, Rewind, Rocket, RockingChair, Rotate3d, RotateCcw, RotateCw, Rss, Ruler, RussianRuble, Save, Scale, Scale3d, Scaling, Scan, ScanLine, Scissors, ScreenShare, ScreenShareOff, Scroll, Search, Send, SeparatorHorizontal, SeparatorVertical, Server, ServerCrash, ServerOff, Settings, Settings2, Share, Share2, Sheet, Shield, ShieldAlert, ShieldCheck, ShieldClose, ShieldOff, Shirt, ShoppingBag, ShoppingCart, Shovel, Shrink, Shrub, Shuffle, Sidebar, SidebarClose, SidebarOpen, Sigma, Signal, SignalHigh, SignalLow, SignalMedium, SignalZero, Siren, SkipBack, SkipForward, Skull, Slack, Slash, Slice, Sliders, SlidersHorizontal, Smartphone, SmartphoneCharging, Smile, Snowflake, Sofa, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StarOff, Stethoscope, StopCircle, StretchHorizontal, StretchVertical, Strikethrough, Subscript, Sun, SunDim, SunMedium, SunMoon, Sunrise, Sunset, Superscript, SwissFranc, SwitchCamera, Sword, Swords, Syringe, Table, Table2, Tablet, Tag, Target, Tent, Terminal, TerminalSquare, TextCursor, TextCursorInput, Thermometer, ThermometerSnowflake, ThermometerSun, ThumbsDown, ThumbsUp, Ticket, Timer, TimerOff, TimerReset, ToggleLeft, ToggleRight, Tornado, Train, Trash, Trash2, TreeDeciduous, TreePine, Trees, Trello, TrendingDown, TrendingUp, Triangle, Truck, Tv, Tv2, Twitch, Twitter, Type, Umbrella, Underline, Undo, Undo2, Unlink, Unlink2, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Utensils, UtensilsCrossed, VenetianMask, Verified, Vibrate, VibrateOff, Video, VideoOff, View, Voicemail, Volume, Volume1, Volume2, VolumeX, Wallet, Wand, Watch, Waves, Webcam, Wifi, WifiOff, Wind, Wine, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut };
|
|
8487
|
+
export { Accessibility, 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, Angry, Annoyed, Aperture, Archive, ArchiveRestore, Armchair, ArrowBigDown, ArrowBigLeft, ArrowBigRight, ArrowBigUp, ArrowDown, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftCircle, ArrowLeftRight, ArrowRight, ArrowRightCircle, ArrowUp, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Asterisk, AtSign, Award, Axe, Axis3d, Baby, Backpack, BaggageClaim, Banknote, BarChart, BarChart2, BarChart3, BarChart4, BarChartHorizontal, Baseline, Bath, Battery, BatteryCharging, BatteryFull, BatteryLow, BatteryMedium, Beaker, Bed, BedDouble, BedSingle, Beer, Bell, BellMinus, BellOff, BellPlus, BellRing, Bike, Binary, Bitcoin, Bluetooth, BluetoothConnected, BluetoothOff, BluetoothSearching, Bold, Bomb, Book, BookOpen, Bookmark, BookmarkMinus, BookmarkPlus, Bot, Box, BoxSelect, Boxes, Briefcase, Brush, Bug, Building, Building2, Bus, Calculator, Calendar, CalendarCheck, CalendarCheck2, CalendarDays, CalendarMinus, CalendarOff, CalendarPlus, CalendarRange, CalendarX, CalendarX2, Camera, CameraOff, Car, Carrot, Cast, Check, CheckCircle, CheckCircle2, CheckSquare, ChefHat, ChevronDown, ChevronFirst, ChevronLast, ChevronLeft, ChevronRight, ChevronUp, ChevronsDown, ChevronsDownUp, ChevronsLeft, ChevronsLeftRight, ChevronsRight, ChevronsRightLeft, ChevronsUp, ChevronsUpDown, Chrome, Cigarette, CigaretteOff, Circle, CircleSlashed, Clapperboard, Clipboard, ClipboardCheck, ClipboardCopy, ClipboardList, ClipboardX, Clock, Clock1, Clock10, Clock11, Clock12, Clock2, Clock3, Clock4, Clock5, Clock6, Clock7, Clock8, Clock9, Cloud, CloudDrizzle, CloudFog, CloudHail, CloudLightning, CloudMoon, CloudMoonRain, CloudOff, CloudRain, CloudRainWind, CloudSnow, CloudSun, CloudSunRain, Cloudy, Clover, Code, Code2, Codepen, Codesandbox, Coffee, Coins, Columns, Command, Compass, Component, Contact, Contrast, Cookie, Copy, Copyleft, Copyright, CornerDownLeft, CornerDownRight, CornerLeftDown, CornerLeftUp, CornerRightDown, CornerRightUp, CornerUpLeft, CornerUpRight, Cpu, CreditCard, Croissant, Crop, Cross, Crosshair, Crown, CupSoda, Currency, Database, Delete, Diamond, Dice1, Dice2, Dice3, Dice4, Dice5, Dice6, Dices, Disc, Divide, DivideCircle, DivideSquare, DollarSign, Download, DownloadCloud, Dribbble, Droplet, Droplets, Drumstick, Edit, Edit2, Edit3, Egg, Equal, EqualNot, Eraser, Euro, Expand, ExternalLink, Eye, EyeOff, Facebook, Factory, FastForward, Feather, Figma, File, FileCheck, FileCheck2, FileCode, FileDigit, FileInput, FileMinus, FileMinus2, FileOutput, FilePlus, FilePlus2, FileSearch, FileText, FileX, FileX2, Files, Film, Filter, Fingerprint, Flag, FlagOff, FlagTriangleLeft, FlagTriangleRight, Flame, Flashlight, FlashlightOff, FlaskConical, FlaskRound, Flower, Flower2, Focus, Folder, FolderMinus, FolderOpen, FolderPlus, FormInput, Forward, Frame, Framer, Frown, Fuel, FunctionSquare, Gamepad, Gamepad2, Gauge, Gavel, Gem, Ghost, Gift, GitBranch, GitBranchPlus, GitCommit, GitFork, GitMerge, GitPullRequest, Github, Gitlab, GlassWater, Glasses, Globe, Globe2, Grab, GraduationCap, Grid, GripHorizontal, GripVertical, Hammer, Hand, HandMetal, HardDrive, HardHat, Hash, Haze, Headphones, Heart, HeartCrack, HeartHandshake, HeartOff, HelpCircle, Hexagon, Highlighter, History, Home, Hourglass, Image, ImageMinus, ImageOff, ImagePlus, Import, Inbox, Indent, IndianRupee, Infinity, Info, Inspect, Instagram, Italic, JapaneseYen, Key, Keyboard, Lamp, LampCeiling, LampDesk, LampFloor, LampWallDown, LampWallUp, Landmark, Languages, Laptop, Laptop2, Lasso, LassoSelect, Laugh, Layers, Layout, LayoutDashboard, LayoutGrid, LayoutList, LayoutTemplate, Leaf, Library, LifeBuoy, Lightbulb, LightbulbOff, LineChart, Link, Link2, Link2Off, Linkedin, List, ListChecks, ListEnd, ListMinus, ListMusic, ListOrdered, ListPlus, ListStart, ListVideo, ListX, Loader, Loader2, Locate, LocateFixed, LocateOff, Lock, LogIn, LogOut, Luggage, Magnet, Mail, Map, MapPin, MapPinOff, Martini, Maximize, Maximize2, Megaphone, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Microscope, Milestone, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, MonitorOff, MonitorSpeaker, Moon, MoreHorizontal, MoreVertical, Mountain, MountainSnow, Mouse, MousePointer, MousePointer2, MousePointerClick, Move, Move3d, MoveDiagonal, MoveDiagonal2, MoveHorizontal, MoveVertical, Music, Navigation, Navigation2, Navigation2Off, NavigationOff, Network, Octagon, Option, Outdent, Package, PackageCheck, PackageMinus, PackageOpen, PackagePlus, PackageSearch, PackageX, PaintBucket, Paintbrush, Paintbrush2, Palette, Palmtree, Paperclip, Pause, PauseCircle, PauseOctagon, PenTool, Pencil, Percent, PersonStanding, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, PiggyBank, Pin, PinOff, Pipette, Plane, Play, PlayCircle, PlugZap, Plus, PlusCircle, PlusSquare, Pocket, Podcast, Pointer, PoundSterling, Power, PowerOff, Printer, Puzzle, QrCode, Quote, Radio, RadioReceiver, Recycle, Redo, Redo2, RefreshCcw, RefreshCw, Regex, Repeat, Repeat1, Reply, ReplyAll, Rewind, Rocket, RockingChair, Rotate3d, RotateCcw, RotateCw, Rss, Ruler, RussianRuble, Save, Scale, Scale3d, Scaling, Scan, ScanLine, Scissors, ScreenShare, ScreenShareOff, Scroll, Search, Send, SeparatorHorizontal, SeparatorVertical, Server, ServerCrash, ServerOff, Settings, Settings2, Share, Share2, Sheet, Shield, ShieldAlert, ShieldCheck, ShieldClose, ShieldOff, Shirt, ShoppingBag, ShoppingCart, Shovel, Shrink, Shrub, Shuffle, Sidebar, SidebarClose, SidebarOpen, Sigma, Signal, SignalHigh, SignalLow, SignalMedium, SignalZero, Siren, SkipBack, SkipForward, Skull, Slack, Slash, Slice, Sliders, SlidersHorizontal, Smartphone, SmartphoneCharging, Smile, SmilePlus, Snowflake, Sofa, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StarOff, Stethoscope, Sticker, StickyNote, StopCircle, StretchHorizontal, StretchVertical, Strikethrough, Subscript, Sun, SunDim, SunMedium, SunMoon, Sunrise, Sunset, Superscript, SwissFranc, SwitchCamera, Sword, Swords, Syringe, Table, Table2, Tablet, Tag, Target, Tent, Terminal, TerminalSquare, TextCursor, TextCursorInput, Thermometer, ThermometerSnowflake, ThermometerSun, ThumbsDown, ThumbsUp, Ticket, Timer, TimerOff, TimerReset, ToggleLeft, ToggleRight, Tornado, Train, Trash, Trash2, TreeDeciduous, TreePine, Trees, Trello, TrendingDown, TrendingUp, Triangle, Truck, Tv, Tv2, Twitch, Twitter, Type, Umbrella, Underline, Undo, Undo2, Unlink, Unlink2, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Utensils, UtensilsCrossed, VenetianMask, Verified, Vibrate, VibrateOff, Video, VideoOff, View, Voicemail, Volume, Volume1, Volume2, VolumeX, Wallet, Wand, Watch, Waves, Webcam, Wifi, WifiOff, Wind, Wine, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut };
|
|
8388
8488
|
//# sourceMappingURL=lucide-angular-src-icons.js.map
|