lucide-angular 0.17.13 → 0.17.16

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 +110 -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 +118 -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/dice-1.js +11 -0
  10. package/esm2015/icons/dice-2.js +12 -0
  11. package/esm2015/icons/dice-3.js +13 -0
  12. package/esm2015/icons/dice-4.js +14 -0
  13. package/esm2015/icons/dice-5.js +15 -0
  14. package/esm2015/icons/dice-6.js +16 -0
  15. package/esm2015/icons/git-fork.js +14 -0
  16. package/esm2015/icons/index.js +9 -1
  17. package/esm2015/icons/rocket.js +23 -0
  18. package/esm2015/src/icons/dice-1.js +11 -0
  19. package/esm2015/src/icons/dice-2.js +12 -0
  20. package/esm2015/src/icons/dice-3.js +13 -0
  21. package/esm2015/src/icons/dice-4.js +14 -0
  22. package/esm2015/src/icons/dice-5.js +15 -0
  23. package/esm2015/src/icons/dice-6.js +16 -0
  24. package/esm2015/src/icons/git-fork.js +14 -0
  25. package/esm2015/src/icons/index.js +9 -1
  26. package/esm2015/src/icons/rocket.js +23 -0
  27. package/fesm2015/lucide-angular-src-icons.js +103 -1
  28. package/fesm2015/lucide-angular-src-icons.js.map +1 -1
  29. package/fesm2015/lucide-angular.js +111 -1
  30. package/fesm2015/lucide-angular.js.map +1 -1
  31. package/icons/dice-1.d.ts +3 -0
  32. package/icons/dice-2.d.ts +3 -0
  33. package/icons/dice-3.d.ts +3 -0
  34. package/icons/dice-4.d.ts +3 -0
  35. package/icons/dice-5.d.ts +3 -0
  36. package/icons/dice-6.d.ts +3 -0
  37. package/icons/git-fork.d.ts +3 -0
  38. package/icons/index.d.ts +8 -0
  39. package/icons/rocket.d.ts +3 -0
  40. package/lucide-angular.metadata.json +1 -1
  41. package/package.json +1 -1
  42. package/src/icons/dice-1.d.ts +3 -0
  43. package/src/icons/dice-2.d.ts +3 -0
  44. package/src/icons/dice-3.d.ts +3 -0
  45. package/src/icons/dice-4.d.ts +3 -0
  46. package/src/icons/dice-5.d.ts +3 -0
  47. package/src/icons/dice-6.d.ts +3 -0
  48. package/src/icons/git-fork.d.ts +3 -0
  49. package/src/icons/index.d.ts +8 -0
  50. package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
  51. package/src/icons/rocket.d.ts +3 -0
@@ -2038,6 +2038,75 @@ const Delete = [
2038
2038
  ],
2039
2039
  ];
2040
2040
 
