lucide-angular 0.16.21 → 0.16.25

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 (47) 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 +115 -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/carrot.js +23 -0
  10. package/esm2015/icons/drumstick.js +21 -0
  11. package/esm2015/icons/egg.js +15 -0
  12. package/esm2015/icons/index.js +8 -1
  13. package/esm2015/icons/pin.js +12 -0
  14. package/esm2015/icons/scan-line.js +14 -0
  15. package/esm2015/icons/scan.js +13 -0
  16. package/esm2015/icons/subscript.js +17 -0
  17. package/esm2015/src/icons/carrot.js +23 -0
  18. package/esm2015/src/icons/drumstick.js +21 -0
  19. package/esm2015/src/icons/egg.js +15 -0
  20. package/esm2015/src/icons/index.js +8 -1
  21. package/esm2015/src/icons/pin.js +12 -0
  22. package/esm2015/src/icons/scan-line.js +14 -0
  23. package/esm2015/src/icons/scan.js +13 -0
  24. package/esm2015/src/icons/subscript.js +17 -0
  25. package/fesm2015/lucide-angular-src-icons.js +102 -1
  26. package/fesm2015/lucide-angular-src-icons.js.map +1 -1
  27. package/fesm2015/lucide-angular.js +109 -1
  28. package/fesm2015/lucide-angular.js.map +1 -1
  29. package/icons/carrot.d.ts +3 -0
  30. package/icons/drumstick.d.ts +3 -0
  31. package/icons/egg.d.ts +3 -0
  32. package/icons/index.d.ts +7 -0
  33. package/icons/pin.d.ts +3 -0
  34. package/icons/scan-line.d.ts +3 -0
  35. package/icons/scan.d.ts +3 -0
  36. package/icons/subscript.d.ts +3 -0
  37. package/lucide-angular.metadata.json +1 -1
  38. package/package.json +1 -1
  39. package/src/icons/carrot.d.ts +3 -0
  40. package/src/icons/drumstick.d.ts +3 -0
  41. package/src/icons/egg.d.ts +3 -0
  42. package/src/icons/index.d.ts +7 -0
  43. package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
  44. package/src/icons/pin.d.ts +3 -0
  45. package/src/icons/scan-line.d.ts +3 -0
  46. package/src/icons/scan.d.ts +3 -0
  47. package/src/icons/subscript.d.ts +3 -0
@@ -882,6 +882,27 @@ const Car = [
882
882
  ],
883
883
  ];
884
884
 
885
+ const Carrot = [
886
+ 'svg',
887
+ defaultAttributes,
888
+ [
889
+ [
890
+ 'path',
891
+ {
892
+ d: 'M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 00-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46',
893
+ },
894
+ ],
895
+ [
896
+ 'path',
897
+ { d: 'M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z' },
898
+ ],
899
+ [
900
+ 'path',
901
+ { d: 'M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z' },
902
+ ],
903
+ ],
904
+ ];
905
+
885
906
  const Cast = [
886
907
  'svg',
887
908
  defaultAttributes,
@@ -1874,6 +1895,25 @@ const Droplets = [
1874
1895
  ],
1875
1896
  ];
1876
1897
 
1898
+ const Drumstick = [
1899
+ 'svg',
1900
+ defaultAttributes,
1901
+ [
1902
+ [
1903
+ 'path',
1904
+ {
1905
+ d: 'M15.45 15.4c-2.13.65-4.3.32-5.7-1.1-2.29-2.27-1.76-6.5 1.17-9.42 2.93-2.93 7.15-3.46 9.43-1.18 1.41 1.41 1.74 3.57 1.1 5.71-1.4-.51-3.26-.02-4.64 1.36-1.38 1.38-1.87 3.23-1.36 4.63z',
1906
+ },
1907
+ ],
1908
+ [
1909
+ 'path',
1910
+ {
1911
+ d: 'M11.25 15.6l-2.16 2.16a2.5 2.5 0 11-4.56 1.73 2.49 2.49 0 01-1.41-4.24 2.5 2.5 0 013.14-.32l2.16-2.16',
1912
+ },
1913
+ ],
1914
+ ],
1915
+ ];
1916
+
1877
1917
  const Edit2 = [
1878
1918
  'svg',
1879
1919
  defaultAttributes,
@@ -1898,6 +1938,19 @@ const Edit = [
1898
1938
  ],
1899
1939
  ];
