@lucide/astro 0.570.0 → 0.572.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 +90 -90
- package/src/aliases/prefixed.ts +623 -619
- package/src/aliases/suffixed.ts +1056 -1052
- package/src/icons/ban.ts +2 -2
- package/src/icons/circle-divide.ts +2 -2
- package/src/icons/circle-equal.ts +2 -2
- package/src/icons/circle-pound-sterling.ts +2 -2
- package/src/icons/circle-power.ts +2 -2
- package/src/icons/circle-slash-2.ts +2 -2
- package/src/icons/circle-star.ts +2 -2
- package/src/icons/clock-1.ts +2 -2
- package/src/icons/clock-10.ts +2 -2
- package/src/icons/clock-11.ts +2 -2
- package/src/icons/clock-12.ts +2 -2
- package/src/icons/clock-2.ts +2 -2
- package/src/icons/clock-3.ts +2 -2
- package/src/icons/clock-4.ts +2 -2
- package/src/icons/clock-5.ts +2 -2
- package/src/icons/clock-6.ts +2 -2
- package/src/icons/clock-7.ts +2 -2
- package/src/icons/clock-8.ts +2 -2
- package/src/icons/clock-9.ts +2 -2
- package/src/icons/clock.ts +2 -2
- package/src/icons/compass.ts +2 -2
- package/src/icons/index.ts +186 -184
- package/src/icons/message-circle-check.ts +18 -0
- package/src/icons/shelving-unit.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -197,36 +197,36 @@ export {
|
|
|
197
197
|
default as ArrowDownCircle
|
|
198
198
|
} from '../icons/circle-arrow-down';
|
|
199
199
|
|
|
200
|
-
// CircleArrowLeft aliases
|
|
201
|
-
export {
|
|
202
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. This alias will be removed in v1.0 */
|
|
203
|
-
default as ArrowLeftCircle
|
|
204
|
-
} from '../icons/circle-arrow-left';
|
|
205
|
-
|
|
206
200
|
// CircleArrowOutDownLeft aliases
|
|
207
201
|
export {
|
|
208
202
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownLeft} instead. This alias will be removed in v1.0 */
|
|
209
203
|
default as ArrowDownLeftFromCircle
|
|
210
204
|
} from '../icons/circle-arrow-out-down-left';
|
|
211
205
|
|
|
206
|
+
// CircleArrowLeft aliases
|
|
207
|
+
export {
|
|
208
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowLeft} instead. This alias will be removed in v1.0 */
|
|
209
|
+
default as ArrowLeftCircle
|
|
210
|
+
} from '../icons/circle-arrow-left';
|
|
211
|
+
|
|
212
212
|
// CircleArrowOutDownRight aliases
|
|
213
213
|
export {
|
|
214
214
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
215
215
|
default as ArrowDownRightFromCircle
|
|
216
216
|
} from '../icons/circle-arrow-out-down-right';
|
|
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. This alias will be removed in v1.0 */
|
|
221
|
-
default as ArrowUpRightFromCircle
|
|
222
|
-
} from '../icons/circle-arrow-out-up-right';
|
|
223
|
-
|
|
224
218
|
// CircleArrowOutUpLeft aliases
|
|
225
219
|
export {
|
|
226
220
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
227
221
|
default as ArrowUpLeftFromCircle
|
|
228
222
|
} from '../icons/circle-arrow-out-up-left';
|
|
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. This alias will be removed in v1.0 */
|
|
227
|
+
default as ArrowUpRightFromCircle
|
|
228
|
+
} from '../icons/circle-arrow-out-up-right';
|
|
229
|
+
|
|
230
230
|
// CircleArrowRight aliases
|
|
231
231
|
export {
|
|
232
232
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowRight} instead. This alias will be removed in v1.0 */
|
|
@@ -245,18 +245,18 @@ export {
|
|
|
245
245
|
default as CheckCircle
|
|
246
246
|
} from '../icons/circle-check-big';
|
|
247
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. This alias will be removed in v1.0 */
|
|
251
|
-
default as ChevronDownCircle
|
|
252
|
-
} from '../icons/circle-chevron-down';
|
|
253
|
-
|
|
254
248
|
// CircleCheck aliases
|
|
255
249
|
export {
|
|
256
250
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheck} instead. This alias will be removed in v1.0 */
|
|
257
251
|
default as CheckCircle2
|
|
258
252
|
} from '../icons/circle-check';
|
|
259
253
|
|
|
254
|
+
// CircleChevronDown aliases
|
|
255
|
+
export {
|
|
256
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronDown} instead. This alias will be removed in v1.0 */
|
|
257
|
+
default as ChevronDownCircle
|
|
258
|
+
} from '../icons/circle-chevron-down';
|
|
259
|
+
|
|
260
260
|
// CircleChevronLeft aliases
|
|
261
261
|
export {
|
|
262
262
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronLeft} instead. This alias will be removed in v1.0 */
|
|
@@ -311,18 +311,18 @@ export {
|
|
|
311
311
|
default as PauseCircle
|
|
312
312
|
} from '../icons/circle-pause';
|
|
313
313
|
|
|
314
|
-
// CirclePercent aliases
|
|
315
|
-
export {
|
|
316
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
317
|
-
default as PercentCircle
|
|
318
|
-
} from '../icons/circle-percent';
|
|
319
|
-
|
|
320
314
|
// CirclePlay aliases
|
|
321
315
|
export {
|
|
322
316
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlay} instead. This alias will be removed in v1.0 */
|
|
323
317
|
default as PlayCircle
|
|
324
318
|
} from '../icons/circle-play';
|
|
325
319
|
|
|
320
|
+
// CirclePercent aliases
|
|
321
|
+
export {
|
|
322
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePercent} instead. This alias will be removed in v1.0 */
|
|
323
|
+
default as PercentCircle
|
|
324
|
+
} from '../icons/circle-percent';
|
|
325
|
+
|
|
326
326
|
// CirclePlus aliases
|
|
327
327
|
export {
|
|
328
328
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CirclePlus} instead. This alias will be removed in v1.0 */
|
|
@@ -401,12 +401,6 @@ export {
|
|
|
401
401
|
default as UploadCloud
|
|
402
402
|
} from '../icons/cloud-upload';
|
|
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. This alias will be removed in v1.0 */
|
|
407
|
-
default as Columns
|
|
408
|
-
} from '../icons/columns-2';
|
|
409
|
-
|
|
410
404
|
// CodeXml aliases
|
|
411
405
|
export {
|
|
412
406
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CodeXml} instead. This alias will be removed in v1.0 */
|
|
@@ -425,6 +419,12 @@ export {
|
|
|
425
419
|
default as TableConfig
|
|
426
420
|
} from '../icons/columns-3-cog';
|
|
427
421
|
|
|
422
|
+
// Columns2 aliases
|
|
423
|
+
export {
|
|
424
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
425
|
+
default as Columns
|
|
426
|
+
} from '../icons/columns-2';
|
|
427
|
+
|
|
428
428
|
// Columns3 aliases
|
|
429
429
|
export {
|
|
430
430
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3} instead. This alias will be removed in v1.0 */
|
|
@@ -461,18 +461,18 @@ export {
|
|
|
461
461
|
default as MoreHorizontal
|
|
462
462
|
} from '../icons/ellipsis';
|
|
463
463
|
|
|
464
|
-
// FileAxis3d aliases
|
|
465
|
-
export {
|
|
466
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
467
|
-
default as FileAxis3D
|
|
468
|
-
} from '../icons/file-axis-3d';
|
|
469
|
-
|
|
470
464
|
// FileBadge aliases
|
|
471
465
|
export {
|
|
472
466
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileBadge} instead. This alias will be removed in v1.0 */
|
|
473
467
|
default as FileBadge2
|
|
474
468
|
} from '../icons/file-badge';
|
|
475
469
|
|
|
470
|
+
// FileAxis3d aliases
|
|
471
|
+
export {
|
|
472
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileAxis3d} instead. This alias will be removed in v1.0 */
|
|
473
|
+
default as FileAxis3D
|
|
474
|
+
} from '../icons/file-axis-3d';
|
|
475
|
+
|
|
476
476
|
// FileBracesCorner aliases
|
|
477
477
|
export {
|
|
478
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 */
|
|
@@ -575,18 +575,18 @@ export {
|
|
|
575
575
|
default as FileEdit
|
|
576
576
|
} from '../icons/file-pen';
|
|
577
577
|
|
|
578
|
-
// FilePlay aliases
|
|
579
|
-
export {
|
|
580
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. This alias will be removed in v1.0 */
|
|
581
|
-
default as FileVideo
|
|
582
|
-
} from '../icons/file-play';
|
|
583
|
-
|
|
584
578
|
// FilePlusCorner aliases
|
|
585
579
|
export {
|
|
586
580
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. This alias will be removed in v1.0 */
|
|
587
581
|
default as FilePlus2
|
|
588
582
|
} from '../icons/file-plus-corner';
|
|
589
583
|
|
|
584
|
+
// FilePlay aliases
|
|
585
|
+
export {
|
|
586
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. This alias will be removed in v1.0 */
|
|
587
|
+
default as FileVideo
|
|
588
|
+
} from '../icons/file-play';
|
|
589
|
+
|
|
590
590
|
// FileQuestionMark aliases
|
|
591
591
|
export {
|
|
592
592
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileQuestionMark} instead. This alias will be removed in v1.0 */
|
|
@@ -671,18 +671,18 @@ export {
|
|
|
671
671
|
default as Grid2X2Plus
|
|
672
672
|
} from '../icons/grid-2x2-plus';
|
|
673
673
|
|
|
674
|
-
// Grid2x2X aliases
|
|
675
|
-
export {
|
|
676
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. This alias will be removed in v1.0 */
|
|
677
|
-
default as Grid2X2X
|
|
678
|
-
} from '../icons/grid-2x2-x';
|
|
679
|
-
|
|
680
674
|
// Grid2x2 aliases
|
|
681
675
|
export {
|
|
682
676
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2} instead. This alias will be removed in v1.0 */
|
|
683
677
|
default as Grid2X2
|
|
684
678
|
} from '../icons/grid-2x2';
|
|
685
679
|
|
|
680
|
+
// Grid2x2X aliases
|
|
681
|
+
export {
|
|
682
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Grid2x2X} instead. This alias will be removed in v1.0 */
|
|
683
|
+
default as Grid2X2X
|
|
684
|
+
} from '../icons/grid-2x2-x';
|
|
685
|
+
|
|
686
686
|
// Grid3x3 aliases
|
|
687
687
|
export {
|
|
688
688
|
/** @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 */
|
|
@@ -761,18 +761,18 @@ export {
|
|
|
761
761
|
default as IndentIncrease
|
|
762
762
|
} from '../icons/list-indent-increase';
|
|
763
763
|
|
|
764
|
-
// LoaderCircle aliases
|
|
765
|
-
export {
|
|
766
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
767
|
-
default as Loader2
|
|
768
|
-
} from '../icons/loader-circle';
|
|
769
|
-
|
|
770
764
|
// LockKeyholeOpen aliases
|
|
771
765
|
export {
|
|
772
766
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockKeyholeOpen} instead. This alias will be removed in v1.0 */
|
|
773
767
|
default as UnlockKeyhole
|
|
774
768
|
} from '../icons/lock-keyhole-open';
|
|
775
769
|
|
|
770
|
+
// LoaderCircle aliases
|
|
771
|
+
export {
|
|
772
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LoaderCircle} instead. This alias will be removed in v1.0 */
|
|
773
|
+
default as Loader2
|
|
774
|
+
} from '../icons/loader-circle';
|
|
775
|
+
|
|
776
776
|
// LockOpen aliases
|
|
777
777
|
export {
|
|
778
778
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LockOpen} instead. This alias will be removed in v1.0 */
|
|
@@ -791,18 +791,18 @@ export {
|
|
|
791
791
|
default as LocationEdit
|
|
792
792
|
} from '../icons/map-pin-pen';
|
|
793
793
|
|
|
794
|
-
// MessageCircleQuestionMark aliases
|
|
795
|
-
export {
|
|
796
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
797
|
-
default as MessageCircleQuestion
|
|
798
|
-
} from '../icons/message-circle-question-mark';
|
|
799
|
-
|
|
800
794
|
// MicVocal aliases
|
|
801
795
|
export {
|
|
802
796
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MicVocal} instead. This alias will be removed in v1.0 */
|
|
803
797
|
default as Mic2
|
|
804
798
|
} from '../icons/mic-vocal';
|
|
805
799
|
|
|
800
|
+
// MessageCircleQuestionMark aliases
|
|
801
|
+
export {
|
|
802
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MessageCircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
803
|
+
default as MessageCircleQuestion
|
|
804
|
+
} from '../icons/message-circle-question-mark';
|
|
805
|
+
|
|
806
806
|
// Move3d aliases
|
|
807
807
|
export {
|
|
808
808
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Move3d} instead. This alias will be removed in v1.0 */
|
|
@@ -815,18 +815,18 @@ export {
|
|
|
815
815
|
default as AlertOctagon
|
|
816
816
|
} from '../icons/octagon-alert';
|
|
817
817
|
|
|
818
|
-
// OctagonPause aliases
|
|
819
|
-
export {
|
|
820
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
821
|
-
default as PauseOctagon
|
|
822
|
-
} from '../icons/octagon-pause';
|
|
823
|
-
|
|
824
818
|
// OctagonX aliases
|
|
825
819
|
export {
|
|
826
820
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonX} instead. This alias will be removed in v1.0 */
|
|
827
821
|
default as XOctagon
|
|
828
822
|
} from '../icons/octagon-x';
|
|
829
823
|
|
|
824
|
+
// OctagonPause aliases
|
|
825
|
+
export {
|
|
826
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link OctagonPause} instead. This alias will be removed in v1.0 */
|
|
827
|
+
default as PauseOctagon
|
|
828
|
+
} from '../icons/octagon-pause';
|
|
829
|
+
|
|
830
830
|
// PaintbrushVertical aliases
|
|
831
831
|
export {
|
|
832
832
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PaintbrushVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -971,18 +971,18 @@ export {
|
|
|
971
971
|
default as ArrowDownLeftSquare
|
|
972
972
|
} from '../icons/square-arrow-down-left';
|
|
973
973
|
|
|
974
|
-
// SquareArrowDown aliases
|
|
975
|
-
export {
|
|
976
|
-
/** @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 */
|
|
977
|
-
default as ArrowDownSquare
|
|
978
|
-
} from '../icons/square-arrow-down';
|
|
979
|
-
|
|
980
974
|
// SquareArrowDownRight aliases
|
|
981
975
|
export {
|
|
982
976
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowDownRight} instead. This alias will be removed in v1.0 */
|
|
983
977
|
default as ArrowDownRightSquare
|
|
984
978
|
} from '../icons/square-arrow-down-right';
|
|
985
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
986
|
// SquareArrowLeft aliases
|
|
987
987
|
export {
|
|
988
988
|
/** @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 */
|
|
@@ -1109,18 +1109,18 @@ export {
|
|
|
1109
1109
|
default as KanbanSquareDashed
|
|
1110
1110
|
} from '../icons/square-dashed-kanban';
|
|
1111
1111
|
|
|
1112
|
-
// SquareDashedMousePointer aliases
|
|
1113
|
-
export {
|
|
1114
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
1115
|
-
default as MousePointerSquareDashed
|
|
1116
|
-
} from '../icons/square-dashed-mouse-pointer';
|
|
1117
|
-
|
|
1118
1112
|
// SquareDashed aliases
|
|
1119
1113
|
export {
|
|
1120
1114
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashed} instead. This alias will be removed in v1.0 */
|
|
1121
1115
|
default as BoxSelect
|
|
1122
1116
|
} from '../icons/square-dashed';
|
|
1123
1117
|
|
|
1118
|
+
// SquareDashedMousePointer aliases
|
|
1119
|
+
export {
|
|
1120
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedMousePointer} instead. This alias will be removed in v1.0 */
|
|
1121
|
+
default as MousePointerSquareDashed
|
|
1122
|
+
} from '../icons/square-dashed-mouse-pointer';
|
|
1123
|
+
|
|
1124
1124
|
// SquareDivide aliases
|
|
1125
1125
|
export {
|
|
1126
1126
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDivide} instead. This alias will be removed in v1.0 */
|
|
@@ -1145,18 +1145,18 @@ export {
|
|
|
1145
1145
|
default as FunctionSquare
|
|
1146
1146
|
} from '../icons/square-function';
|
|
1147
1147
|
|
|
1148
|
-
// SquareKanban aliases
|
|
1149
|
-
export {
|
|
1150
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
1151
|
-
default as KanbanSquare
|
|
1152
|
-
} from '../icons/square-kanban';
|
|
1153
|
-
|
|
1154
1148
|
// SquareLibrary aliases
|
|
1155
1149
|
export {
|
|
1156
1150
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareLibrary} instead. This alias will be removed in v1.0 */
|
|
1157
1151
|
default as LibrarySquare
|
|
1158
1152
|
} from '../icons/square-library';
|
|
1159
1153
|
|
|
1154
|
+
// SquareKanban aliases
|
|
1155
|
+
export {
|
|
1156
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareKanban} instead. This alias will be removed in v1.0 */
|
|
1157
|
+
default as KanbanSquare
|
|
1158
|
+
} from '../icons/square-kanban';
|
|
1159
|
+
|
|
1160
1160
|
// SquareM aliases
|
|
1161
1161
|
export {
|
|
1162
1162
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareM} instead. This alias will be removed in v1.0 */
|
|
@@ -1409,18 +1409,18 @@ export {
|
|
|
1409
1409
|
default as UserPlus2
|
|
1410
1410
|
} from '../icons/user-round-plus';
|
|
1411
1411
|
|
|
1412
|
-
// UserRound aliases
|
|
1413
|
-
export {
|
|
1414
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
1415
|
-
default as User2
|
|
1416
|
-
} from '../icons/user-round';
|
|
1417
|
-
|
|
1418
1412
|
// UserRoundX aliases
|
|
1419
1413
|
export {
|
|
1420
1414
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundX} instead. This alias will be removed in v1.0 */
|
|
1421
1415
|
default as UserX2
|
|
1422
1416
|
} from '../icons/user-round-x';
|
|
1423
1417
|
|
|
1418
|
+
// UserRound aliases
|
|
1419
|
+
export {
|
|
1420
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRound} instead. This alias will be removed in v1.0 */
|
|
1421
|
+
default as User2
|
|
1422
|
+
} from '../icons/user-round';
|
|
1423
|
+
|
|
1424
1424
|
// UsersRound aliases
|
|
1425
1425
|
export {
|
|
1426
1426
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UsersRound} instead. This alias will be removed in v1.0 */
|