lucide-angular 0.16.29 → 0.17.2
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 -7
- 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 +114 -7
- 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/cookie.js +15 -0
- package/esm2015/icons/index.js +7 -1
- package/esm2015/icons/package-check.js +18 -0
- package/esm2015/icons/package-minus.js +18 -0
- package/esm2015/icons/package-plus.js +19 -0
- package/esm2015/icons/package-search.js +19 -0
- package/esm2015/icons/package-x.js +18 -0
- package/esm2015/icons/superscript.js +4 -4
- package/esm2015/icons/text-cursor-input.js +2 -2
- package/esm2015/icons/text-cursor.js +4 -4
- package/esm2015/src/icons/cookie.js +15 -0
- package/esm2015/src/icons/index.js +7 -1
- package/esm2015/src/icons/package-check.js +18 -0
- package/esm2015/src/icons/package-minus.js +18 -0
- package/esm2015/src/icons/package-plus.js +19 -0
- package/esm2015/src/icons/package-search.js +19 -0
- package/esm2015/src/icons/package-x.js +18 -0
- package/esm2015/src/icons/superscript.js +4 -4
- package/esm2015/src/icons/text-cursor-input.js +2 -2
- package/esm2015/src/icons/text-cursor.js +4 -4
- package/fesm2015/lucide-angular-src-icons.js +103 -8
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +109 -8
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/cookie.d.ts +3 -0
- package/icons/index.d.ts +6 -0
- package/icons/package-check.d.ts +3 -0
- package/icons/package-minus.d.ts +3 -0
- package/icons/package-plus.d.ts +3 -0
- package/icons/package-search.d.ts +3 -0
- package/icons/package-x.d.ts +3 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/cookie.d.ts +3 -0
- package/src/icons/index.d.ts +6 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
- package/src/icons/package-check.d.ts +3 -0
- package/src/icons/package-minus.d.ts +3 -0
- package/src/icons/package-plus.d.ts +3 -0
- package/src/icons/package-search.d.ts +3 -0
- package/src/icons/package-x.d.ts +3 -0
|
@@ -1582,6 +1582,19 @@ const Contrast = [
|
|
|
1582
1582
|
],
|
|
1583
1583
|
];
|
|
1584
1584
|
|
|
1585
|
+
const Cookie = [
|
|
1586
|
+
'svg',
|
|
1587
|
+
defaultAttributes,
|
|
1588
|
+
[
|
|
1589
|
+
['path', { d: 'M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5' }],
|
|
1590
|
+
['path', { d: 'M8.5 8.5v.01' }],
|
|
1591
|
+
['path', { d: 'M16 15.5v.01' }],
|
|
1592
|
+
['path', { d: 'M12 12v.01' }],
|
|
1593
|
+
['path', { d: 'M11 17v.01' }],
|
|
1594
|
+
['path', { d: 'M7 14v.01' }],
|
|
1595
|
+
],
|
|
1596
|
+
];
|
|
1597
|
+
|
|
1585
1598
|
const Copy = [
|
|
1586
1599
|
'svg',
|
|
1587
1600
|
defaultAttributes,
|
|
@@ -3931,6 +3944,88 @@ const Outdent = [
|
|
|
3931
3944
|
],
|
|
3932
3945
|
];
|
|
3933
3946
|
|
|
3947
|
+
const PackageCheck = [
|
|
3948
|
+
'svg',
|
|
3949
|
+
defaultAttributes,
|
|
3950
|
+
[
|
|
3951
|
+
['path', { d: 'm16 16 2 2 4-4' }],
|
|
3952
|
+
[
|
|
3953
|
+
'path',
|
|
3954
|
+
{
|
|
3955
|
+
d: 'M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14',
|
|
3956
|
+
},
|
|
3957
|
+
],
|
|
3958
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
3959
|
+
['path', { d: 'M3.29 7 12 12m0 0 8.71-5M12 12v10' }],
|
|
3960
|
+
],
|
|
3961
|
+
];
|
|
3962
|
+
|
|
3963
|
+
const PackageMinus = [
|
|
3964
|
+
'svg',
|
|
3965
|
+
defaultAttributes,
|
|
3966
|
+
[
|
|
3967
|
+
['path', { d: 'M16 16h6' }],
|
|
3968
|
+
[
|
|
3969
|
+
'path',
|
|
3970
|
+
{
|
|
3971
|
+
d: 'M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14',
|
|
3972
|
+
},
|
|
3973
|
+
],
|
|
3974
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
3975
|
+
['path', { d: 'M3.29 7 12 12m0 0 8.71-5M12 12v10' }],
|
|
3976
|
+
],
|
|
3977
|
+
];
|
|
3978
|
+
|
|
3979
|
+
const PackagePlus = [
|
|
3980
|
+
'svg',
|
|
3981
|
+
defaultAttributes,
|
|
3982
|
+
[
|
|
3983
|
+
['path', { d: 'M16 16h6' }],
|
|
3984
|
+
['path', { d: 'M19 13v6' }],
|
|
3985
|
+
[
|
|
3986
|
+
'path',
|
|
3987
|
+
{
|
|
3988
|
+
d: 'M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14',
|
|
3989
|
+
},
|
|
3990
|
+
],
|
|
3991
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
3992
|
+
['path', { d: 'M3.29 7 12 12m0 0 8.71-5M12 12v10' }],
|
|
3993
|
+
],
|
|
3994
|
+
];
|
|
3995
|
+
|
|
3996
|
+
const PackageSearch = [
|
|
3997
|
+
'svg',
|
|
3998
|
+
defaultAttributes,
|
|
3999
|
+
[
|
|
4000
|
+
[
|
|
4001
|
+
'path',
|
|
4002
|
+
{
|
|
4003
|
+
d: 'M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14',
|
|
4004
|
+
},
|
|
4005
|
+
],
|
|
4006
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
4007
|
+
['path', { d: 'M12 12v10M3.29 7 12 12 3.29 7ZM12 12l8.71-5L12 12Z' }],
|
|
4008
|
+
['circle', { cx: '18.5', cy: '15.5', r: '2.5' }],
|
|
4009
|
+
['path', { d: 'M20.27 17.27 22 19' }],
|
|
4010
|
+
],
|
|
4011
|
+
];
|
|
4012
|
+
|
|
4013
|
+
const PackageX = [
|
|
4014
|
+
'svg',
|
|
4015
|
+
defaultAttributes,
|
|
4016
|
+
[
|
|
4017
|
+
[
|
|
4018
|
+
'path',
|
|
4019
|
+
{
|
|
4020
|
+
d: 'M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14',
|
|
4021
|
+
},
|
|
4022
|
+
],
|
|
4023
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
4024
|
+
['path', { d: 'M3.29 7 12 12m0 0 8.71-5M12 12v10' }],
|
|
4025
|
+
['path', { d: 'm17 13 5 5m-5 0 5-5' }],
|
|
4026
|
+
],
|
|
4027
|
+
];
|
|
4028
|
+
|
|
3934
4029
|
const Package = [
|
|
3935
4030
|
'svg',
|
|
3936
4031
|
defaultAttributes,
|
|
@@ -5286,12 +5381,12 @@ const Superscript = [
|
|
|
5286
5381
|
'svg',
|
|
5287
5382
|
defaultAttributes,
|
|
5288
5383
|
[
|
|
5289
|
-
['path', { d: '
|
|
5290
|
-
['path', { d: '
|
|
5384
|
+
['path', { d: 'M4 19l8-8' }],
|
|
5385
|
+
['path', { d: 'M12 19l-8-8' }],
|
|
5291
5386
|
[
|
|
5292
5387
|
'path',
|
|
5293
5388
|
{
|
|
5294
|
-
d: '
|
|
5389
|
+
d: 'M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 00-2.617-.436c-.42.239-.738.614-.899 1.06',
|
|
5295
5390
|
},
|
|
5296
5391
|
],
|
|
5297
5392
|
],
|
|
@@ -5401,7 +5496,7 @@ const TextCursorInput = [
|
|
|
5401
5496
|
[
|
|
5402
5497
|
'path',
|
|
5403
5498
|
{
|
|
5404
|
-
d: 'M5.3 4h.9C7.7 4 9 5.3 9 6.7m0 0v10.5c0 1.6-1.1 2.7-2.7 2.7h-1M9 6.7v10.6a2.6 2.6 0
|
|
5499
|
+
d: 'M5.3 4h.9C7.7 4 9 5.3 9 6.7m0 0v10.5c0 1.6-1.1 2.7-2.7 2.7h-1M9 6.7v10.6a2.6 2.6 0 002.7 2.7h1M9 6.7C9 5.2 10.2 4 11.8 4h.9',
|
|
5405
5500
|
},
|
|
5406
5501
|
],
|
|
5407
5502
|
[
|
|
@@ -5419,9 +5514,9 @@ const TextCursor = [
|
|
|
5419
5514
|
'svg',
|
|
5420
5515
|
defaultAttributes,
|
|
5421
5516
|
[
|
|
5422
|
-
['path', { d: 'M17 22h-1a4 4 0
|
|
5423
|
-
['path', { d: 'M7 22h1a4 4 0
|
|
5424
|
-
['path', { d: 'M7 2h1a4 4 0
|
|
5517
|
+
['path', { d: 'M17 22h-1a4 4 0 01-4-4V6a4 4 0 014-4h1' }],
|
|
5518
|
+
['path', { d: 'M7 22h1a4 4 0 004-4v-1' }],
|
|
5519
|
+
['path', { d: 'M7 2h1a4 4 0 014 4v1' }],
|
|
5425
5520
|
],
|
|
5426
5521
|
];
|
|
5427
5522
|
|
|
@@ -6301,6 +6396,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
6301
6396
|
Compass: Compass,
|
|
6302
6397
|
Contact: Contact,
|
|
6303
6398
|
Contrast: Contrast,
|
|
6399
|
+
Cookie: Cookie,
|
|
6304
6400
|
Copy: Copy,
|
|
6305
6401
|
Copyleft: Copyleft,
|
|
6306
6402
|
Copyright: Copyright,
|
|
@@ -6506,6 +6602,11 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
6506
6602
|
Octagon: Octagon,
|
|
6507
6603
|
Option: Option,
|
|
6508
6604
|
Outdent: Outdent,
|
|
6605
|
+
PackageCheck: PackageCheck,
|
|
6606
|
+
PackageMinus: PackageMinus,
|
|
6607
|
+
PackagePlus: PackagePlus,
|
|
6608
|
+
PackageSearch: PackageSearch,
|
|
6609
|
+
PackageX: PackageX,
|
|
6509
6610
|
Package: Package,
|
|
6510
6611
|
Palette: Palette,
|
|
6511
6612
|
Paperclip: Paperclip,
|
|
@@ -6828,5 +6929,5 @@ LucideAngularModule.ctorParameters = () => [
|
|
|
6828
6929
|
* Generated bundle index. Do not edit.
|
|
6829
6930
|
*/
|
|
6830
6931
|
|
|
6831
|
-
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, Signal, SignalHigh, SignalLow, SignalMedium, SignalZero, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, 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, Webcam, Wifi, WifiOff, Wind, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut, createElement, index as icons, Icons as ɵa };
|
|
6932
|
+
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, 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, 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, PackageCheck, PackageMinus, PackagePlus, PackageSearch, PackageX, 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, Signal, SignalHigh, SignalLow, SignalMedium, SignalZero, SkipBack, SkipForward, Skull, Slack, Slash, Sliders, Smartphone, SmartphoneCharging, Smile, Snowflake, SortAsc, SortDesc, Speaker, Sprout, Square, Star, StarHalf, StopCircle, 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, Webcam, Wifi, WifiOff, Wind, WrapText, Wrench, X, XCircle, XOctagon, XSquare, Youtube, Zap, ZapOff, ZoomIn, ZoomOut, createElement, index as icons, Icons as ɵa };
|
|
6832
6933
|
//# sourceMappingURL=lucide-angular.js.map
|