@lucide/astro 1.25.0 → 1.27.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 +2 -2
- package/src/aliases/aliases.ts +136 -124
- package/src/aliases/prefixed.ts +701 -677
- package/src/aliases/suffixed.ts +1029 -1005
- package/src/icons/a-large-small.ts +1 -1
- package/src/icons/ambulance.ts +1 -1
- package/src/icons/barrel.ts +2 -2
- package/src/icons/bone-fracture.ts +1 -1
- package/src/icons/book-open-check.ts +2 -2
- package/src/icons/book-open-text.ts +2 -2
- package/src/icons/book-open.ts +2 -2
- package/src/icons/bot-off.ts +1 -1
- package/src/icons/captions.ts +1 -1
- package/src/icons/circle-fading-plus.ts +1 -1
- package/src/icons/columns-3-cog.ts +2 -2
- package/src/icons/diamond-minus.ts +1 -1
- package/src/icons/diamond-plus.ts +1 -1
- package/src/icons/feather.ts +2 -2
- package/src/icons/flag-triangle-left.ts +1 -1
- package/src/icons/gamepad-directional.ts +1 -1
- package/src/icons/git-merge-conflict.ts +1 -1
- package/src/icons/id-card-lanyard.ts +1 -1
- package/src/icons/index.ts +218 -210
- package/src/icons/keyboard-off.ts +1 -1
- package/src/icons/layers-plus.ts +1 -1
- package/src/icons/layout-freeform.ts +18 -0
- package/src/icons/lens-convex.ts +1 -1
- package/src/icons/line-squiggle.ts +1 -1
- package/src/icons/mic-audio-lines.ts +18 -0
- package/src/icons/mic-signal.ts +18 -0
- package/src/icons/mirror-rectangular.ts +1 -1
- package/src/icons/mirror-round.ts +1 -1
- package/src/icons/mosque.ts +18 -0
- package/src/icons/pilcrow-right.ts +1 -1
- package/src/icons/{history.ts → rotate-ccw-clock.ts} +4 -4
- package/src/icons/rotate-cw-fading-clock.ts +18 -0
- package/src/icons/{podcast.ts → scan-square.ts} +4 -4
- package/src/icons/scooter.ts +1 -1
- package/src/icons/search-alert.ts +1 -1
- package/src/icons/shield-keyhole.ts +18 -0
- package/src/icons/spline-pointer.ts +1 -1
- package/src/icons/square-arrow-right-enter.ts +1 -1
- package/src/icons/square-arrow-right-exit.ts +1 -1
- package/src/icons/square-bottom-dashed-scissors.ts +2 -2
- package/src/icons/square-off.ts +18 -0
- package/src/icons/square-scissors.ts +2 -2
- package/src/icons/squares-exclude.ts +1 -1
- package/src/icons/squares-intersect.ts +1 -1
- package/src/icons/squares-subtract.ts +1 -1
- package/src/icons/squares-unite.ts +1 -1
- package/src/icons/toilet.ts +1 -1
- package/src/icons/toolbox.ts +2 -2
- package/src/icons/trophy.ts +2 -2
- package/src/icons/truck.ts +1 -1
- package/src/icons/user-shield.ts +18 -0
- package/src/icons/van.ts +1 -1
- package/src/icons/zap-off.ts +2 -2
- package/src/icons/zap.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucide/astro",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"author": "Moustapha Kebe",
|
|
5
5
|
"description": "A Lucide icon library package for Astro applications.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@astrojs/ts-plugin": "^1.10.10",
|
|
43
43
|
"@testing-library/dom": "^10.4.1",
|
|
44
44
|
"@testing-library/jest-dom": "^6.9.1",
|
|
45
|
-
"astro": "^
|
|
45
|
+
"astro": "^7.1.0",
|
|
46
46
|
"jest-serializer-html": "^7.1.0",
|
|
47
47
|
"linkedom": "^0.18.13",
|
|
48
48
|
"prettier": "^3.9.5",
|
package/src/aliases/aliases.ts
CHANGED
|
@@ -65,18 +65,18 @@ export {
|
|
|
65
65
|
default as Verified
|
|
66
66
|
} from '../icons/badge-check';
|
|
67
67
|
|
|
68
|
-
// BadgeQuestionMark aliases
|
|
69
|
-
export {
|
|
70
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. */
|
|
71
|
-
default as BadgeHelp
|
|
72
|
-
} from '../icons/badge-question-mark';
|
|
73
|
-
|
|
74
68
|
// BetweenHorizontalEnd aliases
|
|
75
69
|
export {
|
|
76
70
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. */
|
|
77
71
|
default as BetweenHorizonalEnd
|
|
78
72
|
} from '../icons/between-horizontal-end';
|
|
79
73
|
|
|
74
|
+
// BadgeQuestionMark aliases
|
|
75
|
+
export {
|
|
76
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. */
|
|
77
|
+
default as BadgeHelp
|
|
78
|
+
} from '../icons/badge-question-mark';
|
|
79
|
+
|
|
80
80
|
// BetweenHorizontalStart aliases
|
|
81
81
|
export {
|
|
82
82
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. */
|
|
@@ -131,18 +131,18 @@ export {
|
|
|
131
131
|
default as BarChartBig
|
|
132
132
|
} from '../icons/chart-column-big';
|
|
133
133
|
|
|
134
|
-
// ChartColumn aliases
|
|
135
|
-
export {
|
|
136
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. */
|
|
137
|
-
default as BarChart3
|
|
138
|
-
} from '../icons/chart-column';
|
|
139
|
-
|
|
140
134
|
// ChartColumnIncreasing aliases
|
|
141
135
|
export {
|
|
142
136
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumnIncreasing} instead. */
|
|
143
137
|
default as BarChart4
|
|
144
138
|
} from '../icons/chart-column-increasing';
|
|
145
139
|
|
|
140
|
+
// ChartColumn aliases
|
|
141
|
+
export {
|
|
142
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartColumn} instead. */
|
|
143
|
+
default as BarChart3
|
|
144
|
+
} from '../icons/chart-column';
|
|
145
|
+
|
|
146
146
|
// ChartLine aliases
|
|
147
147
|
export {
|
|
148
148
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. */
|
|
@@ -239,18 +239,18 @@ export {
|
|
|
239
239
|
default as CheckCircle
|
|
240
240
|
} from '../icons/circle-check-big';
|
|
241
241
|
|
|
242
|
-
// CircleChevronDown aliases
|
|
243
|
-
export {
|
|
244
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
245
|
-
default as ChevronDownCircle
|
|
246
|
-
} from '../icons/circle-chevron-down';
|
|
247
|
-
|
|
248
242
|
// CircleCheck aliases
|
|
249
243
|
export {
|
|
250
244
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. */
|
|
251
245
|
default as CheckCircle2
|
|
252
246
|
} from '../icons/circle-check';
|
|
253
247
|
|
|
248
|
+
// CircleChevronDown aliases
|
|
249
|
+
export {
|
|
250
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
251
|
+
default as ChevronDownCircle
|
|
252
|
+
} from '../icons/circle-chevron-down';
|
|
253
|
+
|
|
254
254
|
// CircleChevronLeft aliases
|
|
255
255
|
export {
|
|
256
256
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
@@ -281,18 +281,18 @@ export {
|
|
|
281
281
|
default as GaugeCircle
|
|
282
282
|
} from '../icons/circle-gauge';
|
|
283
283
|
|
|
284
|
-
// CircleParkingOff aliases
|
|
285
|
-
export {
|
|
286
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. */
|
|
287
|
-
default as ParkingCircleOff
|
|
288
|
-
} from '../icons/circle-parking-off';
|
|
289
|
-
|
|
290
284
|
// CircleMinus aliases
|
|
291
285
|
export {
|
|
292
286
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. */
|
|
293
287
|
default as MinusCircle
|
|
294
288
|
} from '../icons/circle-minus';
|
|
295
289
|
|
|
290
|
+
// CircleParkingOff aliases
|
|
291
|
+
export {
|
|
292
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. */
|
|
293
|
+
default as ParkingCircleOff
|
|
294
|
+
} from '../icons/circle-parking-off';
|
|
295
|
+
|
|
296
296
|
// CircleParking aliases
|
|
297
297
|
export {
|
|
298
298
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. */
|
|
@@ -425,18 +425,18 @@ export {
|
|
|
425
425
|
default as PanelsLeftRight
|
|
426
426
|
} from '../icons/columns-3';
|
|
427
427
|
|
|
428
|
-
// DiamondPercent aliases
|
|
429
|
-
export {
|
|
430
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. */
|
|
431
|
-
default as PercentDiamond
|
|
432
|
-
} from '../icons/diamond-percent';
|
|
433
|
-
|
|
434
428
|
// ContactRound aliases
|
|
435
429
|
export {
|
|
436
430
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. */
|
|
437
431
|
default as Contact2
|
|
438
432
|
} from '../icons/contact-round';
|
|
439
433
|
|
|
434
|
+
// DiamondPercent aliases
|
|
435
|
+
export {
|
|
436
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. */
|
|
437
|
+
default as PercentDiamond
|
|
438
|
+
} from '../icons/diamond-percent';
|
|
439
|
+
|
|
440
440
|
// Earth aliases
|
|
441
441
|
export {
|
|
442
442
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. */
|
|
@@ -539,18 +539,18 @@ export {
|
|
|
539
539
|
default as FileAudio2
|
|
540
540
|
} from '../icons/file-headphone';
|
|
541
541
|
|
|
542
|
-
// FileKey aliases
|
|
543
|
-
export {
|
|
544
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. */
|
|
545
|
-
default as FileKey2
|
|
546
|
-
} from '../icons/file-key';
|
|
547
|
-
|
|
548
542
|
// FileLock aliases
|
|
549
543
|
export {
|
|
550
544
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. */
|
|
551
545
|
default as FileLock2
|
|
552
546
|
} from '../icons/file-lock';
|
|
553
547
|
|
|
548
|
+
// FileKey aliases
|
|
549
|
+
export {
|
|
550
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. */
|
|
551
|
+
default as FileKey2
|
|
552
|
+
} from '../icons/file-key';
|
|
553
|
+
|
|
554
554
|
// FileMinusCorner aliases
|
|
555
555
|
export {
|
|
556
556
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. */
|
|
@@ -743,12 +743,6 @@ export {
|
|
|
743
743
|
default as IndentDecrease
|
|
744
744
|
} from '../icons/list-indent-decrease';
|
|
745
745
|
|
|
746
|
-
// LoaderCircle aliases
|
|
747
|
-
export {
|
|
748
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. */
|
|
749
|
-
default as Loader2
|
|
750
|
-
} from '../icons/loader-circle';
|
|
751
|
-
|
|
752
746
|
// ListIndentIncrease aliases
|
|
753
747
|
export {
|
|
754
748
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. */
|
|
@@ -761,6 +755,12 @@ export {
|
|
|
761
755
|
default as IndentIncrease
|
|
762
756
|
} from '../icons/list-indent-increase';
|
|
763
757
|
|
|
758
|
+
// LoaderCircle aliases
|
|
759
|
+
export {
|
|
760
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. */
|
|
761
|
+
default as Loader2
|
|
762
|
+
} from '../icons/loader-circle';
|
|
763
|
+
|
|
764
764
|
// LockKeyholeOpen aliases
|
|
765
765
|
export {
|
|
766
766
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. */
|
|
@@ -779,17 +779,23 @@ export {
|
|
|
779
779
|
default as MailQuestion
|
|
780
780
|
} from '../icons/mail-question-mark';
|
|
781
781
|
|
|
782
|
+
// MapPinPen aliases
|
|
783
|
+
export {
|
|
784
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. */
|
|
785
|
+
default as LocationEdit
|
|
786
|
+
} from '../icons/map-pin-pen';
|
|
787
|
+
|
|
782
788
|
// MessageCircleQuestionMark aliases
|
|
783
789
|
export {
|
|
784
790
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. */
|
|
785
791
|
default as MessageCircleQuestion
|
|
786
792
|
} from '../icons/message-circle-question-mark';
|
|
787
793
|
|
|
788
|
-
//
|
|
794
|
+
// MicSignal aliases
|
|
789
795
|
export {
|
|
790
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
791
|
-
default as
|
|
792
|
-
} from '../icons/
|
|
796
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead. This alias will be removed in v1.0 */
|
|
797
|
+
default as Podcast
|
|
798
|
+
} from '../icons/mic-signal';
|
|
793
799
|
|
|
794
800
|
// MicVocal aliases
|
|
795
801
|
export {
|
|
@@ -821,6 +827,12 @@ export {
|
|
|
821
827
|
default as XOctagon
|
|
822
828
|
} from '../icons/octagon-x';
|
|
823
829
|
|
|
830
|
+
// PaintbrushVertical aliases
|
|
831
|
+
export {
|
|
832
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. */
|
|
833
|
+
default as Paintbrush2
|
|
834
|
+
} from '../icons/paintbrush-vertical';
|
|
835
|
+
|
|
824
836
|
// PanelBottomDashed aliases
|
|
825
837
|
export {
|
|
826
838
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. */
|
|
@@ -833,12 +845,6 @@ export {
|
|
|
833
845
|
default as SidebarClose
|
|
834
846
|
} from '../icons/panel-left-close';
|
|
835
847
|
|
|
836
|
-
// PaintbrushVertical aliases
|
|
837
|
-
export {
|
|
838
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. */
|
|
839
|
-
default as Paintbrush2
|
|
840
|
-
} from '../icons/paintbrush-vertical';
|
|
841
|
-
|
|
842
848
|
// PanelLeftDashed aliases
|
|
843
849
|
export {
|
|
844
850
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. */
|
|
@@ -863,18 +869,18 @@ export {
|
|
|
863
869
|
default as PanelRightInactive
|
|
864
870
|
} from '../icons/panel-right-dashed';
|
|
865
871
|
|
|
866
|
-
// PanelsTopLeft aliases
|
|
867
|
-
export {
|
|
868
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. */
|
|
869
|
-
default as Layout
|
|
870
|
-
} from '../icons/panels-top-left';
|
|
871
|
-
|
|
872
872
|
// PanelTopDashed aliases
|
|
873
873
|
export {
|
|
874
874
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. */
|
|
875
875
|
default as PanelTopInactive
|
|
876
876
|
} from '../icons/panel-top-dashed';
|
|
877
877
|
|
|
878
|
+
// PanelsTopLeft aliases
|
|
879
|
+
export {
|
|
880
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. */
|
|
881
|
+
default as Layout
|
|
882
|
+
} from '../icons/panels-top-left';
|
|
883
|
+
|
|
878
884
|
// PenLine aliases
|
|
879
885
|
export {
|
|
880
886
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. */
|
|
@@ -905,6 +911,12 @@ export {
|
|
|
905
911
|
default as Rotate3D
|
|
906
912
|
} from '../icons/rotate-3d';
|
|
907
913
|
|
|
914
|
+
// RotateCcwClock aliases
|
|
915
|
+
export {
|
|
916
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RotateCcwClock} instead. */
|
|
917
|
+
default as History
|
|
918
|
+
} from '../icons/rotate-ccw-clock';
|
|
919
|
+
|
|
908
920
|
// Rows2 aliases
|
|
909
921
|
export {
|
|
910
922
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. */
|
|
@@ -935,11 +947,11 @@ export {
|
|
|
935
947
|
default as ShieldQuestion
|
|
936
948
|
} from '../icons/shield-question-mark';
|
|
937
949
|
|
|
938
|
-
//
|
|
950
|
+
// SlidersVertical aliases
|
|
939
951
|
export {
|
|
940
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
941
|
-
default as
|
|
942
|
-
} from '../icons/
|
|
952
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SlidersVertical} instead. */
|
|
953
|
+
default as Sliders
|
|
954
|
+
} from '../icons/sliders-vertical';
|
|
943
955
|
|
|
944
956
|
// Sparkles aliases
|
|
945
957
|
export {
|
|
@@ -947,11 +959,11 @@ export {
|
|
|
947
959
|
default as Stars
|
|
948
960
|
} from '../icons/sparkles';
|
|
949
961
|
|
|
950
|
-
//
|
|
962
|
+
// ShieldX aliases
|
|
951
963
|
export {
|
|
952
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
953
|
-
default as
|
|
954
|
-
} from '../icons/
|
|
964
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. */
|
|
965
|
+
default as ShieldClose
|
|
966
|
+
} from '../icons/shield-x';
|
|
955
967
|
|
|
956
968
|
// SquareActivity aliases
|
|
957
969
|
export {
|
|
@@ -1067,23 +1079,17 @@ export {
|
|
|
1067
1079
|
default as SquareGanttChart
|
|
1068
1080
|
} from '../icons/square-chart-gantt';
|
|
1069
1081
|
|
|
1070
|
-
// SquareCheckBig aliases
|
|
1071
|
-
export {
|
|
1072
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
1073
|
-
default as CheckSquare
|
|
1074
|
-
} from '../icons/square-check-big';
|
|
1075
|
-
|
|
1076
1082
|
// SquareCheck aliases
|
|
1077
1083
|
export {
|
|
1078
1084
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. */
|
|
1079
1085
|
default as CheckSquare2
|
|
1080
1086
|
} from '../icons/square-check';
|
|
1081
1087
|
|
|
1082
|
-
//
|
|
1088
|
+
// SquareCheckBig aliases
|
|
1083
1089
|
export {
|
|
1084
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1085
|
-
default as
|
|
1086
|
-
} from '../icons/square-
|
|
1090
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
1091
|
+
default as CheckSquare
|
|
1092
|
+
} from '../icons/square-check-big';
|
|
1087
1093
|
|
|
1088
1094
|
// SquareChevronDown aliases
|
|
1089
1095
|
export {
|
|
@@ -1091,11 +1097,11 @@ export {
|
|
|
1091
1097
|
default as ChevronDownSquare
|
|
1092
1098
|
} from '../icons/square-chevron-down';
|
|
1093
1099
|
|
|
1094
|
-
//
|
|
1100
|
+
// SquareChevronLeft aliases
|
|
1095
1101
|
export {
|
|
1096
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1097
|
-
default as
|
|
1098
|
-
} from '../icons/square-chevron-
|
|
1102
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. */
|
|
1103
|
+
default as ChevronLeftSquare
|
|
1104
|
+
} from '../icons/square-chevron-left';
|
|
1099
1105
|
|
|
1100
1106
|
// SquareChevronRight aliases
|
|
1101
1107
|
export {
|
|
@@ -1109,6 +1115,12 @@ export {
|
|
|
1109
1115
|
default as CodeSquare
|
|
1110
1116
|
} from '../icons/square-code';
|
|
1111
1117
|
|
|
1118
|
+
// SquareChevronUp aliases
|
|
1119
|
+
export {
|
|
1120
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. */
|
|
1121
|
+
default as ChevronUpSquare
|
|
1122
|
+
} from '../icons/square-chevron-up';
|
|
1123
|
+
|
|
1112
1124
|
// SquareDashedKanban aliases
|
|
1113
1125
|
export {
|
|
1114
1126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. */
|
|
@@ -1139,23 +1151,17 @@ export {
|
|
|
1139
1151
|
default as DivideSquare
|
|
1140
1152
|
} from '../icons/square-divide';
|
|
1141
1153
|
|
|
1142
|
-
// SquareDashed aliases
|
|
1143
|
-
export {
|
|
1144
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. */
|
|
1145
|
-
default as BoxSelect
|
|
1146
|
-
} from '../icons/square-dashed';
|
|
1147
|
-
|
|
1148
1154
|
// SquareDot aliases
|
|
1149
1155
|
export {
|
|
1150
1156
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. */
|
|
1151
1157
|
default as DotSquare
|
|
1152
1158
|
} from '../icons/square-dot';
|
|
1153
1159
|
|
|
1154
|
-
//
|
|
1160
|
+
// SquareDashed aliases
|
|
1155
1161
|
export {
|
|
1156
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1157
|
-
default as
|
|
1158
|
-
} from '../icons/square-
|
|
1162
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. */
|
|
1163
|
+
default as BoxSelect
|
|
1164
|
+
} from '../icons/square-dashed';
|
|
1159
1165
|
|
|
1160
1166
|
// SquareEqual aliases
|
|
1161
1167
|
export {
|
|
@@ -1163,6 +1169,12 @@ export {
|
|
|
1163
1169
|
default as EqualSquare
|
|
1164
1170
|
} from '../icons/square-equal';
|
|
1165
1171
|
|
|
1172
|
+
// SquareFunction aliases
|
|
1173
|
+
export {
|
|
1174
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. */
|
|
1175
|
+
default as FunctionSquare
|
|
1176
|
+
} from '../icons/square-function';
|
|
1177
|
+
|
|
1166
1178
|
// SquareKanban aliases
|
|
1167
1179
|
export {
|
|
1168
1180
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. */
|
|
@@ -1229,18 +1241,18 @@ export {
|
|
|
1229
1241
|
default as PenSquare
|
|
1230
1242
|
} from '../icons/square-pen';
|
|
1231
1243
|
|
|
1232
|
-
// SquarePercent aliases
|
|
1233
|
-
export {
|
|
1234
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. */
|
|
1235
|
-
default as PercentSquare
|
|
1236
|
-
} from '../icons/square-percent';
|
|
1237
|
-
|
|
1238
1244
|
// SquarePi aliases
|
|
1239
1245
|
export {
|
|
1240
1246
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. */
|
|
1241
1247
|
default as PiSquare
|
|
1242
1248
|
} from '../icons/square-pi';
|
|
1243
1249
|
|
|
1250
|
+
// SquarePercent aliases
|
|
1251
|
+
export {
|
|
1252
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. */
|
|
1253
|
+
default as PercentSquare
|
|
1254
|
+
} from '../icons/square-percent';
|
|
1255
|
+
|
|
1244
1256
|
// SquarePilcrow aliases
|
|
1245
1257
|
export {
|
|
1246
1258
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. */
|
|
@@ -1313,36 +1325,36 @@ export {
|
|
|
1313
1325
|
default as UserSquare
|
|
1314
1326
|
} from '../icons/square-user';
|
|
1315
1327
|
|
|
1316
|
-
// SquareX aliases
|
|
1317
|
-
export {
|
|
1318
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. */
|
|
1319
|
-
default as XSquare
|
|
1320
|
-
} from '../icons/square-x';
|
|
1321
|
-
|
|
1322
1328
|
// TestTubeDiagonal aliases
|
|
1323
1329
|
export {
|
|
1324
1330
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. */
|
|
1325
1331
|
default as TestTube2
|
|
1326
1332
|
} from '../icons/test-tube-diagonal';
|
|
1327
1333
|
|
|
1334
|
+
// SquareX aliases
|
|
1335
|
+
export {
|
|
1336
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. */
|
|
1337
|
+
default as XSquare
|
|
1338
|
+
} from '../icons/square-x';
|
|
1339
|
+
|
|
1328
1340
|
// TextAlignCenter aliases
|
|
1329
1341
|
export {
|
|
1330
1342
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. */
|
|
1331
1343
|
default as AlignCenter
|
|
1332
1344
|
} from '../icons/text-align-center';
|
|
1333
1345
|
|
|
1334
|
-
// TextAlignJustify aliases
|
|
1335
|
-
export {
|
|
1336
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. */
|
|
1337
|
-
default as AlignJustify
|
|
1338
|
-
} from '../icons/text-align-justify';
|
|
1339
|
-
|
|
1340
1346
|
// TextAlignEnd aliases
|
|
1341
1347
|
export {
|
|
1342
1348
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. */
|
|
1343
1349
|
default as AlignRight
|
|
1344
1350
|
} from '../icons/text-align-end';
|
|
1345
1351
|
|
|
1352
|
+
// TextAlignJustify aliases
|
|
1353
|
+
export {
|
|
1354
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. */
|
|
1355
|
+
default as AlignJustify
|
|
1356
|
+
} from '../icons/text-align-justify';
|
|
1357
|
+
|
|
1346
1358
|
// TextAlignStart aliases
|
|
1347
1359
|
export {
|
|
1348
1360
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link TextAlignStart} instead. */
|
|
@@ -1391,18 +1403,18 @@ export {
|
|
|
1391
1403
|
default as Tv2
|
|
1392
1404
|
} from '../icons/tv-minimal';
|
|
1393
1405
|
|
|
1394
|
-
// University aliases
|
|
1395
|
-
export {
|
|
1396
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. */
|
|
1397
|
-
default as School2
|
|
1398
|
-
} from '../icons/university';
|
|
1399
|
-
|
|
1400
1406
|
// UserRoundCheck aliases
|
|
1401
1407
|
export {
|
|
1402
1408
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. */
|
|
1403
1409
|
default as UserCheck2
|
|
1404
1410
|
} from '../icons/user-round-check';
|
|
1405
1411
|
|
|
1412
|
+
// University aliases
|
|
1413
|
+
export {
|
|
1414
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. */
|
|
1415
|
+
default as School2
|
|
1416
|
+
} from '../icons/university';
|
|
1417
|
+
|
|
1406
1418
|
// UserRoundCog aliases
|
|
1407
1419
|
export {
|
|
1408
1420
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. */
|
|
@@ -1427,23 +1439,17 @@ export {
|
|
|
1427
1439
|
default as UserX2
|
|
1428
1440
|
} from '../icons/user-round-x';
|
|
1429
1441
|
|
|
1430
|
-
// UserRound aliases
|
|
1431
|
-
export {
|
|
1432
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. */
|
|
1433
|
-
default as User2
|
|
1434
|
-
} from '../icons/user-round';
|
|
1435
|
-
|
|
1436
1442
|
// UsersRound aliases
|
|
1437
1443
|
export {
|
|
1438
1444
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. */
|
|
1439
1445
|
default as Users2
|
|
1440
1446
|
} from '../icons/users-round';
|
|
1441
1447
|
|
|
1442
|
-
//
|
|
1448
|
+
// UserRound aliases
|
|
1443
1449
|
export {
|
|
1444
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1445
|
-
default as
|
|
1446
|
-
} from '../icons/
|
|
1450
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. */
|
|
1451
|
+
default as User2
|
|
1452
|
+
} from '../icons/user-round';
|
|
1447
1453
|
|
|
1448
1454
|
// Utensils aliases
|
|
1449
1455
|
export {
|
|
@@ -1451,6 +1457,12 @@ export {
|
|
|
1451
1457
|
default as ForkKnife
|
|
1452
1458
|
} from '../icons/utensils';
|
|
1453
1459
|
|
|
1460
|
+
// UtensilsCrossed aliases
|
|
1461
|
+
export {
|
|
1462
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. */
|
|
1463
|
+
default as ForkKnifeCrossed
|
|
1464
|
+
} from '../icons/utensils-crossed';
|
|
1465
|
+
|
|
1454
1466
|
// WalletMinimal aliases
|
|
1455
1467
|
export {
|
|
1456
1468
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. */
|