@lucide/astro 1.40.0 → 1.41.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 +100 -94
- package/src/aliases/prefixed.ts +592 -572
- package/src/aliases/suffixed.ts +861 -841
- package/src/icons/can-soda.ts +18 -0
- package/src/icons/credit-card-reader.ts +18 -0
- package/src/icons/door-closed-locked.ts +2 -2
- package/src/icons/door-closed.ts +2 -2
- package/src/icons/door-open.ts +2 -2
- package/src/icons/{trash-2.ts → door-stairwell.ts} +4 -4
- package/src/icons/engine.ts +18 -0
- package/src/icons/germ-off.ts +18 -0
- package/src/icons/germ.ts +18 -0
- package/src/icons/index.ts +166 -158
- package/src/icons/leaf.ts +2 -2
- package/src/icons/square-exclamation-point.ts +18 -0
- package/src/icons/trash.ts +2 -2
- package/src/icons/virus-off.ts +18 -0
- package/src/icons/virus.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -41,6 +41,12 @@ export {
|
|
|
41
41
|
default as ArrowUpAz
|
|
42
42
|
} from '../icons/arrow-up-a-z';
|
|
43
43
|
|
|
44
|
+
// ArrowUpNarrowWide aliases
|
|
45
|
+
export {
|
|
46
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
47
|
+
default as SortAsc
|
|
48
|
+
} from '../icons/arrow-up-narrow-wide';
|
|
49
|
+
|
|
44
50
|
// ArrowUpZA aliases
|
|
45
51
|
export {
|
|
46
52
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpZA} instead. */
|
|
@@ -53,12 +59,6 @@ export {
|
|
|
53
59
|
default as Axis3D
|
|
54
60
|
} from '../icons/axis-3d';
|
|
55
61
|
|
|
56
|
-
// ArrowUpNarrowWide aliases
|
|
57
|
-
export {
|
|
58
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ArrowUpNarrowWide} instead. */
|
|
59
|
-
default as SortAsc
|
|
60
|
-
} from '../icons/arrow-up-narrow-wide';
|
|
61
|
-
|
|
62
62
|
// BadgeCheck aliases
|
|
63
63
|
export {
|
|
64
64
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BadgeCheck} instead. */
|
|
@@ -83,6 +83,12 @@ export {
|
|
|
83
83
|
default as BetweenHorizonalStart
|
|
84
84
|
} from '../icons/between-horizontal-start';
|
|
85
85
|
|
|
86
|
+
// BookDashed aliases
|
|
87
|
+
export {
|
|
88
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
89
|
+
default as BookTemplate
|
|
90
|
+
} from '../icons/book-dashed';
|
|
91
|
+
|
|
86
92
|
// Braces aliases
|
|
87
93
|
export {
|
|
88
94
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Braces} instead. */
|
|
@@ -101,12 +107,6 @@ export {
|
|
|
101
107
|
default as AreaChart
|
|
102
108
|
} from '../icons/chart-area';
|
|
103
109
|
|
|
104
|
-
// BookDashed aliases
|
|
105
|
-
export {
|
|
106
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link BookDashed} instead. */
|
|
107
|
-
default as BookTemplate
|
|
108
|
-
} from '../icons/book-dashed';
|
|
109
|
-
|
|
110
110
|
// ChartBarBig aliases
|
|
111
111
|
export {
|
|
112
112
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. */
|
|
@@ -233,18 +233,18 @@ export {
|
|
|
233
233
|
default as ArrowUpCircle
|
|
234
234
|
} from '../icons/circle-arrow-up';
|
|
235
235
|
|
|
236
|
-
// CircleCheck aliases
|
|
237
|
-
export {
|
|
238
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. */
|
|
239
|
-
default as CheckCircle2
|
|
240
|
-
} from '../icons/circle-check';
|
|
241
|
-
|
|
242
236
|
// CircleCheckBig aliases
|
|
243
237
|
export {
|
|
244
238
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. */
|
|
245
239
|
default as CheckCircle
|
|
246
240
|
} from '../icons/circle-check-big';
|
|
247
241
|
|
|
242
|
+
// CircleCheck aliases
|
|
243
|
+
export {
|
|
244
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. */
|
|
245
|
+
default as CheckCircle2
|
|
246
|
+
} from '../icons/circle-check';
|
|
247
|
+
|
|
248
248
|
// CircleChevronDown aliases
|
|
249
249
|
export {
|
|
250
250
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. */
|
|
@@ -347,18 +347,18 @@ export {
|
|
|
347
347
|
default as CircleSlashed
|
|
348
348
|
} from '../icons/circle-slash-2';
|
|
349
349
|
|
|
350
|
-
// CircleUserRound aliases
|
|
351
|
-
export {
|
|
352
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. */
|
|
353
|
-
default as UserCircle2
|
|
354
|
-
} from '../icons/circle-user-round';
|
|
355
|
-
|
|
356
350
|
// CircleStop aliases
|
|
357
351
|
export {
|
|
358
352
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleStop} instead. */
|
|
359
353
|
default as StopCircle
|
|
360
354
|
} from '../icons/circle-stop';
|
|
361
355
|
|
|
356
|
+
// CircleUserRound aliases
|
|
357
|
+
export {
|
|
358
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUserRound} instead. */
|
|
359
|
+
default as UserCircle2
|
|
360
|
+
} from '../icons/circle-user-round';
|
|
361
|
+
|
|
362
362
|
// CircleUser aliases
|
|
363
363
|
export {
|
|
364
364
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleUser} instead. */
|
|
@@ -401,6 +401,12 @@ export {
|
|
|
401
401
|
default as Code2
|
|
402
402
|
} from '../icons/code-xml';
|
|
403
403
|
|
|
404
|
+
// Columns2 aliases
|
|
405
|
+
export {
|
|
406
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
407
|
+
default as Columns
|
|
408
|
+
} from '../icons/columns-2';
|
|
409
|
+
|
|
404
410
|
// Columns3Cog aliases
|
|
405
411
|
export {
|
|
406
412
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. */
|
|
@@ -413,35 +419,23 @@ export {
|
|
|
413
419
|
default as TableConfig
|
|
414
420
|
} from '../icons/columns-3-cog';
|
|
415
421
|
|
|
416
|
-
// Columns2 aliases
|
|
417
|
-
export {
|
|
418
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. */
|
|
419
|
-
default as Columns
|
|
420
|
-
} from '../icons/columns-2';
|
|
421
|
-
|
|
422
422
|
// Columns3 aliases
|
|
423
423
|
export {
|
|
424
424
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. */
|
|
425
425
|
default as PanelsLeftRight
|
|
426
426
|
} from '../icons/columns-3';
|
|
427
427
|
|
|
428
|
-
// 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
|
|
|
440
|
-
//
|
|
434
|
+
// DiamondPercent aliases
|
|
441
435
|
export {
|
|
442
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
443
|
-
default as
|
|
444
|
-
} from '../icons/
|
|
436
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. */
|
|
437
|
+
default as PercentDiamond
|
|
438
|
+
} from '../icons/diamond-percent';
|
|
445
439
|
|
|
446
440
|
// Earth aliases
|
|
447
441
|
export {
|
|
@@ -449,6 +443,12 @@ export {
|
|
|
449
443
|
default as Globe2
|
|
450
444
|
} from '../icons/earth';
|
|
451
445
|
|
|
446
|
+
// EllipsisVertical aliases
|
|
447
|
+
export {
|
|
448
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. */
|
|
449
|
+
default as MoreVertical
|
|
450
|
+
} from '../icons/ellipsis-vertical';
|
|
451
|
+
|
|
452
452
|
// Ellipsis aliases
|
|
453
453
|
export {
|
|
454
454
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. */
|
|
@@ -707,18 +707,18 @@ export {
|
|
|
707
707
|
default as Grid2X2Plus
|
|
708
708
|
} from '../icons/grid-2x2-plus';
|
|
709
709
|
|
|
710
|
-
// Grid2x2 aliases
|
|
711
|
-
export {
|
|
712
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
713
|
-
default as Grid2X2
|
|
714
|
-
} from '../icons/grid-2x2';
|
|
715
|
-
|
|
716
710
|
// Grid2x2X aliases
|
|
717
711
|
export {
|
|
718
712
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. */
|
|
719
713
|
default as Grid2X2X
|
|
720
714
|
} from '../icons/grid-2x2-x';
|
|
721
715
|
|
|
716
|
+
// Grid2x2 aliases
|
|
717
|
+
export {
|
|
718
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. */
|
|
719
|
+
default as Grid2X2
|
|
720
|
+
} from '../icons/grid-2x2';
|
|
721
|
+
|
|
722
722
|
// Grid3x3 aliases
|
|
723
723
|
export {
|
|
724
724
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid3x3} instead. */
|
|
@@ -743,18 +743,18 @@ export {
|
|
|
743
743
|
default as HelpingHand
|
|
744
744
|
} from '../icons/hand-helping';
|
|
745
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
|
-
|
|
752
746
|
// IceCreamBowl aliases
|
|
753
747
|
export {
|
|
754
748
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. */
|
|
755
749
|
default as IceCream2
|
|
756
750
|
} from '../icons/ice-cream-bowl';
|
|
757
751
|
|
|
752
|
+
// House aliases
|
|
753
|
+
export {
|
|
754
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. */
|
|
755
|
+
default as Home
|
|
756
|
+
} from '../icons/house';
|
|
757
|
+
|
|
758
758
|
// IceCreamCone aliases
|
|
759
759
|
export {
|
|
760
760
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. */
|
|
@@ -767,6 +767,12 @@ export {
|
|
|
767
767
|
default as Laptop2
|
|
768
768
|
} from '../icons/laptop-minimal';
|
|
769
769
|
|
|
770
|
+
// Layers aliases
|
|
771
|
+
export {
|
|
772
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. */
|
|
773
|
+
default as Layers3
|
|
774
|
+
} from '../icons/layers';
|
|
775
|
+
|
|
770
776
|
// ListIndentDecrease aliases
|
|
771
777
|
export {
|
|
772
778
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentDecrease} instead. */
|
|
@@ -779,12 +785,6 @@ export {
|
|
|
779
785
|
default as IndentDecrease
|
|
780
786
|
} from '../icons/list-indent-decrease';
|
|
781
787
|
|
|
782
|
-
// Layers aliases
|
|
783
|
-
export {
|
|
784
|
-
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Layers} instead. */
|
|
785
|
-
default as Layers3
|
|
786
|
-
} from '../icons/layers';
|
|
787
|
-
|
|
788
788
|
// ListIndentIncrease aliases
|
|
789
789
|
export {
|
|
790
790
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. */
|
|
@@ -797,18 +797,18 @@ export {
|
|
|
797
797
|
default as IndentIncrease
|
|
798
798
|
} from '../icons/list-indent-increase';
|
|
799
799
|
|
|
800
|
-
// LockKeyholeOpen aliases
|
|
801
|
-
export {
|
|
802
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. */
|
|
803
|
-
default as UnlockKeyhole
|
|
804
|
-
} from '../icons/lock-keyhole-open';
|
|
805
|
-
|
|
806
800
|
// LoaderCircle aliases
|
|
807
801
|
export {
|
|
808
802
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. */
|
|
809
803
|
default as Loader2
|
|
810
804
|
} from '../icons/loader-circle';
|
|
811
805
|
|
|
806
|
+
// LockKeyholeOpen aliases
|
|
807
|
+
export {
|
|
808
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. */
|
|
809
|
+
default as UnlockKeyhole
|
|
810
|
+
} from '../icons/lock-keyhole-open';
|
|
811
|
+
|
|
812
812
|
// LockOpen aliases
|
|
813
813
|
export {
|
|
814
814
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. */
|
|
@@ -833,18 +833,18 @@ export {
|
|
|
833
833
|
default as MessageCircleQuestion
|
|
834
834
|
} from '../icons/message-circle-question-mark';
|
|
835
835
|
|
|
836
|
-
// MicVocal aliases
|
|
837
|
-
export {
|
|
838
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. */
|
|
839
|
-
default as Mic2
|
|
840
|
-
} from '../icons/mic-vocal';
|
|
841
|
-
|
|
842
836
|
// MicSignal aliases
|
|
843
837
|
export {
|
|
844
838
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicSignal} instead. */
|
|
845
839
|
default as Podcast
|
|
846
840
|
} from '../icons/mic-signal';
|
|
847
841
|
|
|
842
|
+
// MicVocal aliases
|
|
843
|
+
export {
|
|
844
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. */
|
|
845
|
+
default as Mic2
|
|
846
|
+
} from '../icons/mic-vocal';
|
|
847
|
+
|
|
848
848
|
// Move3d aliases
|
|
849
849
|
export {
|
|
850
850
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. */
|
|
@@ -1055,18 +1055,18 @@ export {
|
|
|
1055
1055
|
default as ArrowUpLeftFromSquare
|
|
1056
1056
|
} from '../icons/square-arrow-out-up-left';
|
|
1057
1057
|
|
|
1058
|
-
// SquareArrowRight aliases
|
|
1059
|
-
export {
|
|
1060
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. */
|
|
1061
|
-
default as ArrowRightSquare
|
|
1062
|
-
} from '../icons/square-arrow-right';
|
|
1063
|
-
|
|
1064
1058
|
// SquareArrowOutUpRight aliases
|
|
1065
1059
|
export {
|
|
1066
1060
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. */
|
|
1067
1061
|
default as ArrowUpRightFromSquare
|
|
1068
1062
|
} from '../icons/square-arrow-out-up-right';
|
|
1069
1063
|
|
|
1064
|
+
// SquareArrowRight aliases
|
|
1065
|
+
export {
|
|
1066
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowRight} instead. */
|
|
1067
|
+
default as ArrowRightSquare
|
|
1068
|
+
} from '../icons/square-arrow-right';
|
|
1069
|
+
|
|
1070
1070
|
// SquareArrowUpLeft aliases
|
|
1071
1071
|
export {
|
|
1072
1072
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. */
|
|
@@ -1121,18 +1121,18 @@ export {
|
|
|
1121
1121
|
default as SquareGanttChart
|
|
1122
1122
|
} from '../icons/square-chart-gantt';
|
|
1123
1123
|
|
|
1124
|
-
// SquareCheck aliases
|
|
1125
|
-
export {
|
|
1126
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. */
|
|
1127
|
-
default as CheckSquare2
|
|
1128
|
-
} from '../icons/square-check';
|
|
1129
|
-
|
|
1130
1124
|
// SquareCheckBig aliases
|
|
1131
1125
|
export {
|
|
1132
1126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheckBig} instead. */
|
|
1133
1127
|
default as CheckSquare
|
|
1134
1128
|
} from '../icons/square-check-big';
|
|
1135
1129
|
|
|
1130
|
+
// SquareCheck aliases
|
|
1131
|
+
export {
|
|
1132
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCheck} instead. */
|
|
1133
|
+
default as CheckSquare2
|
|
1134
|
+
} from '../icons/square-check';
|
|
1135
|
+
|
|
1136
1136
|
// SquareChevronDown aliases
|
|
1137
1137
|
export {
|
|
1138
1138
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. */
|
|
@@ -1307,18 +1307,18 @@ export {
|
|
|
1307
1307
|
default as PlaySquare
|
|
1308
1308
|
} from '../icons/square-play';
|
|
1309
1309
|
|
|
1310
|
-
// SquarePlus aliases
|
|
1311
|
-
export {
|
|
1312
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. */
|
|
1313
|
-
default as PlusSquare
|
|
1314
|
-
} from '../icons/square-plus';
|
|
1315
|
-
|
|
1316
1310
|
// SquarePower aliases
|
|
1317
1311
|
export {
|
|
1318
1312
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePower} instead. */
|
|
1319
1313
|
default as PowerSquare
|
|
1320
1314
|
} from '../icons/square-power';
|
|
1321
1315
|
|
|
1316
|
+
// SquarePlus aliases
|
|
1317
|
+
export {
|
|
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';
|
|
1321
|
+
|
|
1322
1322
|
// SquareScissors aliases
|
|
1323
1323
|
export {
|
|
1324
1324
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. */
|
|
@@ -1427,6 +1427,12 @@ export {
|
|
|
1427
1427
|
default as Train
|
|
1428
1428
|
} from '../icons/tram-front';
|
|
1429
1429
|
|
|
1430
|
+
// Trash aliases
|
|
1431
|
+
export {
|
|
1432
|
+
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link Trash} instead. */
|
|
1433
|
+
default as Trash2
|
|
1434
|
+
} from '../icons/trash';
|
|
1435
|
+
|
|
1430
1436
|
// TreePalm aliases
|
|
1431
1437
|
export {
|
|
1432
1438
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. */
|
|
@@ -1451,18 +1457,18 @@ export {
|
|
|
1451
1457
|
default as School2
|
|
1452
1458
|
} from '../icons/university';
|
|
1453
1459
|
|
|
1454
|
-
// UserRoundCheck aliases
|
|
1455
|
-
export {
|
|
1456
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. */
|
|
1457
|
-
default as UserCheck2
|
|
1458
|
-
} from '../icons/user-round-check';
|
|
1459
|
-
|
|
1460
1460
|
// UserRoundCog aliases
|
|
1461
1461
|
export {
|
|
1462
1462
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. */
|
|
1463
1463
|
default as UserCog2
|
|
1464
1464
|
} from '../icons/user-round-cog';
|
|
1465
1465
|
|
|
1466
|
+
// UserRoundCheck aliases
|
|
1467
|
+
export {
|
|
1468
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. */
|
|
1469
|
+
default as UserCheck2
|
|
1470
|
+
} from '../icons/user-round-check';
|
|
1471
|
+
|
|
1466
1472
|
// UserRoundMinus aliases
|
|
1467
1473
|
export {
|
|
1468
1474
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. */
|