lucide-angular 0.44.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.
- package/bundles/lucide-angular-src-icons.umd.js +98 -5
- 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 +105 -5
- 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/bar-chart-3.js +13 -0
- package/esm2015/icons/bar-chart-4.js +13 -0
- package/esm2015/icons/bar-chart-horizontal.js +13 -0
- package/esm2015/icons/index.js +8 -1
- package/esm2015/icons/line-chart.js +8 -0
- package/esm2015/icons/map-pin-off.js +29 -0
- package/esm2015/icons/navigation-2-off.js +12 -0
- package/esm2015/icons/navigation-off.js +12 -0
- package/esm2015/icons/pipette.js +4 -4
- package/esm2015/icons/shopping-cart.js +3 -3
- package/esm2015/src/icons/bar-chart-3.js +13 -0
- package/esm2015/src/icons/bar-chart-4.js +13 -0
- package/esm2015/src/icons/bar-chart-horizontal.js +13 -0
- package/esm2015/src/icons/index.js +8 -1
- package/esm2015/src/icons/line-chart.js +8 -0
- package/esm2015/src/icons/map-pin-off.js +29 -0
- package/esm2015/src/icons/navigation-2-off.js +12 -0
- package/esm2015/src/icons/navigation-off.js +12 -0
- package/esm2015/src/icons/pipette.js +4 -4
- package/esm2015/src/icons/shopping-cart.js +3 -3
- package/fesm2015/lucide-angular-src-icons.js +92 -6
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +99 -6
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/bar-chart-3.d.ts +3 -0
- package/icons/bar-chart-4.d.ts +3 -0
- package/icons/bar-chart-horizontal.d.ts +3 -0
- package/icons/index.d.ts +7 -0
- package/icons/line-chart.d.ts +3 -0
- package/icons/map-pin-off.d.ts +3 -0
- package/icons/navigation-2-off.d.ts +3 -0
- package/icons/navigation-off.d.ts +3 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/bar-chart-3.d.ts +3 -0
- package/src/icons/bar-chart-4.d.ts +3 -0
- package/src/icons/bar-chart-horizontal.d.ts +3 -0
- package/src/icons/index.d.ts +7 -0
- package/src/icons/line-chart.d.ts +3 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
- package/src/icons/map-pin-off.d.ts +3 -0
- package/src/icons/navigation-2-off.d.ts +3 -0
- package/src/icons/navigation-off.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,
|
|
@@ -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: '
|
|
4934
|
-
['path', { d: '
|
|
5019
|
+
['path', { d: 'M2 22l1-1H6l9-9' }],
|
|
5020
|
+
['path', { d: 'M3 21V18l9-9' }],
|
|
4935
5021
|
[
|
|
4936
5022
|
'path',
|
|
4937
5023
|
{
|
|
4938
|
-
d: '
|
|
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
|
],
|
|
@@ -5682,12 +5768,12 @@ const ShoppingCart = [
|
|
|
5682
5768
|
'svg',
|
|
5683
5769
|
defaultAttributes,
|
|
5684
5770
|
[
|
|
5685
|
-
['circle', { cx: '
|
|
5771
|
+
['circle', { cx: '8', cy: '21', r: '1' }],
|
|
5686
5772
|
['circle', { cx: '19', cy: '21', r: '1' }],
|
|
5687
5773
|
[
|
|
5688
5774
|
'path',
|
|
5689
5775
|
{
|
|
5690
|
-
d: 'M2
|
|
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',
|
|
5691
5777
|
},
|
|
5692
5778
|
],
|
|
5693
5779
|
],
|
|
@@ -7131,6 +7217,9 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
7131
7217
|
Axe: Axe,
|
|
7132
7218
|
Banknote: Banknote,
|
|
7133
7219
|
BarChart2: BarChart2,
|
|
7220
|
+
BarChart3: BarChart3,
|
|
7221
|
+
BarChart4: BarChart4,
|
|
7222
|
+
BarChartHorizontal: BarChartHorizontal,
|
|
7134
7223
|
BarChart: BarChart,
|
|
7135
7224
|
Baseline: Baseline,
|
|
7136
7225
|
BatteryCharging: BatteryCharging,
|
|
@@ -7401,6 +7490,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
7401
7490
|
LifeBuoy: LifeBuoy,
|
|
7402
7491
|
LightbulbOff: LightbulbOff,
|
|
7403
7492
|
Lightbulb: Lightbulb,
|
|
7493
|
+
LineChart: LineChart,
|
|
7404
7494
|
Link2Off: Link2Off,
|
|
7405
7495
|
Link2: Link2,
|
|
7406
7496
|
Link: Link,
|
|
@@ -7420,6 +7510,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
7420
7510
|
LogIn: LogIn,
|
|
7421
7511
|
LogOut: LogOut,
|
|
7422
7512
|
Mail: Mail,
|
|
7513
|
+
MapPinOff: MapPinOff,
|
|
7423
7514
|
MapPin: MapPin,
|
|
7424
7515
|
Map: Map,
|
|
7425
7516
|
Maximize2: Maximize2,
|
|
@@ -7455,7 +7546,9 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
7455
7546
|
MoveVertical: MoveVertical,
|
|
7456
7547
|
Move: Move,
|
|
7457
7548
|
Music: Music,
|
|
7549
|
+
Navigation2Off: Navigation2Off,
|
|
7458
7550
|
Navigation2: Navigation2,
|
|
7551
|
+
NavigationOff: NavigationOff,
|
|
7459
7552
|
Navigation: Navigation,
|
|
7460
7553
|
Network: Network,
|
|
7461
7554
|
Octagon: Octagon,
|
|
@@ -7799,5 +7892,5 @@ LucideAngularModule.ctorParameters = () => [
|
|
|
7799
7892
|
* Generated bundle index. Do not edit.
|
|
7800
7893
|
*/
|
|
7801
7894
|
|
|
7802
|
-
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, 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 };
|
|
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 };
|
|
7803
7896
|
//# sourceMappingURL=lucide-angular.js.map
|