@lucide/astro 0.574.0 → 0.576.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 +102 -90
- package/src/aliases/prefixed.ts +680 -634
- package/src/aliases/suffixed.ts +1103 -1057
- package/src/icons/cuboid.ts +2 -2
- package/src/icons/file-pen-line.ts +2 -2
- package/src/icons/fishing-rod.ts +18 -0
- package/src/icons/index.ts +114 -95
- package/src/icons/message-square-check.ts +18 -0
- package/src/icons/metronome.ts +18 -0
- package/src/icons/mouse-right.ts +18 -0
- package/src/icons/package-check.ts +2 -2
- package/src/icons/package-minus.ts +2 -2
- package/src/icons/package-plus.ts +2 -2
- package/src/icons/package-search.ts +2 -2
- package/src/icons/package-x.ts +2 -2
- package/src/icons/receipt-cent.ts +2 -2
- package/src/icons/receipt-euro.ts +2 -2
- package/src/icons/receipt-indian-rupee.ts +2 -2
- package/src/icons/receipt-japanese-yen.ts +2 -2
- package/src/icons/receipt-pound-sterling.ts +2 -2
- package/src/icons/receipt-russian-ruble.ts +2 -2
- package/src/icons/receipt-swiss-franc.ts +2 -2
- package/src/icons/receipt-turkish-lira.ts +2 -2
- package/src/icons/receipt.ts +2 -2
- package/src/icons/square-arrow-right-enter.ts +18 -0
- package/src/icons/square-arrow-right-exit.ts +18 -0
- package/src/icons/{flip-horizontal.ts → square-centerline-dashed-horizontal.ts} +4 -4
- package/src/icons/{flip-vertical.ts → square-centerline-dashed-vertical.ts} +4 -4
- package/src/icons/zodiac-aquarius.ts +18 -0
- package/src/icons/zodiac-aries.ts +18 -0
- package/src/icons/zodiac-cancer.ts +18 -0
- package/src/icons/zodiac-capricorn.ts +18 -0
- package/src/icons/zodiac-gemini.ts +18 -0
- package/src/icons/zodiac-leo.ts +18 -0
- package/src/icons/zodiac-libra.ts +18 -0
- package/src/icons/zodiac-ophiuchus.ts +18 -0
- package/src/icons/zodiac-pisces.ts +18 -0
- package/src/icons/zodiac-sagittarius.ts +18 -0
- package/src/icons/zodiac-scorpio.ts +18 -0
- package/src/icons/zodiac-taurus.ts +18 -0
- package/src/icons/zodiac-virgo.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -17,18 +17,18 @@ export {
|
|
|
17
17
|
default as AlarmPlus
|
|
18
18
|
} from '../icons/alarm-clock-plus';
|
|
19
19
|
|
|
20
|
-
// ArrowDownAZ aliases
|
|
21
|
-
export {
|
|
22
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownAZ} instead. This alias will be removed in v1.0 */
|
|
23
|
-
default as ArrowDownAz
|
|
24
|
-
} from '../icons/arrow-down-a-z';
|
|
25
|
-
|
|
26
20
|
// ArrowDownWideNarrow aliases
|
|
27
21
|
export {
|
|
28
22
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowDownWideNarrow} instead. This alias will be removed in v1.0 */
|
|
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. This alias will be removed in v1.0 */
|
|
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. This alias will be removed in v1.0 */
|
|
@@ -359,18 +359,18 @@ export {
|
|
|
359
359
|
default as StopCircle
|
|
360
360
|
} from '../icons/circle-stop';
|
|
361
361
|
|
|
362
|
-
// CircleUserRound aliases
|
|
363
|
-
export {
|
|
364
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. This alias will be removed in v1.0 */
|
|
365
|
-
default as UserCircle2
|
|
366
|
-
} from '../icons/circle-user-round';
|
|
367
|
-
|
|
368
362
|
// CircleUser aliases
|
|
369
363
|
export {
|
|
370
364
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. This alias will be removed in v1.0 */
|
|
371
365
|
default as UserCircle
|
|
372
366
|
} from '../icons/circle-user';
|
|
373
367
|
|
|
368
|
+
// CircleUserRound aliases
|
|
369
|
+
export {
|
|
370
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. This alias will be removed in v1.0 */
|
|
371
|
+
default as UserCircle2
|
|
372
|
+
} from '../icons/circle-user-round';
|
|
373
|
+
|
|
374
374
|
// CircleX aliases
|
|
375
375
|
export {
|
|
376
376
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleX} instead. This alias will be removed in v1.0 */
|
|
@@ -437,6 +437,12 @@ export {
|
|
|
437
437
|
default as Contact2
|
|
438
438
|
} from '../icons/contact-round';
|
|
439
439
|
|
|
440
|
+
// DiamondPercent aliases
|
|
441
|
+
export {
|
|
442
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
443
|
+
default as PercentDiamond
|
|
444
|
+
} from '../icons/diamond-percent';
|
|
445
|
+
|
|
440
446
|
// Earth aliases
|
|
441
447
|
export {
|
|
442
448
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. This alias will be removed in v1.0 */
|
|
@@ -449,12 +455,6 @@ export {
|
|
|
449
455
|
default as MoreVertical
|
|
450
456
|
} from '../icons/ellipsis-vertical';
|
|
451
457
|
|
|
452
|
-
// DiamondPercent aliases
|
|
453
|
-
export {
|
|
454
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
455
|
-
default as PercentDiamond
|
|
456
|
-
} from '../icons/diamond-percent';
|
|
457
|
-
|
|
458
458
|
// Ellipsis aliases
|
|
459
459
|
export {
|
|
460
460
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
@@ -473,18 +473,18 @@ export {
|
|
|
473
473
|
default as FileBadge2
|
|
474
474
|
} from '../icons/file-badge';
|
|
475
475
|
|
|
476
|
-
// FileBraces aliases
|
|
477
|
-
export {
|
|
478
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
479
|
-
default as FileJson
|
|
480
|
-
} from '../icons/file-braces';
|
|
481
|
-
|
|
482
476
|
// FileBracesCorner aliases
|
|
483
477
|
export {
|
|
484
478
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
485
479
|
default as FileJson2
|
|
486
480
|
} from '../icons/file-braces-corner';
|
|
487
481
|
|
|
482
|
+
// FileBraces aliases
|
|
483
|
+
export {
|
|
484
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
485
|
+
default as FileJson
|
|
486
|
+
} from '../icons/file-braces';
|
|
487
|
+
|
|
488
488
|
// FileChartColumnIncreasing aliases
|
|
489
489
|
export {
|
|
490
490
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
@@ -599,18 +599,18 @@ export {
|
|
|
599
599
|
default as FileSearch2
|
|
600
600
|
} from '../icons/file-search-corner';
|
|
601
601
|
|
|
602
|
-
// FileSignal aliases
|
|
603
|
-
export {
|
|
604
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. This alias will be removed in v1.0 */
|
|
605
|
-
default as FileVolume2
|
|
606
|
-
} from '../icons/file-signal';
|
|
607
|
-
|
|
608
602
|
// FileTypeCorner aliases
|
|
609
603
|
export {
|
|
610
604
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. This alias will be removed in v1.0 */
|
|
611
605
|
default as FileType2
|
|
612
606
|
} from '../icons/file-type-corner';
|
|
613
607
|
|
|
608
|
+
// FileSignal aliases
|
|
609
|
+
export {
|
|
610
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileSignal} instead. This alias will be removed in v1.0 */
|
|
611
|
+
default as FileVolume2
|
|
612
|
+
} from '../icons/file-signal';
|
|
613
|
+
|
|
614
614
|
// FileVideoCamera aliases
|
|
615
615
|
export {
|
|
616
616
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. This alias will be removed in v1.0 */
|
|
@@ -623,18 +623,18 @@ export {
|
|
|
623
623
|
default as FileX2
|
|
624
624
|
} from '../icons/file-x-corner';
|
|
625
625
|
|
|
626
|
-
// FingerprintPattern aliases
|
|
627
|
-
export {
|
|
628
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. This alias will be removed in v1.0 */
|
|
629
|
-
default as Fingerprint
|
|
630
|
-
} from '../icons/fingerprint-pattern';
|
|
631
|
-
|
|
632
626
|
// FolderCog aliases
|
|
633
627
|
export {
|
|
634
628
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderCog} instead. This alias will be removed in v1.0 */
|
|
635
629
|
default as FolderCog2
|
|
636
630
|
} from '../icons/folder-cog';
|
|
637
631
|
|
|
632
|
+
// FingerprintPattern aliases
|
|
633
|
+
export {
|
|
634
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FingerprintPattern} instead. This alias will be removed in v1.0 */
|
|
635
|
+
default as Fingerprint
|
|
636
|
+
} from '../icons/fingerprint-pattern';
|
|
637
|
+
|
|
638
638
|
// FolderPen aliases
|
|
639
639
|
export {
|
|
640
640
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FolderPen} instead. This alias will be removed in v1.0 */
|
|
@@ -683,6 +683,12 @@ export {
|
|
|
683
683
|
default as Grid2X2
|
|
684
684
|
} from '../icons/grid-2x2';
|
|
685
685
|
|
|
686
|
+
// HandGrab aliases
|
|
687
|
+
export {
|
|
688
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
689
|
+
default as Grab
|
|
690
|
+
} from '../icons/hand-grab';
|
|
691
|
+
|
|
686
692
|
// Grid3x3 aliases
|
|
687
693
|
export {
|
|
688
694
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. This alias will be removed in v1.0 */
|
|
@@ -695,12 +701,6 @@ export {
|
|
|
695
701
|
default as Grid3X3
|
|
696
702
|
} from '../icons/grid-3x3';
|
|
697
703
|
|
|
698
|
-
// HandGrab aliases
|
|
699
|
-
export {
|
|
700
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandGrab} instead. This alias will be removed in v1.0 */
|
|
701
|
-
default as Grab
|
|
702
|
-
} from '../icons/hand-grab';
|
|
703
|
-
|
|
704
704
|
// HandHelping aliases
|
|
705
705
|
export {
|
|
706
706
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link HandHelping} instead. This alias will be removed in v1.0 */
|
|
@@ -839,18 +839,18 @@ export {
|
|
|
839
839
|
default as PanelBottomInactive
|
|
840
840
|
} from '../icons/panel-bottom-dashed';
|
|
841
841
|
|
|
842
|
-
// PanelLeftDashed aliases
|
|
843
|
-
export {
|
|
844
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. This alias will be removed in v1.0 */
|
|
845
|
-
default as PanelLeftInactive
|
|
846
|
-
} from '../icons/panel-left-dashed';
|
|
847
|
-
|
|
848
842
|
// PanelLeftClose aliases
|
|
849
843
|
export {
|
|
850
844
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
851
845
|
default as SidebarClose
|
|
852
846
|
} from '../icons/panel-left-close';
|
|
853
847
|
|
|
848
|
+
// PanelLeftDashed aliases
|
|
849
|
+
export {
|
|
850
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. This alias will be removed in v1.0 */
|
|
851
|
+
default as PanelLeftInactive
|
|
852
|
+
} from '../icons/panel-left-dashed';
|
|
853
|
+
|
|
854
854
|
// PanelLeftOpen aliases
|
|
855
855
|
export {
|
|
856
856
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. This alias will be removed in v1.0 */
|
|
@@ -863,18 +863,18 @@ export {
|
|
|
863
863
|
default as Sidebar
|
|
864
864
|
} from '../icons/panel-left';
|
|
865
865
|
|
|
866
|
-
// PanelRightDashed aliases
|
|
867
|
-
export {
|
|
868
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. This alias will be removed in v1.0 */
|
|
869
|
-
default as PanelRightInactive
|
|
870
|
-
} from '../icons/panel-right-dashed';
|
|
871
|
-
|
|
872
866
|
// PanelTopDashed aliases
|
|
873
867
|
export {
|
|
874
868
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelTopDashed} instead. This alias will be removed in v1.0 */
|
|
875
869
|
default as PanelTopInactive
|
|
876
870
|
} from '../icons/panel-top-dashed';
|
|
877
871
|
|
|
872
|
+
// PanelRightDashed aliases
|
|
873
|
+
export {
|
|
874
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelRightDashed} instead. This alias will be removed in v1.0 */
|
|
875
|
+
default as PanelRightInactive
|
|
876
|
+
} from '../icons/panel-right-dashed';
|
|
877
|
+
|
|
878
878
|
// PanelsTopLeft aliases
|
|
879
879
|
export {
|
|
880
880
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelsTopLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -977,18 +977,18 @@ export {
|
|
|
977
977
|
default as ArrowDownRightSquare
|
|
978
978
|
} from '../icons/square-arrow-down-right';
|
|
979
979
|
|
|
980
|
-
// SquareArrowDown aliases
|
|
981
|
-
export {
|
|
982
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
983
|
-
default as ArrowDownSquare
|
|
984
|
-
} from '../icons/square-arrow-down';
|
|
985
|
-
|
|
986
980
|
// SquareArrowLeft aliases
|
|
987
981
|
export {
|
|
988
982
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowLeft} instead. This alias will be removed in v1.0 */
|
|
989
983
|
default as ArrowLeftSquare
|
|
990
984
|
} from '../icons/square-arrow-left';
|
|
991
985
|
|
|
986
|
+
// SquareArrowDown aliases
|
|
987
|
+
export {
|
|
988
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDown} instead. This alias will be removed in v1.0 */
|
|
989
|
+
default as ArrowDownSquare
|
|
990
|
+
} from '../icons/square-arrow-down';
|
|
991
|
+
|
|
992
992
|
// SquareArrowOutDownLeft aliases
|
|
993
993
|
export {
|
|
994
994
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -1019,18 +1019,18 @@ export {
|
|
|
1019
1019
|
default as ArrowRightSquare
|
|
1020
1020
|
} from '../icons/square-arrow-right';
|
|
1021
1021
|
|
|
1022
|
-
// SquareArrowUpRight aliases
|
|
1023
|
-
export {
|
|
1024
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
1025
|
-
default as ArrowUpRightSquare
|
|
1026
|
-
} from '../icons/square-arrow-up-right';
|
|
1027
|
-
|
|
1028
1022
|
// SquareArrowUpLeft aliases
|
|
1029
1023
|
export {
|
|
1030
1024
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. This alias will be removed in v1.0 */
|
|
1031
1025
|
default as ArrowUpLeftSquare
|
|
1032
1026
|
} from '../icons/square-arrow-up-left';
|
|
1033
1027
|
|
|
1028
|
+
// SquareArrowUpRight aliases
|
|
1029
|
+
export {
|
|
1030
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
1031
|
+
default as ArrowUpRightSquare
|
|
1032
|
+
} from '../icons/square-arrow-up-right';
|
|
1033
|
+
|
|
1034
1034
|
// SquareArrowUp aliases
|
|
1035
1035
|
export {
|
|
1036
1036
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. This alias will be removed in v1.0 */
|
|
@@ -1049,6 +1049,18 @@ export {
|
|
|
1049
1049
|
default as ScissorsSquareDashedBottom
|
|
1050
1050
|
} from '../icons/square-bottom-dashed-scissors';
|
|
1051
1051
|
|
|
1052
|
+
// SquareCenterlineDashedHorizontal aliases
|
|
1053
|
+
export {
|
|
1054
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedHorizontal} instead. This alias will be removed in v1.0 */
|
|
1055
|
+
default as FlipHorizontal
|
|
1056
|
+
} from '../icons/square-centerline-dashed-horizontal';
|
|
1057
|
+
|
|
1058
|
+
// SquareCenterlineDashedVertical aliases
|
|
1059
|
+
export {
|
|
1060
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. This alias will be removed in v1.0 */
|
|
1061
|
+
default as FlipVertical
|
|
1062
|
+
} from '../icons/square-centerline-dashed-vertical';
|
|
1063
|
+
|
|
1052
1064
|
// SquareChartGantt aliases
|
|
1053
1065
|
export {
|
|
1054
1066
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
@@ -1259,18 +1271,18 @@ export {
|
|
|
1259
1271
|
default as SigmaSquare
|
|
1260
1272
|
} from '../icons/square-sigma';
|
|
1261
1273
|
|
|
1262
|
-
// SquareSplitHorizontal aliases
|
|
1263
|
-
export {
|
|
1264
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1265
|
-
default as SplitSquareHorizontal
|
|
1266
|
-
} from '../icons/square-split-horizontal';
|
|
1267
|
-
|
|
1268
1274
|
// SquareSlash aliases
|
|
1269
1275
|
export {
|
|
1270
1276
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
1271
1277
|
default as SlashSquare
|
|
1272
1278
|
} from '../icons/square-slash';
|
|
1273
1279
|
|
|
1280
|
+
// SquareSplitHorizontal aliases
|
|
1281
|
+
export {
|
|
1282
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1283
|
+
default as SplitSquareHorizontal
|
|
1284
|
+
} from '../icons/square-split-horizontal';
|
|
1285
|
+
|
|
1274
1286
|
// SquareSplitVertical aliases
|
|
1275
1287
|
export {
|
|
1276
1288
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -1295,18 +1307,18 @@ export {
|
|
|
1295
1307
|
default as UserSquare
|
|
1296
1308
|
} from '../icons/square-user';
|
|
1297
1309
|
|
|
1298
|
-
// SquareX aliases
|
|
1299
|
-
export {
|
|
1300
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
1301
|
-
default as XSquare
|
|
1302
|
-
} from '../icons/square-x';
|
|
1303
|
-
|
|
1304
1310
|
// TestTubeDiagonal aliases
|
|
1305
1311
|
export {
|
|
1306
1312
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TestTubeDiagonal} instead. This alias will be removed in v1.0 */
|
|
1307
1313
|
default as TestTube2
|
|
1308
1314
|
} from '../icons/test-tube-diagonal';
|
|
1309
1315
|
|
|
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. This alias will be removed in v1.0 */
|
|
1319
|
+
default as XSquare
|
|
1320
|
+
} from '../icons/square-x';
|
|
1321
|
+
|
|
1310
1322
|
// TextAlignCenter aliases
|
|
1311
1323
|
export {
|
|
1312
1324
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignCenter} instead. This alias will be removed in v1.0 */
|
|
@@ -1379,18 +1391,18 @@ export {
|
|
|
1379
1391
|
default as Tv2
|
|
1380
1392
|
} from '../icons/tv-minimal';
|
|
1381
1393
|
|
|
1382
|
-
// UserRoundCheck aliases
|
|
1383
|
-
export {
|
|
1384
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
1385
|
-
default as UserCheck2
|
|
1386
|
-
} from '../icons/user-round-check';
|
|
1387
|
-
|
|
1388
1394
|
// University aliases
|
|
1389
1395
|
export {
|
|
1390
1396
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
1391
1397
|
default as School2
|
|
1392
1398
|
} from '../icons/university';
|
|
1393
1399
|
|
|
1400
|
+
// UserRoundCheck aliases
|
|
1401
|
+
export {
|
|
1402
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
1403
|
+
default as UserCheck2
|
|
1404
|
+
} from '../icons/user-round-check';
|
|
1405
|
+
|
|
1394
1406
|
// UserRoundCog aliases
|
|
1395
1407
|
export {
|
|
1396
1408
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
@@ -1439,15 +1451,15 @@ export {
|
|
|
1439
1451
|
default as ForkKnife
|
|
1440
1452
|
} from '../icons/utensils';
|
|
1441
1453
|
|
|
1442
|
-
// WalletMinimal aliases
|
|
1443
|
-
export {
|
|
1444
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
1445
|
-
default as Wallet2
|
|
1446
|
-
} from '../icons/wallet-minimal';
|
|
1447
|
-
|
|
1448
1454
|
// WandSparkles aliases
|
|
1449
1455
|
export {
|
|
1450
1456
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WandSparkles} instead. This alias will be removed in v1.0 */
|
|
1451
1457
|
default as Wand2
|
|
1452
1458
|
} from '../icons/wand-sparkles';
|
|
1453
1459
|
|
|
1460
|
+
// WalletMinimal aliases
|
|
1461
|
+
export {
|
|
1462
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|
|
1463
|
+
default as Wallet2
|
|
1464
|
+
} from '../icons/wallet-minimal';
|
|
1465
|
+
|