@lucide/astro 0.574.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 +94 -82
- package/src/aliases/prefixed.ts +685 -667
- package/src/aliases/suffixed.ts +1068 -1050
- package/src/icons/file-pen-line.ts +2 -2
- package/src/icons/index.ts +128 -123
- package/src/icons/message-square-check.ts +18 -0
- package/src/icons/metronome.ts +18 -0
- package/src/icons/mouse-right.ts +18 -0
- package/src/icons/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
|
@@ -173,18 +173,18 @@ export {
|
|
|
173
173
|
default as PieChart
|
|
174
174
|
} from '../icons/chart-pie';
|
|
175
175
|
|
|
176
|
-
// ChartScatter aliases
|
|
177
|
-
export {
|
|
178
|
-
/** @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 */
|
|
179
|
-
default as ScatterChart
|
|
180
|
-
} from '../icons/chart-scatter';
|
|
181
|
-
|
|
182
176
|
// Chromium aliases
|
|
183
177
|
export {
|
|
184
178
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Chromium} instead. This alias will be removed in v1.0 */
|
|
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 */
|
|
@@ -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 */
|
|
@@ -437,6 +437,12 @@ export {
|
|
|
437
437
|
default as Contact2
|
|
438
438
|
} from '../icons/contact-round';
|
|
439
439
|
|
|
440
|
+
// DiamondPercent aliases
|
|
441
|
+
export {
|
|
442
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
443
|
+
default as PercentDiamond
|
|
444
|
+
} from '../icons/diamond-percent';
|
|
445
|
+
|
|
440
446
|
// Earth aliases
|
|
441
447
|
export {
|
|
442
448
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Earth} instead. This alias will be removed in v1.0 */
|
|
@@ -449,12 +455,6 @@ export {
|
|
|
449
455
|
default as MoreVertical
|
|
450
456
|
} from '../icons/ellipsis-vertical';
|
|
451
457
|
|
|
452
|
-
// DiamondPercent aliases
|
|
453
|
-
export {
|
|
454
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link DiamondPercent} instead. This alias will be removed in v1.0 */
|
|
455
|
-
default as PercentDiamond
|
|
456
|
-
} from '../icons/diamond-percent';
|
|
457
|
-
|
|
458
458
|
// Ellipsis aliases
|
|
459
459
|
export {
|
|
460
460
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Ellipsis} instead. This alias will be removed in v1.0 */
|
|
@@ -473,18 +473,18 @@ export {
|
|
|
473
473
|
default as FileBadge2
|
|
474
474
|
} from '../icons/file-badge';
|
|
475
475
|
|
|
476
|
-
// FileBraces aliases
|
|
477
|
-
export {
|
|
478
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
479
|
-
default as FileJson
|
|
480
|
-
} from '../icons/file-braces';
|
|
481
|
-
|
|
482
476
|
// FileBracesCorner aliases
|
|
483
477
|
export {
|
|
484
478
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBracesCorner} instead. This alias will be removed in v1.0 */
|
|
485
479
|
default as FileJson2
|
|
486
480
|
} from '../icons/file-braces-corner';
|
|
487
481
|
|
|
482
|
+
// FileBraces aliases
|
|
483
|
+
export {
|
|
484
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileBraces} instead. This alias will be removed in v1.0 */
|
|
485
|
+
default as FileJson
|
|
486
|
+
} from '../icons/file-braces';
|
|
487
|
+
|
|
488
488
|
// FileChartColumnIncreasing aliases
|
|
489
489
|
export {
|
|
490
490
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
@@ -527,12 +527,6 @@ export {
|
|
|
527
527
|
default as FileCog2
|
|
528
528
|
} from '../icons/file-cog';
|
|
529
529
|
|
|
530
|
-
// FileExclamationPoint aliases
|
|
531
|
-
export {
|
|
532
|
-
/** @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 */
|
|
533
|
-
default as FileWarning
|
|
534
|
-
} from '../icons/file-exclamation-point';
|
|
535
|
-
|
|
536
530
|
// FileHeadphone aliases
|
|
537
531
|
export {
|
|
538
532
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileHeadphone} instead. This alias will be removed in v1.0 */
|
|
@@ -545,6 +539,12 @@ 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 */
|
|
@@ -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 */
|
|
@@ -839,18 +839,18 @@ export {
|
|
|
839
839
|
default as PanelBottomInactive
|
|
840
840
|
} from '../icons/panel-bottom-dashed';
|
|
841
841
|
|
|
842
|
-
// PanelLeftDashed aliases
|
|
843
|
-
export {
|
|
844
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. This alias will be removed in v1.0 */
|
|
845
|
-
default as PanelLeftInactive
|
|
846
|
-
} from '../icons/panel-left-dashed';
|
|
847
|
-
|
|
848
842
|
// PanelLeftClose aliases
|
|
849
843
|
export {
|
|
850
844
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftClose} instead. This alias will be removed in v1.0 */
|
|
851
845
|
default as SidebarClose
|
|
852
846
|
} from '../icons/panel-left-close';
|
|
853
847
|
|
|
848
|
+
// PanelLeftDashed aliases
|
|
849
|
+
export {
|
|
850
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftDashed} instead. This alias will be removed in v1.0 */
|
|
851
|
+
default as PanelLeftInactive
|
|
852
|
+
} from '../icons/panel-left-dashed';
|
|
853
|
+
|
|
854
854
|
// PanelLeftOpen aliases
|
|
855
855
|
export {
|
|
856
856
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelLeftOpen} instead. This alias will be removed in v1.0 */
|
|
@@ -1019,18 +1019,18 @@ export {
|
|
|
1019
1019
|
default as ArrowRightSquare
|
|
1020
1020
|
} from '../icons/square-arrow-right';
|
|
1021
1021
|
|
|
1022
|
-
// SquareArrowUpRight aliases
|
|
1023
|
-
export {
|
|
1024
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
1025
|
-
default as ArrowUpRightSquare
|
|
1026
|
-
} from '../icons/square-arrow-up-right';
|
|
1027
|
-
|
|
1028
1022
|
// SquareArrowUpLeft aliases
|
|
1029
1023
|
export {
|
|
1030
1024
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpLeft} instead. This alias will be removed in v1.0 */
|
|
1031
1025
|
default as ArrowUpLeftSquare
|
|
1032
1026
|
} from '../icons/square-arrow-up-left';
|
|
1033
1027
|
|
|
1028
|
+
// SquareArrowUpRight aliases
|
|
1029
|
+
export {
|
|
1030
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUpRight} instead. This alias will be removed in v1.0 */
|
|
1031
|
+
default as ArrowUpRightSquare
|
|
1032
|
+
} from '../icons/square-arrow-up-right';
|
|
1033
|
+
|
|
1034
1034
|
// SquareArrowUp aliases
|
|
1035
1035
|
export {
|
|
1036
1036
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareArrowUp} instead. This alias will be removed in v1.0 */
|
|
@@ -1049,6 +1049,18 @@ export {
|
|
|
1049
1049
|
default as ScissorsSquareDashedBottom
|
|
1050
1050
|
} from '../icons/square-bottom-dashed-scissors';
|
|
1051
1051
|
|
|
1052
|
+
// SquareCenterlineDashedHorizontal aliases
|
|
1053
|
+
export {
|
|
1054
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedHorizontal} instead. This alias will be removed in v1.0 */
|
|
1055
|
+
default as FlipHorizontal
|
|
1056
|
+
} from '../icons/square-centerline-dashed-horizontal';
|
|
1057
|
+
|
|
1058
|
+
// SquareCenterlineDashedVertical aliases
|
|
1059
|
+
export {
|
|
1060
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareCenterlineDashedVertical} instead. This alias will be removed in v1.0 */
|
|
1061
|
+
default as FlipVertical
|
|
1062
|
+
} from '../icons/square-centerline-dashed-vertical';
|
|
1063
|
+
|
|
1052
1064
|
// SquareChartGantt aliases
|
|
1053
1065
|
export {
|
|
1054
1066
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChartGantt} instead. This alias will be removed in v1.0 */
|
|
@@ -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 */
|
|
@@ -1259,18 +1271,18 @@ export {
|
|
|
1259
1271
|
default as SigmaSquare
|
|
1260
1272
|
} from '../icons/square-sigma';
|
|
1261
1273
|
|
|
1262
|
-
// SquareSplitHorizontal aliases
|
|
1263
|
-
export {
|
|
1264
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1265
|
-
default as SplitSquareHorizontal
|
|
1266
|
-
} from '../icons/square-split-horizontal';
|
|
1267
|
-
|
|
1268
1274
|
// SquareSlash aliases
|
|
1269
1275
|
export {
|
|
1270
1276
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSlash} instead. This alias will be removed in v1.0 */
|
|
1271
1277
|
default as SlashSquare
|
|
1272
1278
|
} from '../icons/square-slash';
|
|
1273
1279
|
|
|
1280
|
+
// SquareSplitHorizontal aliases
|
|
1281
|
+
export {
|
|
1282
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitHorizontal} instead. This alias will be removed in v1.0 */
|
|
1283
|
+
default as SplitSquareHorizontal
|
|
1284
|
+
} from '../icons/square-split-horizontal';
|
|
1285
|
+
|
|
1274
1286
|
// SquareSplitVertical aliases
|
|
1275
1287
|
export {
|
|
1276
1288
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareSplitVertical} instead. This alias will be removed in v1.0 */
|
|
@@ -1379,36 +1391,36 @@ export {
|
|
|
1379
1391
|
default as Tv2
|
|
1380
1392
|
} from '../icons/tv-minimal';
|
|
1381
1393
|
|
|
1382
|
-
// UserRoundCheck aliases
|
|
1383
|
-
export {
|
|
1384
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
1385
|
-
default as UserCheck2
|
|
1386
|
-
} from '../icons/user-round-check';
|
|
1387
|
-
|
|
1388
1394
|
// University aliases
|
|
1389
1395
|
export {
|
|
1390
1396
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|
|
1391
1397
|
default as School2
|
|
1392
1398
|
} from '../icons/university';
|
|
1393
1399
|
|
|
1400
|
+
// UserRoundCheck aliases
|
|
1401
|
+
export {
|
|
1402
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCheck} instead. This alias will be removed in v1.0 */
|
|
1403
|
+
default as UserCheck2
|
|
1404
|
+
} from '../icons/user-round-check';
|
|
1405
|
+
|
|
1394
1406
|
// UserRoundCog aliases
|
|
1395
1407
|
export {
|
|
1396
1408
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UserRoundCog} instead. This alias will be removed in v1.0 */
|
|
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 */
|
|
@@ -1427,18 +1439,18 @@ export {
|
|
|
1427
1439
|
default as Users2
|
|
1428
1440
|
} from '../icons/users-round';
|
|
1429
1441
|
|
|
1430
|
-
// UtensilsCrossed aliases
|
|
1431
|
-
export {
|
|
1432
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. This alias will be removed in v1.0 */
|
|
1433
|
-
default as ForkKnifeCrossed
|
|
1434
|
-
} from '../icons/utensils-crossed';
|
|
1435
|
-
|
|
1436
1442
|
// Utensils aliases
|
|
1437
1443
|
export {
|
|
1438
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 */
|
|
1439
1445
|
default as ForkKnife
|
|
1440
1446
|
} from '../icons/utensils';
|
|
1441
1447
|
|
|
1448
|
+
// UtensilsCrossed aliases
|
|
1449
|
+
export {
|
|
1450
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link UtensilsCrossed} instead. This alias will be removed in v1.0 */
|
|
1451
|
+
default as ForkKnifeCrossed
|
|
1452
|
+
} from '../icons/utensils-crossed';
|
|
1453
|
+
|
|
1442
1454
|
// WalletMinimal aliases
|
|
1443
1455
|
export {
|
|
1444
1456
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WalletMinimal} instead. This alias will be removed in v1.0 */
|