2041
+ const Dice1 = [
2042
+ 'svg',
2043
+ defaultAttributes,
2044
+ [
2045
+ ['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
2046
+ ['path', { d: 'M12 12h.01' }],
2047
+ ],
2048
+ ];
2049
+
2050
+ const Dice2 = [
2051
+ 'svg',
2052
+ defaultAttributes,
2053
+ [
2054
+ ['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
2055
+ ['path', { d: 'M15 9h.01' }],
2056
+ ['path', { d: 'M9 15h.01' }],
2057
+ ],
2058
+ ];
2059
+
2060
+ const Dice3 = [
2061
+ 'svg',
2062
+ defaultAttributes,
2063
+ [
2064
+ ['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
2065
+ ['path', { d: 'M16 8h.01' }],
2066
+ ['path', { d: 'M12 12h.01' }],
2067
+ ['path', { d: 'M8 16h.01' }],
2068
+ ],
2069
+ ];
2070
+
2071
+ const Dice4 = [
2072
+ 'svg',
2073
+ defaultAttributes,
2074
+ [
2075
+ ['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
2076
+ ['path', { d: 'M16 8h.01' }],
2077
+ ['path', { d: 'M8 8h.01' }],
2078
+ ['path', { d: 'M8 16h.01' }],
2079
+ ['path', { d: 'M16 16h.01' }],
2080
+ ],
2081
+ ];
2082
+
2083
+ const Dice5 = [
2084
+ 'svg',
2085
+ defaultAttributes,
2086
+ [
2087
+ ['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
2088
+ ['path', { d: 'M16 8h.01' }],
2089
+ ['path', { d: 'M8 8h.01' }],
2090
+ ['path', { d: 'M8 16h.01' }],
2091
+ ['path', { d: 'M16 16h.01' }],
2092
+ ['path', { d: 'M12 12h.01' }],
2093
+ ],
2094
+ ];
2095
+
2096
+ const Dice6 = [
2097
+ 'svg',
2098
+ defaultAttributes,
2099
+ [
2100
+ ['rect', { x: '3', y: '3', width: '18', height: '18', rx: '2', ry: '2' }],
2101
+ ['path', { d: 'M16 8h.01' }],
2102
+ ['path', { d: 'M16 12h.01' }],
2103
+ ['path', { d: 'M16 16h.01' }],
2104
+ ['path', { d: 'M8 8h.01' }],
2105
+ ['path', { d: 'M8 12h.01' }],
2106
+ ['path', { d: 'M8 16h.01' }],
2107
+ ],
2108
+ ];
2109
+
2041
2110
  const Disc = [
2042
2111
  'svg',
2043
2112
  defaultAttributes,
@@ -2870,6 +2939,18 @@ const GitCommit = [
2870
2939
  ],
2871
2940
  ];
2872
2941
 
2942
+ const GitFork = [
2943
+ 'svg',
2944
+ defaultAttributes,
2945
+ [
2946
+ ['circle', { cx: '12', cy: '18', r: '3' }],
2947
+ ['circle', { cx: '6', cy: '6', r: '3' }],
2948
+ ['circle', { cx: '18', cy: '6', r: '3' }],
2949
+ ['path', { d: 'M18 9v1a2 2 0 01-2 2H8a2 2 0 01-2-2V9' }],
2950
+ ['path', { d: 'M12 12v3' }],
2951
+ ],
2952
+ ];
2953
+
2873
2954
  const GitMerge = [
2874
2955
  'svg',
2875
2956
  defaultAttributes,
@@ -4928,6 +5009,27 @@ const Rewind = [
4928
5009
  ],
4929
5010
  ];
4930
5011
 
5012
+ const Rocket = [
5013
+ 'svg',
5014
+ defaultAttributes,
5015
+ [
5016
+ [
5017
+ 'path',
5018
+ {
5019
+ d: 'M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 00-2.91-.09z',
5020
+ },
5021
+ ],
5022
+ [
5023
+ 'path',
5024
+ {
5025
+ d: 'M12 15l-3-3a22 22 0 012-3.95A12.88 12.88 0 0122 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 01-4 2z',
5026
+ },
5027
+ ],
5028
+ ['path', { d: 'M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0' }],
5029
+ ['path', { d: 'M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5' }],
5030
+ ],
5031
+ ];
5032
+
4931
5033
  const RockingChair = [
4932
5034
  'svg',
4933
5035
  defaultAttributes,
@@ -6784,6 +6886,12 @@ var index = /*#__PURE__*/Object.freeze({
6784
6886
  Currency: Currency,
6785
6887
  Database: Database,
6786
6888
  Delete: Delete,
6889
+ Dice1: Dice1,
6890
+ Dice2: Dice2,
6891
+ Dice3: Dice3,
6892
+ Dice4: Dice4,
6893
+ Dice5: Dice5,
6894
+ Dice6: Dice6,
6787
6895
  Disc: Disc,
6788
6896
  DivideCircle: DivideCircle,
6789
6897
  DivideSquare: DivideSquare,
@@ -6855,6 +6963,7 @@ var index = /*#__PURE__*/Object.freeze({
6855
6963
  GitBranchPlus: GitBranchPlus,
6856
6964
  GitBranch: GitBranch,
6857
6965
  GitCommit: GitCommit,
6966
+ GitFork: GitFork,
6858
6967
  GitMerge: GitMerge,
6859
6968
  GitPullRequest: GitPullRequest,
6860
6969
  Github: Github,
@@ -7025,6 +7134,7 @@ var index = /*#__PURE__*/Object.freeze({
7025
7134
  ReplyAll: ReplyAll,
7026
7135
  Reply: Reply,
7027
7136
  Rewind: Rewind,
7137
+ Rocket: Rocket,
7028
7138
  RockingChair: RockingChair,
7029
7139
  RotateCcw: RotateCcw,
7030
7140
  RotateCw: RotateCw,
@@ -7302,5 +7412,5 @@ LucideAngularModule.ctorParameters = () => [
7302
7412
  * Generated bundle index. Do not edit.
7303
7413
  */
7304
7414
 
7305
- 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, 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, Disc, Divide, DivideCircle, DivideSquare, DollarSign, Download, DownloadCloud, Dribbble, Droplet, Droplets, Drumstick, Edit, Edit2, Edit3, Egg, Equal, EqualNot, 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, FlagTriangleLeft, FlagTriangleRight, Flame, Flashlight, FlashlightOff, FlaskConical, FlaskRound, Folder, FolderMinus, FolderOpen, FolderPlus, FormInput, Forward, Framer, Frown, FunctionSquare, Gamepad, Gamepad2, Gauge, Gavel, Gem, Ghost, Gift, GitBranch, GitBranchPlus, GitCommit, GitMerge, GitPullRequest, Github, Gitlab, Glasses, Globe, Globe2, Grab, GraduationCap, Grid, GripHorizontal, GripVertical, Hammer, Hand, HandMetal, HardDrive, HardHat, Hash, Haze, Headphones, Heart, HelpCircle, Hexagon, Highlighter, History, Home, Image, ImageMinus, ImageOff, ImagePlus, Import, Inbox, Indent, IndianRupee, Infinity, Info, Inspect, Instagram, Italic, JapaneseYen, Key, Keyboard, Landmark, Languages, Laptop, Laptop2, Lasso, LassoSelect, Layers, Layout, LayoutDashboard, LayoutGrid, LayoutList, LayoutTemplate, Library, LifeBuoy, Lightbulb, LightbulbOff, Link, Link2, Link2Off, Linkedin, List, ListChecks, ListMinus, ListOrdered, ListPlus, ListX, Loader, Loader2, Locate, LocateFixed, LocateOff, Lock, LogIn, LogOut, LucideAngularComponent, LucideAngularModule, Mail, Map, MapPin, Maximize, Maximize2, Megaphone, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, MonitorOff, MonitorSpeaker, Moon, MoreHorizontal, MoreVertical, Mountain, MountainSnow, 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, RockingChair, RotateCcw, RotateCw, Rss, Ruler, RussianRuble, Save, Scale, Scan, ScanLine, Scissors, ScreenShare, ScreenShareOff, Search, Send, SeparatorHorizontal, SeparatorVertical, Server, ServerCrash, ServerOff, Settings, Settings2, Share, Share2, Sheet, Shield, ShieldAlert, ShieldCheck, ShieldClose, ShieldOff, Shirt, ShoppingBag, ShoppingCart, Shovel, Shrink, Shuffle, Sidebar, SidebarClose, SidebarOpen, Sigma, Signal, SignalHigh, SignalLow, SignalMedium, SignalZero, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, StretchHorizontal, StretchVertical, Strikethrough, Subscript, Sun, Sunrise, Sunset, Superscript, SwissFranc, SwitchCamera, Table, Tablet, Tag, Target, Tent, Terminal, TerminalSquare, TextCursor, TextCursorInput, Thermometer, ThermometerSnowflake, ThermometerSun, ThumbsDown, ThumbsUp, Ticket, Timer, TimerOff, TimerReset, ToggleLeft, ToggleRight, Tornado, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Truck, Tv, Tv2, Twitch, Twitter, Type, Umbrella, Underline, Undo, Unlink, Unlink2, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Verified, Vibrate, Video, VideoOff, View, Voicemail, Volume, Volume1, Volume2, VolumeX, Wallet, Wand, Watch, Waves, Webcam, Wifi, WifiOff, Wind, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut, createElement, index as icons, Icons as ɵa };
7415
+ 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, 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, 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, FlagTriangleLeft, FlagTriangleRight, Flame, Flashlight, FlashlightOff, FlaskConical, FlaskRound, Folder, FolderMinus, FolderOpen, FolderPlus, FormInput, Forward, Framer, Frown, FunctionSquare, Gamepad, Gamepad2, Gauge, Gavel, Gem, Ghost, Gift, GitBranch, GitBranchPlus, GitCommit, GitFork, GitMerge, GitPullRequest, Github, Gitlab, Glasses, Globe, Globe2, Grab, GraduationCap, Grid, GripHorizontal, GripVertical, Hammer, Hand, HandMetal, HardDrive, HardHat, Hash, Haze, Headphones, Heart, HelpCircle, Hexagon, Highlighter, History, Home, Image, ImageMinus, ImageOff, ImagePlus, Import, Inbox, Indent, IndianRupee, Infinity, Info, Inspect, Instagram, Italic, JapaneseYen, Key, Keyboard, Landmark, Languages, Laptop, Laptop2, Lasso, LassoSelect, Layers, Layout, LayoutDashboard, LayoutGrid, LayoutList, LayoutTemplate, Library, LifeBuoy, Lightbulb, LightbulbOff, Link, Link2, Link2Off, Linkedin, List, ListChecks, ListMinus, ListOrdered, ListPlus, ListX, Loader, Loader2, Locate, LocateFixed, LocateOff, Lock, LogIn, LogOut, LucideAngularComponent, LucideAngularModule, Mail, Map, MapPin, Maximize, Maximize2, Megaphone, Meh, Menu, MessageCircle, MessageSquare, Mic, MicOff, Minimize, Minimize2, Minus, MinusCircle, MinusSquare, Monitor, MonitorOff, MonitorSpeaker, Moon, MoreHorizontal, MoreVertical, Mountain, MountainSnow, MousePointer, MousePointer2, MousePointerClick, Move, MoveDiagonal, MoveDiagonal2, MoveHorizontal, MoveVertical, Music, Navigation, Navigation2, Network, Octagon, Option, Outdent, Package, PackageCheck, PackageMinus, PackagePlus, PackageSearch, PackageX, Palette, Palmtree, Paperclip, Pause, PauseCircle, PauseOctagon, PenTool, Pencil, Percent, PersonStanding, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, PiggyBank, Pin, Pipette, Plane, Play, PlayCircle, PlugZap, Plus, PlusCircle, PlusSquare, Pocket, Podcast, Pointer, PoundSterling, Power, PowerOff, Printer, QrCode, Quote, Radio, RadioReceiver, Redo, RefreshCcw, RefreshCw, Regex, Repeat, Repeat1, Reply, ReplyAll, Rewind, Rocket, RockingChair, RotateCcw, RotateCw, Rss, Ruler, RussianRuble, Save, Scale, Scan, ScanLine, Scissors, ScreenShare, ScreenShareOff, Search, Send, SeparatorHorizontal, SeparatorVertical, Server, ServerCrash, ServerOff, Settings, Settings2, Share, Share2, Sheet, Shield, ShieldAlert, ShieldCheck, ShieldClose, ShieldOff, Shirt, ShoppingBag, ShoppingCart, Shovel, Shrink, Shuffle, Sidebar, SidebarClose, SidebarOpen, Sigma, Signal, SignalHigh, SignalLow, SignalMedium, SignalZero, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, StretchHorizontal, StretchVertical, Strikethrough, Subscript, Sun, Sunrise, Sunset, Superscript, SwissFranc, SwitchCamera, Table, Tablet, Tag, Target, Tent, Terminal, TerminalSquare, TextCursor, TextCursorInput, Thermometer, ThermometerSnowflake, ThermometerSun, ThumbsDown, ThumbsUp, Ticket, Timer, TimerOff, TimerReset, ToggleLeft, ToggleRight, Tornado, Trash, Trash2, Trello, TrendingDown, TrendingUp, Triangle, Truck, Tv, Tv2, Twitch, Twitter, Type, Umbrella, Underline, Undo, Unlink, Unlink2, Unlock, Upload, UploadCloud, User, UserCheck, UserMinus, UserPlus, UserX, Users, Verified, Vibrate, Video, VideoOff, View, Voicemail, Volume, Volume1, Volume2, VolumeX, Wallet, Wand, Watch, Waves, Webcam, Wifi, WifiOff, Wind, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut, createElement, index as icons, Icons as ɵa };
7306
7416
  //# sourceMappingURL=lucide-angular.js.map