@lucide/astro 0.552.0 → 0.554.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 +76 -70
- package/src/aliases/prefixed.ts +609 -589
- package/src/aliases/suffixed.ts +897 -877
- package/src/icons/ampersand.ts +2 -2
- package/src/icons/anchor.ts +2 -2
- package/src/icons/calendars.ts +18 -0
- package/src/icons/chess-bishop.ts +18 -0
- package/src/icons/chess-king.ts +18 -0
- package/src/icons/chess-knight.ts +18 -0
- package/src/icons/chess-pawn.ts +18 -0
- package/src/icons/chess-queen.ts +18 -0
- package/src/icons/chess-rook.ts +18 -0
- package/src/icons/{fingerprint.ts → fingerprint-pattern.ts} +4 -4
- package/src/icons/folder-git-2.ts +2 -2
- package/src/icons/index.ts +122 -114
- package/src/icons/mouse-pointer-2-off.ts +18 -0
- package/src/icons/ruler-dimension-line.ts +2 -2
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
|
// Chromium aliases
|
|
183
183
|
export {
|
|
184
184
|
/** @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 */
|
|
@@ -287,18 +287,18 @@ export {
|
|
|
287
287
|
default as GaugeCircle
|
|
288
288
|
} from '../icons/circle-gauge';
|
|
289
289
|
|
|
290
|
-
// CircleParkingOff aliases
|
|
291
|
-
export {
|
|
292
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. This alias will be removed in v1.0 */
|
|
293
|
-
default as ParkingCircleOff
|
|
294
|
-
} from '../icons/circle-parking-off';
|
|
295
|
-
|
|
296
290
|
// CircleMinus aliases
|
|
297
291
|
export {
|
|
298
292
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleMinus} instead. This alias will be removed in v1.0 */
|
|
299
293
|
default as MinusCircle
|
|
300
294
|
} from '../icons/circle-minus';
|
|
301
295
|
|
|
296
|
+
// CircleParkingOff aliases
|
|
297
|
+
export {
|
|
298
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParkingOff} instead. This alias will be removed in v1.0 */
|
|
299
|
+
default as ParkingCircleOff
|
|
300
|
+
} from '../icons/circle-parking-off';
|
|
301
|
+
|
|
302
302
|
// CircleParking aliases
|
|
303
303
|
export {
|
|
304
304
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleParking} instead. This alias will be removed in v1.0 */
|
|
@@ -359,6 +359,12 @@ export {
|
|
|
359
359
|
default as StopCircle
|
|
360
360
|
} from '../icons/circle-stop';
|
|
361
361
|
|
|
362
|
+
// CircleUserRound aliases
|
|
363
|
+
export {
|
|
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
|
+
default as UserCircle2
|
|
366
|
+
} from '../icons/circle-user-round';
|
|
367
|
+
|
|
362
368
|
// CircleUser aliases
|
|
363
369
|
export {
|
|
364
370
|
/** @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 */
|
|
@@ -371,12 +377,6 @@ export {
|
|
|
371
377
|
default as XCircle
|
|
372
378
|
} from '../icons/circle-x';
|
|
373
379
|
|
|
374
|
-
// CircleUserRound aliases
|
|
375
|
-
export {
|
|
376
|
-
/** @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 */
|
|
377
|
-
default as UserCircle2
|
|
378
|
-
} from '../icons/circle-user-round';
|
|
379
|
-
|
|
380
380
|
// ClipboardPenLine aliases
|
|
381
381
|
export {
|
|
382
382
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ClipboardPenLine} instead. This alias will be removed in v1.0 */
|
|
@@ -413,12 +413,6 @@ export {
|
|
|
413
413
|
default as Columns
|
|
414
414
|
} from '../icons/columns-2';
|
|
415
415
|
|
|
416
|
-
// Columns3 aliases
|
|
417
|
-
export {
|
|
418
|
-
/** @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 */
|
|
419
|
-
default as PanelsLeftRight
|
|
420
|
-
} from '../icons/columns-3';
|
|
421
|
-
|
|
422
416
|
// Columns3Cog aliases
|
|
423
417
|
export {
|
|
424
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 */
|
|
@@ -431,6 +425,12 @@ export {
|
|
|
431
425
|
default as TableConfig
|
|
432
426
|
} from '../icons/columns-3-cog';
|
|
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
|
// ContactRound aliases
|
|
435
435
|
export {
|
|
436
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 */
|
|
@@ -455,18 +455,18 @@ export {
|
|
|
455
455
|
default as MoreVertical
|
|
456
456
|
} from '../icons/ellipsis-vertical';
|
|
457
457
|
|
|
458
|
-
// FileAxis3d aliases
|
|
459
|
-
export {
|
|
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 */
|
|
461
|
-
default as FileAxis3D
|
|
462
|
-
} from '../icons/file-axis-3d';
|
|
463
|
-
|
|
464
458
|
// Ellipsis aliases
|
|
465
459
|
export {
|
|
466
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 */
|
|
467
461
|
default as MoreHorizontal
|
|
468
462
|
} from '../icons/ellipsis';
|
|
469
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
470
|
// FileBadge aliases
|
|
471
471
|
export {
|
|
472
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 */
|
|
@@ -605,12 +605,6 @@ export {
|
|
|
605
605
|
default as FileVolume2
|
|
606
606
|
} from '../icons/file-signal';
|
|
607
607
|
|
|
608
|
-
// FileTypeCorner aliases
|
|
609
|
-
export {
|
|
610
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. This alias will be removed in v1.0 */
|
|
611
|
-
default as FileType2
|
|
612
|
-
} from '../icons/file-type-corner';
|
|
613
|
-
|
|
614
608
|
// FileVideoCamera aliases
|
|
615
609
|
export {
|
|
616
610
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileVideoCamera} instead. This alias will be removed in v1.0 */
|
|
@@ -623,6 +617,18 @@ export {
|
|
|
623
617
|
default as FileX2
|
|
624
618
|
} from '../icons/file-x-corner';
|
|
625
619
|
|
|
620
|
+
// FileTypeCorner aliases
|
|
621
|
+
export {
|
|
622
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileTypeCorner} instead. This alias will be removed in v1.0 */
|
|
623
|
+
default as FileType2
|
|
624
|
+
} from '../icons/file-type-corner';
|
|
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
|
+
|
|
626
632
|
// FolderCog aliases
|
|
627
633
|
export {
|
|
628
634
|
/** @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 */
|
|
@@ -869,18 +875,18 @@ export {
|
|
|
869
875
|
default as PanelTopInactive
|
|
870
876
|
} from '../icons/panel-top-dashed';
|
|
871
877
|
|
|
872
|
-
// PanelsTopLeft aliases
|
|
873
|
-
export {
|
|
874
|
-
/** @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 */
|
|
875
|
-
default as Layout
|
|
876
|
-
} from '../icons/panels-top-left';
|
|
877
|
-
|
|
878
878
|
// PenLine aliases
|
|
879
879
|
export {
|
|
880
880
|
/** @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 */
|
|
881
881
|
default as Edit3
|
|
882
882
|
} from '../icons/pen-line';
|
|
883
883
|
|
|
884
|
+
// PanelsTopLeft aliases
|
|
885
|
+
export {
|
|
886
|
+
/** @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 */
|
|
887
|
+
default as Layout
|
|
888
|
+
} from '../icons/panels-top-left';
|
|
889
|
+
|
|
884
890
|
// Pen aliases
|
|
885
891
|
export {
|
|
886
892
|
/** @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 */
|
|
@@ -1067,18 +1073,18 @@ export {
|
|
|
1067
1073
|
default as CheckSquare2
|
|
1068
1074
|
} from '../icons/square-check';
|
|
1069
1075
|
|
|
1070
|
-
// SquareChevronLeft aliases
|
|
1071
|
-
export {
|
|
1072
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
1073
|
-
default as ChevronLeftSquare
|
|
1074
|
-
} from '../icons/square-chevron-left';
|
|
1075
|
-
|
|
1076
1076
|
// SquareChevronDown aliases
|
|
1077
1077
|
export {
|
|
1078
1078
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronDown} instead. This alias will be removed in v1.0 */
|
|
1079
1079
|
default as ChevronDownSquare
|
|
1080
1080
|
} from '../icons/square-chevron-down';
|
|
1081
1081
|
|
|
1082
|
+
// SquareChevronLeft aliases
|
|
1083
|
+
export {
|
|
1084
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronLeft} instead. This alias will be removed in v1.0 */
|
|
1085
|
+
default as ChevronLeftSquare
|
|
1086
|
+
} from '../icons/square-chevron-left';
|
|
1087
|
+
|
|
1082
1088
|
// SquareChevronRight aliases
|
|
1083
1089
|
export {
|
|
1084
1090
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link SquareChevronRight} instead. This alias will be removed in v1.0 */
|
|
@@ -1241,18 +1247,18 @@ export {
|
|
|
1241
1247
|
default as PowerSquare
|
|
1242
1248
|
} from '../icons/square-power';
|
|
1243
1249
|
|
|
1244
|
-
// SquareScissors aliases
|
|
1245
|
-
export {
|
|
1246
|
-
/** @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 */
|
|
1247
|
-
default as ScissorsSquare
|
|
1248
|
-
} from '../icons/square-scissors';
|
|
1249
|
-
|
|
1250
1250
|
// SquareSigma aliases
|
|
1251
1251
|
export {
|
|
1252
1252
|
/** @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 */
|
|
1253
1253
|
default as SigmaSquare
|
|
1254
1254
|
} from '../icons/square-sigma';
|
|
1255
1255
|
|
|
1256
|
+
// SquareScissors aliases
|
|
1257
|
+
export {
|
|
1258
|
+
/** @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 */
|
|
1259
|
+
default as ScissorsSquare
|
|
1260
|
+
} from '../icons/square-scissors';
|
|
1261
|
+
|
|
1256
1262
|
// SquareSlash aliases
|
|
1257
1263
|
export {
|
|
1258
1264
|
/** @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 */
|
|
@@ -1265,18 +1271,18 @@ export {
|
|
|
1265
1271
|
default as SplitSquareHorizontal
|
|
1266
1272
|
} from '../icons/square-split-horizontal';
|
|
1267
1273
|
|
|
1268
|
-
// SquareSplitVertical aliases
|
|
1269
|
-
export {
|
|
1270
|
-
/** @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 */
|
|
1271
|
-
default as SplitSquareVertical
|
|
1272
|
-
} from '../icons/square-split-vertical';
|
|
1273
|
-
|
|
1274
1274
|
// SquareTerminal aliases
|
|
1275
1275
|
export {
|
|
1276
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
1277
|
default as TerminalSquare
|
|
1278
1278
|
} from '../icons/square-terminal';
|
|
1279
1279
|
|
|
1280
|
+
// SquareSplitVertical aliases
|
|
1281
|
+
export {
|
|
1282
|
+
/** @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
|
+
default as SplitSquareVertical
|
|
1284
|
+
} from '../icons/square-split-vertical';
|
|
1285
|
+
|
|
1280
1286
|
// SquareUserRound aliases
|
|
1281
1287
|
export {
|
|
1282
1288
|
/** @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 */
|
|
@@ -1355,17 +1361,23 @@ export {
|
|
|
1355
1361
|
default as Train
|
|
1356
1362
|
} from '../icons/tram-front';
|
|
1357
1363
|
|
|
1364
|
+
// TriangleAlert aliases
|
|
1365
|
+
export {
|
|
1366
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TriangleAlert} instead. This alias will be removed in v1.0 */
|
|
1367
|
+
default as AlertTriangle
|
|
1368
|
+
} from '../icons/triangle-alert';
|
|
1369
|
+
|
|
1358
1370
|
// TreePalm aliases
|
|
1359
1371
|
export {
|
|
1360
1372
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TreePalm} instead. This alias will be removed in v1.0 */
|
|
1361
1373
|
default as Palmtree
|
|
1362
1374
|
} from '../icons/tree-palm';
|
|
1363
1375
|
|
|
1364
|
-
//
|
|
1376
|
+
// University aliases
|
|
1365
1377
|
export {
|
|
1366
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link
|
|
1367
|
-
default as
|
|
1368
|
-
} from '../icons/
|
|
1378
|
+
/** @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 */
|
|
1379
|
+
default as School2
|
|
1380
|
+
} from '../icons/university';
|
|
1369
1381
|
|
|
1370
1382
|
// TvMinimal aliases
|
|
1371
1383
|
export {
|
|
@@ -1379,12 +1391,6 @@ export {
|
|
|
1379
1391
|
default as UserCheck2
|
|
1380
1392
|
} from '../icons/user-round-check';
|
|
1381
1393
|
|
|
1382
|
-
// University aliases
|
|
1383
|
-
export {
|
|
1384
|
-
/** @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 */
|
|
1385
|
-
default as School2
|
|
1386
|
-
} from '../icons/university';
|
|
1387
|
-
|
|
1388
1394
|
// UserRoundCog aliases
|
|
1389
1395
|
export {
|
|
1390
1396
|
/** @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 */
|