@lucide/astro 0.573.0 → 0.575.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 +116 -104
- package/src/aliases/prefixed.ts +707 -687
- package/src/aliases/suffixed.ts +1035 -1015
- package/src/icons/file-pen-line.ts +2 -2
- package/src/icons/index.ts +140 -134
- package/src/icons/message-square-check.ts +18 -0
- package/src/icons/metronome.ts +18 -0
- package/src/icons/mouse-left.ts +18 -0
- package/src/icons/mouse-right.ts +18 -0
- 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/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -161,23 +161,17 @@ export {
|
|
|
161
161
|
default as BarChart2
|
|
162
162
|
} from '../icons/chart-no-axes-column';
|
|
163
163
|
|
|
164
|
-
// ChartPie aliases
|
|
165
|
-
export {
|
|
166
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
167
|
-
default as PieChart
|
|
168
|
-
} from '../icons/chart-pie';
|
|
169
|
-
|
|
170
164
|
// ChartNoAxesGantt aliases
|
|
171
165
|
export {
|
|
172
166
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartNoAxesGantt} instead. This alias will be removed in v1.0 */
|
|
173
167
|
default as GanttChart
|
|
174
168
|
} from '../icons/chart-no-axes-gantt';
|
|
175
169
|
|
|
176
|
-
//
|
|
170
|
+
// ChartPie aliases
|
|
177
171
|
export {
|
|
178
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
179
|
-
default as
|
|
180
|
-
} from '../icons/chart-
|
|
172
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartPie} instead. This alias will be removed in v1.0 */
|
|
173
|
+
default as PieChart
|
|
174
|
+
} from '../icons/chart-pie';
|
|
181
175
|
|
|
182
176
|
// Chromium aliases
|
|
183
177
|
export {
|
|
@@ -185,6 +179,12 @@ export {
|
|
|
185
179
|
default as Chrome
|
|
186
180
|
} from '../icons/chromium';
|
|
187
181
|
|
|
182
|
+
// ChartScatter aliases
|
|
183
|
+
export {
|
|
184
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartScatter} instead. This alias will be removed in v1.0 */
|
|
185
|
+
default as ScatterChart
|
|
186
|
+
} from '../icons/chart-scatter';
|
|
187
|
+
|
|
188
188
|
// CircleAlert aliases
|
|
189
189
|
export {
|
|
190
190
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleAlert} instead. This alias will be removed in v1.0 */
|
|
@@ -335,12 +335,6 @@ export {
|
|
|
335
335
|
default as PowerCircle
|
|
336
336
|
} from '../icons/circle-power';
|
|
337
337
|
|
|
338
|
-
// CircleSlash2 aliases
|
|
339
|
-
export {
|
|
340
|
-
/** @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 */
|
|
341
|
-
default as CircleSlashed
|
|
342
|
-
} from '../icons/circle-slash-2';
|
|
343
|
-
|
|
344
338
|
// CircleQuestionMark aliases
|
|
345
339
|
export {
|
|
346
340
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleQuestionMark} instead. This alias will be removed in v1.0 */
|
|
@@ -353,6 +347,12 @@ export {
|
|
|
353
347
|
default as CircleHelp
|
|
354
348
|
} from '../icons/circle-question-mark';
|
|
355
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
356
|
// CircleStop aliases
|
|
357
357
|
export {
|
|
358
358
|
/** @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 */
|
|
@@ -425,23 +425,17 @@ export {
|
|
|
425
425
|
default as TableConfig
|
|
426
426
|
} from '../icons/columns-3-cog';
|
|
427
427
|
|
|
428
|
-
// ContactRound aliases
|
|
429
|
-
export {
|
|
430
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ContactRound} instead. This alias will be removed in v1.0 */
|
|
431
|
-
default as Contact2
|
|
432
|
-
} from '../icons/contact-round';
|
|
433
|
-
|
|
434
428
|
// Columns3 aliases
|
|
435
429
|
export {
|
|
436
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 */
|
|
437
431
|
default as PanelsLeftRight
|
|
438
432
|
} from '../icons/columns-3';
|
|
439
433
|
|
|
440
|
-
//
|
|
434
|
+
// ContactRound 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 ContactRound} instead. This alias will be removed in v1.0 */
|
|
437
|
+
default as Contact2
|
|
438
|
+
} from '../icons/contact-round';
|
|
445
439
|
|
|
446
440
|
// DiamondPercent aliases
|
|
447
441
|
export {
|
|
@@ -449,6 +443,12 @@ export {
|
|
|
449
443
|
default as PercentDiamond
|
|
450
444
|
} from '../icons/diamond-percent';
|
|
451
445
|
|
|
446
|
+
// Earth aliases
|
|
447
|
+
export {
|
|
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
|
+
default as Globe2
|
|
450
|
+
} from '../icons/earth';
|
|
451
|
+
|
|
452
452
|
// EllipsisVertical aliases
|
|
453
453
|
export {
|
|
454
454
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -461,23 +461,17 @@ export {
|
|
|
461
461
|
default as MoreHorizontal
|
|
462
462
|
} from '../icons/ellipsis';
|
|
463
463
|
|
|
464
|
-
// FileBadge aliases
|
|
465
|
-
export {
|
|
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 */
|
|
467
|
-
default as FileBadge2
|
|
468
|
-
} from '../icons/file-badge';
|
|
469
|
-
|
|
470
464
|
// FileAxis3d aliases
|
|
471
465
|
export {
|
|
472
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 */
|
|
473
467
|
default as FileAxis3D
|
|
474
468
|
} from '../icons/file-axis-3d';
|
|
475
469
|
|
|
476
|
-
//
|
|
470
|
+
// FileBadge aliases
|
|
477
471
|
export {
|
|
478
|
-
/** @deprecated The
|
|
479
|
-
default as
|
|
480
|
-
} from '../icons/file-
|
|
472
|
+
/** @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
|
+
default as FileBadge2
|
|
474
|
+
} from '../icons/file-badge';
|
|
481
475
|
|
|
482
476
|
// FileBracesCorner aliases
|
|
483
477
|
export {
|
|
@@ -485,6 +479,12 @@ export {
|
|
|
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 */
|
|
@@ -521,12 +521,6 @@ export {
|
|
|
521
521
|
default as FileCode2
|
|
522
522
|
} from '../icons/file-code-corner';
|
|
523
523
|
|
|
524
|
-
// FileExclamationPoint aliases
|
|
525
|
-
export {
|
|
526
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. This alias will be removed in v1.0 */
|
|
527
|
-
default as FileWarning
|
|
528
|
-
} from '../icons/file-exclamation-point';
|
|
529
|
-
|
|
530
524
|
// FileCog aliases
|
|
531
525
|
export {
|
|
532
526
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCog} instead. This alias will be removed in v1.0 */
|
|
@@ -545,24 +539,30 @@ export {
|
|
|
545
539
|
default as FileAudio2
|
|
546
540
|
} from '../icons/file-headphone';
|
|
547
541
|
|
|
542
|
+
// FileExclamationPoint aliases
|
|
543
|
+
export {
|
|
544
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileExclamationPoint} instead. This alias will be removed in v1.0 */
|
|
545
|
+
default as FileWarning
|
|
546
|
+
} from '../icons/file-exclamation-point';
|
|
547
|
+
|
|
548
548
|
// FileKey aliases
|
|
549
549
|
export {
|
|
550
550
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileKey} instead. This alias will be removed in v1.0 */
|
|
551
551
|
default as FileKey2
|
|
552
552
|
} from '../icons/file-key';
|
|
553
553
|
|
|
554
|
-
// FileMinusCorner aliases
|
|
555
|
-
export {
|
|
556
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
557
|
-
default as FileMinus2
|
|
558
|
-
} from '../icons/file-minus-corner';
|
|
559
|
-
|
|
560
554
|
// FileLock aliases
|
|
561
555
|
export {
|
|
562
556
|
/** @deprecated The icon was combined with another icon that shares the same use case, use {@link FileLock} instead. This alias will be removed in v1.0 */
|
|
563
557
|
default as FileLock2
|
|
564
558
|
} from '../icons/file-lock';
|
|
565
559
|
|
|
560
|
+
// FileMinusCorner aliases
|
|
561
|
+
export {
|
|
562
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileMinusCorner} instead. This alias will be removed in v1.0 */
|
|
563
|
+
default as FileMinus2
|
|
564
|
+
} from '../icons/file-minus-corner';
|
|
565
|
+
|
|
566
566
|
// FilePenLine aliases
|
|
567
567
|
export {
|
|
568
568
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePenLine} instead. This alias will be removed in v1.0 */
|
|
@@ -623,23 +623,17 @@ 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
|
|
|
638
|
-
//
|
|
632
|
+
// FingerprintPattern aliases
|
|
639
633
|
export {
|
|
640
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
641
|
-
default as
|
|
642
|
-
} from '../icons/
|
|
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';
|
|
643
637
|
|
|
644
638
|
// FunnelX aliases
|
|
645
639
|
export {
|
|
@@ -647,6 +641,12 @@ export {
|
|
|
647
641
|
default as FilterX
|
|
648
642
|
} from '../icons/funnel-x';
|
|
649
643
|
|
|
644
|
+
// FolderPen aliases
|
|
645
|
+
export {
|
|
646
|
+
/** @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 */
|
|
647
|
+
default as FolderEdit
|
|
648
|
+
} from '../icons/folder-pen';
|
|
649
|
+
|
|
650
650
|
// Funnel aliases
|
|
651
651
|
export {
|
|
652
652
|
/** @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 */
|
|
@@ -683,12 +683,6 @@ 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
|
-
|
|
692
686
|
// Grid3x3 aliases
|
|
693
687
|
export {
|
|
694
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 */
|
|
@@ -701,6 +695,12 @@ export {
|
|
|
701
695
|
default as Grid3X3
|
|
702
696
|
} from '../icons/grid-3x3';
|
|
703
697
|
|
|
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 */
|
|
@@ -863,18 +863,18 @@ export {
|
|
|
863
863
|
default as Sidebar
|
|
864
864
|
} from '../icons/panel-left';
|
|
865
865
|
|
|
866
|
-
// PanelTopDashed aliases
|
|
867
|
-
export {
|
|
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 */
|
|
869
|
-
default as PanelTopInactive
|
|
870
|
-
} from '../icons/panel-top-dashed';
|
|
871
|
-
|
|
872
866
|
// PanelRightDashed aliases
|
|
873
867
|
export {
|
|
874
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 */
|
|
875
869
|
default as PanelRightInactive
|
|
876
870
|
} from '../icons/panel-right-dashed';
|
|
877
871
|
|
|
872
|
+
// PanelTopDashed aliases
|
|
873
|
+
export {
|
|
874
|
+
/** @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
|
+
default as PanelTopInactive
|
|
876
|
+
} from '../icons/panel-top-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 */
|
|
@@ -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 */
|
|
@@ -1163,18 +1175,18 @@ export {
|
|
|
1163
1175
|
default as MSquare
|
|
1164
1176
|
} from '../icons/square-m';
|
|
1165
1177
|
|
|
1166
|
-
// SquareMenu aliases
|
|
1167
|
-
export {
|
|
1168
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
1169
|
-
default as MenuSquare
|
|
1170
|
-
} from '../icons/square-menu';
|
|
1171
|
-
|
|
1172
1178
|
// SquareMinus aliases
|
|
1173
1179
|
export {
|
|
1174
1180
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMinus} instead. This alias will be removed in v1.0 */
|
|
1175
1181
|
default as MinusSquare
|
|
1176
1182
|
} from '../icons/square-minus';
|
|
1177
1183
|
|
|
1184
|
+
// SquareMenu aliases
|
|
1185
|
+
export {
|
|
1186
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMenu} instead. This alias will be removed in v1.0 */
|
|
1187
|
+
default as MenuSquare
|
|
1188
|
+
} from '../icons/square-menu';
|
|
1189
|
+
|
|
1178
1190
|
// SquareMousePointer aliases
|
|
1179
1191
|
export {
|
|
1180
1192
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareMousePointer} instead. This alias will be removed in v1.0 */
|
|
@@ -1211,18 +1223,18 @@ export {
|
|
|
1211
1223
|
default as PenSquare
|
|
1212
1224
|
} from '../icons/square-pen';
|
|
1213
1225
|
|
|
1214
|
-
// SquarePi aliases
|
|
1215
|
-
export {
|
|
1216
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. This alias will be removed in v1.0 */
|
|
1217
|
-
default as PiSquare
|
|
1218
|
-
} from '../icons/square-pi';
|
|
1219
|
-
|
|
1220
1226
|
// SquarePercent aliases
|
|
1221
1227
|
export {
|
|
1222
1228
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePercent} instead. This alias will be removed in v1.0 */
|
|
1223
1229
|
default as PercentSquare
|
|
1224
1230
|
} from '../icons/square-percent';
|
|
1225
1231
|
|
|
1232
|
+
// SquarePi aliases
|
|
1233
|
+
export {
|
|
1234
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePi} instead. This alias will be removed in v1.0 */
|
|
1235
|
+
default as PiSquare
|
|
1236
|
+
} from '../icons/square-pi';
|
|
1237
|
+
|
|
1226
1238
|
// SquarePilcrow aliases
|
|
1227
1239
|
export {
|
|
1228
1240
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePilcrow} instead. This alias will be removed in v1.0 */
|
|
@@ -1271,18 +1283,18 @@ export {
|
|
|
1271
1283
|
default as SplitSquareHorizontal
|
|
1272
1284
|
} from '../icons/square-split-horizontal';
|
|
1273
1285
|
|
|
1274
|
-
// SquareTerminal aliases
|
|
1275
|
-
export {
|
|
1276
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
1277
|
-
default as TerminalSquare
|
|
1278
|
-
} from '../icons/square-terminal';
|
|
1279
|
-
|
|
1280
1286
|
// SquareSplitVertical aliases
|
|
1281
1287
|
export {
|
|
1282
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 */
|
|
1283
1289
|
default as SplitSquareVertical
|
|
1284
1290
|
} from '../icons/square-split-vertical';
|
|
1285
1291
|
|
|
1292
|
+
// SquareTerminal aliases
|
|
1293
|
+
export {
|
|
1294
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareTerminal} instead. This alias will be removed in v1.0 */
|
|
1295
|
+
default as TerminalSquare
|
|
1296
|
+
} from '../icons/square-terminal';
|
|
1297
|
+
|
|
1286
1298
|
// SquareUserRound aliases
|
|
1287
1299
|
export {
|
|
1288
1300
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUserRound} instead. This alias will be removed in v1.0 */
|
|
@@ -1397,35 +1409,41 @@ export {
|
|
|
1397
1409
|
default as UserCog2
|
|
1398
1410
|
} from '../icons/user-round-cog';
|
|
1399
1411
|
|
|
1400
|
-
// UserRoundMinus aliases
|
|
1401
|
-
export {
|
|
1402
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. This alias will be removed in v1.0 */
|
|
1403
|
-
default as UserMinus2
|
|
1404
|
-
} from '../icons/user-round-minus';
|
|
1405
|
-
|
|
1406
1412
|
// UserRoundPlus aliases
|
|
1407
1413
|
export {
|
|
1408
1414
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundPlus} instead. This alias will be removed in v1.0 */
|
|
1409
1415
|
default as UserPlus2
|
|
1410
1416
|
} from '../icons/user-round-plus';
|
|
1411
1417
|
|
|
1418
|
+
// UserRoundMinus aliases
|
|
1419
|
+
export {
|
|
1420
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundMinus} instead. This alias will be removed in v1.0 */
|
|
1421
|
+
default as UserMinus2
|
|
1422
|
+
} from '../icons/user-round-minus';
|
|
1423
|
+
|
|
1412
1424
|
// UserRoundX aliases
|
|
1413
1425
|
export {
|
|
1414
1426
|
/** @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 */
|
|
1415
1427
|
default as UserX2
|
|
1416
1428
|
} from '../icons/user-round-x';
|
|
1417
1429
|
|
|
1430
|
+
// UserRound aliases
|
|
1431
|
+
export {
|
|
1432
|
+
/** @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 */
|
|
1433
|
+
default as User2
|
|
1434
|
+
} from '../icons/user-round';
|
|
1435
|
+
|
|
1418
1436
|
// UsersRound aliases
|
|
1419
1437
|
export {
|
|
1420
1438
|
/** @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 */
|
|
1421
1439
|
default as Users2
|
|
1422
1440
|
} from '../icons/users-round';
|
|
1423
1441
|
|
|
1424
|
-
//
|
|
1442
|
+
// Utensils aliases
|
|
1425
1443
|
export {
|
|
1426
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1427
|
-
default as
|
|
1428
|
-
} from '../icons/
|
|
1444
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1445
|
+
default as ForkKnife
|
|
1446
|
+
} from '../icons/utensils';
|
|
1429
1447
|
|
|
1430
1448
|
// UtensilsCrossed aliases
|
|
1431
1449
|
export {
|
|
@@ -1439,12 +1457,6 @@ export {
|
|
|
1439
1457
|
default as Wallet2
|
|
1440
1458
|
} from '../icons/wallet-minimal';
|
|
1441
1459
|
|
|
1442
|
-
// Utensils aliases
|
|
1443
|
-
export {
|
|
1444
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Utensils} instead. This alias will be removed in v1.0 */
|
|
1445
|
-
default as ForkKnife
|
|
1446
|
-
} from '../icons/utensils';
|
|
1447
|
-
|
|
1448
1460
|
// WandSparkles aliases
|
|
1449
1461
|
export {
|
|
1450
1462
|
/** @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 */
|