@lucide/astro 1.29.0 → 1.30.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 +153 -111
- package/src/aliases/prefixed.ts +746 -710
- package/src/aliases/suffixed.ts +1050 -1014
- package/src/icons/{smile-plus.ts → audio-lines-x.ts} +4 -4
- package/src/icons/broom-sparkles.ts +18 -0
- package/src/icons/broom.ts +18 -0
- package/src/icons/face-angry.ts +18 -0
- package/src/icons/{smile.ts → face-expressionless.ts} +4 -4
- package/src/icons/{laugh.ts → face-grinning.ts} +4 -4
- package/src/icons/{annoyed.ts → face-neutral.ts} +4 -4
- package/src/icons/{meh.ts → face-slightly-frowning.ts} +4 -4
- package/src/icons/face-slightly-smiling-plus.ts +18 -0
- package/src/icons/{frown.ts → face-slightly-smiling.ts} +4 -4
- package/src/icons/index.ts +252 -248
- package/src/icons/shield-lock.ts +18 -0
- package/src/icons/angry.ts +0 -18
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -5,23 +5,17 @@ export {
|
|
|
5
5
|
default as AlarmCheck
|
|
6
6
|
} from '../icons/alarm-clock-check';
|
|
7
7
|
|
|
8
|
-
// AlarmClockPlus aliases
|
|
9
|
-
export {
|
|
10
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. */
|
|
11
|
-
default as AlarmPlus
|
|
12
|
-
} from '../icons/alarm-clock-plus';
|
|
13
|
-
|
|
14
8
|
// AlarmClockMinus aliases
|
|
15
9
|
export {
|
|
16
10
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockMinus} instead. */
|
|
17
11
|
default as AlarmMinus
|
|
18
12
|
} from '../icons/alarm-clock-minus';
|
|
19
13
|
|
|
20
|
-
//
|
|
14
|
+
// AlarmClockPlus aliases
|
|
21
15
|
export {
|
|
22
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
23
|
-
default as
|
|
24
|
-
} from '../icons/
|
|
16
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link AlarmClockPlus} instead. */
|
|
17
|
+
default as AlarmPlus
|
|
18
|
+
} from '../icons/alarm-clock-plus';
|
|
25
19
|
|
|
26
20
|
// ArrowDownWideNarrow aliases
|
|
27
21
|
export {
|
|
@@ -29,6 +23,12 @@ export {
|
|
|
29
23
|
default as SortDesc
|
|
30
24
|
} from '../icons/arrow-down-wide-narrow';
|
|
31
25
|
|
|
26
|
+
// ArrowDownAZ aliases
|
|
27
|
+
export {
|
|
28
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. */
|
|
29
|
+
default as ArrowDownAz
|
|
30
|
+
} from '../icons/arrow-down-a-z';
|
|
31
|
+
|
|
32
32
|
// ArrowDownZA aliases
|
|
33
33
|
export {
|
|
34
34
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownZA} instead. */
|
|
@@ -59,18 +59,18 @@ export {
|
|
|
59
59
|
default as Axis3D
|
|
60
60
|
} from '../icons/axis-3d';
|
|
61
61
|
|
|
62
|
-
// BadgeCheck aliases
|
|
63
|
-
export {
|
|
64
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
65
|
-
default as Verified
|
|
66
|
-
} from '../icons/badge-check';
|
|
67
|
-
|
|
68
62
|
// BadgeQuestionMark aliases
|
|
69
63
|
export {
|
|
70
64
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeQuestionMark} instead. */
|
|
71
65
|
default as BadgeHelp
|
|
72
66
|
} from '../icons/badge-question-mark';
|
|
73
67
|
|
|
68
|
+
// BadgeCheck aliases
|
|
69
|
+
export {
|
|
70
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
71
|
+
default as Verified
|
|
72
|
+
} from '../icons/badge-check';
|
|
73
|
+
|
|
74
74
|
// BetweenHorizontalEnd aliases
|
|
75
75
|
export {
|
|
76
76
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. */
|
|
@@ -143,18 +143,18 @@ export {
|
|
|
143
143
|
default as BarChart3
|
|
144
144
|
} from '../icons/chart-column';
|
|
145
145
|
|
|
146
|
-
// ChartNoAxesColumnIncreasing aliases
|
|
147
|
-
export {
|
|
148
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. */
|
|
149
|
-
default as BarChart
|
|
150
|
-
} from '../icons/chart-no-axes-column-increasing';
|
|
151
|
-
|
|
152
146
|
// ChartLine aliases
|
|
153
147
|
export {
|
|
154
148
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartLine} instead. */
|
|
155
149
|
default as LineChart
|
|
156
150
|
} from '../icons/chart-line';
|
|
157
151
|
|
|
152
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
153
|
+
export {
|
|
154
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumnIncreasing} instead. */
|
|
155
|
+
default as BarChart
|
|
156
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
157
|
+
|
|
158
158
|
// ChartNoAxesColumn aliases
|
|
159
159
|
export {
|
|
160
160
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesColumn} instead. */
|
|
@@ -215,18 +215,18 @@ export {
|
|
|
215
215
|
default as ArrowUpLeftFromCircle
|
|
216
216
|
} from '../icons/circle-arrow-out-up-left';
|
|
217
217
|
|
|
218
|
-
// CircleArrowOutUpRight aliases
|
|
219
|
-
export {
|
|
220
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. */
|
|
221
|
-
default as ArrowUpRightFromCircle
|
|
222
|
-
} from '../icons/circle-arrow-out-up-right';
|
|
223
|
-
|
|
224
218
|
// CircleArrowRight aliases
|
|
225
219
|
export {
|
|
226
220
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. */
|
|
227
221
|
default as ArrowRightCircle
|
|
228
222
|
} from '../icons/circle-arrow-right';
|
|
229
223
|
|
|
224
|
+
// CircleArrowOutUpRight aliases
|
|
225
|
+
export {
|
|
226
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpRight} instead. */
|
|
227
|
+
default as ArrowUpRightFromCircle
|
|
228
|
+
} from '../icons/circle-arrow-out-up-right';
|
|
229
|
+
|
|
230
230
|
// CircleArrowUp aliases
|
|
231
231
|
export {
|
|
232
232
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. */
|
|
@@ -245,18 +245,18 @@ export {
|
|
|
245
245
|
default as CheckCircle2
|
|
246
246
|
} from '../icons/circle-check';
|
|
247
247
|
|
|
248
|
-
// CircleChevronLeft aliases
|
|
249
|
-
export {
|
|
250
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
251
|
-
default as ChevronLeftCircle
|
|
252
|
-
} from '../icons/circle-chevron-left';
|
|
253
|
-
|
|
254
248
|
// CircleChevronDown aliases
|
|
255
249
|
export {
|
|
256
250
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
257
251
|
default as ChevronDownCircle
|
|
258
252
|
} from '../icons/circle-chevron-down';
|
|
259
253
|
|
|
254
|
+
// CircleChevronLeft aliases
|
|
255
|
+
export {
|
|
256
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. */
|
|
257
|
+
default as ChevronLeftCircle
|
|
258
|
+
} from '../icons/circle-chevron-left';
|
|
259
|
+
|
|
260
260
|
// CircleChevronRight aliases
|
|
261
261
|
export {
|
|
262
262
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. */
|
|
@@ -455,12 +455,54 @@ export {
|
|
|
455
455
|
default as MoreHorizontal
|
|
456
456
|
} from '../icons/ellipsis';
|
|
457
457
|
|
|
458
|
+
// FaceAngry aliases
|
|
459
|
+
export {
|
|
460
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceAngry} instead. */
|
|
461
|
+
default as Angry
|
|
462
|
+
} from '../icons/face-angry';
|
|
463
|
+
|
|
464
|
+
// FaceExpressionless aliases
|
|
465
|
+
export {
|
|
466
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceExpressionless} instead. */
|
|
467
|
+
default as Annoyed
|
|
468
|
+
} from '../icons/face-expressionless';
|
|
469
|
+
|
|
470
|
+
// FaceGrinning aliases
|
|
471
|
+
export {
|
|
472
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceGrinning} instead. */
|
|
473
|
+
default as Laugh
|
|
474
|
+
} from '../icons/face-grinning';
|
|
475
|
+
|
|
476
|
+
// FaceNeutral aliases
|
|
477
|
+
export {
|
|
478
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceNeutral} instead. */
|
|
479
|
+
default as Meh
|
|
480
|
+
} from '../icons/face-neutral';
|
|
481
|
+
|
|
482
|
+
// FaceSlightlyFrowning aliases
|
|
483
|
+
export {
|
|
484
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlyFrowning} instead. */
|
|
485
|
+
default as Frown
|
|
486
|
+
} from '../icons/face-slightly-frowning';
|
|
487
|
+
|
|
488
|
+
// FaceSlightlySmilingPlus aliases
|
|
489
|
+
export {
|
|
490
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlySmilingPlus} instead. */
|
|
491
|
+
default as SmilePlus
|
|
492
|
+
} from '../icons/face-slightly-smiling-plus';
|
|
493
|
+
|
|
458
494
|
// FileAxis3d aliases
|
|
459
495
|
export {
|
|
460
496
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. */
|
|
461
497
|
default as FileAxis3D
|
|
462
498
|
} from '../icons/file-axis-3d';
|
|
463
499
|
|
|
500
|
+
// FaceSlightlySmiling aliases
|
|
501
|
+
export {
|
|
502
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FaceSlightlySmiling} instead. */
|
|
503
|
+
default as Smile
|
|
504
|
+
} from '../icons/face-slightly-smiling';
|
|
505
|
+
|
|
464
506
|
// FileBadge aliases
|
|
465
507
|
export {
|
|
466
508
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. */
|
|
@@ -509,18 +551,18 @@ export {
|
|
|
509
551
|
default as FileCheck2
|
|
510
552
|
} from '../icons/file-check-corner';
|
|
511
553
|
|
|
512
|
-
// FileCodeCorner aliases
|
|
513
|
-
export {
|
|
514
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. */
|
|
515
|
-
default as FileCode2
|
|
516
|
-
} from '../icons/file-code-corner';
|
|
517
|
-
|
|
518
554
|
// FileCog aliases
|
|
519
555
|
export {
|
|
520
556
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCog} instead. */
|
|
521
557
|
default as FileCog2
|
|
522
558
|
} from '../icons/file-cog';
|
|
523
559
|
|
|
560
|
+
// FileCodeCorner aliases
|
|
561
|
+
export {
|
|
562
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. */
|
|
563
|
+
default as FileCode2
|
|
564
|
+
} from '../icons/file-code-corner';
|
|
565
|
+
|
|
524
566
|
// FileExclamationPoint aliases
|
|
525
567
|
export {
|
|
526
568
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. */
|
|
@@ -599,18 +641,18 @@ export {
|
|
|
599
641
|
default as FileVolume2
|
|
600
642
|
} from '../icons/file-signal';
|
|
601
643
|
|
|
602
|
-
// FileTypeCorner aliases
|
|
603
|
-
export {
|
|
604
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
605
|
-
default as FileType2
|
|
606
|
-
} from '../icons/file-type-corner';
|
|
607
|
-
|
|
608
644
|
// FileVideoCamera aliases
|
|
609
645
|
export {
|
|
610
646
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. */
|
|
611
647
|
default as FileVideo2
|
|
612
648
|
} from '../icons/file-video-camera';
|
|
613
649
|
|
|
650
|
+
// FileTypeCorner aliases
|
|
651
|
+
export {
|
|
652
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. */
|
|
653
|
+
default as FileType2
|
|
654
|
+
} from '../icons/file-type-corner';
|
|
655
|
+
|
|
614
656
|
// FileXCorner aliases
|
|
615
657
|
export {
|
|
616
658
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileXCorner} instead. */
|
|
@@ -695,36 +737,36 @@ export {
|
|
|
695
737
|
default as Grab
|
|
696
738
|
} from '../icons/hand-grab';
|
|
697
739
|
|
|
698
|
-
// House aliases
|
|
699
|
-
export {
|
|
700
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. */
|
|
701
|
-
default as Home
|
|
702
|
-
} from '../icons/house';
|
|
703
|
-
|
|
704
740
|
// HandHelping aliases
|
|
705
741
|
export {
|
|
706
742
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. */
|
|
707
743
|
default as HelpingHand
|
|
708
744
|
} from '../icons/hand-helping';
|
|
709
745
|
|
|
746
|
+
// House aliases
|
|
747
|
+
export {
|
|
748
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. */
|
|
749
|
+
default as Home
|
|
750
|
+
} from '../icons/house';
|
|
751
|
+
|
|
710
752
|
// IceCreamBowl aliases
|
|
711
753
|
export {
|
|
712
754
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. */
|
|
713
755
|
default as IceCream2
|
|
714
756
|
} from '../icons/ice-cream-bowl';
|
|
715
757
|
|
|
716
|
-
// IceCreamCone aliases
|
|
717
|
-
export {
|
|
718
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. */
|
|
719
|
-
default as IceCream
|
|
720
|
-
} from '../icons/ice-cream-cone';
|
|
721
|
-
|
|
722
758
|
// LaptopMinimal aliases
|
|
723
759
|
export {
|
|
724
760
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. */
|
|
725
761
|
default as Laptop2
|
|
726
762
|
} from '../icons/laptop-minimal';
|
|
727
763
|
|
|
764
|
+
// IceCreamCone aliases
|
|
765
|
+
export {
|
|
766
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. */
|
|
767
|
+
default as IceCream
|
|
768
|
+
} from '../icons/ice-cream-cone';
|
|
769
|
+
|
|
728
770
|
// Layers aliases
|
|
729
771
|
export {
|
|
730
772
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. */
|
|
@@ -793,7 +835,7 @@ export {
|
|
|
793
835
|
|
|
794
836
|
// MicSignal aliases
|
|
795
837
|
export {
|
|
796
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead.
|
|
838
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead. */
|
|
797
839
|
default as Podcast
|
|
798
840
|
} from '../icons/mic-signal';
|
|
799
841
|
|
|
@@ -809,18 +851,18 @@ export {
|
|
|
809
851
|
default as Move3D
|
|
810
852
|
} from '../icons/move-3d';
|
|
811
853
|
|
|
812
|
-
// OctagonAlert aliases
|
|
813
|
-
export {
|
|
814
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. */
|
|
815
|
-
default as AlertOctagon
|
|
816
|
-
} from '../icons/octagon-alert';
|
|
817
|
-
|
|
818
854
|
// OctagonPause aliases
|
|
819
855
|
export {
|
|
820
856
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. */
|
|
821
857
|
default as PauseOctagon
|
|
822
858
|
} from '../icons/octagon-pause';
|
|
823
859
|
|
|
860
|
+
// OctagonAlert aliases
|
|
861
|
+
export {
|
|
862
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonAlert} instead. */
|
|
863
|
+
default as AlertOctagon
|
|
864
|
+
} from '../icons/octagon-alert';
|
|
865
|
+
|
|
824
866
|
// OctagonX aliases
|
|
825
867
|
export {
|
|
826
868
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. */
|
|
@@ -941,6 +983,12 @@ export {
|
|
|
941
983
|
default as SendHorizonal
|
|
942
984
|
} from '../icons/send-horizontal';
|
|
943
985
|
|
|
986
|
+
// ShieldQuestionMark aliases
|
|
987
|
+
export {
|
|
988
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. */
|
|
989
|
+
default as ShieldQuestion
|
|
990
|
+
} from '../icons/shield-question-mark';
|
|
991
|
+
|
|
944
992
|
// ShieldX aliases
|
|
945
993
|
export {
|
|
946
994
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldX} instead. */
|
|
@@ -953,12 +1001,6 @@ export {
|
|
|
953
1001
|
default as Sliders
|
|
954
1002
|
} from '../icons/sliders-vertical';
|
|
955
1003
|
|
|
956
|
-
// ShieldQuestionMark aliases
|
|
957
|
-
export {
|
|
958
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ShieldQuestionMark} instead. */
|
|
959
|
-
default as ShieldQuestion
|
|
960
|
-
} from '../icons/shield-question-mark';
|
|
961
|
-
|
|
962
1004
|
// Sparkles aliases
|
|
963
1005
|
export {
|
|
964
1006
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Sparkles} instead. */
|
|
@@ -1019,18 +1061,18 @@ export {
|
|
|
1019
1061
|
default as ArrowUpRightFromSquare
|
|
1020
1062
|
} from '../icons/square-arrow-out-up-right';
|
|
1021
1063
|
|
|
1022
|
-
// SquareArrowUpLeft aliases
|
|
1023
|
-
export {
|
|
1024
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. */
|
|
1025
|
-
default as ArrowUpLeftSquare
|
|
1026
|
-
} from '../icons/square-arrow-up-left';
|
|
1027
|
-
|
|
1028
1064
|
// SquareArrowRight aliases
|
|
1029
1065
|
export {
|
|
1030
1066
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. */
|
|
1031
1067
|
default as ArrowRightSquare
|
|
1032
1068
|
} from '../icons/square-arrow-right';
|
|
1033
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
|
+
|
|
1034
1076
|
// SquareArrowUpRight aliases
|
|
1035
1077
|
export {
|
|
1036
1078
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. */
|
|
@@ -1061,6 +1103,12 @@ export {
|
|
|
1061
1103
|
default as FlipHorizontal
|
|
1062
1104
|
} from '../icons/square-centerline-dashed-horizontal';
|
|
1063
1105
|
|
|
1106
|
+
// SquareCenterlineDashedVertical aliases
|
|
1107
|
+
export {
|
|
1108
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
1109
|
+
default as FlipVertical
|
|
1110
|
+
} from '../icons/square-centerline-dashed-vertical';
|
|
1111
|
+
|
|
1064
1112
|
// SquareChartGantt aliases
|
|
1065
1113
|
export {
|
|
1066
1114
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. */
|
|
@@ -1073,12 +1121,6 @@ export {
|
|
|
1073
1121
|
default as SquareGanttChart
|
|
1074
1122
|
} from '../icons/square-chart-gantt';
|
|
1075
1123
|
|
|
1076
|
-
// SquareCenterlineDashedVertical aliases
|
|
1077
|
-
export {
|
|
1078
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. */
|
|
1079
|
-
default as FlipVertical
|
|
1080
|
-
} from '../icons/square-centerline-dashed-vertical';
|
|
1081
|
-
|
|
1082
1124
|
// SquareCheckBig aliases
|
|
1083
1125
|
export {
|
|
1084
1126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
@@ -1103,23 +1145,17 @@ export {
|
|
|
1103
1145
|
default as ChevronLeftSquare
|
|
1104
1146
|
} from '../icons/square-chevron-left';
|
|
1105
1147
|
|
|
1106
|
-
// SquareChevronUp aliases
|
|
1107
|
-
export {
|
|
1108
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. */
|
|
1109
|
-
default as ChevronUpSquare
|
|
1110
|
-
} from '../icons/square-chevron-up';
|
|
1111
|
-
|
|
1112
1148
|
// SquareChevronRight aliases
|
|
1113
1149
|
export {
|
|
1114
1150
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. */
|
|
1115
1151
|
default as ChevronRightSquare
|
|
1116
1152
|
} from '../icons/square-chevron-right';
|
|
1117
1153
|
|
|
1118
|
-
//
|
|
1154
|
+
// SquareChevronUp aliases
|
|
1119
1155
|
export {
|
|
1120
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1121
|
-
default as
|
|
1122
|
-
} from '../icons/square-
|
|
1156
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. */
|
|
1157
|
+
default as ChevronUpSquare
|
|
1158
|
+
} from '../icons/square-chevron-up';
|
|
1123
1159
|
|
|
1124
1160
|
// SquareCode aliases
|
|
1125
1161
|
export {
|
|
@@ -1127,6 +1163,12 @@ export {
|
|
|
1127
1163
|
default as CodeSquare
|
|
1128
1164
|
} from '../icons/square-code';
|
|
1129
1165
|
|
|
1166
|
+
// SquareDashedKanban aliases
|
|
1167
|
+
export {
|
|
1168
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedKanban} instead. */
|
|
1169
|
+
default as KanbanSquareDashed
|
|
1170
|
+
} from '../icons/square-dashed-kanban';
|
|
1171
|
+
|
|
1130
1172
|
// SquareDashedMousePointer aliases
|
|
1131
1173
|
export {
|
|
1132
1174
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. */
|
|
@@ -1157,36 +1199,36 @@ export {
|
|
|
1157
1199
|
default as DivideSquare
|
|
1158
1200
|
} from '../icons/square-divide';
|
|
1159
1201
|
|
|
1160
|
-
// SquareEqual aliases
|
|
1161
|
-
export {
|
|
1162
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. */
|
|
1163
|
-
default as EqualSquare
|
|
1164
|
-
} from '../icons/square-equal';
|
|
1165
|
-
|
|
1166
1202
|
// SquareDot aliases
|
|
1167
1203
|
export {
|
|
1168
1204
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDot} instead. */
|
|
1169
1205
|
default as DotSquare
|
|
1170
1206
|
} from '../icons/square-dot';
|
|
1171
1207
|
|
|
1208
|
+
// SquareEqual aliases
|
|
1209
|
+
export {
|
|
1210
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareEqual} instead. */
|
|
1211
|
+
default as EqualSquare
|
|
1212
|
+
} from '../icons/square-equal';
|
|
1213
|
+
|
|
1172
1214
|
// SquareFunction aliases
|
|
1173
1215
|
export {
|
|
1174
1216
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. */
|
|
1175
1217
|
default as FunctionSquare
|
|
1176
1218
|
} from '../icons/square-function';
|
|
1177
1219
|
|
|
1178
|
-
// SquareLibrary aliases
|
|
1179
|
-
export {
|
|
1180
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. */
|
|
1181
|
-
default as LibrarySquare
|
|
1182
|
-
} from '../icons/square-library';
|
|
1183
|
-
|
|
1184
1220
|
// SquareKanban aliases
|
|
1185
1221
|
export {
|
|
1186
1222
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. */
|
|
1187
1223
|
default as KanbanSquare
|
|
1188
1224
|
} from '../icons/square-kanban';
|
|
1189
1225
|
|
|
1226
|
+
// SquareLibrary aliases
|
|
1227
|
+
export {
|
|
1228
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. */
|
|
1229
|
+
default as LibrarySquare
|
|
1230
|
+
} from '../icons/square-library';
|
|
1231
|
+
|
|
1190
1232
|
// SquareM aliases
|
|
1191
1233
|
export {
|
|
1192
1234
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. */
|
|
@@ -1211,18 +1253,18 @@ export {
|
|
|
1211
1253
|
default as Inspect
|
|
1212
1254
|
} from '../icons/square-mouse-pointer';
|
|
1213
1255
|
|
|
1214
|
-
// SquareParkingOff aliases
|
|
1215
|
-
export {
|
|
1216
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParkingOff} instead. */
|
|
1217
|
-
default as ParkingSquareOff
|
|
1218
|
-
} from '../icons/square-parking-off';
|
|
1219
|
-
|
|
1220
1256
|
// SquareParking aliases
|
|
1221
1257
|
export {
|
|
1222
1258
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareParking} instead. */
|
|
1223
1259
|
default as ParkingSquare
|
|
1224
1260
|
} from '../icons/square-parking';
|
|
1225
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
|
+
|
|
1226
1268
|
// SquarePen aliases
|
|
1227
1269
|
export {
|
|
1228
1270
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePen} instead. */
|