@lucide/astro 0.561.0 → 0.563.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/LICENSE +2 -2
- package/README.md +11 -2
- package/package.json +6 -4
- package/src/Icon.astro +3 -0
- package/src/aliases/aliases.ts +144 -144
- package/src/aliases/prefixed.ts +674 -668
- package/src/aliases/suffixed.ts +1064 -1058
- package/src/createLucideIcon.ts +2 -1
- package/src/icons/bookmark-check.ts +2 -2
- package/src/icons/bookmark-minus.ts +2 -2
- package/src/icons/bookmark-plus.ts +2 -2
- package/src/icons/bookmark-x.ts +2 -2
- package/src/icons/bookmark.ts +2 -2
- package/src/icons/cloud-off.ts +2 -2
- package/src/icons/cloudy.ts +2 -2
- package/src/icons/globe-x.ts +18 -0
- package/src/icons/index.ts +95 -92
- package/src/icons/lasso.ts +2 -2
- package/src/icons/message-square-dashed.ts +2 -2
- package/src/icons/monitor-off.ts +2 -2
- package/src/icons/paint-bucket.ts +2 -2
- package/src/icons/printer-x.ts +18 -0
- package/src/icons/star-off.ts +2 -2
- package/src/icons/tickets-plane.ts +2 -2
- package/src/icons/toolbox.ts +18 -0
- package/src/icons/waypoints.ts +2 -2
- package/src/types.ts +1 -0
- package/src/utils/hasA11yProp.ts +15 -0
- package/src/{utils.ts → utils/mergeClasses.ts} +1 -12
- package/src/utils/toKebabCase.ts +8 -0
package/src/icons/index.ts
CHANGED
|
@@ -8,8 +8,8 @@ export { default as Airplay } from './airplay';
|
|
|
8
8
|
export { default as AlarmClockCheck } from './alarm-clock-check';
|
|
9
9
|
export { default as AlarmClockMinus } from './alarm-clock-minus';
|
|
10
10
|
export { default as AlarmClockOff } from './alarm-clock-off';
|
|
11
|
-
export { default as AlarmClock } from './alarm-clock';
|
|
12
11
|
export { default as AlarmClockPlus } from './alarm-clock-plus';
|
|
12
|
+
export { default as AlarmClock } from './alarm-clock';
|
|
13
13
|
export { default as AlarmSmoke } from './alarm-smoke';
|
|
14
14
|
export { default as Album } from './album';
|
|
15
15
|
export { default as AlignCenterHorizontal } from './align-center-horizontal';
|
|
@@ -18,24 +18,24 @@ export { default as AlignEndHorizontal } from './align-end-horizontal';
|
|
|
18
18
|
export { default as AlignEndVertical } from './align-end-vertical';
|
|
19
19
|
export { default as AlignHorizontalDistributeCenter } from './align-horizontal-distribute-center';
|
|
20
20
|
export { default as AlignHorizontalDistributeEnd } from './align-horizontal-distribute-end';
|
|
21
|
+
export { default as AlignHorizontalDistributeStart } from './align-horizontal-distribute-start';
|
|
21
22
|
export { default as AlignHorizontalJustifyCenter } from './align-horizontal-justify-center';
|
|
22
23
|
export { default as AlignHorizontalJustifyEnd } from './align-horizontal-justify-end';
|
|
23
|
-
export { default as AlignHorizontalDistributeStart } from './align-horizontal-distribute-start';
|
|
24
24
|
export { default as AlignHorizontalJustifyStart } from './align-horizontal-justify-start';
|
|
25
25
|
export { default as AlignHorizontalSpaceAround } from './align-horizontal-space-around';
|
|
26
26
|
export { default as AlignHorizontalSpaceBetween } from './align-horizontal-space-between';
|
|
27
27
|
export { default as AlignStartHorizontal } from './align-start-horizontal';
|
|
28
28
|
export { default as AlignStartVertical } from './align-start-vertical';
|
|
29
|
-
export { default as AlignVerticalDistributeEnd } from './align-vertical-distribute-end';
|
|
30
29
|
export { default as AlignVerticalDistributeCenter } from './align-vertical-distribute-center';
|
|
30
|
+
export { default as AlignVerticalDistributeEnd } from './align-vertical-distribute-end';
|
|
31
31
|
export { default as AlignVerticalDistributeStart } from './align-vertical-distribute-start';
|
|
32
32
|
export { default as AlignVerticalJustifyCenter } from './align-vertical-justify-center';
|
|
33
33
|
export { default as AlignVerticalJustifyEnd } from './align-vertical-justify-end';
|
|
34
34
|
export { default as AlignVerticalJustifyStart } from './align-vertical-justify-start';
|
|
35
35
|
export { default as AlignVerticalSpaceAround } from './align-vertical-space-around';
|
|
36
36
|
export { default as AlignVerticalSpaceBetween } from './align-vertical-space-between';
|
|
37
|
-
export { default as Ambulance } from './ambulance';
|
|
38
37
|
export { default as Ampersand } from './ampersand';
|
|
38
|
+
export { default as Ambulance } from './ambulance';
|
|
39
39
|
export { default as Ampersands } from './ampersands';
|
|
40
40
|
export { default as Amphora } from './amphora';
|
|
41
41
|
export { default as Anchor } from './anchor';
|
|
@@ -55,10 +55,10 @@ export { default as ArrowBigDownDash } from './arrow-big-down-dash';
|
|
|
55
55
|
export { default as ArrowBigDown } from './arrow-big-down';
|
|
56
56
|
export { default as ArrowBigLeftDash } from './arrow-big-left-dash';
|
|
57
57
|
export { default as ArrowBigLeft } from './arrow-big-left';
|
|
58
|
-
export { default as ArrowBigRightDash } from './arrow-big-right-dash';
|
|
59
58
|
export { default as ArrowBigRight } from './arrow-big-right';
|
|
60
|
-
export { default as
|
|
59
|
+
export { default as ArrowBigRightDash } from './arrow-big-right-dash';
|
|
61
60
|
export { default as ArrowBigUp } from './arrow-big-up';
|
|
61
|
+
export { default as ArrowBigUpDash } from './arrow-big-up-dash';
|
|
62
62
|
export { default as ArrowDown01 } from './arrow-down-0-1';
|
|
63
63
|
export { default as ArrowDown10 } from './arrow-down-1-0';
|
|
64
64
|
export { default as ArrowDownAZ } from './arrow-down-a-z';
|
|
@@ -87,8 +87,8 @@ export { default as ArrowUpDown } from './arrow-up-down';
|
|
|
87
87
|
export { default as ArrowUpFromDot } from './arrow-up-from-dot';
|
|
88
88
|
export { default as ArrowUpFromLine } from './arrow-up-from-line';
|
|
89
89
|
export { default as ArrowUpLeft } from './arrow-up-left';
|
|
90
|
-
export { default as ArrowUpRight } from './arrow-up-right';
|
|
91
90
|
export { default as ArrowUpNarrowWide } from './arrow-up-narrow-wide';
|
|
91
|
+
export { default as ArrowUpRight } from './arrow-up-right';
|
|
92
92
|
export { default as ArrowUpToLine } from './arrow-up-to-line';
|
|
93
93
|
export { default as ArrowUpWideNarrow } from './arrow-up-wide-narrow';
|
|
94
94
|
export { default as ArrowUpZA } from './arrow-up-z-a';
|
|
@@ -99,8 +99,8 @@ export { default as AtSign } from './at-sign';
|
|
|
99
99
|
export { default as Atom } from './atom';
|
|
100
100
|
export { default as AudioLines } from './audio-lines';
|
|
101
101
|
export { default as AudioWaveform } from './audio-waveform';
|
|
102
|
-
export { default as Axe } from './axe';
|
|
103
102
|
export { default as Award } from './award';
|
|
103
|
+
export { default as Axe } from './axe';
|
|
104
104
|
export { default as Axis3d } from './axis-3d';
|
|
105
105
|
export { default as Baby } from './baby';
|
|
106
106
|
export { default as Backpack } from './backpack';
|
|
@@ -207,8 +207,8 @@ export { default as BookUp } from './book-up';
|
|
|
207
207
|
export { default as BookUser } from './book-user';
|
|
208
208
|
export { default as BookX } from './book-x';
|
|
209
209
|
export { default as Book } from './book';
|
|
210
|
-
export { default as BookmarkCheck } from './bookmark-check';
|
|
211
210
|
export { default as BookmarkMinus } from './bookmark-minus';
|
|
211
|
+
export { default as BookmarkCheck } from './bookmark-check';
|
|
212
212
|
export { default as BookmarkPlus } from './bookmark-plus';
|
|
213
213
|
export { default as BookmarkX } from './bookmark-x';
|
|
214
214
|
export { default as Bookmark } from './bookmark';
|
|
@@ -255,14 +255,14 @@ export { default as CalendarCheck2 } from './calendar-check-2';
|
|
|
255
255
|
export { default as CalendarCheck } from './calendar-check';
|
|
256
256
|
export { default as CalendarClock } from './calendar-clock';
|
|
257
257
|
export { default as CalendarCog } from './calendar-cog';
|
|
258
|
-
export { default as CalendarFold } from './calendar-fold';
|
|
259
258
|
export { default as CalendarDays } from './calendar-days';
|
|
259
|
+
export { default as CalendarFold } from './calendar-fold';
|
|
260
260
|
export { default as CalendarHeart } from './calendar-heart';
|
|
261
261
|
export { default as CalendarMinus2 } from './calendar-minus-2';
|
|
262
262
|
export { default as CalendarMinus } from './calendar-minus';
|
|
263
263
|
export { default as CalendarOff } from './calendar-off';
|
|
264
|
-
export { default as CalendarPlus2 } from './calendar-plus-2';
|
|
265
264
|
export { default as CalendarPlus } from './calendar-plus';
|
|
265
|
+
export { default as CalendarPlus2 } from './calendar-plus-2';
|
|
266
266
|
export { default as CalendarRange } from './calendar-range';
|
|
267
267
|
export { default as CalendarSearch } from './calendar-search';
|
|
268
268
|
export { default as CalendarSync } from './calendar-sync';
|
|
@@ -271,8 +271,8 @@ export { default as CalendarX } from './calendar-x';
|
|
|
271
271
|
export { default as Calendar } from './calendar';
|
|
272
272
|
export { default as Calendars } from './calendars';
|
|
273
273
|
export { default as CameraOff } from './camera-off';
|
|
274
|
-
export { default as CandyCane } from './candy-cane';
|
|
275
274
|
export { default as Camera } from './camera';
|
|
275
|
+
export { default as CandyCane } from './candy-cane';
|
|
276
276
|
export { default as CandyOff } from './candy-off';
|
|
277
277
|
export { default as Candy } from './candy';
|
|
278
278
|
export { default as CannabisOff } from './cannabis-off';
|
|
@@ -289,8 +289,8 @@ export { default as CaseLower } from './case-lower';
|
|
|
289
289
|
export { default as CaseSensitive } from './case-sensitive';
|
|
290
290
|
export { default as CaseUpper } from './case-upper';
|
|
291
291
|
export { default as CassetteTape } from './cassette-tape';
|
|
292
|
-
export { default as Cast } from './cast';
|
|
293
292
|
export { default as Castle } from './castle';
|
|
293
|
+
export { default as Cast } from './cast';
|
|
294
294
|
export { default as Cat } from './cat';
|
|
295
295
|
export { default as Cctv } from './cctv';
|
|
296
296
|
export { default as ChartArea } from './chart-area';
|
|
@@ -346,13 +346,13 @@ export { default as Chromium } from './chromium';
|
|
|
346
346
|
export { default as Church } from './church';
|
|
347
347
|
export { default as CigaretteOff } from './cigarette-off';
|
|
348
348
|
export { default as Cigarette } from './cigarette';
|
|
349
|
-
export { default as CircleArrowDown } from './circle-arrow-down';
|
|
350
349
|
export { default as CircleAlert } from './circle-alert';
|
|
350
|
+
export { default as CircleArrowDown } from './circle-arrow-down';
|
|
351
351
|
export { default as CircleArrowLeft } from './circle-arrow-left';
|
|
352
352
|
export { default as CircleArrowOutDownLeft } from './circle-arrow-out-down-left';
|
|
353
353
|
export { default as CircleArrowOutDownRight } from './circle-arrow-out-down-right';
|
|
354
|
-
export { default as CircleArrowOutUpLeft } from './circle-arrow-out-up-left';
|
|
355
354
|
export { default as CircleArrowOutUpRight } from './circle-arrow-out-up-right';
|
|
355
|
+
export { default as CircleArrowOutUpLeft } from './circle-arrow-out-up-left';
|
|
356
356
|
export { default as CircleArrowRight } from './circle-arrow-right';
|
|
357
357
|
export { default as CircleArrowUp } from './circle-arrow-up';
|
|
358
358
|
export { default as CircleCheckBig } from './circle-check-big';
|
|
@@ -397,21 +397,21 @@ export { default as Citrus } from './citrus';
|
|
|
397
397
|
export { default as Clapperboard } from './clapperboard';
|
|
398
398
|
export { default as ClipboardCheck } from './clipboard-check';
|
|
399
399
|
export { default as ClipboardClock } from './clipboard-clock';
|
|
400
|
-
export { default as ClipboardCopy } from './clipboard-copy';
|
|
401
400
|
export { default as ClipboardList } from './clipboard-list';
|
|
401
|
+
export { default as ClipboardCopy } from './clipboard-copy';
|
|
402
402
|
export { default as ClipboardMinus } from './clipboard-minus';
|
|
403
403
|
export { default as ClipboardPaste } from './clipboard-paste';
|
|
404
404
|
export { default as ClipboardPenLine } from './clipboard-pen-line';
|
|
405
405
|
export { default as ClipboardPen } from './clipboard-pen';
|
|
406
|
-
export { default as ClipboardPlus } from './clipboard-plus';
|
|
407
406
|
export { default as ClipboardType } from './clipboard-type';
|
|
407
|
+
export { default as ClipboardPlus } from './clipboard-plus';
|
|
408
408
|
export { default as ClipboardX } from './clipboard-x';
|
|
409
409
|
export { default as Clipboard } from './clipboard';
|
|
410
410
|
export { default as Clock1 } from './clock-1';
|
|
411
411
|
export { default as Clock10 } from './clock-10';
|
|
412
412
|
export { default as Clock11 } from './clock-11';
|
|
413
|
-
export { default as Clock12 } from './clock-12';
|
|
414
413
|
export { default as Clock2 } from './clock-2';
|
|
414
|
+
export { default as Clock12 } from './clock-12';
|
|
415
415
|
export { default as Clock3 } from './clock-3';
|
|
416
416
|
export { default as Clock4 } from './clock-4';
|
|
417
417
|
export { default as Clock5 } from './clock-5';
|
|
@@ -422,8 +422,8 @@ export { default as ClockAlert } from './clock-alert';
|
|
|
422
422
|
export { default as Clock9 } from './clock-9';
|
|
423
423
|
export { default as ClockArrowDown } from './clock-arrow-down';
|
|
424
424
|
export { default as ClockArrowUp } from './clock-arrow-up';
|
|
425
|
-
export { default as ClockFading } from './clock-fading';
|
|
426
425
|
export { default as ClockCheck } from './clock-check';
|
|
426
|
+
export { default as ClockFading } from './clock-fading';
|
|
427
427
|
export { default as ClockPlus } from './clock-plus';
|
|
428
428
|
export { default as Clock } from './clock';
|
|
429
429
|
export { default as ClosedCaption } from './closed-caption';
|
|
@@ -475,14 +475,14 @@ export { default as Container } from './container';
|
|
|
475
475
|
export { default as Contrast } from './contrast';
|
|
476
476
|
export { default as Cookie } from './cookie';
|
|
477
477
|
export { default as CookingPot } from './cooking-pot';
|
|
478
|
-
export { default as CopyCheck } from './copy-check';
|
|
479
478
|
export { default as CopyMinus } from './copy-minus';
|
|
479
|
+
export { default as CopyCheck } from './copy-check';
|
|
480
480
|
export { default as CopyPlus } from './copy-plus';
|
|
481
481
|
export { default as CopySlash } from './copy-slash';
|
|
482
482
|
export { default as CopyX } from './copy-x';
|
|
483
483
|
export { default as Copy } from './copy';
|
|
484
|
-
export { default as Copyleft } from './copyleft';
|
|
485
484
|
export { default as Copyright } from './copyright';
|
|
485
|
+
export { default as Copyleft } from './copyleft';
|
|
486
486
|
export { default as CornerDownLeft } from './corner-down-left';
|
|
487
487
|
export { default as CornerDownRight } from './corner-down-right';
|
|
488
488
|
export { default as CornerLeftDown } from './corner-left-down';
|
|
@@ -509,8 +509,8 @@ export { default as DatabaseZap } from './database-zap';
|
|
|
509
509
|
export { default as Database } from './database';
|
|
510
510
|
export { default as DecimalsArrowLeft } from './decimals-arrow-left';
|
|
511
511
|
export { default as DecimalsArrowRight } from './decimals-arrow-right';
|
|
512
|
-
export { default as Delete } from './delete';
|
|
513
512
|
export { default as Dessert } from './dessert';
|
|
513
|
+
export { default as Delete } from './delete';
|
|
514
514
|
export { default as Diameter } from './diameter';
|
|
515
515
|
export { default as DiamondMinus } from './diamond-minus';
|
|
516
516
|
export { default as DiamondPercent } from './diamond-percent';
|
|
@@ -524,8 +524,8 @@ export { default as Dice5 } from './dice-5';
|
|
|
524
524
|
export { default as Dice6 } from './dice-6';
|
|
525
525
|
export { default as Dices } from './dices';
|
|
526
526
|
export { default as Diff } from './diff';
|
|
527
|
-
export { default as Disc2 } from './disc-2';
|
|
528
527
|
export { default as Disc3 } from './disc-3';
|
|
528
|
+
export { default as Disc2 } from './disc-2';
|
|
529
529
|
export { default as DiscAlbum } from './disc-album';
|
|
530
530
|
export { default as Disc } from './disc';
|
|
531
531
|
export { default as Divide } from './divide';
|
|
@@ -547,8 +547,8 @@ export { default as Drill } from './drill';
|
|
|
547
547
|
export { default as Drone } from './drone';
|
|
548
548
|
export { default as DropletOff } from './droplet-off';
|
|
549
549
|
export { default as Droplet } from './droplet';
|
|
550
|
-
export { default as Droplets } from './droplets';
|
|
551
550
|
export { default as Drum } from './drum';
|
|
551
|
+
export { default as Droplets } from './droplets';
|
|
552
552
|
export { default as Drumstick } from './drumstick';
|
|
553
553
|
export { default as Dumbbell } from './dumbbell';
|
|
554
554
|
export { default as EarOff } from './ear-off';
|
|
@@ -614,8 +614,8 @@ export { default as FileOutput } from './file-output';
|
|
|
614
614
|
export { default as FilePenLine } from './file-pen-line';
|
|
615
615
|
export { default as FilePen } from './file-pen';
|
|
616
616
|
export { default as FilePlay } from './file-play';
|
|
617
|
-
export { default as FilePlusCorner } from './file-plus-corner';
|
|
618
617
|
export { default as FilePlus } from './file-plus';
|
|
618
|
+
export { default as FilePlusCorner } from './file-plus-corner';
|
|
619
619
|
export { default as FileQuestionMark } from './file-question-mark';
|
|
620
620
|
export { default as FileScan } from './file-scan';
|
|
621
621
|
export { default as FileSearchCorner } from './file-search-corner';
|
|
@@ -626,8 +626,8 @@ export { default as FileSpreadsheet } from './file-spreadsheet';
|
|
|
626
626
|
export { default as FileStack } from './file-stack';
|
|
627
627
|
export { default as FileSymlink } from './file-symlink';
|
|
628
628
|
export { default as FileTerminal } from './file-terminal';
|
|
629
|
-
export { default as FileText } from './file-text';
|
|
630
629
|
export { default as FileTypeCorner } from './file-type-corner';
|
|
630
|
+
export { default as FileText } from './file-text';
|
|
631
631
|
export { default as FileType } from './file-type';
|
|
632
632
|
export { default as FileUp } from './file-up';
|
|
633
633
|
export { default as FileUser } from './file-user';
|
|
@@ -649,8 +649,8 @@ export { default as FlagTriangleLeft } from './flag-triangle-left';
|
|
|
649
649
|
export { default as FlagTriangleRight } from './flag-triangle-right';
|
|
650
650
|
export { default as Flag } from './flag';
|
|
651
651
|
export { default as FlameKindling } from './flame-kindling';
|
|
652
|
-
export { default as Flame } from './flame';
|
|
653
652
|
export { default as FlashlightOff } from './flashlight-off';
|
|
653
|
+
export { default as Flame } from './flame';
|
|
654
654
|
export { default as Flashlight } from './flashlight';
|
|
655
655
|
export { default as FlaskConicalOff } from './flask-conical-off';
|
|
656
656
|
export { default as FlaskConical } from './flask-conical';
|
|
@@ -668,12 +668,12 @@ export { default as FolderArchive } from './folder-archive';
|
|
|
668
668
|
export { default as FolderCheck } from './folder-check';
|
|
669
669
|
export { default as FolderClock } from './folder-clock';
|
|
670
670
|
export { default as FolderClosed } from './folder-closed';
|
|
671
|
-
export { default as FolderCode } from './folder-code';
|
|
672
671
|
export { default as FolderCog } from './folder-cog';
|
|
672
|
+
export { default as FolderCode } from './folder-code';
|
|
673
673
|
export { default as FolderDot } from './folder-dot';
|
|
674
674
|
export { default as FolderDown } from './folder-down';
|
|
675
|
-
export { default as FolderGit2 } from './folder-git-2';
|
|
676
675
|
export { default as FolderGit } from './folder-git';
|
|
676
|
+
export { default as FolderGit2 } from './folder-git-2';
|
|
677
677
|
export { default as FolderHeart } from './folder-heart';
|
|
678
678
|
export { default as FolderInput } from './folder-input';
|
|
679
679
|
export { default as FolderKanban } from './folder-kanban';
|
|
@@ -730,8 +730,8 @@ export { default as GitCompareArrows } from './git-compare-arrows';
|
|
|
730
730
|
export { default as GitCompare } from './git-compare';
|
|
731
731
|
export { default as GitFork } from './git-fork';
|
|
732
732
|
export { default as GitGraph } from './git-graph';
|
|
733
|
-
export { default as GitPullRequestArrow } from './git-pull-request-arrow';
|
|
734
733
|
export { default as GitMerge } from './git-merge';
|
|
734
|
+
export { default as GitPullRequestArrow } from './git-pull-request-arrow';
|
|
735
735
|
export { default as GitPullRequestClosed } from './git-pull-request-closed';
|
|
736
736
|
export { default as GitPullRequestCreateArrow } from './git-pull-request-create-arrow';
|
|
737
737
|
export { default as GitPullRequestCreate } from './git-pull-request-create';
|
|
@@ -743,6 +743,7 @@ export { default as GlassWater } from './glass-water';
|
|
|
743
743
|
export { default as Glasses } from './glasses';
|
|
744
744
|
export { default as GlobeLock } from './globe-lock';
|
|
745
745
|
export { default as Globe } from './globe';
|
|
746
|
+
export { default as GlobeX } from './globe-x';
|
|
746
747
|
export { default as Goal } from './goal';
|
|
747
748
|
export { default as Gpu } from './gpu';
|
|
748
749
|
export { default as GraduationCap } from './graduation-cap';
|
|
@@ -765,8 +766,8 @@ export { default as HandCoins } from './hand-coins';
|
|
|
765
766
|
export { default as HandFist } from './hand-fist';
|
|
766
767
|
export { default as HandGrab } from './hand-grab';
|
|
767
768
|
export { default as HandHelping } from './hand-helping';
|
|
768
|
-
export { default as HandMetal } from './hand-metal';
|
|
769
769
|
export { default as HandHeart } from './hand-heart';
|
|
770
|
+
export { default as HandMetal } from './hand-metal';
|
|
770
771
|
export { default as HandPlatter } from './hand-platter';
|
|
771
772
|
export { default as Hand } from './hand';
|
|
772
773
|
export { default as Handbag } from './handbag';
|
|
@@ -794,27 +795,27 @@ export { default as HeartCrack } from './heart-crack';
|
|
|
794
795
|
export { default as HeartHandshake } from './heart-handshake';
|
|
795
796
|
export { default as HeartMinus } from './heart-minus';
|
|
796
797
|
export { default as HeartOff } from './heart-off';
|
|
797
|
-
export { default as HeartPlus } from './heart-plus';
|
|
798
798
|
export { default as HeartPulse } from './heart-pulse';
|
|
799
|
+
export { default as HeartPlus } from './heart-plus';
|
|
799
800
|
export { default as Heart } from './heart';
|
|
800
801
|
export { default as Heater } from './heater';
|
|
801
802
|
export { default as Helicopter } from './helicopter';
|
|
802
803
|
export { default as Hexagon } from './hexagon';
|
|
803
804
|
export { default as Highlighter } from './highlighter';
|
|
804
805
|
export { default as History } from './history';
|
|
805
|
-
export { default as Hop } from './hop';
|
|
806
806
|
export { default as HopOff } from './hop-off';
|
|
807
|
+
export { default as Hop } from './hop';
|
|
807
808
|
export { default as Hospital } from './hospital';
|
|
808
809
|
export { default as Hotel } from './hotel';
|
|
809
810
|
export { default as Hourglass } from './hourglass';
|
|
810
811
|
export { default as HouseHeart } from './house-heart';
|
|
811
812
|
export { default as HousePlug } from './house-plug';
|
|
812
813
|
export { default as HousePlus } from './house-plus';
|
|
813
|
-
export { default as HouseWifi } from './house-wifi';
|
|
814
814
|
export { default as House } from './house';
|
|
815
815
|
export { default as IceCreamBowl } from './ice-cream-bowl';
|
|
816
|
-
export { default as
|
|
816
|
+
export { default as HouseWifi } from './house-wifi';
|
|
817
817
|
export { default as IceCreamCone } from './ice-cream-cone';
|
|
818
|
+
export { default as IdCardLanyard } from './id-card-lanyard';
|
|
818
819
|
export { default as IdCard } from './id-card';
|
|
819
820
|
export { default as ImageDown } from './image-down';
|
|
820
821
|
export { default as ImageMinus } from './image-minus';
|
|
@@ -835,21 +836,21 @@ export { default as Instagram } from './instagram';
|
|
|
835
836
|
export { default as Italic } from './italic';
|
|
836
837
|
export { default as IterationCcw } from './iteration-ccw';
|
|
837
838
|
export { default as IterationCw } from './iteration-cw';
|
|
838
|
-
export { default as Joystick } from './joystick';
|
|
839
839
|
export { default as JapaneseYen } from './japanese-yen';
|
|
840
|
+
export { default as Joystick } from './joystick';
|
|
840
841
|
export { default as Kanban } from './kanban';
|
|
841
842
|
export { default as Kayak } from './kayak';
|
|
842
843
|
export { default as KeyRound } from './key-round';
|
|
843
844
|
export { default as KeySquare } from './key-square';
|
|
844
|
-
export { default as Key } from './key';
|
|
845
845
|
export { default as KeyboardMusic } from './keyboard-music';
|
|
846
|
+
export { default as Key } from './key';
|
|
846
847
|
export { default as KeyboardOff } from './keyboard-off';
|
|
847
848
|
export { default as Keyboard } from './keyboard';
|
|
848
849
|
export { default as LampCeiling } from './lamp-ceiling';
|
|
849
850
|
export { default as LampDesk } from './lamp-desk';
|
|
850
851
|
export { default as LampFloor } from './lamp-floor';
|
|
851
|
-
export { default as LampWallDown } from './lamp-wall-down';
|
|
852
852
|
export { default as LampWallUp } from './lamp-wall-up';
|
|
853
|
+
export { default as LampWallDown } from './lamp-wall-down';
|
|
853
854
|
export { default as Lamp } from './lamp';
|
|
854
855
|
export { default as LandPlot } from './land-plot';
|
|
855
856
|
export { default as Landmark } from './landmark';
|
|
@@ -871,8 +872,8 @@ export { default as LayoutPanelTop } from './layout-panel-top';
|
|
|
871
872
|
export { default as LayoutTemplate } from './layout-template';
|
|
872
873
|
export { default as Leaf } from './leaf';
|
|
873
874
|
export { default as LeafyGreen } from './leafy-green';
|
|
874
|
-
export { default as Lectern } from './lectern';
|
|
875
875
|
export { default as LibraryBig } from './library-big';
|
|
876
|
+
export { default as Lectern } from './lectern';
|
|
876
877
|
export { default as Library } from './library';
|
|
877
878
|
export { default as LifeBuoy } from './life-buoy';
|
|
878
879
|
export { default as Ligature } from './ligature';
|
|
@@ -885,11 +886,11 @@ export { default as Link } from './link';
|
|
|
885
886
|
export { default as Linkedin } from './linkedin';
|
|
886
887
|
export { default as ListCheck } from './list-check';
|
|
887
888
|
export { default as ListChecks } from './list-checks';
|
|
888
|
-
export { default as ListChevronsDownUp } from './list-chevrons-down-up';
|
|
889
889
|
export { default as ListChevronsUpDown } from './list-chevrons-up-down';
|
|
890
|
+
export { default as ListChevronsDownUp } from './list-chevrons-down-up';
|
|
890
891
|
export { default as ListCollapse } from './list-collapse';
|
|
891
|
-
export { default as ListFilterPlus } from './list-filter-plus';
|
|
892
892
|
export { default as ListEnd } from './list-end';
|
|
893
|
+
export { default as ListFilterPlus } from './list-filter-plus';
|
|
893
894
|
export { default as ListFilter } from './list-filter';
|
|
894
895
|
export { default as ListIndentDecrease } from './list-indent-decrease';
|
|
895
896
|
export { default as ListIndentIncrease } from './list-indent-increase';
|
|
@@ -903,26 +904,26 @@ export { default as ListTodo } from './list-todo';
|
|
|
903
904
|
export { default as ListTree } from './list-tree';
|
|
904
905
|
export { default as ListVideo } from './list-video';
|
|
905
906
|
export { default as ListX } from './list-x';
|
|
906
|
-
export { default as List } from './list';
|
|
907
907
|
export { default as LoaderCircle } from './loader-circle';
|
|
908
|
+
export { default as List } from './list';
|
|
908
909
|
export { default as LoaderPinwheel } from './loader-pinwheel';
|
|
909
910
|
export { default as Loader } from './loader';
|
|
910
911
|
export { default as LocateFixed } from './locate-fixed';
|
|
911
912
|
export { default as LocateOff } from './locate-off';
|
|
912
913
|
export { default as Locate } from './locate';
|
|
913
|
-
export { default as LockKeyhole } from './lock-keyhole';
|
|
914
914
|
export { default as LockKeyholeOpen } from './lock-keyhole-open';
|
|
915
|
-
export { default as
|
|
915
|
+
export { default as LockKeyhole } from './lock-keyhole';
|
|
916
916
|
export { default as LockOpen } from './lock-open';
|
|
917
|
+
export { default as Lock } from './lock';
|
|
917
918
|
export { default as LogIn } from './log-in';
|
|
918
919
|
export { default as LogOut } from './log-out';
|
|
919
920
|
export { default as Logs } from './logs';
|
|
920
921
|
export { default as Lollipop } from './lollipop';
|
|
921
922
|
export { default as Luggage } from './luggage';
|
|
922
923
|
export { default as Magnet } from './magnet';
|
|
923
|
-
export { default as MailCheck } from './mail-check';
|
|
924
924
|
export { default as MailMinus } from './mail-minus';
|
|
925
925
|
export { default as MailOpen } from './mail-open';
|
|
926
|
+
export { default as MailCheck } from './mail-check';
|
|
926
927
|
export { default as MailPlus } from './mail-plus';
|
|
927
928
|
export { default as MailQuestionMark } from './mail-question-mark';
|
|
928
929
|
export { default as MailSearch } from './mail-search';
|
|
@@ -936,9 +937,9 @@ export { default as MapPinCheckInside } from './map-pin-check-inside';
|
|
|
936
937
|
export { default as MapPinCheck } from './map-pin-check';
|
|
937
938
|
export { default as MapPinHouse } from './map-pin-house';
|
|
938
939
|
export { default as MapPinMinusInside } from './map-pin-minus-inside';
|
|
940
|
+
export { default as MapPinMinus } from './map-pin-minus';
|
|
939
941
|
export { default as MapPinOff } from './map-pin-off';
|
|
940
942
|
export { default as MapPinPen } from './map-pin-pen';
|
|
941
|
-
export { default as MapPinMinus } from './map-pin-minus';
|
|
942
943
|
export { default as MapPinPlusInside } from './map-pin-plus-inside';
|
|
943
944
|
export { default as MapPinPlus } from './map-pin-plus';
|
|
944
945
|
export { default as MapPinXInside } from './map-pin-x-inside';
|
|
@@ -946,10 +947,10 @@ export { default as MapPinX } from './map-pin-x';
|
|
|
946
947
|
export { default as MapPin } from './map-pin';
|
|
947
948
|
export { default as MapPinned } from './map-pinned';
|
|
948
949
|
export { default as MapPlus } from './map-plus';
|
|
949
|
-
export { default as Mars } from './mars';
|
|
950
950
|
export { default as Map } from './map';
|
|
951
|
-
export { default as Martini } from './martini';
|
|
952
951
|
export { default as MarsStroke } from './mars-stroke';
|
|
952
|
+
export { default as Mars } from './mars';
|
|
953
|
+
export { default as Martini } from './martini';
|
|
953
954
|
export { default as Maximize2 } from './maximize-2';
|
|
954
955
|
export { default as Maximize } from './maximize';
|
|
955
956
|
export { default as Medal } from './medal';
|
|
@@ -958,12 +959,12 @@ export { default as Megaphone } from './megaphone';
|
|
|
958
959
|
export { default as Meh } from './meh';
|
|
959
960
|
export { default as MemoryStick } from './memory-stick';
|
|
960
961
|
export { default as Menu } from './menu';
|
|
961
|
-
export { default as MessageCircleCode } from './message-circle-code';
|
|
962
962
|
export { default as Merge } from './merge';
|
|
963
|
+
export { default as MessageCircleCode } from './message-circle-code';
|
|
963
964
|
export { default as MessageCircleDashed } from './message-circle-dashed';
|
|
964
965
|
export { default as MessageCircleHeart } from './message-circle-heart';
|
|
965
|
-
export { default as MessageCircleMore } from './message-circle-more';
|
|
966
966
|
export { default as MessageCircleOff } from './message-circle-off';
|
|
967
|
+
export { default as MessageCircleMore } from './message-circle-more';
|
|
967
968
|
export { default as MessageCirclePlus } from './message-circle-plus';
|
|
968
969
|
export { default as MessageCircleQuestionMark } from './message-circle-question-mark';
|
|
969
970
|
export { default as MessageCircleReply } from './message-circle-reply';
|
|
@@ -1019,10 +1020,10 @@ export { default as Motorbike } from './motorbike';
|
|
|
1019
1020
|
export { default as MountainSnow } from './mountain-snow';
|
|
1020
1021
|
export { default as Mountain } from './mountain';
|
|
1021
1022
|
export { default as MouseOff } from './mouse-off';
|
|
1022
|
-
export { default as MousePointer2Off } from './mouse-pointer-2-off';
|
|
1023
1023
|
export { default as MousePointer2 } from './mouse-pointer-2';
|
|
1024
|
-
export { default as
|
|
1024
|
+
export { default as MousePointer2Off } from './mouse-pointer-2-off';
|
|
1025
1025
|
export { default as MousePointerClick } from './mouse-pointer-click';
|
|
1026
|
+
export { default as MousePointerBan } from './mouse-pointer-ban';
|
|
1026
1027
|
export { default as MousePointer } from './mouse-pointer';
|
|
1027
1028
|
export { default as Mouse } from './mouse';
|
|
1028
1029
|
export { default as Move3d } from './move-3d';
|
|
@@ -1055,8 +1056,8 @@ export { default as NotebookPen } from './notebook-pen';
|
|
|
1055
1056
|
export { default as NotebookTabs } from './notebook-tabs';
|
|
1056
1057
|
export { default as NotebookText } from './notebook-text';
|
|
1057
1058
|
export { default as Notebook } from './notebook';
|
|
1058
|
-
export { default as NotepadText } from './notepad-text';
|
|
1059
1059
|
export { default as NotepadTextDashed } from './notepad-text-dashed';
|
|
1060
|
+
export { default as NotepadText } from './notepad-text';
|
|
1060
1061
|
export { default as NutOff } from './nut-off';
|
|
1061
1062
|
export { default as Nut } from './nut';
|
|
1062
1063
|
export { default as OctagonAlert } from './octagon-alert';
|
|
@@ -1098,12 +1099,12 @@ export { default as PanelRight } from './panel-right';
|
|
|
1098
1099
|
export { default as PanelTopBottomDashed } from './panel-top-bottom-dashed';
|
|
1099
1100
|
export { default as PanelTopClose } from './panel-top-close';
|
|
1100
1101
|
export { default as PanelTopDashed } from './panel-top-dashed';
|
|
1101
|
-
export { default as PanelTopOpen } from './panel-top-open';
|
|
1102
1102
|
export { default as PanelTop } from './panel-top';
|
|
1103
|
+
export { default as PanelTopOpen } from './panel-top-open';
|
|
1103
1104
|
export { default as PanelsLeftBottom } from './panels-left-bottom';
|
|
1104
1105
|
export { default as PanelsRightBottom } from './panels-right-bottom';
|
|
1105
|
-
export { default as PanelsTopLeft } from './panels-top-left';
|
|
1106
1106
|
export { default as Paperclip } from './paperclip';
|
|
1107
|
+
export { default as PanelsTopLeft } from './panels-top-left';
|
|
1107
1108
|
export { default as Parentheses } from './parentheses';
|
|
1108
1109
|
export { default as ParkingMeter } from './parking-meter';
|
|
1109
1110
|
export { default as PartyPopper } from './party-popper';
|
|
@@ -1121,10 +1122,10 @@ export { default as Pencil } from './pencil';
|
|
|
1121
1122
|
export { default as Pentagon } from './pentagon';
|
|
1122
1123
|
export { default as Percent } from './percent';
|
|
1123
1124
|
export { default as PersonStanding } from './person-standing';
|
|
1124
|
-
export { default as PhilippinePeso } from './philippine-peso';
|
|
1125
1125
|
export { default as PhoneCall } from './phone-call';
|
|
1126
|
-
export { default as
|
|
1126
|
+
export { default as PhilippinePeso } from './philippine-peso';
|
|
1127
1127
|
export { default as PhoneIncoming } from './phone-incoming';
|
|
1128
|
+
export { default as PhoneForwarded } from './phone-forwarded';
|
|
1128
1129
|
export { default as PhoneMissed } from './phone-missed';
|
|
1129
1130
|
export { default as PhoneOff } from './phone-off';
|
|
1130
1131
|
export { default as PhoneOutgoing } from './phone-outgoing';
|
|
@@ -1149,21 +1150,22 @@ export { default as PlaneTakeoff } from './plane-takeoff';
|
|
|
1149
1150
|
export { default as Plane } from './plane';
|
|
1150
1151
|
export { default as Play } from './play';
|
|
1151
1152
|
export { default as Plug2 } from './plug-2';
|
|
1152
|
-
export { default as Plug } from './plug';
|
|
1153
1153
|
export { default as PlugZap } from './plug-zap';
|
|
1154
|
+
export { default as Plug } from './plug';
|
|
1154
1155
|
export { default as Plus } from './plus';
|
|
1155
|
-
export { default as Pocket } from './pocket';
|
|
1156
1156
|
export { default as PocketKnife } from './pocket-knife';
|
|
1157
|
+
export { default as Pocket } from './pocket';
|
|
1157
1158
|
export { default as Podcast } from './podcast';
|
|
1158
1159
|
export { default as PointerOff } from './pointer-off';
|
|
1159
1160
|
export { default as Pointer } from './pointer';
|
|
1160
1161
|
export { default as Popcorn } from './popcorn';
|
|
1161
1162
|
export { default as Popsicle } from './popsicle';
|
|
1162
|
-
export { default as PowerOff } from './power-off';
|
|
1163
1163
|
export { default as PoundSterling } from './pound-sterling';
|
|
1164
1164
|
export { default as Power } from './power';
|
|
1165
|
+
export { default as PowerOff } from './power-off';
|
|
1165
1166
|
export { default as Presentation } from './presentation';
|
|
1166
1167
|
export { default as PrinterCheck } from './printer-check';
|
|
1168
|
+
export { default as PrinterX } from './printer-x';
|
|
1167
1169
|
export { default as Printer } from './printer';
|
|
1168
1170
|
export { default as Projector } from './projector';
|
|
1169
1171
|
export { default as Proportions } from './proportions';
|
|
@@ -1177,8 +1179,8 @@ export { default as Radiation } from './radiation';
|
|
|
1177
1179
|
export { default as Radical } from './radical';
|
|
1178
1180
|
export { default as RadioReceiver } from './radio-receiver';
|
|
1179
1181
|
export { default as RadioTower } from './radio-tower';
|
|
1180
|
-
export { default as Radio } from './radio';
|
|
1181
1182
|
export { default as Radius } from './radius';
|
|
1183
|
+
export { default as Radio } from './radio';
|
|
1182
1184
|
export { default as RailSymbol } from './rail-symbol';
|
|
1183
1185
|
export { default as Rainbow } from './rainbow';
|
|
1184
1186
|
export { default as Rat } from './rat';
|
|
@@ -1215,24 +1217,24 @@ export { default as Repeat } from './repeat';
|
|
|
1215
1217
|
export { default as ReplaceAll } from './replace-all';
|
|
1216
1218
|
export { default as Replace } from './replace';
|
|
1217
1219
|
export { default as ReplyAll } from './reply-all';
|
|
1218
|
-
export { default as Reply } from './reply';
|
|
1219
1220
|
export { default as Rewind } from './rewind';
|
|
1221
|
+
export { default as Reply } from './reply';
|
|
1220
1222
|
export { default as Ribbon } from './ribbon';
|
|
1221
1223
|
export { default as Rocket } from './rocket';
|
|
1222
1224
|
export { default as RockingChair } from './rocking-chair';
|
|
1223
1225
|
export { default as RollerCoaster } from './roller-coaster';
|
|
1224
1226
|
export { default as Rose } from './rose';
|
|
1227
|
+
export { default as RotateCcwKey } from './rotate-ccw-key';
|
|
1225
1228
|
export { default as Rotate3d } from './rotate-3d';
|
|
1226
1229
|
export { default as RotateCcwSquare } from './rotate-ccw-square';
|
|
1227
|
-
export { default as RotateCcwKey } from './rotate-ccw-key';
|
|
1228
1230
|
export { default as RotateCcw } from './rotate-ccw';
|
|
1229
1231
|
export { default as RotateCwSquare } from './rotate-cw-square';
|
|
1230
1232
|
export { default as RotateCw } from './rotate-cw';
|
|
1231
1233
|
export { default as RouteOff } from './route-off';
|
|
1232
1234
|
export { default as Route } from './route';
|
|
1235
|
+
export { default as Router } from './router';
|
|
1233
1236
|
export { default as Rows2 } from './rows-2';
|
|
1234
1237
|
export { default as Rows3 } from './rows-3';
|
|
1235
|
-
export { default as Router } from './router';
|
|
1236
1238
|
export { default as Rows4 } from './rows-4';
|
|
1237
1239
|
export { default as Rss } from './rss';
|
|
1238
1240
|
export { default as RulerDimensionLine } from './ruler-dimension-line';
|
|
@@ -1263,8 +1265,8 @@ export { default as School } from './school';
|
|
|
1263
1265
|
export { default as ScissorsLineDashed } from './scissors-line-dashed';
|
|
1264
1266
|
export { default as Scissors } from './scissors';
|
|
1265
1267
|
export { default as Scooter } from './scooter';
|
|
1266
|
-
export { default as ScreenShare } from './screen-share';
|
|
1267
1268
|
export { default as ScreenShareOff } from './screen-share-off';
|
|
1269
|
+
export { default as ScreenShare } from './screen-share';
|
|
1268
1270
|
export { default as ScrollText } from './scroll-text';
|
|
1269
1271
|
export { default as Scroll } from './scroll';
|
|
1270
1272
|
export { default as SearchAlert } from './search-alert';
|
|
@@ -1276,8 +1278,8 @@ export { default as Search } from './search';
|
|
|
1276
1278
|
export { default as Section } from './section';
|
|
1277
1279
|
export { default as SendHorizontal } from './send-horizontal';
|
|
1278
1280
|
export { default as SendToBack } from './send-to-back';
|
|
1279
|
-
export { default as SeparatorHorizontal } from './separator-horizontal';
|
|
1280
1281
|
export { default as Send } from './send';
|
|
1282
|
+
export { default as SeparatorHorizontal } from './separator-horizontal';
|
|
1281
1283
|
export { default as SeparatorVertical } from './separator-vertical';
|
|
1282
1284
|
export { default as ServerCog } from './server-cog';
|
|
1283
1285
|
export { default as ServerCrash } from './server-crash';
|
|
@@ -1294,8 +1296,8 @@ export { default as ShieldAlert } from './shield-alert';
|
|
|
1294
1296
|
export { default as ShieldBan } from './shield-ban';
|
|
1295
1297
|
export { default as ShieldCheck } from './shield-check';
|
|
1296
1298
|
export { default as ShieldEllipsis } from './shield-ellipsis';
|
|
1297
|
-
export { default as ShieldHalf } from './shield-half';
|
|
1298
1299
|
export { default as ShieldMinus } from './shield-minus';
|
|
1300
|
+
export { default as ShieldHalf } from './shield-half';
|
|
1299
1301
|
export { default as ShieldOff } from './shield-off';
|
|
1300
1302
|
export { default as ShieldPlus } from './shield-plus';
|
|
1301
1303
|
export { default as ShieldQuestionMark } from './shield-question-mark';
|
|
@@ -1309,8 +1311,8 @@ export { default as ShoppingBag } from './shopping-bag';
|
|
|
1309
1311
|
export { default as ShoppingBasket } from './shopping-basket';
|
|
1310
1312
|
export { default as ShoppingCart } from './shopping-cart';
|
|
1311
1313
|
export { default as Shovel } from './shovel';
|
|
1312
|
-
export { default as ShowerHead } from './shower-head';
|
|
1313
1314
|
export { default as Shredder } from './shredder';
|
|
1315
|
+
export { default as ShowerHead } from './shower-head';
|
|
1314
1316
|
export { default as Shrimp } from './shrimp';
|
|
1315
1317
|
export { default as Shrink } from './shrink';
|
|
1316
1318
|
export { default as Shrub } from './shrub';
|
|
@@ -1358,21 +1360,21 @@ export { default as Split } from './split';
|
|
|
1358
1360
|
export { default as Spool } from './spool';
|
|
1359
1361
|
export { default as Spotlight } from './spotlight';
|
|
1360
1362
|
export { default as SprayCan } from './spray-can';
|
|
1361
|
-
export { default as SquareActivity } from './square-activity';
|
|
1362
1363
|
export { default as Sprout } from './sprout';
|
|
1364
|
+
export { default as SquareActivity } from './square-activity';
|
|
1363
1365
|
export { default as SquareArrowDownLeft } from './square-arrow-down-left';
|
|
1364
|
-
export { default as SquareArrowDownRight } from './square-arrow-down-right';
|
|
1365
1366
|
export { default as SquareArrowDown } from './square-arrow-down';
|
|
1367
|
+
export { default as SquareArrowDownRight } from './square-arrow-down-right';
|
|
1366
1368
|
export { default as SquareArrowLeft } from './square-arrow-left';
|
|
1367
1369
|
export { default as SquareArrowOutDownLeft } from './square-arrow-out-down-left';
|
|
1368
1370
|
export { default as SquareArrowOutDownRight } from './square-arrow-out-down-right';
|
|
1369
|
-
export { default as SquareArrowOutUpLeft } from './square-arrow-out-up-left';
|
|
1370
1371
|
export { default as SquareArrowOutUpRight } from './square-arrow-out-up-right';
|
|
1372
|
+
export { default as SquareArrowOutUpLeft } from './square-arrow-out-up-left';
|
|
1371
1373
|
export { default as SquareArrowRight } from './square-arrow-right';
|
|
1372
1374
|
export { default as SquareArrowUpLeft } from './square-arrow-up-left';
|
|
1373
1375
|
export { default as SquareArrowUpRight } from './square-arrow-up-right';
|
|
1374
|
-
export { default as SquareArrowUp } from './square-arrow-up';
|
|
1375
1376
|
export { default as SquareAsterisk } from './square-asterisk';
|
|
1377
|
+
export { default as SquareArrowUp } from './square-arrow-up';
|
|
1376
1378
|
export { default as SquareBottomDashedScissors } from './square-bottom-dashed-scissors';
|
|
1377
1379
|
export { default as SquareChartGantt } from './square-chart-gantt';
|
|
1378
1380
|
export { default as SquareCheckBig } from './square-check-big';
|
|
@@ -1418,16 +1420,16 @@ export { default as SquareSplitVertical } from './square-split-vertical';
|
|
|
1418
1420
|
export { default as SquareSquare } from './square-square';
|
|
1419
1421
|
export { default as SquareStack } from './square-stack';
|
|
1420
1422
|
export { default as SquareStar } from './square-star';
|
|
1421
|
-
export { default as SquareTerminal } from './square-terminal';
|
|
1422
1423
|
export { default as SquareStop } from './square-stop';
|
|
1423
|
-
export { default as
|
|
1424
|
+
export { default as SquareTerminal } from './square-terminal';
|
|
1424
1425
|
export { default as SquareUserRound } from './square-user-round';
|
|
1426
|
+
export { default as SquareUser } from './square-user';
|
|
1425
1427
|
export { default as SquareX } from './square-x';
|
|
1426
1428
|
export { default as Square } from './square';
|
|
1427
|
-
export { default as SquaresExclude } from './squares-exclude';
|
|
1428
1429
|
export { default as SquaresIntersect } from './squares-intersect';
|
|
1429
|
-
export { default as
|
|
1430
|
+
export { default as SquaresExclude } from './squares-exclude';
|
|
1430
1431
|
export { default as SquaresSubtract } from './squares-subtract';
|
|
1432
|
+
export { default as SquaresUnite } from './squares-unite';
|
|
1431
1433
|
export { default as SquircleDashed } from './squircle-dashed';
|
|
1432
1434
|
export { default as Squircle } from './squircle';
|
|
1433
1435
|
export { default as Squirrel } from './squirrel';
|
|
@@ -1444,8 +1446,8 @@ export { default as Stone } from './stone';
|
|
|
1444
1446
|
export { default as Store } from './store';
|
|
1445
1447
|
export { default as StretchHorizontal } from './stretch-horizontal';
|
|
1446
1448
|
export { default as StretchVertical } from './stretch-vertical';
|
|
1447
|
-
export { default as Strikethrough } from './strikethrough';
|
|
1448
1449
|
export { default as Subscript } from './subscript';
|
|
1450
|
+
export { default as Strikethrough } from './strikethrough';
|
|
1449
1451
|
export { default as SunDim } from './sun-dim';
|
|
1450
1452
|
export { default as SunMedium } from './sun-medium';
|
|
1451
1453
|
export { default as SunMoon } from './sun-moon';
|
|
@@ -1456,8 +1458,8 @@ export { default as Sunset } from './sunset';
|
|
|
1456
1458
|
export { default as Superscript } from './superscript';
|
|
1457
1459
|
export { default as SwatchBook } from './swatch-book';
|
|
1458
1460
|
export { default as SwissFranc } from './swiss-franc';
|
|
1459
|
-
export { default as SwitchCamera } from './switch-camera';
|
|
1460
1461
|
export { default as Sword } from './sword';
|
|
1462
|
+
export { default as SwitchCamera } from './switch-camera';
|
|
1461
1463
|
export { default as Swords } from './swords';
|
|
1462
1464
|
export { default as Syringe } from './syringe';
|
|
1463
1465
|
export { default as Table2 } from './table-2';
|
|
@@ -1465,8 +1467,8 @@ export { default as TableCellsMerge } from './table-cells-merge';
|
|
|
1465
1467
|
export { default as TableCellsSplit } from './table-cells-split';
|
|
1466
1468
|
export { default as TableColumnsSplit } from './table-columns-split';
|
|
1467
1469
|
export { default as TableOfContents } from './table-of-contents';
|
|
1468
|
-
export { default as TableRowsSplit } from './table-rows-split';
|
|
1469
1470
|
export { default as TableProperties } from './table-properties';
|
|
1471
|
+
export { default as TableRowsSplit } from './table-rows-split';
|
|
1470
1472
|
export { default as Table } from './table';
|
|
1471
1473
|
export { default as TabletSmartphone } from './tablet-smartphone';
|
|
1472
1474
|
export { default as Tablet } from './tablet';
|
|
@@ -1482,8 +1484,8 @@ export { default as Tangent } from './tangent';
|
|
|
1482
1484
|
export { default as Target } from './target';
|
|
1483
1485
|
export { default as Telescope } from './telescope';
|
|
1484
1486
|
export { default as TentTree } from './tent-tree';
|
|
1485
|
-
export { default as Tent } from './tent';
|
|
1486
1487
|
export { default as Terminal } from './terminal';
|
|
1488
|
+
export { default as Tent } from './tent';
|
|
1487
1489
|
export { default as TestTubeDiagonal } from './test-tube-diagonal';
|
|
1488
1490
|
export { default as TestTube } from './test-tube';
|
|
1489
1491
|
export { default as TestTubes } from './test-tubes';
|
|
@@ -1503,8 +1505,8 @@ export { default as ThermometerSnowflake } from './thermometer-snowflake';
|
|
|
1503
1505
|
export { default as ThermometerSun } from './thermometer-sun';
|
|
1504
1506
|
export { default as Thermometer } from './thermometer';
|
|
1505
1507
|
export { default as ThumbsDown } from './thumbs-down';
|
|
1506
|
-
export { default as TicketCheck } from './ticket-check';
|
|
1507
1508
|
export { default as ThumbsUp } from './thumbs-up';
|
|
1509
|
+
export { default as TicketCheck } from './ticket-check';
|
|
1508
1510
|
export { default as TicketMinus } from './ticket-minus';
|
|
1509
1511
|
export { default as TicketPercent } from './ticket-percent';
|
|
1510
1512
|
export { default as TicketPlus } from './ticket-plus';
|
|
@@ -1520,6 +1522,7 @@ export { default as ToggleLeft } from './toggle-left';
|
|
|
1520
1522
|
export { default as ToggleRight } from './toggle-right';
|
|
1521
1523
|
export { default as Toilet } from './toilet';
|
|
1522
1524
|
export { default as ToolCase } from './tool-case';
|
|
1525
|
+
export { default as Toolbox } from './toolbox';
|
|
1523
1526
|
export { default as Tornado } from './tornado';
|
|
1524
1527
|
export { default as Torus } from './torus';
|
|
1525
1528
|
export { default as TouchpadOff } from './touchpad-off';
|
|
@@ -1554,8 +1557,8 @@ export { default as TurkishLira } from './turkish-lira';
|
|
|
1554
1557
|
export { default as Turntable } from './turntable';
|
|
1555
1558
|
export { default as Turtle } from './turtle';
|
|
1556
1559
|
export { default as TvMinimalPlay } from './tv-minimal-play';
|
|
1557
|
-
export { default as Tv } from './tv';
|
|
1558
1560
|
export { default as TvMinimal } from './tv-minimal';
|
|
1561
|
+
export { default as Tv } from './tv';
|
|
1559
1562
|
export { default as Twitch } from './twitch';
|
|
1560
1563
|
export { default as Twitter } from './twitter';
|
|
1561
1564
|
export { default as TypeOutline } from './type-outline';
|
|
@@ -1566,13 +1569,13 @@ export { default as Underline } from './underline';
|
|
|
1566
1569
|
export { default as Undo2 } from './undo-2';
|
|
1567
1570
|
export { default as UndoDot } from './undo-dot';
|
|
1568
1571
|
export { default as Undo } from './undo';
|
|
1569
|
-
export { default as UnfoldHorizontal } from './unfold-horizontal';
|
|
1570
1572
|
export { default as UnfoldVertical } from './unfold-vertical';
|
|
1573
|
+
export { default as UnfoldHorizontal } from './unfold-horizontal';
|
|
1571
1574
|
export { default as Ungroup } from './ungroup';
|
|
1572
1575
|
export { default as University } from './university';
|
|
1576
|
+
export { default as Unlink2 } from './unlink-2';
|
|
1573
1577
|
export { default as Unlink } from './unlink';
|
|
1574
1578
|
export { default as Unplug } from './unplug';
|
|
1575
|
-
export { default as Unlink2 } from './unlink-2';
|
|
1576
1579
|
export { default as Upload } from './upload';
|
|
1577
1580
|
export { default as Usb } from './usb';
|
|
1578
1581
|
export { default as UserCheck } from './user-check';
|
|
@@ -1583,33 +1586,33 @@ export { default as UserPen } from './user-pen';
|
|
|
1583
1586
|
export { default as UserPlus } from './user-plus';
|
|
1584
1587
|
export { default as UserRoundCheck } from './user-round-check';
|
|
1585
1588
|
export { default as UserRoundCog } from './user-round-cog';
|
|
1586
|
-
export { default as UserRoundMinus } from './user-round-minus';
|
|
1587
1589
|
export { default as UserRoundPen } from './user-round-pen';
|
|
1588
|
-
export { default as
|
|
1590
|
+
export { default as UserRoundMinus } from './user-round-minus';
|
|
1589
1591
|
export { default as UserRoundSearch } from './user-round-search';
|
|
1592
|
+
export { default as UserRoundPlus } from './user-round-plus';
|
|
1590
1593
|
export { default as UserRoundX } from './user-round-x';
|
|
1591
1594
|
export { default as UserRound } from './user-round';
|
|
1592
1595
|
export { default as UserSearch } from './user-search';
|
|
1593
1596
|
export { default as UserStar } from './user-star';
|
|
1594
|
-
export { default as UserX } from './user-x';
|
|
1595
1597
|
export { default as User } from './user';
|
|
1598
|
+
export { default as UserX } from './user-x';
|
|
1596
1599
|
export { default as UsersRound } from './users-round';
|
|
1597
1600
|
export { default as Users } from './users';
|
|
1598
1601
|
export { default as UtensilsCrossed } from './utensils-crossed';
|
|
1599
1602
|
export { default as Utensils } from './utensils';
|
|
1600
|
-
export { default as UtilityPole } from './utility-pole';
|
|
1601
1603
|
export { default as Van } from './van';
|
|
1604
|
+
export { default as UtilityPole } from './utility-pole';
|
|
1602
1605
|
export { default as Variable } from './variable';
|
|
1603
1606
|
export { default as Vault } from './vault';
|
|
1604
|
-
export { default as VectorSquare } from './vector-square';
|
|
1605
1607
|
export { default as Vegan } from './vegan';
|
|
1606
|
-
export { default as
|
|
1608
|
+
export { default as VectorSquare } from './vector-square';
|
|
1607
1609
|
export { default as VenetianMask } from './venetian-mask';
|
|
1610
|
+
export { default as VenusAndMars } from './venus-and-mars';
|
|
1608
1611
|
export { default as Venus } from './venus';
|
|
1609
1612
|
export { default as VibrateOff } from './vibrate-off';
|
|
1610
|
-
export { default as Vibrate } from './vibrate';
|
|
1611
1613
|
export { default as VideoOff } from './video-off';
|
|
1612
1614
|
export { default as Video } from './video';
|
|
1615
|
+
export { default as Vibrate } from './vibrate';
|
|
1613
1616
|
export { default as Videotape } from './videotape';
|
|
1614
1617
|
export { default as View } from './view';
|
|
1615
1618
|
export { default as Voicemail } from './voicemail';
|
|
@@ -1626,8 +1629,8 @@ export { default as Wallet } from './wallet';
|
|
|
1626
1629
|
export { default as Wallpaper } from './wallpaper';
|
|
1627
1630
|
export { default as WandSparkles } from './wand-sparkles';
|
|
1628
1631
|
export { default as Wand } from './wand';
|
|
1629
|
-
export { default as WashingMachine } from './washing-machine';
|
|
1630
1632
|
export { default as Warehouse } from './warehouse';
|
|
1633
|
+
export { default as WashingMachine } from './washing-machine';
|
|
1631
1634
|
export { default as Watch } from './watch';
|
|
1632
1635
|
export { default as WavesArrowDown } from './waves-arrow-down';
|
|
1633
1636
|
export { default as WavesArrowUp } from './waves-arrow-up';
|