1900
1940
 
1941
+ const Egg = [
1942
+ 'svg',
1943
+ defaultAttributes,
1944
+ [
1945
+ [
1946
+ 'path',
1947
+ {
1948
+ d: 'M12 22c6.23-.05 7.87-5.57 7.5-10-.36-4.34-3.95-9.96-7.5-10-3.55.04-7.14 5.66-7.5 10-.37 4.43 1.27 9.95 7.5 10z',
1949
+ },
1950
+ ],
1951
+ ],
1952
+ ];
1953
+
1901
1954
  const EqualNot = [
1902
1955
  'svg',
1903
1956
  defaultAttributes,
@@ -4127,6 +4180,16 @@ const PiggyBank = [
4127
4180
  ],
4128
4181
  ];
4129
4182
 
4183
+ const Pin = [
4184
+ 'svg',
4185
+ defaultAttributes,
4186
+ [
4187
+ ['path', { d: 'M12 21v-7' }],
4188
+ ['path', { d: 'M9 3v5l-2 4v2h10m0 0h-5m5 0v-2l-2-4V3' }],
4189
+ ['path', { d: 'M7 3h10' }],
4190
+ ],
4191
+ ];
4192
+
4130
4193
  const Pipette = [
4131
4194
  'svg',
4132
4195
  defaultAttributes,
@@ -4552,6 +4615,29 @@ const Scale = [
4552
4615
  ],
4553
4616
  ];
4554
4617
 
4618
+ const ScanLine = [
4619
+ 'svg',
4620
+ defaultAttributes,
4621
+ [
4622
+ ['path', { d: 'M3 7V5a2 2 0 012-2h2' }],
4623
+ ['path', { d: 'M17 3h2a2 2 0 012 2v2' }],
4624
+ ['path', { d: 'M21 17v2a2 2 0 01-2 2h-2' }],
4625
+ ['path', { d: 'M7 21H5a2 2 0 01-2-2v-2' }],
4626
+ ['line', { x1: '7', y1: '12', x2: '17', y2: '12' }],
4627
+ ],
4628
+ ];
4629
+
4630
+ const Scan = [
4631
+ 'svg',
4632
+ defaultAttributes,
4633
+ [
4634
+ ['path', { d: 'M3 7V5a2 2 0 012-2h2' }],
4635
+ ['path', { d: 'M17 3h2a2 2 0 012 2v2' }],
4636
+ ['path', { d: 'M21 17v2a2 2 0 01-2 2h-2' }],
4637
+ ['path', { d: 'M7 21H5a2 2 0 01-2-2v-2' }],
4638
+ ],
4639
+ ];
4640
+
4555
4641
  const Scissors = [
4556
4642
  'svg',
4557
4643
  defaultAttributes,
@@ -5094,6 +5180,21 @@ const Strikethrough = [
5094
5180
  ],
5095
5181
  ];
5096
5182
 
