lucide-angular 0.17.3 → 0.17.4
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 +131 -19
- 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 +141 -19
- 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/align-horizontal-justify-center.js +12 -0
- package/esm2015/icons/align-horizontal-justify-end.js +12 -0
- package/esm2015/icons/align-horizontal-justify-start.js +12 -0
- package/esm2015/icons/align-horizontal-space-around.js +12 -0
- package/esm2015/icons/align-horizontal-space-between.js +13 -0
- package/esm2015/icons/align-vertical-justify-center.js +12 -0
- package/esm2015/icons/align-vertical-justify-end.js +12 -0
- package/esm2015/icons/align-vertical-justify-start.js +12 -0
- package/esm2015/icons/align-vertical-space-around.js +12 -0
- package/esm2015/icons/align-vertical-space-between.js +13 -0
- package/esm2015/icons/cookie.js +2 -2
- package/esm2015/icons/index.js +11 -1
- package/esm2015/icons/package-check.js +5 -5
- package/esm2015/icons/package-minus.js +4 -4
- package/esm2015/icons/package-plus.js +4 -4
- package/esm2015/icons/package-search.js +5 -5
- package/esm2015/icons/package-x.js +5 -5
- package/esm2015/src/icons/align-horizontal-justify-center.js +12 -0
- package/esm2015/src/icons/align-horizontal-justify-end.js +12 -0
- package/esm2015/src/icons/align-horizontal-justify-start.js +12 -0
- package/esm2015/src/icons/align-horizontal-space-around.js +12 -0
- package/esm2015/src/icons/align-horizontal-space-between.js +13 -0
- package/esm2015/src/icons/align-vertical-justify-center.js +12 -0
- package/esm2015/src/icons/align-vertical-justify-end.js +12 -0
- package/esm2015/src/icons/align-vertical-justify-start.js +12 -0
- package/esm2015/src/icons/align-vertical-space-around.js +12 -0
- package/esm2015/src/icons/align-vertical-space-between.js +13 -0
- package/esm2015/src/icons/cookie.js +2 -2
- package/esm2015/src/icons/index.js +11 -1
- package/esm2015/src/icons/package-check.js +5 -5
- package/esm2015/src/icons/package-minus.js +4 -4
- package/esm2015/src/icons/package-plus.js +4 -4
- package/esm2015/src/icons/package-search.js +5 -5
- package/esm2015/src/icons/package-x.js +5 -5
- package/fesm2015/lucide-angular-src-icons.js +122 -20
- package/fesm2015/lucide-angular-src-icons.js.map +1 -1
- package/fesm2015/lucide-angular.js +132 -20
- package/fesm2015/lucide-angular.js.map +1 -1
- package/icons/align-horizontal-justify-center.d.ts +3 -0
- package/icons/align-horizontal-justify-end.d.ts +3 -0
- package/icons/align-horizontal-justify-start.d.ts +3 -0
- package/icons/align-horizontal-space-around.d.ts +3 -0
- package/icons/align-horizontal-space-between.d.ts +3 -0
- package/icons/align-vertical-justify-center.d.ts +3 -0
- package/icons/align-vertical-justify-end.d.ts +3 -0
- package/icons/align-vertical-justify-start.d.ts +3 -0
- package/icons/align-vertical-space-around.d.ts +3 -0
- package/icons/align-vertical-space-between.d.ts +3 -0
- package/icons/index.d.ts +10 -0
- package/lucide-angular.metadata.json +1 -1
- package/package.json +1 -1
- package/src/icons/align-horizontal-justify-center.d.ts +3 -0
- package/src/icons/align-horizontal-justify-end.d.ts +3 -0
- package/src/icons/align-horizontal-justify-start.d.ts +3 -0
- package/src/icons/align-horizontal-space-around.d.ts +3 -0
- package/src/icons/align-horizontal-space-between.d.ts +3 -0
- package/src/icons/align-vertical-justify-center.d.ts +3 -0
- package/src/icons/align-vertical-justify-end.d.ts +3 -0
- package/src/icons/align-vertical-justify-start.d.ts +3 -0
- package/src/icons/align-vertical-space-around.d.ts +3 -0
- package/src/icons/align-vertical-space-between.d.ts +3 -0
- package/src/icons/index.d.ts +10 -0
- package/src/icons/lucide-angular-src-icons.metadata.json +1 -1
|
@@ -200,6 +200,57 @@ const AlignEndVertical = [
|
|
|
200
200
|
],
|
|
201
201
|
];
|
|
202
202
|
|
|
203
|
+
const AlignHorizontalJustifyCenter = [
|
|
204
|
+
'svg',
|
|
205
|
+
defaultAttributes,
|
|
206
|
+
[
|
|
207
|
+
['rect', { x: '2', y: '5', width: '6', height: '14', rx: '2' }],
|
|
208
|
+
['rect', { x: '16', y: '7', width: '6', height: '10', rx: '2' }],
|
|
209
|
+
['path', { d: 'M12 2v20' }],
|
|
210
|
+
],
|
|
211
|
+
];
|
|
212
|
+
|
|
213
|
+
const AlignHorizontalJustifyEnd = [
|
|
214
|
+
'svg',
|
|
215
|
+
defaultAttributes,
|
|
216
|
+
[
|
|
217
|
+
['rect', { x: '2', y: '5', width: '6', height: '14', rx: '2' }],
|
|
218
|
+
['rect', { x: '12', y: '7', width: '6', height: '10', rx: '2' }],
|
|
219
|
+
['path', { d: 'M22 2v20' }],
|
|
220
|
+
],
|
|
221
|
+
];
|
|
222
|
+
|
|
223
|
+
const AlignHorizontalJustifyStart = [
|
|
224
|
+
'svg',
|
|
225
|
+
defaultAttributes,
|
|
226
|
+
[
|
|
227
|
+
['rect', { x: '6', y: '5', width: '6', height: '14', rx: '2' }],
|
|
228
|
+
['rect', { x: '16', y: '7', width: '6', height: '10', rx: '2' }],
|
|
229
|
+
['path', { d: 'M2 2v20' }],
|
|
230
|
+
],
|
|
231
|
+
];
|
|
232
|
+
|
|
233
|
+
const AlignHorizontalSpaceAround = [
|
|
234
|
+
'svg',
|
|
235
|
+
defaultAttributes,
|
|
236
|
+
[
|
|
237
|
+
['rect', { x: '9', y: '7', width: '6', height: '10', rx: '2' }],
|
|
238
|
+
['path', { d: 'M4 22V2' }],
|
|
239
|
+
['path', { d: 'M20 22V2' }],
|
|
240
|
+
],
|
|
241
|
+
];
|
|
242
|
+
|
|
243
|
+
const AlignHorizontalSpaceBetween = [
|
|
244
|
+
'svg',
|
|
245
|
+
defaultAttributes,
|
|
246
|
+
[
|
|
247
|
+
['rect', { x: '3', y: '5', width: '6', height: '14', rx: '2' }],
|
|
248
|
+
['rect', { x: '15', y: '7', width: '6', height: '10', rx: '2' }],
|
|
249
|
+
['path', { d: 'M3 2v20' }],
|
|
250
|
+
['path', { d: 'M21 2v20' }],
|
|
251
|
+
],
|
|
252
|
+
];
|
|
253
|
+
|
|
203
254
|
const AlignJustify = [
|
|
204
255
|
'svg',
|
|
205
256
|
defaultAttributes,
|
|
@@ -250,6 +301,57 @@ const AlignStartVertical = [
|
|
|
250
301
|
],
|
|
251
302
|
];
|
|
252
303
|
|
|
304
|
+
const AlignVerticalJustifyCenter = [
|
|
305
|
+
'svg',
|
|
306
|
+
defaultAttributes,
|
|
307
|
+
[
|
|
308
|
+
['rect', { x: '5', y: '16', width: '14', height: '6', rx: '2' }],
|
|
309
|
+
['rect', { x: '7', y: '2', width: '10', height: '6', rx: '2' }],
|
|
310
|
+
['path', { d: 'M2 12h20' }],
|
|
311
|
+
],
|
|
312
|
+
];
|
|
313
|
+
|
|
314
|
+
const AlignVerticalJustifyEnd = [
|
|
315
|
+
'svg',
|
|
316
|
+
defaultAttributes,
|
|
317
|
+
[
|
|
318
|
+
['rect', { x: '5', y: '12', width: '14', height: '6', rx: '2' }],
|
|
319
|
+
['rect', { x: '7', y: '2', width: '10', height: '6', rx: '2' }],
|
|
320
|
+
['path', { d: 'M2 22h20' }],
|
|
321
|
+
],
|
|
322
|
+
];
|
|
323
|
+
|
|
324
|
+
const AlignVerticalJustifyStart = [
|
|
325
|
+
'svg',
|
|
326
|
+
defaultAttributes,
|
|
327
|
+
[
|
|
328
|
+
['rect', { x: '5', y: '16', width: '14', height: '6', rx: '2' }],
|
|
329
|
+
['rect', { x: '7', y: '6', width: '10', height: '6', rx: '2' }],
|
|
330
|
+
['path', { d: 'M2 2h20' }],
|
|
331
|
+
],
|
|
332
|
+
];
|
|
333
|
+
|
|
334
|
+
const AlignVerticalSpaceAround = [
|
|
335
|
+
'svg',
|
|
336
|
+
defaultAttributes,
|
|
337
|
+
[
|
|
338
|
+
['rect', { x: '7', y: '9', width: '10', height: '6', rx: '2' }],
|
|
339
|
+
['path', { d: 'M22 20H2' }],
|
|
340
|
+
['path', { d: 'M22 4H2' }],
|
|
341
|
+
],
|
|
342
|
+
];
|
|
343
|
+
|
|
344
|
+
const AlignVerticalSpaceBetween = [
|
|
345
|
+
'svg',
|
|
346
|
+
defaultAttributes,
|
|
347
|
+
[
|
|
348
|
+
['rect', { x: '5', y: '15', width: '14', height: '6', rx: '2' }],
|
|
349
|
+
['rect', { x: '7', y: '3', width: '10', height: '6', rx: '2' }],
|
|
350
|
+
['path', { d: 'M2 21h20' }],
|
|
351
|
+
['path', { d: 'M2 3h20' }],
|
|
352
|
+
],
|
|
353
|
+
];
|
|
354
|
+
|
|
253
355
|
const Anchor = [
|
|
254
356
|
'svg',
|
|
255
357
|
defaultAttributes,
|
|
@@ -1650,7 +1752,7 @@ const Cookie = [
|
|
|
1650
1752
|
'svg',
|
|
1651
1753
|
defaultAttributes,
|
|
1652
1754
|
[
|
|
1653
|
-
['path', { d: 'M12 2a10 10 0
|
|
1755
|
+
['path', { d: 'M12 2a10 10 0 1010 10 4 4 0 01-5-5 4 4 0 01-5-5' }],
|
|
1654
1756
|
['path', { d: 'M8.5 8.5v.01' }],
|
|
1655
1757
|
['path', { d: 'M16 15.5v.01' }],
|
|
1656
1758
|
['path', { d: 'M12 12v.01' }],
|
|
@@ -4012,15 +4114,15 @@ const PackageCheck = [
|
|
|
4012
4114
|
'svg',
|
|
4013
4115
|
defaultAttributes,
|
|
4014
4116
|
[
|
|
4015
|
-
['path', { d: '
|
|
4117
|
+
['path', { d: 'M16 16l2 2 4-4' }],
|
|
4016
4118
|
[
|
|
4017
4119
|
'path',
|
|
4018
4120
|
{
|
|
4019
|
-
d: 'M21 10V8a2 2 0
|
|
4121
|
+
d: 'M21 10V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l2-1.14',
|
|
4020
4122
|
},
|
|
4021
4123
|
],
|
|
4022
|
-
['path', { d: 'M16.5 9.
|
|
4023
|
-
['path', { d: 'M3.29
|
|
4124
|
+
['path', { d: 'M16.5 9.4L7.55 4.24' }],
|
|
4125
|
+
['path', { d: 'M3.29 7L12 12m0 0l8.71-5M12 12v10' }],
|
|
4024
4126
|
],
|
|
4025
4127
|
];
|
|
4026
4128
|
|
|
@@ -4032,11 +4134,11 @@ const PackageMinus = [
|
|
|
4032
4134
|
[
|
|
4033
4135
|
'path',
|
|
4034
4136
|
{
|
|
4035
|
-
d: 'M21 10V8a2 2 0
|
|
4137
|
+
d: 'M21 10V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l2-1.14',
|
|
4036
4138
|
},
|
|
4037
4139
|
],
|
|
4038
|
-
['path', { d: 'M16.5 9.
|
|
4039
|
-
['path', { d: 'M3.29
|
|
4140
|
+
['path', { d: 'M16.5 9.4L7.55 4.24' }],
|
|
4141
|
+
['path', { d: 'M3.29 7L12 12m0 0l8.71-5M12 12v10' }],
|
|
4040
4142
|
],
|
|
4041
4143
|
];
|
|
4042
4144
|
|
|
@@ -4049,11 +4151,11 @@ const PackagePlus = [
|
|
|
4049
4151
|
[
|
|
4050
4152
|
'path',
|
|
4051
4153
|
{
|
|
4052
|
-
d: 'M21 10V8a2 2 0
|
|
4154
|
+
d: 'M21 10V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l2-1.14',
|
|
4053
4155
|
},
|
|
4054
4156
|
],
|
|
4055
|
-
['path', { d: 'M16.5 9.
|
|
4056
|
-
['path', { d: 'M3.29
|
|
4157
|
+
['path', { d: 'M16.5 9.4L7.55 4.24' }],
|
|
4158
|
+
['path', { d: 'M3.29 7L12 12m0 0l8.71-5M12 12v10' }],
|
|
4057
4159
|
],
|
|
4058
4160
|
];
|
|
4059
4161
|
|
|
@@ -4064,13 +4166,13 @@ const PackageSearch = [
|
|
|
4064
4166
|
[
|
|
4065
4167
|
'path',
|
|
4066
4168
|
{
|
|
4067
|
-
d: 'M21 10V8a2 2 0
|
|
4169
|
+
d: 'M21 10V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l2-1.14',
|
|
4068
4170
|
},
|
|
4069
4171
|
],
|
|
4070
|
-
['path', { d: 'M16.5 9.
|
|
4071
|
-
['path', { d: 'M12 12v10M3.29
|
|
4172
|
+
['path', { d: 'M16.5 9.4L7.55 4.24' }],
|
|
4173
|
+
['path', { d: 'M12 12v10M3.29 7L12 12 3.29 7zM12 12l8.71-5L12 12z' }],
|
|
4072
4174
|
['circle', { cx: '18.5', cy: '15.5', r: '2.5' }],
|
|
4073
|
-
['path', { d: 'M20.27 17.
|
|
4175
|
+
['path', { d: 'M20.27 17.27L22 19' }],
|
|
4074
4176
|
],
|
|
4075
4177
|
];
|
|
4076
4178
|
|
|
@@ -4081,12 +4183,12 @@ const PackageX = [
|
|
|
4081
4183
|
[
|
|
4082
4184
|
'path',
|
|
4083
4185
|
{
|
|
4084
|
-
d: 'M21 10V8a2 2 0
|
|
4186
|
+
d: 'M21 10V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l2-1.14',
|
|
4085
4187
|
},
|
|
4086
4188
|
],
|
|
4087
|
-
['path', { d: 'M16.5 9.
|
|
4088
|
-
['path', { d: 'M3.29
|
|
4089
|
-
['path', { d: '
|
|
4189
|
+
['path', { d: 'M16.5 9.4L7.55 4.24' }],
|
|
4190
|
+
['path', { d: 'M3.29 7L12 12m0 0l8.71-5M12 12v10' }],
|
|
4191
|
+
['path', { d: 'M17 13l5 5m-5 0l5-5' }],
|
|
4090
4192
|
],
|
|
4091
4193
|
];
|
|
4092
4194
|
|
|
@@ -6334,11 +6436,21 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
6334
6436
|
AlignCenter: AlignCenter,
|
|
6335
6437
|
AlignEndHorizontal: AlignEndHorizontal,
|
|
6336
6438
|
AlignEndVertical: AlignEndVertical,
|
|
6439
|
+
AlignHorizontalJustifyCenter: AlignHorizontalJustifyCenter,
|
|
6440
|
+
AlignHorizontalJustifyEnd: AlignHorizontalJustifyEnd,
|
|
6441
|
+
AlignHorizontalJustifyStart: AlignHorizontalJustifyStart,
|
|
6442
|
+
AlignHorizontalSpaceAround: AlignHorizontalSpaceAround,
|
|
6443
|
+
AlignHorizontalSpaceBetween: AlignHorizontalSpaceBetween,
|
|
6337
6444
|
AlignJustify: AlignJustify,
|
|
6338
6445
|
AlignLeft: AlignLeft,
|
|
6339
6446
|
AlignRight: AlignRight,
|
|
6340
6447
|
AlignStartHorizontal: AlignStartHorizontal,
|
|
6341
6448
|
AlignStartVertical: AlignStartVertical,
|
|
6449
|
+
AlignVerticalJustifyCenter: AlignVerticalJustifyCenter,
|
|
6450
|
+
AlignVerticalJustifyEnd: AlignVerticalJustifyEnd,
|
|
6451
|
+
AlignVerticalJustifyStart: AlignVerticalJustifyStart,
|
|
6452
|
+
AlignVerticalSpaceAround: AlignVerticalSpaceAround,
|
|
6453
|
+
AlignVerticalSpaceBetween: AlignVerticalSpaceBetween,
|
|
6342
6454
|
Anchor: Anchor,
|
|
6343
6455
|
Aperture: Aperture,
|
|
6344
6456
|
Archive: Archive,
|
|
@@ -6999,5 +7111,5 @@ LucideAngularModule.ctorParameters = () => [
|
|
|
6999
7111
|
* Generated bundle index. Do not edit.
|
|
7000
7112
|
*/
|
|
7001
7113
|
|
|
7002
|
-
export { Activity, Airplay, AlarmCheck, AlarmClock, AlarmClockOff, AlarmMinus, AlarmPlus, Album, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignCenterHorizontal, AlignCenterVertical, AlignEndHorizontal, AlignEndVertical, AlignJustify, AlignLeft, AlignRight, AlignStartHorizontal, AlignStartVertical, 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 };
|
|
7114
|
+
export { Activity, Airplay, AlarmCheck, AlarmClock, AlarmClockOff, AlarmMinus, AlarmPlus, Album, AlertCircle, AlertOctagon, AlertTriangle, AlignCenter, AlignCenterHorizontal, AlignCenterVertical, AlignEndHorizontal, AlignEndVertical, AlignHorizontalJustifyCenter, AlignHorizontalJustifyEnd, AlignHorizontalJustifyStart, AlignHorizontalSpaceAround, AlignHorizontalSpaceBetween, AlignJustify, AlignLeft, AlignRight, AlignStartHorizontal, AlignStartVertical, 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, 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 };
|
|
7003
7115
|
//# sourceMappingURL=lucide-angular.js.map
|