@lucide/astro 0.550.0 → 0.551.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 -100
- package/src/aliases/prefixed.ts +596 -594
- package/src/aliases/suffixed.ts +895 -893
- package/src/icons/clock-check.ts +18 -0
- package/src/icons/index.ts +142 -141
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -227,18 +227,18 @@ export {
|
|
|
227
227
|
default as ArrowUpRightFromCircle
|
|
228
228
|
} from '../icons/circle-arrow-out-up-right';
|
|
229
229
|
|
|
230
|
-
// CircleArrowRight aliases
|
|
231
|
-
export {
|
|
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 */
|
|
233
|
-
default as ArrowRightCircle
|
|
234
|
-
} from '../icons/circle-arrow-right';
|
|
235
|
-
|
|
236
230
|
// CircleArrowUp aliases
|
|
237
231
|
export {
|
|
238
232
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleArrowUp} instead. This alias will be removed in v1.0 */
|
|
239
233
|
default as ArrowUpCircle
|
|
240
234
|
} from '../icons/circle-arrow-up';
|
|
241
235
|
|
|
236
|
+
// CircleArrowRight aliases
|
|
237
|
+
export {
|
|
238
|
+
/** @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 */
|
|
239
|
+
default as ArrowRightCircle
|
|
240
|
+
} from '../icons/circle-arrow-right';
|
|
241
|
+
|
|
242
242
|
// CircleCheckBig aliases
|
|
243
243
|
export {
|
|
244
244
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleCheckBig} instead. This alias will be removed in v1.0 */
|
|
@@ -251,18 +251,18 @@ export {
|
|
|
251
251
|
default as CheckCircle2
|
|
252
252
|
} from '../icons/circle-check';
|
|
253
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. This alias will be removed in v1.0 */
|
|
257
|
-
default as ChevronLeftCircle
|
|
258
|
-
} from '../icons/circle-chevron-left';
|
|
259
|
-
|
|
260
254
|
// CircleChevronDown aliases
|
|
261
255
|
export {
|
|
262
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 */
|
|
263
257
|
default as ChevronDownCircle
|
|
264
258
|
} from '../icons/circle-chevron-down';
|
|
265
259
|
|
|
260
|
+
// CircleChevronLeft aliases
|
|
261
|
+
export {
|
|
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 */
|
|
263
|
+
default as ChevronLeftCircle
|
|
264
|
+
} from '../icons/circle-chevron-left';
|
|
265
|
+
|
|
266
266
|
// CircleChevronRight aliases
|
|
267
267
|
export {
|
|
268
268
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleChevronRight} instead. This alias will be removed in v1.0 */
|
|
@@ -347,24 +347,30 @@ export {
|
|
|
347
347
|
default as CircleHelp
|
|
348
348
|
} from '../icons/circle-question-mark';
|
|
349
349
|
|
|
350
|
-
// CircleSlash2 aliases
|
|
351
|
-
export {
|
|
352
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
353
|
-
default as CircleSlashed
|
|
354
|
-
} from '../icons/circle-slash-2';
|
|
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. This alias will be removed in v1.0 */
|
|
359
353
|
default as StopCircle
|
|
360
354
|
} from '../icons/circle-stop';
|
|
361
355
|
|
|
356
|
+
// CircleSlash2 aliases
|
|
357
|
+
export {
|
|
358
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleSlash2} instead. This alias will be removed in v1.0 */
|
|
359
|
+
default as CircleSlashed
|
|
360
|
+
} from '../icons/circle-slash-2';
|
|
361
|
+
|
|
362
362
|
// CircleUserRound aliases
|
|
363
363
|
export {
|
|
364
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
365
|
default as UserCircle2
|
|
366
366
|
} from '../icons/circle-user-round';
|
|
367
367
|
|
|
368
|
+
// CircleX aliases
|
|
369
|
+
export {
|
|
370
|
+
/** @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 */
|
|
371
|
+
default as XCircle
|
|
372
|
+
} from '../icons/circle-x';
|
|
373
|
+
|
|
368
374
|
// CircleUser aliases
|
|
369
375
|
export {
|
|
370
376
|
/** @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 */
|
|
@@ -377,48 +383,30 @@ export {
|
|
|
377
383
|
default as ClipboardSignature
|
|
378
384
|
} from '../icons/clipboard-pen-line';
|
|
379
385
|
|
|
380
|
-
// CircleX aliases
|
|
381
|
-
export {
|
|
382
|
-
/** @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 */
|
|
383
|
-
default as XCircle
|
|
384
|
-
} from '../icons/circle-x';
|
|
385
|
-
|
|
386
386
|
// ClipboardPen aliases
|
|
387
387
|
export {
|
|
388
388
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPen} instead. This alias will be removed in v1.0 */
|
|
389
389
|
default as ClipboardEdit
|
|
390
390
|
} from '../icons/clipboard-pen';
|
|
391
391
|
|
|
392
|
-
// CloudUpload aliases
|
|
393
|
-
export {
|
|
394
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. This alias will be removed in v1.0 */
|
|
395
|
-
default as UploadCloud
|
|
396
|
-
} from '../icons/cloud-upload';
|
|
397
|
-
|
|
398
392
|
// CloudDownload aliases
|
|
399
393
|
export {
|
|
400
394
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudDownload} instead. This alias will be removed in v1.0 */
|
|
401
395
|
default as DownloadCloud
|
|
402
396
|
} from '../icons/cloud-download';
|
|
403
397
|
|
|
398
|
+
// CloudUpload aliases
|
|
399
|
+
export {
|
|
400
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CloudUpload} instead. This alias will be removed in v1.0 */
|
|
401
|
+
default as UploadCloud
|
|
402
|
+
} from '../icons/cloud-upload';
|
|
403
|
+
|
|
404
404
|
// CodeXml aliases
|
|
405
405
|
export {
|
|
406
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 */
|
|
407
407
|
default as Code2
|
|
408
408
|
} from '../icons/code-xml';
|
|
409
409
|
|
|
410
|
-
// Columns3Cog aliases
|
|
411
|
-
export {
|
|
412
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
413
|
-
default as ColumnsSettings
|
|
414
|
-
} from '../icons/columns-3-cog';
|
|
415
|
-
|
|
416
|
-
// Columns3Cog aliases
|
|
417
|
-
export {
|
|
418
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
419
|
-
default as TableConfig
|
|
420
|
-
} from '../icons/columns-3-cog';
|
|
421
|
-
|
|
422
410
|
// Columns2 aliases
|
|
423
411
|
export {
|
|
424
412
|
/** @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 */
|
|
@@ -437,6 +425,18 @@ export {
|
|
|
437
425
|
default as Contact2
|
|
438
426
|
} from '../icons/contact-round';
|
|
439
427
|
|
|
428
|
+
// Columns3Cog aliases
|
|
429
|
+
export {
|
|
430
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
431
|
+
default as ColumnsSettings
|
|
432
|
+
} from '../icons/columns-3-cog';
|
|
433
|
+
|
|
434
|
+
// Columns3Cog aliases
|
|
435
|
+
export {
|
|
436
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns3Cog} instead. This alias will be removed in v1.0 */
|
|
437
|
+
default as TableConfig
|
|
438
|
+
} from '../icons/columns-3-cog';
|
|
439
|
+
|
|
440
440
|
// DiamondPercent aliases
|
|
441
441
|
export {
|
|
442
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 */
|
|
@@ -539,18 +539,18 @@ export {
|
|
|
539
539
|
default as FolderEdit
|
|
540
540
|
} from '../icons/folder-pen';
|
|
541
541
|
|
|
542
|
-
// FunnelX aliases
|
|
543
|
-
export {
|
|
544
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
545
|
-
default as FilterX
|
|
546
|
-
} from '../icons/funnel-x';
|
|
547
|
-
|
|
548
542
|
// Funnel aliases
|
|
549
543
|
export {
|
|
550
544
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Funnel} instead. This alias will be removed in v1.0 */
|
|
551
545
|
default as Filter
|
|
552
546
|
} from '../icons/funnel';
|
|
553
547
|
|
|
548
|
+
// FunnelX aliases
|
|
549
|
+
export {
|
|
550
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FunnelX} instead. This alias will be removed in v1.0 */
|
|
551
|
+
default as FilterX
|
|
552
|
+
} from '../icons/funnel-x';
|
|
553
|
+
|
|
554
554
|
// GitCommitHorizontal aliases
|
|
555
555
|
export {
|
|
556
556
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link GitCommitHorizontal} instead. This alias will be removed in v1.0 */
|
|
@@ -599,23 +599,17 @@ export {
|
|
|
599
599
|
default as Grab
|
|
600
600
|
} from '../icons/hand-grab';
|
|
601
601
|
|
|
602
|
-
// House aliases
|
|
603
|
-
export {
|
|
604
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
605
|
-
default as Home
|
|
606
|
-
} from '../icons/house';
|
|
607
|
-
|
|
608
602
|
// HandHelping aliases
|
|
609
603
|
export {
|
|
610
604
|
/** @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 */
|
|
611
605
|
default as HelpingHand
|
|
612
606
|
} from '../icons/hand-helping';
|
|
613
607
|
|
|
614
|
-
//
|
|
608
|
+
// House aliases
|
|
615
609
|
export {
|
|
616
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
617
|
-
default as
|
|
618
|
-
} from '../icons/
|
|
610
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link House} instead. This alias will be removed in v1.0 */
|
|
611
|
+
default as Home
|
|
612
|
+
} from '../icons/house';
|
|
619
613
|
|
|
620
614
|
// IceCreamCone aliases
|
|
621
615
|
export {
|
|
@@ -623,6 +617,12 @@ export {
|
|
|
623
617
|
default as IceCream
|
|
624
618
|
} from '../icons/ice-cream-cone';
|
|
625
619
|
|
|
620
|
+
// IceCreamBowl aliases
|
|
621
|
+
export {
|
|
622
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamBowl} instead. This alias will be removed in v1.0 */
|
|
623
|
+
default as IceCream2
|
|
624
|
+
} from '../icons/ice-cream-bowl';
|
|
625
|
+
|
|
626
626
|
// LaptopMinimal aliases
|
|
627
627
|
export {
|
|
628
628
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link LaptopMinimal} instead. This alias will be removed in v1.0 */
|
|
@@ -773,18 +773,18 @@ export {
|
|
|
773
773
|
default as PanelTopInactive
|
|
774
774
|
} from '../icons/panel-top-dashed';
|
|
775
775
|
|
|
776
|
-
// PenLine aliases
|
|
777
|
-
export {
|
|
778
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. This alias will be removed in v1.0 */
|
|
779
|
-
default as Edit3
|
|
780
|
-
} from '../icons/pen-line';
|
|
781
|
-
|
|
782
776
|
// PanelsTopLeft aliases
|
|
783
777
|
export {
|
|
784
778
|
/** @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 */
|
|
785
779
|
default as Layout
|
|
786
780
|
} from '../icons/panels-top-left';
|
|
787
781
|
|
|
782
|
+
// PenLine aliases
|
|
783
|
+
export {
|
|
784
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PenLine} instead. This alias will be removed in v1.0 */
|
|
785
|
+
default as Edit3
|
|
786
|
+
} from '../icons/pen-line';
|
|
787
|
+
|
|
788
788
|
// Pen aliases
|
|
789
789
|
export {
|
|
790
790
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Pen} instead. This alias will be removed in v1.0 */
|
|
@@ -797,18 +797,18 @@ export {
|
|
|
797
797
|
default as PlugZap2
|
|
798
798
|
} from '../icons/plug-zap';
|
|
799
799
|
|
|
800
|
-
// RectangleEllipsis aliases
|
|
801
|
-
export {
|
|
802
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
803
|
-
default as FormInput
|
|
804
|
-
} from '../icons/rectangle-ellipsis';
|
|
805
|
-
|
|
806
800
|
// Rotate3d aliases
|
|
807
801
|
export {
|
|
808
802
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rotate3d} instead. This alias will be removed in v1.0 */
|
|
809
803
|
default as Rotate3D
|
|
810
804
|
} from '../icons/rotate-3d';
|
|
811
805
|
|
|
806
|
+
// RectangleEllipsis aliases
|
|
807
|
+
export {
|
|
808
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link RectangleEllipsis} instead. This alias will be removed in v1.0 */
|
|
809
|
+
default as FormInput
|
|
810
|
+
} from '../icons/rectangle-ellipsis';
|
|
811
|
+
|
|
812
812
|
// Rows2 aliases
|
|
813
813
|
export {
|
|
814
814
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows2} instead. This alias will be removed in v1.0 */
|
|
@@ -893,18 +893,18 @@ export {
|
|
|
893
893
|
default as ArrowDownLeftFromSquare
|
|
894
894
|
} from '../icons/square-arrow-out-down-left';
|
|
895
895
|
|
|
896
|
-
// SquareArrowOutDownRight aliases
|
|
897
|
-
export {
|
|
898
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
899
|
-
default as ArrowDownRightFromSquare
|
|
900
|
-
} from '../icons/square-arrow-out-down-right';
|
|
901
|
-
|
|
902
896
|
// SquareArrowOutUpLeft aliases
|
|
903
897
|
export {
|
|
904
898
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpLeft} instead. This alias will be removed in v1.0 */
|
|
905
899
|
default as ArrowUpLeftFromSquare
|
|
906
900
|
} from '../icons/square-arrow-out-up-left';
|
|
907
901
|
|
|
902
|
+
// SquareArrowOutDownRight aliases
|
|
903
|
+
export {
|
|
904
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutDownRight} instead. This alias will be removed in v1.0 */
|
|
905
|
+
default as ArrowDownRightFromSquare
|
|
906
|
+
} from '../icons/square-arrow-out-down-right';
|
|
907
|
+
|
|
908
908
|
// SquareArrowOutUpRight aliases
|
|
909
909
|
export {
|
|
910
910
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowOutUpRight} instead. This alias will be removed in v1.0 */
|
|
@@ -989,6 +989,12 @@ export {
|
|
|
989
989
|
default as ChevronRightSquare
|
|
990
990
|
} from '../icons/square-chevron-right';
|
|
991
991
|
|
|
992
|
+
// SquareChevronUp aliases
|
|
993
|
+
export {
|
|
994
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
995
|
+
default as ChevronUpSquare
|
|
996
|
+
} from '../icons/square-chevron-up';
|
|
997
|
+
|
|
992
998
|
// SquareCode aliases
|
|
993
999
|
export {
|
|
994
1000
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCode} instead. This alias will be removed in v1.0 */
|
|
@@ -1001,12 +1007,6 @@ export {
|
|
|
1001
1007
|
default as KanbanSquareDashed
|
|
1002
1008
|
} from '../icons/square-dashed-kanban';
|
|
1003
1009
|
|
|
1004
|
-
// SquareChevronUp aliases
|
|
1005
|
-
export {
|
|
1006
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronUp} instead. This alias will be removed in v1.0 */
|
|
1007
|
-
default as ChevronUpSquare
|
|
1008
|
-
} from '../icons/square-chevron-up';
|
|
1009
|
-
|
|
1010
1010
|
// SquareDashedMousePointer aliases
|
|
1011
1011
|
export {
|
|
1012
1012
|
/** @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 */
|
|
@@ -1037,18 +1037,18 @@ export {
|
|
|
1037
1037
|
default as EqualSquare
|
|
1038
1038
|
} from '../icons/square-equal';
|
|
1039
1039
|
|
|
1040
|
-
// SquareKanban aliases
|
|
1041
|
-
export {
|
|
1042
|
-
/** @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 */
|
|
1043
|
-
default as KanbanSquare
|
|
1044
|
-
} from '../icons/square-kanban';
|
|
1045
|
-
|
|
1046
1040
|
// SquareFunction aliases
|
|
1047
1041
|
export {
|
|
1048
1042
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareFunction} instead. This alias will be removed in v1.0 */
|
|
1049
1043
|
default as FunctionSquare
|
|
1050
1044
|
} from '../icons/square-function';
|
|
1051
1045
|
|
|
1046
|
+
// SquareKanban aliases
|
|
1047
|
+
export {
|
|
1048
|
+
/** @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 */
|
|
1049
|
+
default as KanbanSquare
|
|
1050
|
+
} from '../icons/square-kanban';
|
|
1051
|
+
|
|
1052
1052
|
// SquareLibrary aliases
|
|
1053
1053
|
export {
|
|
1054
1054
|
/** @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 */
|
|
@@ -1151,12 +1151,6 @@ export {
|
|
|
1151
1151
|
default as ScissorsSquare
|
|
1152
1152
|
} from '../icons/square-scissors';
|
|
1153
1153
|
|
|
1154
|
-
// SquareSigma aliases
|
|
1155
|
-
export {
|
|
1156
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
1157
|
-
default as SigmaSquare
|
|
1158
|
-
} from '../icons/square-sigma';
|
|
1159
|
-
|
|
1160
1154
|
// SquareSlash aliases
|
|
1161
1155
|
export {
|
|
1162
1156
|
/** @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 */
|
|
@@ -1169,6 +1163,12 @@ export {
|
|
|
1169
1163
|
default as SplitSquareHorizontal
|
|
1170
1164
|
} from '../icons/square-split-horizontal';
|
|
1171
1165
|
|
|
1166
|
+
// SquareSigma aliases
|
|
1167
|
+
export {
|
|
1168
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSigma} instead. This alias will be removed in v1.0 */
|
|
1169
|
+
default as SigmaSquare
|
|
1170
|
+
} from '../icons/square-sigma';
|
|
1171
|
+
|
|
1172
1172
|
// SquareSplitVertical aliases
|
|
1173
1173
|
export {
|
|
1174
1174
|
/** @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 */
|
|
@@ -1205,18 +1205,18 @@ export {
|
|
|
1205
1205
|
default as TestTube2
|
|
1206
1206
|
} from '../icons/test-tube-diagonal';
|
|
1207
1207
|
|
|
1208
|
-
// TextAlignCenter aliases
|
|
1209
|
-
export {
|
|
1210
|
-
/** @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 */
|
|
1211
|
-
default as AlignCenter
|
|
1212
|
-
} from '../icons/text-align-center';
|
|
1213
|
-
|
|
1214
1208
|
// TextAlignEnd aliases
|
|
1215
1209
|
export {
|
|
1216
1210
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignEnd} instead. This alias will be removed in v1.0 */
|
|
1217
1211
|
default as AlignRight
|
|
1218
1212
|
} from '../icons/text-align-end';
|
|
1219
1213
|
|
|
1214
|
+
// TextAlignCenter aliases
|
|
1215
|
+
export {
|
|
1216
|
+
/** @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 */
|
|
1217
|
+
default as AlignCenter
|
|
1218
|
+
} from '../icons/text-align-center';
|
|
1219
|
+
|
|
1220
1220
|
// TextAlignJustify aliases
|
|
1221
1221
|
export {
|
|
1222
1222
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TextAlignJustify} instead. This alias will be removed in v1.0 */
|