@lucide/astro 1.17.0 → 1.18.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 +80 -80
- package/src/aliases/prefixed.ts +729 -725
- package/src/aliases/suffixed.ts +1059 -1055
- package/src/icons/index.ts +210 -208
- package/src/icons/play-off.ts +18 -0
- package/src/icons/webcam-off.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -167,18 +167,18 @@ export {
|
|
|
167
167
|
default as GanttChart
|
|
168
168
|
} from '../icons/chart-no-axes-gantt';
|
|
169
169
|
|
|
170
|
-
// ChartScatter aliases
|
|
171
|
-
export {
|
|
172
|
-
/** @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 */
|
|
173
|
-
default as ScatterChart
|
|
174
|
-
} from '../icons/chart-scatter';
|
|
175
|
-
|
|
176
170
|
// ChartPie aliases
|
|
177
171
|
export {
|
|
178
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 */
|
|
179
173
|
default as PieChart
|
|
180
174
|
} from '../icons/chart-pie';
|
|
181
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
182
|
// CircleAlert aliases
|
|
183
183
|
export {
|
|
184
184
|
/** @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 */
|
|
@@ -401,12 +401,6 @@ export {
|
|
|
401
401
|
default as Code2
|
|
402
402
|
} from '../icons/code-xml';
|
|
403
403
|
|
|
404
|
-
// Columns2 aliases
|
|
405
|
-
export {
|
|
406
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Columns2} instead. This alias will be removed in v1.0 */
|
|
407
|
-
default as Columns
|
|
408
|
-
} from '../icons/columns-2';
|
|
409
|
-
|
|
410
404
|
// Columns3Cog aliases
|
|
411
405
|
export {
|
|
412
406
|
/** @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,11 +413,11 @@ export {
|
|
|
419
413
|
default as TableConfig
|
|
420
414
|
} from '../icons/columns-3-cog';
|
|
421
415
|
|
|
422
|
-
//
|
|
416
|
+
// Columns2 aliases
|
|
423
417
|
export {
|
|
424
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
425
|
-
default as
|
|
426
|
-
} from '../icons/columns-
|
|
418
|
+
/** @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 */
|
|
419
|
+
default as Columns
|
|
420
|
+
} from '../icons/columns-2';
|
|
427
421
|
|
|
428
422
|
// ContactRound aliases
|
|
429
423
|
export {
|
|
@@ -431,6 +425,12 @@ export {
|
|
|
431
425
|
default as Contact2
|
|
432
426
|
} from '../icons/contact-round';
|
|
433
427
|
|
|
428
|
+
// Columns3 aliases
|
|
429
|
+
export {
|
|
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 */
|
|
431
|
+
default as PanelsLeftRight
|
|
432
|
+
} from '../icons/columns-3';
|
|
433
|
+
|
|
434
434
|
// DiamondPercent aliases
|
|
435
435
|
export {
|
|
436
436
|
/** @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,18 +443,18 @@ export {
|
|
|
443
443
|
default as Globe2
|
|
444
444
|
} from '../icons/earth';
|
|
445
445
|
|
|
446
|
-
// EllipsisVertical aliases
|
|
447
|
-
export {
|
|
448
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link EllipsisVertical} instead. This alias will be removed in v1.0 */
|
|
449
|
-
default as MoreVertical
|
|
450
|
-
} from '../icons/ellipsis-vertical';
|
|
451
|
-
|
|
452
446
|
// Ellipsis aliases
|
|
453
447
|
export {
|
|
454
448
|
/** @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 */
|
|
455
449
|
default as MoreHorizontal
|
|
456
450
|
} from '../icons/ellipsis';
|
|
457
451
|
|
|
452
|
+
// EllipsisVertical aliases
|
|
453
|
+
export {
|
|
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 */
|
|
455
|
+
default as MoreVertical
|
|
456
|
+
} from '../icons/ellipsis-vertical';
|
|
457
|
+
|
|
458
458
|
// FileAxis3d aliases
|
|
459
459
|
export {
|
|
460
460
|
/** @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 */
|
|
@@ -701,18 +701,18 @@ export {
|
|
|
701
701
|
default as HelpingHand
|
|
702
702
|
} from '../icons/hand-helping';
|
|
703
703
|
|
|
704
|
-
// IceCreamBowl aliases
|
|
705
|
-
export {
|
|
706
|
-
/** @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 */
|
|
707
|
-
default as IceCream2
|
|
708
|
-
} from '../icons/ice-cream-bowl';
|
|
709
|
-
|
|
710
704
|
// House aliases
|
|
711
705
|
export {
|
|
712
706
|
/** @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 */
|
|
713
707
|
default as Home
|
|
714
708
|
} from '../icons/house';
|
|
715
709
|
|
|
710
|
+
// IceCreamBowl aliases
|
|
711
|
+
export {
|
|
712
|
+
/** @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 */
|
|
713
|
+
default as IceCream2
|
|
714
|
+
} from '../icons/ice-cream-bowl';
|
|
715
|
+
|
|
716
716
|
// IceCreamCone aliases
|
|
717
717
|
export {
|
|
718
718
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link IceCreamCone} instead. This alias will be removed in v1.0 */
|
|
@@ -743,6 +743,12 @@ export {
|
|
|
743
743
|
default as IndentDecrease
|
|
744
744
|
} from '../icons/list-indent-decrease';
|
|
745
745
|
|
|
746
|
+
// LoaderCircle aliases
|
|
747
|
+
export {
|
|
748
|
+
/** @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 */
|
|
749
|
+
default as Loader2
|
|
750
|
+
} from '../icons/loader-circle';
|
|
751
|
+
|
|
746
752
|
// ListIndentIncrease aliases
|
|
747
753
|
export {
|
|
748
754
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ListIndentIncrease} instead. This alias will be removed in v1.0 */
|
|
@@ -755,12 +761,6 @@ export {
|
|
|
755
761
|
default as IndentIncrease
|
|
756
762
|
} from '../icons/list-indent-increase';
|
|
757
763
|
|
|
758
|
-
// LoaderCircle aliases
|
|
759
|
-
export {
|
|
760
|
-
/** @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 */
|
|
761
|
-
default as Loader2
|
|
762
|
-
} from '../icons/loader-circle';
|
|
763
|
-
|
|
764
764
|
// LockKeyholeOpen aliases
|
|
765
765
|
export {
|
|
766
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 */
|
|
@@ -827,12 +827,6 @@ export {
|
|
|
827
827
|
default as Paintbrush2
|
|
828
828
|
} from '../icons/paintbrush-vertical';
|
|
829
829
|
|
|
830
|
-
// PanelBottomDashed aliases
|
|
831
|
-
export {
|
|
832
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. This alias will be removed in v1.0 */
|
|
833
|
-
default as PanelBottomInactive
|
|
834
|
-
} from '../icons/panel-bottom-dashed';
|
|
835
|
-
|
|
836
830
|
// PanelLeftClose aliases
|
|
837
831
|
export {
|
|
838
832
|
/** @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 */
|
|
@@ -845,11 +839,11 @@ export {
|
|
|
845
839
|
default as PanelLeftInactive
|
|
846
840
|
} from '../icons/panel-left-dashed';
|
|
847
841
|
|
|
848
|
-
//
|
|
842
|
+
// PanelBottomDashed aliases
|
|
849
843
|
export {
|
|
850
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
851
|
-
default as
|
|
852
|
-
} from '../icons/panel-
|
|
844
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link PanelBottomDashed} instead. This alias will be removed in v1.0 */
|
|
845
|
+
default as PanelBottomInactive
|
|
846
|
+
} from '../icons/panel-bottom-dashed';
|
|
853
847
|
|
|
854
848
|
// PanelLeft aliases
|
|
855
849
|
export {
|
|
@@ -857,6 +851,12 @@ export {
|
|
|
857
851
|
default as Sidebar
|
|
858
852
|
} from '../icons/panel-left';
|
|
859
853
|
|
|
854
|
+
// PanelLeftOpen aliases
|
|
855
|
+
export {
|
|
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 */
|
|
857
|
+
default as SidebarOpen
|
|
858
|
+
} from '../icons/panel-left-open';
|
|
859
|
+
|
|
860
860
|
// PanelRightDashed aliases
|
|
861
861
|
export {
|
|
862
862
|
/** @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 */
|
|
@@ -989,18 +989,18 @@ export {
|
|
|
989
989
|
default as ArrowDownLeftFromSquare
|
|
990
990
|
} from '../icons/square-arrow-out-down-left';
|
|
991
991
|
|
|
992
|
-
// SquareArrowOutDownRight aliases
|
|
993
|
-
export {
|
|
994
|
-
/** @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 */
|
|
995
|
-
default as ArrowDownRightFromSquare
|
|
996
|
-
} from '../icons/square-arrow-out-down-right';
|
|
997
|
-
|
|
998
992
|
// SquareArrowOutUpLeft aliases
|
|
999
993
|
export {
|
|
1000
994
|
/** @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 */
|
|
1001
995
|
default as ArrowUpLeftFromSquare
|
|
1002
996
|
} from '../icons/square-arrow-out-up-left';
|
|
1003
997
|
|
|
998
|
+
// SquareArrowOutDownRight aliases
|
|
999
|
+
export {
|
|
1000
|
+
/** @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 */
|
|
1001
|
+
default as ArrowDownRightFromSquare
|
|
1002
|
+
} from '../icons/square-arrow-out-down-right';
|
|
1003
|
+
|
|
1004
1004
|
// SquareArrowOutUpRight aliases
|
|
1005
1005
|
export {
|
|
1006
1006
|
/** @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 */
|
|
@@ -1121,6 +1121,12 @@ export {
|
|
|
1121
1121
|
default as MousePointerSquareDashed
|
|
1122
1122
|
} from '../icons/square-dashed-mouse-pointer';
|
|
1123
1123
|
|
|
1124
|
+
// SquareDashed aliases
|
|
1125
|
+
export {
|
|
1126
|
+
/** @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 */
|
|
1127
|
+
default as BoxSelect
|
|
1128
|
+
} from '../icons/square-dashed';
|
|
1129
|
+
|
|
1124
1130
|
// SquareDashedText aliases
|
|
1125
1131
|
export {
|
|
1126
1132
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareDashedText} instead. This alias will be removed in v1.0 */
|
|
@@ -1133,12 +1139,6 @@ export {
|
|
|
1133
1139
|
default as TextSelect
|
|
1134
1140
|
} from '../icons/square-dashed-text';
|
|
1135
1141
|
|
|
1136
|
-
// SquareDashed aliases
|
|
1137
|
-
export {
|
|
1138
|
-
/** @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 */
|
|
1139
|
-
default as BoxSelect
|
|
1140
|
-
} from '../icons/square-dashed';
|
|
1141
|
-
|
|
1142
1142
|
// SquareDivide aliases
|
|
1143
1143
|
export {
|
|
1144
1144
|
/** @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 */
|
|
@@ -1247,12 +1247,6 @@ export {
|
|
|
1247
1247
|
default as PilcrowSquare
|
|
1248
1248
|
} from '../icons/square-pilcrow';
|
|
1249
1249
|
|
|
1250
|
-
// SquarePlay aliases
|
|
1251
|
-
export {
|
|
1252
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
1253
|
-
default as PlaySquare
|
|
1254
|
-
} from '../icons/square-play';
|
|
1255
|
-
|
|
1256
1250
|
// SquarePlus aliases
|
|
1257
1251
|
export {
|
|
1258
1252
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlus} instead. This alias will be removed in v1.0 */
|
|
@@ -1265,18 +1259,24 @@ export {
|
|
|
1265
1259
|
default as PowerSquare
|
|
1266
1260
|
} from '../icons/square-power';
|
|
1267
1261
|
|
|
1268
|
-
// SquareSigma aliases
|
|
1269
|
-
export {
|
|
1270
|
-
/** @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 */
|
|
1271
|
-
default as SigmaSquare
|
|
1272
|
-
} from '../icons/square-sigma';
|
|
1273
|
-
|
|
1274
1262
|
// SquareScissors aliases
|
|
1275
1263
|
export {
|
|
1276
1264
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareScissors} instead. This alias will be removed in v1.0 */
|
|
1277
1265
|
default as ScissorsSquare
|
|
1278
1266
|
} from '../icons/square-scissors';
|
|
1279
1267
|
|
|
1268
|
+
// SquarePlay aliases
|
|
1269
|
+
export {
|
|
1270
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquarePlay} instead. This alias will be removed in v1.0 */
|
|
1271
|
+
default as PlaySquare
|
|
1272
|
+
} from '../icons/square-play';
|
|
1273
|
+
|
|
1274
|
+
// SquareSigma aliases
|
|
1275
|
+
export {
|
|
1276
|
+
/** @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 */
|
|
1277
|
+
default as SigmaSquare
|
|
1278
|
+
} from '../icons/square-sigma';
|
|
1279
|
+
|
|
1280
1280
|
// SquareSlash aliases
|
|
1281
1281
|
export {
|
|
1282
1282
|
/** @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 */
|
|
@@ -1301,18 +1301,18 @@ export {
|
|
|
1301
1301
|
default as TerminalSquare
|
|
1302
1302
|
} from '../icons/square-terminal';
|
|
1303
1303
|
|
|
1304
|
-
// SquareUser aliases
|
|
1305
|
-
export {
|
|
1306
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
1307
|
-
default as UserSquare
|
|
1308
|
-
} from '../icons/square-user';
|
|
1309
|
-
|
|
1310
1304
|
// SquareUserRound aliases
|
|
1311
1305
|
export {
|
|
1312
1306
|
/** @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 */
|
|
1313
1307
|
default as UserSquare2
|
|
1314
1308
|
} from '../icons/square-user-round';
|
|
1315
1309
|
|
|
1310
|
+
// SquareUser aliases
|
|
1311
|
+
export {
|
|
1312
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareUser} instead. This alias will be removed in v1.0 */
|
|
1313
|
+
default as UserSquare
|
|
1314
|
+
} from '../icons/square-user';
|
|
1315
|
+
|
|
1316
1316
|
// SquareX aliases
|
|
1317
1317
|
export {
|
|
1318
1318
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareX} instead. This alias will be removed in v1.0 */
|
|
@@ -1445,18 +1445,18 @@ export {
|
|
|
1445
1445
|
default as ForkKnifeCrossed
|
|
1446
1446
|
} from '../icons/utensils-crossed';
|
|
1447
1447
|
|
|
1448
|
-
// WalletMinimal aliases
|
|
1449
|
-
export {
|
|
1450
|
-
/** @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 */
|
|
1451
|
-
default as Wallet2
|
|
1452
|
-
} from '../icons/wallet-minimal';
|
|
1453
|
-
|
|
1454
1448
|
// Utensils aliases
|
|
1455
1449
|
export {
|
|
1456
1450
|
/** @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 */
|
|
1457
1451
|
default as ForkKnife
|
|
1458
1452
|
} from '../icons/utensils';
|
|
1459
1453
|
|
|
1454
|
+
// WalletMinimal aliases
|
|
1455
|
+
export {
|
|
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 */
|
|
1457
|
+
default as Wallet2
|
|
1458
|
+
} from '../icons/wallet-minimal';
|
|
1459
|
+
|
|
1460
1460
|
// WandSparkles aliases
|
|
1461
1461
|
export {
|
|
1462
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 */
|