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
@@ -460,6 +460,30 @@ const Anchor = [
460
460
  ],
461
461
  ];
462
462
 
463
+ const Angry = [
464
+ 'svg',
465
+ defaultAttributes,
466
+ [
467
+ ['circle', { cx: '12', cy: '12', r: '10' }],
468
+ ['path', { d: 'M16 16s-1.5-2-4-2-4 2-4 2' }],
469
+ ['path', { d: 'M7.5 8 10 9' }],
470
+ ['path', { d: 'm14 9 2.5-1' }],
471
+ ['path', { d: 'M9 10h0' }],
472
+ ['path', { d: 'M15 10h0' }],
473
+ ],
474
+ ];
475
+
476
+ const Annoyed = [
477
+ 'svg',
478
+ defaultAttributes,
479
+ [
480
+ ['circle', { cx: '12', cy: '12', r: '10' }],
481
+ ['path', { d: 'M8 15h8' }],
482
+ ['path', { d: 'M8 9h2' }],
483
+ ['path', { d: 'M14 9h2' }],
484
+ ],
485
+ ];
486
+
463
487
  const Aperture = [
464
488
  'svg',
465
489
  defaultAttributes,
@@ -704,6 +728,12 @@ const Axe = [
704
728
  ],
705
729
  ];
706
730
 
731
+ const Axis3d = [
732
+ 'svg',
733
+ defaultAttributes,
734
+ [['path', { d: 'M4 4v16h16' }], ['path', { d: 'm4 20 7-7' }]],
735
+ ];
736
+
707
737
  const Baby = [
708
738
  'svg',
709
739
  defaultAttributes,
@@ -1094,6 +1124,21 @@ const Bold = [
1094
1124
  ],
1095
1125
  ];
1096
1126
 
1127
+ const Bomb = [
1128
+ 'svg',
1129
+ defaultAttributes,
1130
+ [
1131
+ ['circle', { cx: '11', cy: '13', r: '9' }],
1132
+ [
1133
+ 'path',
1134
+ {
1135
+ 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',
1136
+ },
1137
+ ],
1138
+ ['path', { d: 'm22 2-1.5 1.5' }],
1139
+ ],
1140
+ ];
1141
+
1097
1142
  const BookOpen = [
1098
1143
  'svg',
1099
1144
  defaultAttributes,
@@ -4453,6 +4498,17 @@ const Lasso = [
4453
4498
  ],
4454
4499
  ];
4455
4500
 
4501
+ const Laugh = [
4502
+ 'svg',
4503
+ defaultAttributes,
4504
+ [
4505
+ ['circle', { cx: '12', cy: '12', r: '10' }],
4506
+ ['path', { d: 'M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z' }],
4507
+ ['line', { x1: '9', y1: '9', x2: '9.01', y2: '9' }],
4508
+ ['line', { x1: '15', y1: '9', x2: '15.01', y2: '9' }],
4509
+ ],
4510
+ ];
4511
+
4456
4512
  const Layers = [
4457
4513
  'svg',
4458
4514
  defaultAttributes,
@@ -6988,6 +7044,19 @@ const Smartphone = [
6988
7044
  ],
6989
7045
  ];
6990
7046
 
7047
+ const SmilePlus = [
7048
+ 'svg',
7049
+ defaultAttributes,
7050
+ [
7051
+ ['path', { d: 'M22 11v1a10 10 0 1 1-9-10' }],
7052
+ ['path', { d: 'M8 14s1.5 2 4 2 4-2 4-2' }],
7053
+ ['line', { x1: '9', y1: '9', x2: '9.01', y2: '9' }],
7054
+ ['line', { x1: '15', y1: '9', x2: '15.01', y2: '9' }],
7055
+ ['path', { d: 'M16 5h6' }],
7056
+ ['path', { d: 'M19 2v6' }],
7057
+ ],
7058
+ ];
7059
+
6991
7060
  const Smile = [
6992
7061
  'svg',
6993
7062
  defaultAttributes,
@@ -7137,6 +7206,37 @@ const Stethoscope = [
7137
7206
  ],
7138
7207
  ];
7139
7208
 
