@lucide/astro 1.35.0 → 1.37.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 +663 -645
- package/src/aliases/suffixed.ts +1022 -1004
- package/src/icons/asterisk.ts +2 -2
- package/src/icons/badge-check.ts +2 -2
- package/src/icons/beef.ts +2 -2
- package/src/icons/blend.ts +2 -2
- package/src/icons/book-x.ts +2 -2
- package/src/icons/circle-check.ts +2 -2
- package/src/icons/circle-dot.ts +2 -2
- package/src/icons/clipboard-x.ts +2 -2
- package/src/icons/clock-check.ts +2 -2
- package/src/icons/copy-x.ts +2 -2
- package/src/icons/credit-card-check.ts +18 -0
- package/src/icons/credit-card-minus.ts +18 -0
- package/src/icons/credit-card-plus.ts +18 -0
- package/src/icons/credit-card-x.ts +18 -0
- package/src/icons/face-angry.ts +2 -2
- package/src/icons/git-merge-conflict.ts +2 -2
- package/src/icons/git-pull-request-closed.ts +2 -2
- package/src/icons/grid-2x2-x.ts +2 -2
- package/src/icons/index.ts +206 -197
- package/src/icons/key.ts +2 -2
- package/src/icons/mail-x.ts +2 -2
- package/src/icons/message-circle-check.ts +2 -2
- package/src/icons/message-circle-dashed-check.ts +18 -0
- package/src/icons/panda.ts +2 -2
- package/src/icons/piano.ts +2 -2
- package/src/icons/playing-card.ts +18 -0
- package/src/icons/playing-cards-fan.ts +18 -0
- package/src/icons/playing-cards.ts +18 -0
- package/src/icons/robot-vacuum.ts +18 -0
- package/src/icons/shopping-cart.ts +2 -2
- package/src/icons/spell-check.ts +2 -2
- package/src/icons/square-check.ts +2 -2
- package/src/icons/square-split-horizontal.ts +2 -2
- package/src/icons/square-split-vertical.ts +2 -2
- package/src/icons/sword.ts +2 -2
- package/src/icons/swords.ts +2 -2
- package/src/icons/user-round-x.ts +2 -2
- package/src/icons/volume-x.ts +2 -2
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -23,18 +23,18 @@ export {
|
|
|
23
23
|
default as ArrowDownAz
|
|
24
24
|
} from '../icons/arrow-down-a-z';
|
|
25
25
|
|
|
26
|
-
// ArrowDownZA aliases
|
|
27
|
-
export {
|
|
28
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. */
|
|
29
|
-
default as ArrowDownZa
|
|
30
|
-
} from '../icons/arrow-down-z-a';
|
|
31
|
-
|
|
32
26
|
// ArrowDownWideNarrow aliases
|
|
33
27
|
export {
|
|
34
28
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. */
|
|
35
29
|
default as SortDesc
|
|
36
30
|
} from '../icons/arrow-down-wide-narrow';
|
|
37
31
|
|
|
32
|
+
// ArrowDownZA aliases
|
|
33
|
+
export {
|
|
34
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. */
|
|
35
|
+
default as ArrowDownZa
|
|
36
|
+
} from '../icons/arrow-down-z-a';
|
|
37
|
+
|
|
38
38
|
// ArrowUpAZ aliases
|
|
39
39
|
export {
|
|
40
40
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpAZ} instead. */
|
|
@@ -77,36 +77,36 @@ export {
|
|
|
77
77
|
default as BetweenHorizonalEnd
|
|
78
78
|
} from '../icons/between-horizontal-end';
|
|
79
79
|
|
|
80
|
-
// BetweenHorizontalStart aliases
|
|
81
|
-
export {
|
|
82
|
-
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
83
|
-
default as BetweenHorizonalStart
|
|
84
|
-
} from '../icons/between-horizontal-start';
|
|
85
|
-
|
|
86
80
|
// BookDashed aliases
|
|
87
81
|
export {
|
|
88
82
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
89
83
|
default as BookTemplate
|
|
90
84
|
} from '../icons/book-dashed';
|
|
91
85
|
|
|
86
|
+
// BetweenHorizontalStart aliases
|
|
87
|
+
export {
|
|
88
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
89
|
+
default as BetweenHorizonalStart
|
|
90
|
+
} from '../icons/between-horizontal-start';
|
|
91
|
+
|
|
92
92
|
// Braces aliases
|
|
93
93
|
export {
|
|
94
94
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. */
|
|
95
95
|
default as CurlyBraces
|
|
96
96
|
} from '../icons/braces';
|
|
97
97
|
|
|
98
|
-
// Captions aliases
|
|
99
|
-
export {
|
|
100
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. */
|
|
101
|
-
default as Subtitles
|
|
102
|
-
} from '../icons/captions';
|
|
103
|
-
|
|
104
98
|
// ChartArea aliases
|
|
105
99
|
export {
|
|
106
100
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. */
|
|
107
101
|
default as AreaChart
|
|
108
102
|
} from '../icons/chart-area';
|
|
109
103
|
|
|
104
|
+
// Captions aliases
|
|
105
|
+
export {
|
|
106
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Captions} instead. */
|
|
107
|
+
default as Subtitles
|
|
108
|
+
} from '../icons/captions';
|
|
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. */
|
|
@@ -371,6 +371,12 @@ export {
|
|
|
371
371
|
default as XCircle
|
|
372
372
|
} from '../icons/circle-x';
|
|
373
373
|
|
|
374
|
+
// ClipboardPen aliases
|
|
375
|
+
export {
|
|
376
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. */
|
|
377
|
+
default as ClipboardEdit
|
|
378
|
+
} from '../icons/clipboard-pen';
|
|
379
|
+
|
|
374
380
|
// ClipboardPenLine aliases
|
|
375
381
|
export {
|
|
376
382
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. */
|
|
@@ -383,12 +389,6 @@ export {
|
|
|
383
389
|
default as DownloadCloud
|
|
384
390
|
} from '../icons/cloud-download';
|
|
385
391
|
|
|
386
|
-
// ClipboardPen aliases
|
|
387
|
-
export {
|
|
388
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. */
|
|
389
|
-
default as ClipboardEdit
|
|
390
|
-
} from '../icons/clipboard-pen';
|
|
391
|
-
|
|
392
392
|
// CloudUpload aliases
|
|
393
393
|
export {
|
|
394
394
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. */
|
|
@@ -431,18 +431,18 @@ export {
|
|
|
431
431
|
default as Contact2
|
|
432
432
|
} from '../icons/contact-round';
|
|
433
433
|
|
|
434
|
-
// Earth aliases
|
|
435
|
-
export {
|
|
436
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. */
|
|
437
|
-
default as Globe2
|
|
438
|
-
} from '../icons/earth';
|
|
439
|
-
|
|
440
434
|
// DiamondPercent aliases
|
|
441
435
|
export {
|
|
442
436
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. */
|
|
443
437
|
default as PercentDiamond
|
|
444
438
|
} from '../icons/diamond-percent';
|
|
445
439
|
|
|
440
|
+
// Earth aliases
|
|
441
|
+
export {
|
|
442
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. */
|
|
443
|
+
default as Globe2
|
|
444
|
+
} from '../icons/earth';
|
|
445
|
+
|
|
446
446
|
// EllipsisVertical aliases
|
|
447
447
|
export {
|
|
448
448
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. */
|
|
@@ -581,36 +581,36 @@ export {
|
|
|
581
581
|
default as FileAudio2
|
|
582
582
|
} from '../icons/file-headphone';
|
|
583
583
|
|
|
584
|
-
// FileLock aliases
|
|
585
|
-
export {
|
|
586
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
587
|
-
default as FileLock2
|
|
588
|
-
} from '../icons/file-lock';
|
|
589
|
-
|
|
590
584
|
// FileKey aliases
|
|
591
585
|
export {
|
|
592
586
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. */
|
|
593
587
|
default as FileKey2
|
|
594
588
|
} from '../icons/file-key';
|
|
595
589
|
|
|
590
|
+
// FileLock aliases
|
|
591
|
+
export {
|
|
592
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
593
|
+
default as FileLock2
|
|
594
|
+
} from '../icons/file-lock';
|
|
595
|
+
|
|
596
596
|
// FileMinusCorner aliases
|
|
597
597
|
export {
|
|
598
598
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. */
|
|
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. */
|
|
@@ -659,18 +659,18 @@ export {
|
|
|
659
659
|
default as FileX2
|
|
660
660
|
} from '../icons/file-x-corner';
|
|
661
661
|
|
|
662
|
-
// FolderCog aliases
|
|
663
|
-
export {
|
|
664
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. */
|
|
665
|
-
default as FolderCog2
|
|
666
|
-
} from '../icons/folder-cog';
|
|
667
|
-
|
|
668
662
|
// FingerprintPattern aliases
|
|
669
663
|
export {
|
|
670
664
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. */
|
|
671
665
|
default as Fingerprint
|
|
672
666
|
} from '../icons/fingerprint-pattern';
|
|
673
667
|
|
|
668
|
+
// FolderCog aliases
|
|
669
|
+
export {
|
|
670
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. */
|
|
671
|
+
default as FolderCog2
|
|
672
|
+
} from '../icons/folder-cog';
|
|
673
|
+
|
|
674
674
|
// FolderPen aliases
|
|
675
675
|
export {
|
|
676
676
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. */
|
|
@@ -809,18 +809,18 @@ export {
|
|
|
809
809
|
default as UnlockKeyhole
|
|
810
810
|
} from '../icons/lock-keyhole-open';
|
|
811
811
|
|
|
812
|
-
// MailQuestionMark aliases
|
|
813
|
-
export {
|
|
814
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MailQuestionMark} instead. */
|
|
815
|
-
default as MailQuestion
|
|
816
|
-
} from '../icons/mail-question-mark';
|
|
817
|
-
|
|
818
812
|
// LockOpen aliases
|
|
819
813
|
export {
|
|
820
814
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. */
|
|
821
815
|
default as Unlock
|
|
822
816
|
} from '../icons/lock-open';
|
|
823
817
|
|
|
818
|
+
// MailQuestionMark aliases
|
|
819
|
+
export {
|
|
820
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MailQuestionMark} instead. */
|
|
821
|
+
default as MailQuestion
|
|
822
|
+
} from '../icons/mail-question-mark';
|
|
823
|
+
|
|
824
824
|
// MapPinPen aliases
|
|
825
825
|
export {
|
|
826
826
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. */
|
|
@@ -905,18 +905,18 @@ export {
|
|
|
905
905
|
default as Sidebar
|
|
906
906
|
} from '../icons/panel-left';
|
|
907
907
|
|
|
908
|
-
// PanelTopDashed aliases
|
|
909
|
-
export {
|
|
910
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. */
|
|
911
|
-
default as PanelTopInactive
|
|
912
|
-
} from '../icons/panel-top-dashed';
|
|
913
|
-
|
|
914
908
|
// PanelRightDashed aliases
|
|
915
909
|
export {
|
|
916
910
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. */
|
|
917
911
|
default as PanelRightInactive
|
|
918
912
|
} from '../icons/panel-right-dashed';
|
|
919
913
|
|
|
914
|
+
// PanelTopDashed aliases
|
|
915
|
+
export {
|
|
916
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. */
|
|
917
|
+
default as PanelTopInactive
|
|
918
|
+
} from '../icons/panel-top-dashed';
|
|
919
|
+
|
|
920
920
|
// PanelsTopLeft aliases
|
|
921
921
|
export {
|
|
922
922
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. */
|
|
@@ -953,18 +953,18 @@ export {
|
|
|
953
953
|
default as Rotate3D
|
|
954
954
|
} from '../icons/rotate-3d';
|
|
955
955
|
|
|
956
|
-
// Rows2 aliases
|
|
957
|
-
export {
|
|
958
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. */
|
|
959
|
-
default as Rows
|
|
960
|
-
} from '../icons/rows-2';
|
|
961
|
-
|
|
962
956
|
// RotateCcwClock aliases
|
|
963
957
|
export {
|
|
964
958
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RotateCcwClock} instead. */
|
|
965
959
|
default as History
|
|
966
960
|
} from '../icons/rotate-ccw-clock';
|
|
967
961
|
|
|
962
|
+
// Rows2 aliases
|
|
963
|
+
export {
|
|
964
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. */
|
|
965
|
+
default as Rows
|
|
966
|
+
} from '../icons/rows-2';
|
|
967
|
+
|
|
968
968
|
// Rows3 aliases
|
|
969
969
|
export {
|
|
970
970
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. */
|
|
@@ -1037,18 +1037,18 @@ export {
|
|
|
1037
1037
|
default as ArrowLeftSquare
|
|
1038
1038
|
} from '../icons/square-arrow-left';
|
|
1039
1039
|
|
|
1040
|
-
// SquareArrowOutDownRight aliases
|
|
1041
|
-
export {
|
|
1042
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. */
|
|
1043
|
-
default as ArrowDownRightFromSquare
|
|
1044
|
-
} from '../icons/square-arrow-out-down-right';
|
|
1045
|
-
|
|
1046
1040
|
// SquareArrowOutDownLeft aliases
|
|
1047
1041
|
export {
|
|
1048
1042
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. */
|
|
1049
1043
|
default as ArrowDownLeftFromSquare
|
|
1050
1044
|
} from '../icons/square-arrow-out-down-left';
|
|
1051
1045
|
|
|
1046
|
+
// SquareArrowOutDownRight aliases
|
|
1047
|
+
export {
|
|
1048
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. */
|
|
1049
|
+
default as ArrowDownRightFromSquare
|
|
1050
|
+
} from '../icons/square-arrow-out-down-right';
|
|
1051
|
+
|
|
1052
1052
|
// SquareArrowOutUpLeft aliases
|
|
1053
1053
|
export {
|
|
1054
1054
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. */
|
|
@@ -1067,18 +1067,18 @@ export {
|
|
|
1067
1067
|
default as ArrowRightSquare
|
|
1068
1068
|
} from '../icons/square-arrow-right';
|
|
1069
1069
|
|
|
1070
|
-
// SquareArrowUpLeft aliases
|
|
1071
|
-
export {
|
|
1072
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. */
|
|
1073
|
-
default as ArrowUpLeftSquare
|
|
1074
|
-
} from '../icons/square-arrow-up-left';
|
|
1075
|
-
|
|
1076
1070
|
// SquareArrowUpRight aliases
|
|
1077
1071
|
export {
|
|
1078
1072
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. */
|
|
1079
1073
|
default as ArrowUpRightSquare
|
|
1080
1074
|
} from '../icons/square-arrow-up-right';
|
|
1081
1075
|
|
|
1076
|
+
// SquareArrowUpLeft aliases
|
|
1077
|
+
export {
|
|
1078
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. */
|
|
1079
|
+
default as ArrowUpLeftSquare
|
|
1080
|
+
} from '../icons/square-arrow-up-left';
|
|
1081
|
+
|
|
1082
1082
|
// SquareArrowUp aliases
|
|
1083
1083
|
export {
|
|
1084
1084
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. */
|
|
@@ -1133,18 +1133,18 @@ export {
|
|
|
1133
1133
|
default as CheckSquare2
|
|
1134
1134
|
} from '../icons/square-check';
|
|
1135
1135
|
|
|
1136
|
-
// SquareChevronLeft aliases
|
|
1137
|
-
export {
|
|
1138
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. */
|
|
1139
|
-
default as ChevronLeftSquare
|
|
1140
|
-
} from '../icons/square-chevron-left';
|
|
1141
|
-
|
|
1142
1136
|
// SquareChevronDown aliases
|
|
1143
1137
|
export {
|
|
1144
1138
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. */
|
|
1145
1139
|
default as ChevronDownSquare
|
|
1146
1140
|
} from '../icons/square-chevron-down';
|
|
1147
1141
|
|
|
1142
|
+
// SquareChevronLeft aliases
|
|
1143
|
+
export {
|
|
1144
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. */
|
|
1145
|
+
default as ChevronLeftSquare
|
|
1146
|
+
} from '../icons/square-chevron-left';
|
|
1147
|
+
|
|
1148
1148
|
// SquareChevronRight aliases
|
|
1149
1149
|
export {
|
|
1150
1150
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. */
|
|
@@ -1223,18 +1223,18 @@ export {
|
|
|
1223
1223
|
default as KanbanSquare
|
|
1224
1224
|
} from '../icons/square-kanban';
|
|
1225
1225
|
|
|
1226
|
-
// SquareM aliases
|
|
1227
|
-
export {
|
|
1228
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. */
|
|
1229
|
-
default as MSquare
|
|
1230
|
-
} from '../icons/square-m';
|
|
1231
|
-
|
|
1232
1226
|
// SquareLibrary aliases
|
|
1233
1227
|
export {
|
|
1234
1228
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. */
|
|
1235
1229
|
default as LibrarySquare
|
|
1236
1230
|
} from '../icons/square-library';
|
|
1237
1231
|
|
|
1232
|
+
// SquareM aliases
|
|
1233
|
+
export {
|
|
1234
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. */
|
|
1235
|
+
default as MSquare
|
|
1236
|
+
} from '../icons/square-m';
|
|
1237
|
+
|
|
1238
1238
|
// SquareMenu aliases
|
|
1239
1239
|
export {
|
|
1240
1240
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. */
|
|
@@ -1253,18 +1253,18 @@ export {
|
|
|
1253
1253
|
default as Inspect
|
|
1254
1254
|
} from '../icons/square-mouse-pointer';
|
|
1255
1255
|
|
|
1256
|
-
// SquareParkingOff aliases
|
|
1257
|
-
export {
|
|
1258
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. */
|
|
1259
|
-
default as ParkingSquareOff
|
|
1260
|
-
} from '../icons/square-parking-off';
|
|
1261
|
-
|
|
1262
1256
|
// SquareParking aliases
|
|
1263
1257
|
export {
|
|
1264
1258
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. */
|
|
1265
1259
|
default as ParkingSquare
|
|
1266
1260
|
} from '../icons/square-parking';
|
|
1267
1261
|
|
|
1262
|
+
// SquareParkingOff aliases
|
|
1263
|
+
export {
|
|
1264
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. */
|
|
1265
|
+
default as ParkingSquareOff
|
|
1266
|
+
} from '../icons/square-parking-off';
|
|
1267
|
+
|
|
1268
1268
|
// SquarePen aliases
|
|
1269
1269
|
export {
|
|
1270
1270
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. */
|
|
@@ -1289,23 +1289,17 @@ export {
|
|
|
1289
1289
|
default as PercentSquare
|
|
1290
1290
|
} from '../icons/square-percent';
|
|
1291
1291
|
|
|
1292
|
-
// SquarePilcrow aliases
|
|
1293
|
-
export {
|
|
1294
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. */
|
|
1295
|
-
default as PilcrowSquare
|
|
1296
|
-
} from '../icons/square-pilcrow';
|
|
1297
|
-
|
|
1298
1292
|
// SquarePi aliases
|
|
1299
1293
|
export {
|
|
1300
1294
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. */
|
|
1301
1295
|
default as PiSquare
|
|
1302
1296
|
} from '../icons/square-pi';
|
|
1303
1297
|
|
|
1304
|
-
//
|
|
1298
|
+
// SquarePilcrow aliases
|
|
1305
1299
|
export {
|
|
1306
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1307
|
-
default as
|
|
1308
|
-
} from '../icons/square-
|
|
1300
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. */
|
|
1301
|
+
default as PilcrowSquare
|
|
1302
|
+
} from '../icons/square-pilcrow';
|
|
1309
1303
|
|
|
1310
1304
|
// SquarePlay aliases
|
|
1311
1305
|
export {
|
|
@@ -1319,11 +1313,11 @@ export {
|
|
|
1319
1313
|
default as PowerSquare
|
|
1320
1314
|
} from '../icons/square-power';
|
|
1321
1315
|
|
|
1322
|
-
//
|
|
1316
|
+
// SquarePlus aliases
|
|
1323
1317
|
export {
|
|
1324
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1325
|
-
default as
|
|
1326
|
-
} from '../icons/square-
|
|
1318
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. */
|
|
1319
|
+
default as PlusSquare
|
|
1320
|
+
} from '../icons/square-plus';
|
|
1327
1321
|
|
|
1328
1322
|
// SquareSigma aliases
|
|
1329
1323
|
export {
|
|
@@ -1331,6 +1325,12 @@ export {
|
|
|
1331
1325
|
default as SigmaSquare
|
|
1332
1326
|
} from '../icons/square-sigma';
|
|
1333
1327
|
|
|
1328
|
+
// SquareScissors aliases
|
|
1329
|
+
export {
|
|
1330
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. */
|
|
1331
|
+
default as ScissorsSquare
|
|
1332
|
+
} from '../icons/square-scissors';
|
|
1333
|
+
|
|
1334
1334
|
// SquareSlash aliases
|
|
1335
1335
|
export {
|
|
1336
1336
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. */
|
|
@@ -1343,18 +1343,18 @@ export {
|
|
|
1343
1343
|
default as SplitSquareHorizontal
|
|
1344
1344
|
} from '../icons/square-split-horizontal';
|
|
1345
1345
|
|
|
1346
|
-
// SquareTerminal aliases
|
|
1347
|
-
export {
|
|
1348
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. */
|
|
1349
|
-
default as TerminalSquare
|
|
1350
|
-
} from '../icons/square-terminal';
|
|
1351
|
-
|
|
1352
1346
|
// SquareSplitVertical aliases
|
|
1353
1347
|
export {
|
|
1354
1348
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. */
|
|
1355
1349
|
default as SplitSquareVertical
|
|
1356
1350
|
} from '../icons/square-split-vertical';
|
|
1357
1351
|
|
|
1352
|
+
// SquareTerminal aliases
|
|
1353
|
+
export {
|
|
1354
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. */
|
|
1355
|
+
default as TerminalSquare
|
|
1356
|
+
} from '../icons/square-terminal';
|
|
1357
|
+
|
|
1358
1358
|
// SquareUserRound aliases
|
|
1359
1359
|
export {
|
|
1360
1360
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. */
|