5183
+ const Subscript = [
5184
+ 'svg',
5185
+ defaultAttributes,
5186
+ [
5187
+ ['path', { d: 'm4 5 8 8' }],
5188
+ ['path', { d: 'm12 5-8 8' }],
5189
+ [
5190
+ 'path',
5191
+ {
5192
+ d: 'M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07',
5193
+ },
5194
+ ],
5195
+ ],
5196
+ ];
5197
+
5097
5198
  const Sun = [
5098
5199
  'svg',
5099
5200
  defaultAttributes,
@@ -6050,6 +6151,7 @@ var index = /*#__PURE__*/Object.freeze({
6050
6151
  CameraOff: CameraOff,
6051
6152
  Camera: Camera,
6052
6153
  Car: Car,
6154
+ Carrot: Carrot,
6053
6155
  Cast: Cast,
6054
6156
  CheckCircle2: CheckCircle2,
6055
6157
  CheckCircle: CheckCircle,
@@ -6142,9 +6244,11 @@ var index = /*#__PURE__*/Object.freeze({
6142
6244
  Dribbble: Dribbble,
6143
6245
  Droplet: Droplet,
6144
6246
  Droplets: Droplets,
6247
+ Drumstick: Drumstick,
6145
6248
  Edit2: Edit2,
6146
6249
  Edit3: Edit3,
6147
6250
  Edit: Edit,
6251
+ Egg: Egg,
6148
6252
  EqualNot: EqualNot,
6149
6253
  Equal: Equal,
6150
6254
  Euro: Euro,
@@ -6334,6 +6438,7 @@ var index = /*#__PURE__*/Object.freeze({
6334
6438
  Phone: Phone,
6335
6439
  PieChart: PieChart,
6336
6440
  PiggyBank: PiggyBank,
6441
+ Pin: Pin,
6337
6442
  Pipette: Pipette,
6338
6443
  Plane: Plane,
6339
6444
  PlayCircle: PlayCircle,
@@ -6370,6 +6475,8 @@ var index = /*#__PURE__*/Object.freeze({
6370
6475
  RussianRuble: RussianRuble,
6371
6476
  Save: Save,
6372
6477
  Scale: Scale,
6478
+ ScanLine: ScanLine,
6479
+ Scan: Scan,
6373
6480
  Scissors: Scissors,
6374
6481
  ScreenShareOff: ScreenShareOff,
6375
6482
  ScreenShare: ScreenShare,
@@ -6419,6 +6526,7 @@ var index = /*#__PURE__*/Object.freeze({
6419
6526
  Star: Star,
6420
6527
  StopCircle: StopCircle,
6421
6528
  Strikethrough: Strikethrough,
6529
+ Subscript: Subscript,
6422
6530
  Sun: Sun,
6423
6531
  Sunrise: Sunrise,
6424
6532
  Sunset: Sunset,
@@ -6625,5 +6733,5 @@ LucideAngularModule.ctorParameters = () => [
6625
6733
  * Generated bundle index. Do not edit.
6626
6734
  */
6627
6735
 
6628
- export { Activity, Airplay, AlarmCheck, AlarmClock, AlarmClockOff, AlarmMinus, AlarmPlus, Album, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, 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, 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, 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, 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, Edit, Edit2, Edit3, 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, 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, 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, Palette, Paperclip, Pause, PauseCircle, PauseOctagon, PenTool, Pencil, Percent, PersonStanding, Phone, PhoneCall, PhoneForwarded, PhoneIncoming, PhoneMissed, PhoneOff, PhoneOutgoing, PieChart, PiggyBank, 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, 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, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, Strikethrough, Sun, Sunrise, Sunset, SwissFranc, SwitchCamera, Table, Tablet, Tag, Target, Tent, Terminal, TerminalSquare, 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, Webcam, Wifi, WifiOff, Wind, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut, createElement, index as icons, Icons as ɵa };
6736
+ export { Activity, Airplay, AlarmCheck, AlarmClock, AlarmClockOff, AlarmMinus, AlarmPlus, Album, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignJustify, AlignLeft, AlignRight, 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, 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, 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, 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, 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, Palette, 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, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, Strikethrough, Subscript, Sun, Sunrise, Sunset, SwissFranc, SwitchCamera, Table, Tablet, Tag, Target, Tent, Terminal, TerminalSquare, 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, Webcam, Wifi, WifiOff, Wind, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut, createElement, index as icons, Icons as ɵa };
6629
6737
  //# sourceMappingURL=lucide-angular.js.map