7209
+ const Sticker = [
7210
+ 'svg',
7211
+ defaultAttributes,
7212
+ [
7213
+ [
7214
+ 'path',
7215
+ {
7216
+ 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',
7217
+ },
7218
+ ],
7219
+ ['path', { d: 'M15 3v6h6' }],
7220
+ ['path', { d: 'M10 16s.8 1 2 1c1.3 0 2-1 2-1' }],
7221
+ ['path', { d: 'M8 13h0' }],
7222
+ ['path', { d: 'M16 13h0' }],
7223
+ ],
7224
+ ];
7225
+
7226
+ const StickyNote = [
7227
+ 'svg',
7228
+ defaultAttributes,
7229
+ [
7230
+ [
7231
+ 'path',
7232
+ {
7233
+ 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',
7234
+ },
7235
+ ],
7236
+ ['path', { d: 'M15 3v6h6' }],
7237
+ ],
7238
+ ];
7239
+
7140
7240
  const StopCircle = [
7141
7241
  'svg',
7142
7242
  defaultAttributes,
@@ -8423,6 +8523,8 @@ var index = /*#__PURE__*/Object.freeze({
8423
8523
  AlignVerticalSpaceAround: AlignVerticalSpaceAround,
8424
8524
  AlignVerticalSpaceBetween: AlignVerticalSpaceBetween,
8425
8525
  Anchor: Anchor,
8526
+ Angry: Angry,
8527
+ Annoyed: Annoyed,
8426
8528
  Aperture: Aperture,
8427
8529
  ArchiveRestore: ArchiveRestore,
8428
8530
  Archive: Archive,
@@ -8448,6 +8550,7 @@ var index = /*#__PURE__*/Object.freeze({
8448
8550
  AtSign: AtSign,
8449
8551
  Award: Award,
8450
8552
  Axe: Axe,
8553
+ Axis3d: Axis3d,
8451
8554
  Baby: Baby,
8452
8555
  Backpack: Backpack,
8453
8556
  BaggageClaim: BaggageClaim,
@@ -8482,6 +8585,7 @@ var index = /*#__PURE__*/Object.freeze({
8482
8585
  BluetoothSearching: BluetoothSearching,
8483
8586
  Bluetooth: Bluetooth,
8484
8587
  Bold: Bold,
8588
+ Bomb: Bomb,
8485
8589
  BookOpen: BookOpen,
8486
8590
  Book: Book,
8487
8591
  BookmarkMinus: BookmarkMinus,
@@ -8754,6 +8858,7 @@ var index = /*#__PURE__*/Object.freeze({
8754
8858
  Laptop: Laptop,
8755
8859
  LassoSelect: LassoSelect,
8756
8860
  Lasso: Lasso,
8861
+ Laugh: Laugh,
8757
8862
  Layers: Layers,
8758
8863
  LayoutDashboard: LayoutDashboard,
8759
8864
  LayoutGrid: LayoutGrid,
@@ -8962,6 +9067,7 @@ var index = /*#__PURE__*/Object.freeze({
8962
9067
  Sliders: Sliders,
8963
9068
  SmartphoneCharging: SmartphoneCharging,
8964
9069
  Smartphone: Smartphone,
9070
+ SmilePlus: SmilePlus,
8965
9071
  Smile: Smile,
8966
9072
  Snowflake: Snowflake,
8967
9073
  Sofa: Sofa,
@@ -8974,6 +9080,8 @@ var index = /*#__PURE__*/Object.freeze({
8974
9080
  StarOff: StarOff,
8975
9081
  Star: Star,
8976
9082
  Stethoscope: Stethoscope,
9083
+ Sticker: Sticker,
9084
+ StickyNote: StickyNote,
8977
9085
  StopCircle: StopCircle,
8978
9086
  StretchHorizontal: StretchHorizontal,
8979
9087
  StretchVertical: StretchVertical,
@@ -9206,5 +9314,5 @@ LucideAngularModule.ctorParameters = () => [
9206
9314
  * Generated bundle index. Do not edit.
9207
9315
  */
9208
9316
 
9209
- 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, LucideAngularComponent, LucideAngularModule, 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, createElement, index as icons, Icons as ɵa };
9317
+ 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, LucideAngularComponent, LucideAngularModule, 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, createElement, index as icons, Icons as ɵa };
9210
9318
  //# sourceMappingURL=lucide-angular.js.map