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
|
@@ -1580,6 +1580,19 @@ const Contrast = [
|
|
|
1580
1580
|
],
|
|
1581
1581
|
];
|
|
1582
1582
|
|
|
1583
|
+
const Cookie = [
|
|
1584
|
+
'svg',
|
|
1585
|
+
defaultAttributes,
|
|
1586
|
+
[
|
|
1587
|
+
['path', { d: 'M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5' }],
|
|
1588
|
+
['path', { d: 'M8.5 8.5v.01' }],
|
|
1589
|
+
['path', { d: 'M16 15.5v.01' }],
|
|
1590
|
+
['path', { d: 'M12 12v.01' }],
|
|
1591
|
+
['path', { d: 'M11 17v.01' }],
|
|
1592
|
+
['path', { d: 'M7 14v.01' }],
|
|
1593
|
+
],
|
|
1594
|
+
];
|
|
1595
|
+
|
|
1583
1596
|
const Copy = [
|
|
1584
1597
|
'svg',
|
|
1585
1598
|
defaultAttributes,
|
|
@@ -3929,6 +3942,88 @@ const Outdent = [
|
|
|
3929
3942
|
],
|
|
3930
3943
|
];
|
|
3931
3944
|
|
|
3945
|
+
const PackageCheck = [
|
|
3946
|
+
'svg',
|
|
3947
|
+
defaultAttributes,
|
|
3948
|
+
[
|
|
3949
|
+
['path', { d: 'm16 16 2 2 4-4' }],
|
|
3950
|
+
[
|
|
3951
|
+
'path',
|
|
3952
|
+
{
|
|
3953
|
+
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',
|
|
3954
|
+
},
|
|
3955
|
+
],
|
|
3956
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
3957
|
+
['path', { d: 'M3.29 7 12 12m0 0 8.71-5M12 12v10' }],
|
|
3958
|
+
],
|
|
3959
|
+
];
|
|
3960
|
+
|
|
3961
|
+
const PackageMinus = [
|
|
3962
|
+
'svg',
|
|
3963
|
+
defaultAttributes,
|
|
3964
|
+
[
|
|
3965
|
+
['path', { d: 'M16 16h6' }],
|
|
3966
|
+
[
|
|
3967
|
+
'path',
|
|
3968
|
+
{
|
|
3969
|
+
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',
|
|
3970
|
+
},
|
|
3971
|
+
],
|
|
3972
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
3973
|
+
['path', { d: 'M3.29 7 12 12m0 0 8.71-5M12 12v10' }],
|
|
3974
|
+
],
|
|
3975
|
+
];
|
|
3976
|
+
|
|
3977
|
+
const PackagePlus = [
|
|
3978
|
+
'svg',
|
|
3979
|
+
defaultAttributes,
|
|
3980
|
+
[
|
|
3981
|
+
['path', { d: 'M16 16h6' }],
|
|
3982
|
+
['path', { d: 'M19 13v6' }],
|
|
3983
|
+
[
|
|
3984
|
+
'path',
|
|
3985
|
+
{
|
|
3986
|
+
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',
|
|
3987
|
+
},
|
|
3988
|
+
],
|
|
3989
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
3990
|
+
['path', { d: 'M3.29 7 12 12m0 0 8.71-5M12 12v10' }],
|
|
3991
|
+
],
|
|
3992
|
+
];
|
|
3993
|
+
|
|
3994
|
+
const PackageSearch = [
|
|
3995
|
+
'svg',
|
|
3996
|
+
defaultAttributes,
|
|
3997
|
+
[
|
|
3998
|
+
[
|
|
3999
|
+
'path',
|
|
4000
|
+
{
|
|
4001
|
+
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',
|
|
4002
|
+
},
|
|
4003
|
+
],
|
|
4004
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
4005
|
+
['path', { d: 'M12 12v10M3.29 7 12 12 3.29 7ZM12 12l8.71-5L12 12Z' }],
|
|
4006
|
+
['circle', { cx: '18.5', cy: '15.5', r: '2.5' }],
|
|
4007
|
+
['path', { d: 'M20.27 17.27 22 19' }],
|
|
4008
|
+
],
|
|
4009
|
+
];
|
|
4010
|
+
|
|
4011
|
+
const PackageX = [
|
|
4012
|
+
'svg',
|
|
4013
|
+
defaultAttributes,
|
|
4014
|
+
[
|
|
4015
|
+
[
|
|
4016
|
+
'path',
|
|
4017
|
+
{
|
|
4018
|
+
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',
|
|
4019
|
+
},
|
|
4020
|
+
],
|
|
4021
|
+
['path', { d: 'M16.5 9.4 7.55 4.24' }],
|
|
4022
|
+
['path', { d: 'M3.29 7 12 12m0 0 8.71-5M12 12v10' }],
|
|
4023
|
+
['path', { d: 'm17 13 5 5m-5 0 5-5' }],
|
|
4024
|
+
],
|
|
4025
|
+
];
|
|
4026
|
+
|
|
3932
4027
|
const Package = [
|
|
3933
4028
|
'svg',
|
|
3934
4029
|
defaultAttributes,
|
|
@@ -5284,12 +5379,12 @@ const Superscript = [
|
|
|
5284
5379
|
'svg',
|
|
5285
5380
|
defaultAttributes,
|
|
5286
5381
|
[
|
|
5287
|
-
['path', { d: '
|
|
5288
|
-
['path', { d: '
|
|
5382
|
+
['path', { d: 'M4 19l8-8' }],
|
|
5383
|
+
['path', { d: 'M12 19l-8-8' }],
|
|
5289
5384
|
[
|
|
5290
5385
|
'path',
|
|
5291
5386
|
{
|
|
5292
|
-
d: '
|
|
5387
|
+
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',
|
|
5293
5388
|
},
|
|
5294
5389
|
],
|
|
5295
5390
|
],
|
|
@@ -5399,7 +5494,7 @@ const TextCursorInput = [
|
|
|
5399
5494
|
[
|
|
5400
5495
|
'path',
|
|
5401
5496
|
{
|
|
5402
|
-
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
|
|
5497
|
+
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',
|
|
5403
5498
|
},
|
|
5404
5499
|
],
|
|
5405
5500
|
[
|
|
@@ -5417,9 +5512,9 @@ const TextCursor = [
|
|
|
5417
5512
|
'svg',
|
|
5418
5513
|
defaultAttributes,
|
|
5419
5514
|
[
|
|
5420
|
-
['path', { d: 'M17 22h-1a4 4 0
|
|
5421
|
-
['path', { d: 'M7 22h1a4 4 0
|
|
5422
|
-
['path', { d: 'M7 2h1a4 4 0
|
|
5515
|
+
['path', { d: 'M17 22h-1a4 4 0 01-4-4V6a4 4 0 014-4h1' }],
|
|
5516
|
+
['path', { d: 'M7 22h1a4 4 0 004-4v-1' }],
|
|
5517
|
+
['path', { d: 'M7 2h1a4 4 0 014 4v1' }],
|
|
5423
5518
|
],
|
|
5424
5519
|
];
|
|
5425
5520
|
|
|
@@ -6159,5 +6254,5 @@ const ZoomOut = [
|
|
|
6159
6254
|
* Generated bundle index. Do not edit.
|
|
6160
6255
|
*/
|
|
6161
6256
|
|
|
6162
|
-
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, 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 };
|
|
6257
|
+
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, 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 };
|
|
6163
6258
|
//# sourceMappingURL=lucide-angular-src-icons.js.map
|