lucide-angular 0.42.0 → 0.45.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 (61) hide show
  1. package/bundles/lucide-angular-src-icons.umd.js +122 -6
  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 +131 -6
  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/bar-chart-3.js +13 -0
  10. package/esm2015/icons/bar-chart-4.js +13 -0
  11. package/esm2015/icons/bar-chart-horizontal.js +13 -0
  12. package/esm2015/icons/delete.js +2 -2
  13. package/esm2015/icons/index.js +10 -1
  14. package/esm2015/icons/line-chart.js +8 -0
  15. package/esm2015/icons/map-pin-off.js +29 -0
  16. package/esm2015/icons/navigation-2-off.js +12 -0
  17. package/esm2015/icons/navigation-off.js +12 -0
  18. package/esm2015/icons/pipette.js +4 -4
  19. package/esm2015/icons/redo-2.js +11 -0
  20. package/esm2015/icons/shopping-cart.js +3 -3
  21. package/esm2015/icons/undo-2.js +14 -0
  22. package/esm2015/src/icons/bar-chart-3.js +13 -0
  23. package/esm2015/src/icons/bar-chart-4.js +13 -0
  24. package/esm2015/src/icons/bar-chart-horizontal.js +13 -0
  25. package/esm2015/src/icons/delete.js +2 -2
  26. package/esm2015/src/icons/index.js +10 -1
  27. package/esm2015/src/icons/line-chart.js +8 -0
  28. package/esm2015/src/icons/map-pin-off.js +29 -0
  29. package/esm2015/src/icons/navigation-2-off.js +12 -0
  30. package/esm2015/src/icons/navigation-off.js +12 -0
  31. package/esm2015/src/icons/pipette.js +4 -4
  32. package/esm2015/src/icons/redo-2.js +11 -0
  33. package/esm2015/src/icons/shopping-cart.js +3 -3
  34. package/esm2015/src/icons/undo-2.js +14 -0
  35. package/fesm2015/lucide-angular-src-icons.js +114 -7
  36. package/fesm2015/lucide-angular-src-icons.js.map +1 -1
  37. package/fesm2015/lucide-angular.js +123 -7
  38. package/fesm2015/lucide-angular.js.map +1 -1
  39. package/icons/bar-chart-3.d.ts +3 -0
  40. package/icons/bar-chart-4.d.ts +3 -0
  41. package/icons/bar-chart-horizontal.d.ts +3 -0
  42. package/icons/index.d.ts +9 -0
  43. package/icons/line-chart.d.ts +3 -0
  44. package/icons/map-pin-off.d.ts +3 -0
  45. package/icons/navigation-2-off.d.ts +3 -0
  46. package/icons/navigation-off.d.ts +3 -0
  47. package/icons/redo-2.d.ts +3 -0
  48. package/icons/undo-2.d.ts +3 -0
  49. package/lucide-angular.metadata.json +1 -1
  50. package/package.json +1 -1
  51. package/src/icons/bar-chart-3.d.ts +3 -0
  52. package/src/icons/bar-chart-4.d.ts +3 -0
  53. package/src/icons/bar-chart-horizontal.d.ts +3 -0
  54. package/src/icons/index.d.ts +9 -0
  55. package/src/icons/line-chart.d.ts +3 -0
  56. package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
  57. package/src/icons/map-pin-off.d.ts +3 -0
  58. package/src/icons/navigation-2-off.d.ts +3 -0
  59. package/src/icons/navigation-off.d.ts +3 -0
  60. package/src/icons/redo-2.d.ts +3 -0
  61. package/src/icons/undo-2.d.ts +3 -0
@@ -696,6 +696,39 @@ const BarChart2 = [
696
696
  ],
697
697
  ];
698
698
 
