@lucide/astro 1.38.0 → 1.40.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/package.json +1 -1
- package/src/aliases/aliases.ts +116 -116
- package/src/aliases/prefixed.ts +696 -680
- package/src/aliases/suffixed.ts +994 -978
- package/src/icons/bridge.ts +18 -0
- package/src/icons/can.ts +18 -0
- package/src/icons/index.ts +206 -198
- package/src/icons/lighthouse.ts +18 -0
- package/src/icons/mail-pen.ts +18 -0
- package/src/icons/shopping-cart-minus.ts +18 -0
- package/src/icons/shopping-cart-plus.ts +18 -0
- package/src/icons/shrimp-off.ts +18 -0
- package/src/icons/shrimp.ts +2 -2
- package/src/icons/whistle.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -41,12 +41,6 @@ export {
|
|
|
41
41
|
default as ArrowUpAz
|
|
42
42
|
} from '../icons/arrow-up-a-z';
|
|
43
43
|
|
|
44
|
-
// ArrowUpNarrowWide aliases
|
|
45
|
-
export {
|
|
46
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
47
|
-
default as SortAsc
|
|
48
|
-
} from '../icons/arrow-up-narrow-wide';
|
|
49
|
-
|
|
50
44
|
// ArrowUpZA aliases
|
|
51
45
|
export {
|
|
52
46
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. */
|
|
@@ -59,6 +53,12 @@ export {
|
|
|
59
53
|
default as Axis3D
|
|
60
54
|
} from '../icons/axis-3d';
|
|
61
55
|
|
|
56
|
+
// ArrowUpNarrowWide aliases
|
|
57
|
+
export {
|
|
58
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
59
|
+
default as SortAsc
|
|
60
|
+
} from '../icons/arrow-up-narrow-wide';
|
|
61
|
+
|
|
62
62
|
// BadgeCheck aliases
|
|
63
63
|
export {
|
|
64
64
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
@@ -83,12 +83,6 @@ export {
|
|
|
83
83
|
default as BetweenHorizonalStart
|
|
84
84
|
} from '../icons/between-horizontal-start';
|
|
85
85
|
|
|
86
|
-
// BookDashed aliases
|
|
87
|
-
export {
|
|
88
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
89
|
-
default as BookTemplate
|
|
90
|
-
} from '../icons/book-dashed';
|
|
91
|
-
|
|
92
86
|
// Braces aliases
|
|
93
87
|
export {
|
|
94
88
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. */
|
|
@@ -107,6 +101,12 @@ export {
|
|
|
107
101
|
default as AreaChart
|
|
108
102
|
} from '../icons/chart-area';
|
|
109
103
|
|
|
104
|
+
// BookDashed aliases
|
|
105
|
+
export {
|
|
106
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
107
|
+
default as BookTemplate
|
|
108
|
+
} from '../icons/book-dashed';
|
|
109
|
+
|
|
110
110
|
// ChartBarBig aliases
|
|
111
111
|
export {
|
|
112
112
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. */
|
|
@@ -221,23 +221,17 @@ export {
|
|
|
221
221
|
default as ArrowUpRightFromCircle
|
|
222
222
|
} from '../icons/circle-arrow-out-up-right';
|
|
223
223
|
|
|
224
|
-
// CircleArrowUp aliases
|
|
225
|
-
export {
|
|
226
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. */
|
|
227
|
-
default as ArrowUpCircle
|
|
228
|
-
} from '../icons/circle-arrow-up';
|
|
229
|
-
|
|
230
224
|
// CircleArrowRight aliases
|
|
231
225
|
export {
|
|
232
226
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
233
227
|
default as ArrowRightCircle
|
|
234
228
|
} from '../icons/circle-arrow-right';
|
|
235
229
|
|
|
236
|
-
//
|
|
230
|
+
// CircleArrowUp aliases
|
|
237
231
|
export {
|
|
238
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
239
|
-
default as
|
|
240
|
-
} from '../icons/circle-
|
|
232
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. */
|
|
233
|
+
default as ArrowUpCircle
|
|
234
|
+
} from '../icons/circle-arrow-up';
|
|
241
235
|
|
|
242
236
|
// CircleCheck aliases
|
|
243
237
|
export {
|
|
@@ -245,6 +239,12 @@ export {
|
|
|
245
239
|
default as CheckCircle2
|
|
246
240
|
} from '../icons/circle-check';
|
|
247
241
|
|
|
242
|
+
// CircleCheckBig aliases
|
|
243
|
+
export {
|
|
244
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. */
|
|
245
|
+
default as CheckCircle
|
|
246
|
+
} from '../icons/circle-check-big';
|
|
247
|
+
|
|
248
248
|
// CircleChevronDown aliases
|
|
249
249
|
export {
|
|
250
250
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
@@ -347,18 +347,18 @@ export {
|
|
|
347
347
|
default as CircleSlashed
|
|
348
348
|
} from '../icons/circle-slash-2';
|
|
349
349
|
|
|
350
|
-
// CircleStop aliases
|
|
351
|
-
export {
|
|
352
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. */
|
|
353
|
-
default as StopCircle
|
|
354
|
-
} from '../icons/circle-stop';
|
|
355
|
-
|
|
356
350
|
// CircleUserRound aliases
|
|
357
351
|
export {
|
|
358
352
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. */
|
|
359
353
|
default as UserCircle2
|
|
360
354
|
} from '../icons/circle-user-round';
|
|
361
355
|
|
|
356
|
+
// CircleStop aliases
|
|
357
|
+
export {
|
|
358
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. */
|
|
359
|
+
default as StopCircle
|
|
360
|
+
} from '../icons/circle-stop';
|
|
361
|
+
|
|
362
362
|
// CircleUser aliases
|
|
363
363
|
export {
|
|
364
364
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. */
|
|
@@ -401,12 +401,6 @@ export {
|
|
|
401
401
|
default as Code2
|
|
402
402
|
} from '../icons/code-xml';
|
|
403
403
|
|
|
404
|
-
// Columns2 aliases
|
|
405
|
-
export {
|
|
406
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
407
|
-
default as Columns
|
|
408
|
-
} from '../icons/columns-2';
|
|
409
|
-
|
|
410
404
|
// Columns3Cog aliases
|
|
411
405
|
export {
|
|
412
406
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. */
|
|
@@ -419,29 +413,29 @@ export {
|
|
|
419
413
|
default as TableConfig
|
|
420
414
|
} from '../icons/columns-3-cog';
|
|
421
415
|
|
|
416
|
+
// Columns2 aliases
|
|
417
|
+
export {
|
|
418
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
419
|
+
default as Columns
|
|
420
|
+
} from '../icons/columns-2';
|
|
421
|
+
|
|
422
422
|
// Columns3 aliases
|
|
423
423
|
export {
|
|
424
424
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. */
|
|
425
425
|
default as PanelsLeftRight
|
|
426
426
|
} from '../icons/columns-3';
|
|
427
427
|
|
|
428
|
-
// ContactRound aliases
|
|
429
|
-
export {
|
|
430
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. */
|
|
431
|
-
default as Contact2
|
|
432
|
-
} from '../icons/contact-round';
|
|
433
|
-
|
|
434
428
|
// DiamondPercent aliases
|
|
435
429
|
export {
|
|
436
430
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. */
|
|
437
431
|
default as PercentDiamond
|
|
438
432
|
} from '../icons/diamond-percent';
|
|
439
433
|
|
|
440
|
-
//
|
|
434
|
+
// ContactRound aliases
|
|
441
435
|
export {
|
|
442
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
443
|
-
default as
|
|
444
|
-
} from '../icons/
|
|
436
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. */
|
|
437
|
+
default as Contact2
|
|
438
|
+
} from '../icons/contact-round';
|
|
445
439
|
|
|
446
440
|
// EllipsisVertical aliases
|
|
447
441
|
export {
|
|
@@ -449,6 +443,12 @@ export {
|
|
|
449
443
|
default as MoreVertical
|
|
450
444
|
} from '../icons/ellipsis-vertical';
|
|
451
445
|
|
|
446
|
+
// Earth aliases
|
|
447
|
+
export {
|
|
448
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. */
|
|
449
|
+
default as Globe2
|
|
450
|
+
} from '../icons/earth';
|
|
451
|
+
|
|
452
452
|
// Ellipsis aliases
|
|
453
453
|
export {
|
|
454
454
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. */
|
|
@@ -599,18 +599,18 @@ export {
|
|
|
599
599
|
default as FileMinus2
|
|
600
600
|
} from '../icons/file-minus-corner';
|
|
601
601
|
|
|
602
|
-
// FilePen aliases
|
|
603
|
-
export {
|
|
604
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. */
|
|
605
|
-
default as FileEdit
|
|
606
|
-
} from '../icons/file-pen';
|
|
607
|
-
|
|
608
602
|
// FilePenLine aliases
|
|
609
603
|
export {
|
|
610
604
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. */
|
|
611
605
|
default as FileSignature
|
|
612
606
|
} from '../icons/file-pen-line';
|
|
613
607
|
|
|
608
|
+
// FilePen aliases
|
|
609
|
+
export {
|
|
610
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. */
|
|
611
|
+
default as FileEdit
|
|
612
|
+
} from '../icons/file-pen';
|
|
613
|
+
|
|
614
614
|
// FilePlay aliases
|
|
615
615
|
export {
|
|
616
616
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. */
|
|
@@ -635,18 +635,18 @@ export {
|
|
|
635
635
|
default as FileSearch2
|
|
636
636
|
} from '../icons/file-search-corner';
|
|
637
637
|
|
|
638
|
-
// FileTypeCorner aliases
|
|
639
|
-
export {
|
|
640
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
641
|
-
default as FileType2
|
|
642
|
-
} from '../icons/file-type-corner';
|
|
643
|
-
|
|
644
638
|
// FileSignal aliases
|
|
645
639
|
export {
|
|
646
640
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. */
|
|
647
641
|
default as FileVolume2
|
|
648
642
|
} from '../icons/file-signal';
|
|
649
643
|
|
|
644
|
+
// FileTypeCorner aliases
|
|
645
|
+
export {
|
|
646
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
647
|
+
default as FileType2
|
|
648
|
+
} from '../icons/file-type-corner';
|
|
649
|
+
|
|
650
650
|
// FileVideoCamera aliases
|
|
651
651
|
export {
|
|
652
652
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. */
|
|
@@ -677,18 +677,18 @@ export {
|
|
|
677
677
|
default as FolderEdit
|
|
678
678
|
} from '../icons/folder-pen';
|
|
679
679
|
|
|
680
|
-
// Funnel aliases
|
|
681
|
-
export {
|
|
682
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. */
|
|
683
|
-
default as Filter
|
|
684
|
-
} from '../icons/funnel';
|
|
685
|
-
|
|
686
680
|
// FunnelX aliases
|
|
687
681
|
export {
|
|
688
682
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. */
|
|
689
683
|
default as FilterX
|
|
690
684
|
} from '../icons/funnel-x';
|
|
691
685
|
|
|
686
|
+
// Funnel aliases
|
|
687
|
+
export {
|
|
688
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. */
|
|
689
|
+
default as Filter
|
|
690
|
+
} from '../icons/funnel';
|
|
691
|
+
|
|
692
692
|
// GitCommitHorizontal aliases
|
|
693
693
|
export {
|
|
694
694
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. */
|
|
@@ -707,18 +707,18 @@ export {
|
|
|
707
707
|
default as Grid2X2Plus
|
|
708
708
|
} from '../icons/grid-2x2-plus';
|
|
709
709
|
|
|
710
|
-
// Grid2x2X aliases
|
|
711
|
-
export {
|
|
712
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. */
|
|
713
|
-
default as Grid2X2X
|
|
714
|
-
} from '../icons/grid-2x2-x';
|
|
715
|
-
|
|
716
710
|
// Grid2x2 aliases
|
|
717
711
|
export {
|
|
718
712
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
719
713
|
default as Grid2X2
|
|
720
714
|
} from '../icons/grid-2x2';
|
|
721
715
|
|
|
716
|
+
// Grid2x2X aliases
|
|
717
|
+
export {
|
|
718
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. */
|
|
719
|
+
default as Grid2X2X
|
|
720
|
+
} from '../icons/grid-2x2-x';
|
|
721
|
+
|
|
722
722
|
// Grid3x3 aliases
|
|
723
723
|
export {
|
|
724
724
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. */
|
|
@@ -767,12 +767,6 @@ export {
|
|
|
767
767
|
default as Laptop2
|
|
768
768
|
} from '../icons/laptop-minimal';
|
|
769
769
|
|
|
770
|
-
// Layers aliases
|
|
771
|
-
export {
|
|
772
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. */
|
|
773
|
-
default as Layers3
|
|
774
|
-
} from '../icons/layers';
|
|
775
|
-
|
|
776
770
|
// ListIndentDecrease aliases
|
|
777
771
|
export {
|
|
778
772
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. */
|
|
@@ -785,6 +779,12 @@ export {
|
|
|
785
779
|
default as IndentDecrease
|
|
786
780
|
} from '../icons/list-indent-decrease';
|
|
787
781
|
|
|
782
|
+
// Layers aliases
|
|
783
|
+
export {
|
|
784
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. */
|
|
785
|
+
default as Layers3
|
|
786
|
+
} from '../icons/layers';
|
|
787
|
+
|
|
788
788
|
// ListIndentIncrease aliases
|
|
789
789
|
export {
|
|
790
790
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. */
|
|
@@ -797,18 +797,18 @@ export {
|
|
|
797
797
|
default as IndentIncrease
|
|
798
798
|
} from '../icons/list-indent-increase';
|
|
799
799
|
|
|
800
|
-
// LoaderCircle aliases
|
|
801
|
-
export {
|
|
802
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. */
|
|
803
|
-
default as Loader2
|
|
804
|
-
} from '../icons/loader-circle';
|
|
805
|
-
|
|
806
800
|
// LockKeyholeOpen aliases
|
|
807
801
|
export {
|
|
808
802
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. */
|
|
809
803
|
default as UnlockKeyhole
|
|
810
804
|
} from '../icons/lock-keyhole-open';
|
|
811
805
|
|
|
806
|
+
// LoaderCircle aliases
|
|
807
|
+
export {
|
|
808
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. */
|
|
809
|
+
default as Loader2
|
|
810
|
+
} from '../icons/loader-circle';
|
|
811
|
+
|
|
812
812
|
// LockOpen aliases
|
|
813
813
|
export {
|
|
814
814
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. */
|
|
@@ -833,18 +833,18 @@ export {
|
|
|
833
833
|
default as MessageCircleQuestion
|
|
834
834
|
} from '../icons/message-circle-question-mark';
|
|
835
835
|
|
|
836
|
-
// MicSignal aliases
|
|
837
|
-
export {
|
|
838
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead. */
|
|
839
|
-
default as Podcast
|
|
840
|
-
} from '../icons/mic-signal';
|
|
841
|
-
|
|
842
836
|
// MicVocal aliases
|
|
843
837
|
export {
|
|
844
838
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. */
|
|
845
839
|
default as Mic2
|
|
846
840
|
} from '../icons/mic-vocal';
|
|
847
841
|
|
|
842
|
+
// MicSignal aliases
|
|
843
|
+
export {
|
|
844
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead. */
|
|
845
|
+
default as Podcast
|
|
846
|
+
} from '../icons/mic-signal';
|
|
847
|
+
|
|
848
848
|
// Move3d aliases
|
|
849
849
|
export {
|
|
850
850
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. */
|
|
@@ -1055,18 +1055,18 @@ export {
|
|
|
1055
1055
|
default as ArrowUpLeftFromSquare
|
|
1056
1056
|
} from '../icons/square-arrow-out-up-left';
|
|
1057
1057
|
|
|
1058
|
-
// SquareArrowOutUpRight aliases
|
|
1059
|
-
export {
|
|
1060
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. */
|
|
1061
|
-
default as ArrowUpRightFromSquare
|
|
1062
|
-
} from '../icons/square-arrow-out-up-right';
|
|
1063
|
-
|
|
1064
1058
|
// SquareArrowRight aliases
|
|
1065
1059
|
export {
|
|
1066
1060
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. */
|
|
1067
1061
|
default as ArrowRightSquare
|
|
1068
1062
|
} from '../icons/square-arrow-right';
|
|
1069
1063
|
|
|
1064
|
+
// SquareArrowOutUpRight aliases
|
|
1065
|
+
export {
|
|
1066
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. */
|
|
1067
|
+
default as ArrowUpRightFromSquare
|
|
1068
|
+
} from '../icons/square-arrow-out-up-right';
|
|
1069
|
+
|
|
1070
1070
|
// SquareArrowUpLeft aliases
|
|
1071
1071
|
export {
|
|
1072
1072
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. */
|
|
@@ -1121,18 +1121,18 @@ export {
|
|
|
1121
1121
|
default as SquareGanttChart
|
|
1122
1122
|
} from '../icons/square-chart-gantt';
|
|
1123
1123
|
|
|
1124
|
-
// SquareCheckBig aliases
|
|
1125
|
-
export {
|
|
1126
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
1127
|
-
default as CheckSquare
|
|
1128
|
-
} from '../icons/square-check-big';
|
|
1129
|
-
|
|
1130
1124
|
// SquareCheck aliases
|
|
1131
1125
|
export {
|
|
1132
1126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. */
|
|
1133
1127
|
default as CheckSquare2
|
|
1134
1128
|
} from '../icons/square-check';
|
|
1135
1129
|
|
|
1130
|
+
// SquareCheckBig aliases
|
|
1131
|
+
export {
|
|
1132
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
1133
|
+
default as CheckSquare
|
|
1134
|
+
} from '../icons/square-check-big';
|
|
1135
|
+
|
|
1136
1136
|
// SquareChevronDown aliases
|
|
1137
1137
|
export {
|
|
1138
1138
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. */
|
|
@@ -1259,6 +1259,12 @@ export {
|
|
|
1259
1259
|
default as ParkingSquareOff
|
|
1260
1260
|
} from '../icons/square-parking-off';
|
|
1261
1261
|
|
|
1262
|
+
// SquareParking aliases
|
|
1263
|
+
export {
|
|
1264
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. */
|
|
1265
|
+
default as ParkingSquare
|
|
1266
|
+
} from '../icons/square-parking';
|
|
1267
|
+
|
|
1262
1268
|
// SquarePen aliases
|
|
1263
1269
|
export {
|
|
1264
1270
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. */
|
|
@@ -1277,12 +1283,6 @@ export {
|
|
|
1277
1283
|
default as PenSquare
|
|
1278
1284
|
} from '../icons/square-pen';
|
|
1279
1285
|
|
|
1280
|
-
// SquareParking aliases
|
|
1281
|
-
export {
|
|
1282
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. */
|
|
1283
|
-
default as ParkingSquare
|
|
1284
|
-
} from '../icons/square-parking';
|
|
1285
|
-
|
|
1286
1286
|
// SquarePercent aliases
|
|
1287
1287
|
export {
|
|
1288
1288
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. */
|
|
@@ -1409,18 +1409,18 @@ export {
|
|
|
1409
1409
|
default as AlignLeft
|
|
1410
1410
|
} from '../icons/text-align-start';
|
|
1411
1411
|
|
|
1412
|
-
// TextWrap aliases
|
|
1413
|
-
export {
|
|
1414
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. */
|
|
1415
|
-
default as WrapText
|
|
1416
|
-
} from '../icons/text-wrap';
|
|
1417
|
-
|
|
1418
1412
|
// TextInitial aliases
|
|
1419
1413
|
export {
|
|
1420
1414
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextInitial} instead. */
|
|
1421
1415
|
default as LetterText
|
|
1422
1416
|
} from '../icons/text-initial';
|
|
1423
1417
|
|
|
1418
|
+
// TextWrap aliases
|
|
1419
|
+
export {
|
|
1420
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextWrap} instead. */
|
|
1421
|
+
default as WrapText
|
|
1422
|
+
} from '../icons/text-wrap';
|
|
1423
|
+
|
|
1424
1424
|
// TramFront aliases
|
|
1425
1425
|
export {
|
|
1426
1426
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TramFront} instead. */
|
|
@@ -1457,18 +1457,18 @@ export {
|
|
|
1457
1457
|
default as UserCheck2
|
|
1458
1458
|
} from '../icons/user-round-check';
|
|
1459
1459
|
|
|
1460
|
-
// UserRoundMinus aliases
|
|
1461
|
-
export {
|
|
1462
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. */
|
|
1463
|
-
default as UserMinus2
|
|
1464
|
-
} from '../icons/user-round-minus';
|
|
1465
|
-
|
|
1466
1460
|
// UserRoundCog aliases
|
|
1467
1461
|
export {
|
|
1468
1462
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. */
|
|
1469
1463
|
default as UserCog2
|
|
1470
1464
|
} from '../icons/user-round-cog';
|
|
1471
1465
|
|
|
1466
|
+
// UserRoundMinus aliases
|
|
1467
|
+
export {
|
|
1468
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. */
|
|
1469
|
+
default as UserMinus2
|
|
1470
|
+
} from '../icons/user-round-minus';
|
|
1471
|
+
|
|
1472
1472
|
// UserRoundPlus aliases
|
|
1473
1473
|
export {
|
|
1474
1474
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. */
|