699
+ const BarChart3 = [
700
+ 'svg',
701
+ defaultAttributes,
702
+ [
703
+ ['path', { d: 'M2 2v20h20' }],
704
+ ['path', { d: 'M17 18V9' }],
705
+ ['path', { d: 'M12 18V4' }],
706
+ ['path', { d: 'M7 18v-4' }],
707
+ ],
708
+ ];
709
+
710
+ const BarChart4 = [
711
+ 'svg',
712
+ defaultAttributes,
713
+ [
714
+ ['path', { d: 'M2 2v20h20' }],
715
+ ['path', { d: 'M12 18V9' }],
716
+ ['path', { d: 'M17 18V4' }],
717
+ ['path', { d: 'M7 18v-4' }],
718
+ ],
719
+ ];
720
+
721
+ const BarChartHorizontal = [
722
+ 'svg',
723
+ defaultAttributes,
724
+ [
725
+ ['path', { d: 'M2 2V22H22' }],
726
+ ['path', { d: 'M6 17L15 17' }],
727
+ ['path', { d: 'M6 12L20 12' }],
728
+ ['path', { d: 'M6 7L10 7' }],
729
+ ],
730
+ ];
731
+
699
732
  const BarChart = [
700
733
  'svg',
701
734
  defaultAttributes,
@@ -2124,7 +2157,7 @@ const Delete = [
2124
2157
  'svg',
2125
2158
  defaultAttributes,
2126
2159
  [
2127
- ['path', { d: 'M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z' }],
2160
+ ['path', { d: 'M20 5H9L2 12l7 7H20a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z' }],
2128
2161
  ['line', { x1: '18', y1: '9', x2: '12', y2: '15' }],
2129
2162
  ['line', { x1: '12', y1: '9', x2: '18', y2: '15' }],
2130
2163
  ],
@@ -3921,6 +3954,12 @@ const Lightbulb = [
3921
3954
  ],
3922
3955
  ];
3923
3956
 
3957
+ const LineChart = [
3958
+ 'svg',
3959
+ defaultAttributes,
3960
+ [['path', { d: 'M2 2v20h20' }], ['path', { d: 'm20 9-6 6-5-5-3 3' }]],
3961
+ ];
3962
+
3924
3963
  const Link2Off = [
3925
3964
  'svg',
3926
3965
  defaultAttributes,
@@ -4157,6 +4196,33 @@ const Mail = [
4157
4196
  ],
4158
4197
  ];
4159
4198
 
4199
+ const MapPinOff = [
4200
+ 'svg',
4201
+ defaultAttributes,
4202
+ [
4203
+ [
4204
+ 'path',
4205
+ {
4206
+ d: 'M5.43 5.43A8.06 8.06 0 0 0 4 10c0 6 8 12 8 12a29.94 29.94 0 0 0 5-5',
4207
+ },
4208
+ ],
4209
+ [
4210
+ 'path',
4211
+ {
4212
+ d: 'M19.18 13.52A8.66 8.66 0 0 0 20 10a8 8 0 0 0-8-8 7.88 7.88 0 0 0-3.52.82',
4213
+ },
4214
+ ],
4215
+ [
4216
+ 'path',
4217
+ {
4218
+ d: 'M9.13 9.13A2.78 2.78 0 0 0 9 10a3 3 0 0 0 3 3 2.78 2.78 0 0 0 .87-.13',
4219
+ },
4220
+ ],
4221
+ ['path', { d: 'M14.9 9.25a3 3 0 0 0-2.15-2.16' }],
4222
+ ['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
4223
+ ],
4224
+ ];
4225
+
4160
4226
  const MapPin = [
4161
4227
  'svg',
4162
4228
  defaultAttributes,
@@ -4515,12 +4581,32 @@ const Music = [
4515
4581
  ],
4516
4582
  ];
4517
4583
 
4584
+ const Navigation2Off = [
4585
+ 'svg',
4586
+ defaultAttributes,
4587
+ [
4588
+ ['path', { d: 'M9.31 9.31 5 21l7-4 7 4-1.17-3.17' }],
4589
+ ['path', { d: 'M14.53 8.88 12 2 10.83 5.17' }],
4590
+ ['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
4591
+ ],
4592
+ ];
4593
+
4518
4594
  const Navigation2 = [
4519
4595
  'svg',
4520
4596
  defaultAttributes,
4521
4597
  [['polygon', { points: '12 2 19 21 12 17 5 21 12 2' }]],
4522
4598
  ];
4523
4599
 
4600
+ const NavigationOff = [
4601
+ 'svg',
4602
+ defaultAttributes,
4603
+ [
4604
+ ['path', { d: 'M8.43 8.43 3 11l8 2 2 8 2.57-5.43' }],
4605
+ ['path', { d: 'M17.39 11.73 22 2 12.27 6.61' }],
4606
+ ['line', { x1: '2', y1: '2', x2: '22', y2: '22' }],
4607
+ ],
4608
+ ];
4609
+
4524
4610
  const Navigation = [
4525
4611
  'svg',
4526
4612
  defaultAttributes,
@@ -4930,12 +5016,12 @@ const Pipette = [
4930
5016
  'svg',
4931
5017
  defaultAttributes,
4932
5018
  [
4933
- ['path', { d: 'm2 22 2-2h3l7-7' }],
4934
- ['path', { d: 'M4 20v-3l7-7' }],
5019
+ ['path', { d: 'M2 22l1-1H6l9-9' }],
5020
+ ['path', { d: 'M3 21V18l9-9' }],
4935
5021
  [
4936
5022
  'path',
4937
5023
  {
4938
- d: 'M14.29 13.3a1 1 0 0 0 1.41 0l.8-.8c.27-.27.27-.72 0-1s-.28-.72 0-1l4.08-4.08a2 2 0 0 0 0-2.83l-.17-.17a2 2 0 0 0-2.83 0L13.5 7.51c-.28.27-.73.27-1 0s-.73-.28-1 0l-.8.79a1 1 0 0 0 0 1.41l3.59 3.59z',
5024
+ d: 'M21.37 5.63a2.12 2.12 0 0 0-3-3L15.58 5.42a1.05 1.05 0 0 1-1.5 0 1.07 1.07 0 0 0-1.5 0L11.25 6.75a1.07 1.07 0 0 0 0 1.5l4.5 4.5a1.07 1.07 0 0 0 1.5 0l1.33-1.33a1.07 1.07 0 0 0 0-1.5 1.05 1.05 0 0 1 0-1.5Z',
4939
5025
  },
4940
5026
  ],
4941
5027
  ],
@@ -5186,6 +5272,15 @@ const Radio = [
5186
5272
  ],
5187
5273
  ];
5188
5274
 
5275
+ const Redo2 = [
5276
+ 'svg',
5277
+ defaultAttributes,
5278
+ [
5279
+ ['path', { d: 'm15 14 5-5-5-5' }],
5280
+ ['path', { d: 'M20 9H9.5A5.5 5.5 0 0 0 4 14.5v0A5.5 5.5 0 0 0 9.5 20H13' }],
5281
+ ],
5282
+ ];
5283
+
5189
5284
  const Redo = [
5190
5285
  'svg',
5191
5286
  defaultAttributes,
@@ -5673,12 +5768,12 @@ const ShoppingCart = [
5673
5768
  'svg',
5674
5769
  defaultAttributes,
5675
5770
  [
5676
- ['circle', { cx: '9', cy: '21', r: '1' }],
5771
+ ['circle', { cx: '8', cy: '21', r: '1' }],
5677
5772
  ['circle', { cx: '19', cy: '21', r: '1' }],
5678
5773
  [
5679
5774
  'path',
5680
5775
  {
5681
- d: 'M2 2H4.5L7.62 14.49A2 2 0 0 0 9.56 16h8.88a2 2 0 0 0 1.94-1.51L22 8H6',
5776
+ d: 'M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12',
5682
5777
  },
5683
5778
  ],
5684
5779
  ],
@@ -6566,6 +6661,18 @@ const Underline = [
6566
6661
  ],
6567
6662
  ];
6568
6663
 
6664
+ const Undo2 = [
6665
+ 'svg',
6666
+ defaultAttributes,
6667
+ [
6668
+ ['path', { d: 'M9 14 4 9l5-5' }],
6669
+ [
6670
+ 'path',
6671
+ { d: 'M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5v0a5.5 5.5 0 0 1-5.5 5.5H11' },
6672
+ ],
6673
+ ],
6674
+ ];
6675
+
6569
6676
  const Undo = [
6570
6677
  'svg',
6571
6678
  defaultAttributes,
@@ -7110,6 +7217,9 @@ var index = /*#__PURE__*/Object.freeze({
7110
7217
  Axe: Axe,
7111
7218
  Banknote: Banknote,
7112
7219
  BarChart2: BarChart2,
7220
+ BarChart3: BarChart3,
7221
+ BarChart4: BarChart4,
7222
+ BarChartHorizontal: BarChartHorizontal,
7113
7223
  BarChart: BarChart,
7114
7224
  Baseline: Baseline,
7115
7225
  BatteryCharging: BatteryCharging,
@@ -7380,6 +7490,7 @@ var index = /*#__PURE__*/Object.freeze({
7380
7490
  LifeBuoy: LifeBuoy,
7381
7491
  LightbulbOff: LightbulbOff,
7382
7492
  Lightbulb: Lightbulb,
7493
+ LineChart: LineChart,
7383
7494
  Link2Off: Link2Off,
7384
7495
  Link2: Link2,
7385
7496
  Link: Link,
@@ -7399,6 +7510,7 @@ var index = /*#__PURE__*/Object.freeze({
7399
7510
  LogIn: LogIn,
7400
7511
  LogOut: LogOut,
7401
7512
  Mail: Mail,
7513
+ MapPinOff: MapPinOff,
7402
7514
  MapPin: MapPin,
7403
7515
  Map: Map,
7404
7516
  Maximize2: Maximize2,
@@ -7434,7 +7546,9 @@ var index = /*#__PURE__*/Object.freeze({
7434
7546
  MoveVertical: MoveVertical,
7435
7547
  Move: Move,
7436
7548
  Music: Music,
7549
+ Navigation2Off: Navigation2Off,
7437
7550
  Navigation2: Navigation2,
7551
+ NavigationOff: NavigationOff,
7438
7552
  Navigation: Navigation,
7439
7553
  Network: Network,
7440
7554
  Octagon: Octagon,
@@ -7486,6 +7600,7 @@ var index = /*#__PURE__*/Object.freeze({
7486
7600
  Quote: Quote,
7487
7601
  RadioReceiver: RadioReceiver,
7488
7602
  Radio: Radio,
7603
+ Redo2: Redo2,
7489
7604
  Redo: Redo,
7490
7605
  RefreshCcw: RefreshCcw,
7491
7606
  RefreshCw: RefreshCw,
@@ -7606,6 +7721,7 @@ var index = /*#__PURE__*/Object.freeze({
7606
7721
  Type: Type,
7607
7722
  Umbrella: Umbrella,
7608
7723
  Underline: Underline,
7724
+ Undo2: Undo2,
7609
7725
  Undo: Undo,
7610
7726
  Unlink2: Unlink2,
7611
7727
  Unlink: Unlink,
@@ -7776,5 +7892,5 @@ LucideAngularModule.ctorParameters = () => [
7776
7892
  * Generated bundle index. Do not edit.
7777
7893
  */
7778
7894
 
7779
- 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, 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, 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, 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, Factory, 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, Focus, 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, Milestone, 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, Puzzle, 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, SlidersHorizontal, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, StretchHorizontal, StretchVertical, Strikethrough, Subscript, Sun, SunDim, 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, VibrateOff, 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 };
7895
+ 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, ArrowBigDown, ArrowBigLeft, ArrowBigRight, ArrowBigUp, ArrowDown, ArrowDownCircle, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowLeftCircle, ArrowLeftRight, ArrowRight, ArrowRightCircle, ArrowUp, ArrowUpCircle, ArrowUpLeft, ArrowUpRight, Asterisk, AtSign, Award, Axe, Banknote, BarChart, BarChart2, BarChart3, BarChart4, BarChartHorizontal, 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, 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, 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, Factory, 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, Focus, 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, LineChart, Link, Link2, Link2Off, Linkedin, List, ListChecks, ListMinus, ListOrdered, ListPlus, ListX, Loader, Loader2, Locate, LocateFixed, LocateOff, Lock, LogIn, LogOut, LucideAngularComponent, LucideAngularModule, Mail, Map, MapPin, MapPinOff, Maximize, Maximize2, Megaphone, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Milestone, 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, Navigation2Off, NavigationOff, 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, Puzzle, QrCode, Quote, Radio, RadioReceiver, Redo, Redo2, 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, SlidersHorizontal, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, StretchHorizontal, StretchVertical, Strikethrough, Subscript, Sun, SunDim, 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, Undo2, Unlink, Unlink2, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Verified, Vibrate, VibrateOff, 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 };
7780
7896
  //# sourceMappingURL=lucide-angular.js.map