@ycloud-web/icons-astro 0.1.3 → 0.1.4
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/README.md +2 -0
- package/package.json +1 -1
- package/src/aliases/aliases.ts +54 -54
- package/src/aliases/prefixed.ts +479 -479
- package/src/aliases/suffixed.ts +855 -855
- package/src/icons/index.ts +250 -250
package/README.md
CHANGED
|
@@ -54,4 +54,6 @@ bun add @ycloud-web/icons-astro@latest
|
|
|
54
54
|
|
|
55
55
|
## 许可证
|
|
56
56
|
|
|
57
|
+
YCloud Icons 基于 [Lucide](https://github.com/lucide-icons/lucide) 二次开发,保留上游 ISC 许可证与必要的第三方授权说明。本包在此基础上提供适用于 Astro 站点和应用的图标组件。
|
|
58
|
+
|
|
57
59
|
YCloud Icons 使用 ISC 许可证发布。详见 [LICENSE](https://tianjianjun0727.github.io/ycloud-icons/license)。
|
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -221,18 +221,18 @@ export {
|
|
|
221
221
|
default as ArrowUpRightFromCircle
|
|
222
222
|
} from '../icons/circle-arrow-out-up-right';
|
|
223
223
|
|
|
224
|
-
// CircleArrowRight aliases
|
|
225
|
-
export {
|
|
226
|
-
/** @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 */
|
|
227
|
-
default as ArrowRightCircle
|
|
228
|
-
} from '../icons/circle-arrow-right';
|
|
229
|
-
|
|
230
224
|
// CircleArrowUp aliases
|
|
231
225
|
export {
|
|
232
226
|
/** @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 */
|
|
233
227
|
default as ArrowUpCircle
|
|
234
228
|
} from '../icons/circle-arrow-up';
|
|
235
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
236
|
// CircleCheckBig aliases
|
|
237
237
|
export {
|
|
238
238
|
/** @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 */
|
|
@@ -269,18 +269,18 @@ export {
|
|
|
269
269
|
default as ChevronUpCircle
|
|
270
270
|
} from '../icons/circle-chevron-up';
|
|
271
271
|
|
|
272
|
-
// CircleDivide aliases
|
|
273
|
-
export {
|
|
274
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
275
|
-
default as DivideCircle
|
|
276
|
-
} from '../icons/circle-divide';
|
|
277
|
-
|
|
278
272
|
// CircleGauge aliases
|
|
279
273
|
export {
|
|
280
274
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleGauge} instead. This alias will be removed in v1.0 */
|
|
281
275
|
default as GaugeCircle
|
|
282
276
|
} from '../icons/circle-gauge';
|
|
283
277
|
|
|
278
|
+
// CircleDivide aliases
|
|
279
|
+
export {
|
|
280
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link CircleDivide} instead. This alias will be removed in v1.0 */
|
|
281
|
+
default as DivideCircle
|
|
282
|
+
} from '../icons/circle-divide';
|
|
283
|
+
|
|
284
284
|
// CircleMinus aliases
|
|
285
285
|
export {
|
|
286
286
|
/** @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 */
|
|
@@ -449,18 +449,18 @@ export {
|
|
|
449
449
|
default as MoreVertical
|
|
450
450
|
} from '../icons/ellipsis-vertical';
|
|
451
451
|
|
|
452
|
-
// Ellipsis aliases
|
|
453
|
-
export {
|
|
454
|
-
/** @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
|
-
default as MoreHorizontal
|
|
456
|
-
} from '../icons/ellipsis';
|
|
457
|
-
|
|
458
452
|
// FileAxis3d aliases
|
|
459
453
|
export {
|
|
460
454
|
/** @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
455
|
default as FileAxis3D
|
|
462
456
|
} from '../icons/file-axis-3d';
|
|
463
457
|
|
|
458
|
+
// Ellipsis aliases
|
|
459
|
+
export {
|
|
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 */
|
|
461
|
+
default as MoreHorizontal
|
|
462
|
+
} from '../icons/ellipsis';
|
|
463
|
+
|
|
464
464
|
// FileBadge aliases
|
|
465
465
|
export {
|
|
466
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 */
|
|
@@ -509,24 +509,30 @@ export {
|
|
|
509
509
|
default as FileCheck2
|
|
510
510
|
} from '../icons/file-check-corner';
|
|
511
511
|
|
|
512
|
-
// FileCodeCorner aliases
|
|
513
|
-
export {
|
|
514
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. This alias will be removed in v1.0 */
|
|
515
|
-
default as FileCode2
|
|
516
|
-
} from '../icons/file-code-corner';
|
|
517
|
-
|
|
518
512
|
// FileCog aliases
|
|
519
513
|
export {
|
|
520
514
|
/** @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 */
|
|
521
515
|
default as FileCog2
|
|
522
516
|
} from '../icons/file-cog';
|
|
523
517
|
|
|
518
|
+
// FileCodeCorner aliases
|
|
519
|
+
export {
|
|
520
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileCodeCorner} instead. This alias will be removed in v1.0 */
|
|
521
|
+
default as FileCode2
|
|
522
|
+
} from '../icons/file-code-corner';
|
|
523
|
+
|
|
524
524
|
// FileExclamationPoint aliases
|
|
525
525
|
export {
|
|
526
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
527
|
default as FileWarning
|
|
528
528
|
} from '../icons/file-exclamation-point';
|
|
529
529
|
|
|
530
|
+
// FileKey aliases
|
|
531
|
+
export {
|
|
532
|
+
/** @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 */
|
|
533
|
+
default as FileKey2
|
|
534
|
+
} from '../icons/file-key';
|
|
535
|
+
|
|
530
536
|
// FileHeadphone aliases
|
|
531
537
|
export {
|
|
532
538
|
/** @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 */
|
|
@@ -539,12 +545,6 @@ export {
|
|
|
539
545
|
default as FileAudio2
|
|
540
546
|
} from '../icons/file-headphone';
|
|
541
547
|
|
|
542
|
-
// FileKey aliases
|
|
543
|
-
export {
|
|
544
|
-
/** @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 */
|
|
545
|
-
default as FileKey2
|
|
546
|
-
} from '../icons/file-key';
|
|
547
|
-
|
|
548
548
|
// FileLock aliases
|
|
549
549
|
export {
|
|
550
550
|
/** @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,18 +563,18 @@ export {
|
|
|
563
563
|
default as FileSignature
|
|
564
564
|
} from '../icons/file-pen-line';
|
|
565
565
|
|
|
566
|
-
// FilePen aliases
|
|
567
|
-
export {
|
|
568
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
569
|
-
default as FileEdit
|
|
570
|
-
} from '../icons/file-pen';
|
|
571
|
-
|
|
572
566
|
// FilePlay aliases
|
|
573
567
|
export {
|
|
574
568
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlay} instead. This alias will be removed in v1.0 */
|
|
575
569
|
default as FileVideo
|
|
576
570
|
} from '../icons/file-play';
|
|
577
571
|
|
|
572
|
+
// FilePen aliases
|
|
573
|
+
export {
|
|
574
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePen} instead. This alias will be removed in v1.0 */
|
|
575
|
+
default as FileEdit
|
|
576
|
+
} from '../icons/file-pen';
|
|
577
|
+
|
|
578
578
|
// FilePlusCorner aliases
|
|
579
579
|
export {
|
|
580
580
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FilePlusCorner} instead. This alias will be removed in v1.0 */
|
|
@@ -911,18 +911,18 @@ export {
|
|
|
911
911
|
default as Rows
|
|
912
912
|
} from '../icons/rows-2';
|
|
913
913
|
|
|
914
|
-
// Rows3 aliases
|
|
915
|
-
export {
|
|
916
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
917
|
-
default as PanelsTopBottom
|
|
918
|
-
} from '../icons/rows-3';
|
|
919
|
-
|
|
920
914
|
// Scale3d aliases
|
|
921
915
|
export {
|
|
922
916
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Scale3d} instead. This alias will be removed in v1.0 */
|
|
923
917
|
default as Scale3D
|
|
924
918
|
} from '../icons/scale-3d';
|
|
925
919
|
|
|
920
|
+
// Rows3 aliases
|
|
921
|
+
export {
|
|
922
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link Rows3} instead. This alias will be removed in v1.0 */
|
|
923
|
+
default as PanelsTopBottom
|
|
924
|
+
} from '../icons/rows-3';
|
|
925
|
+
|
|
926
926
|
// SendHorizontal aliases
|
|
927
927
|
export {
|
|
928
928
|
/** @deprecated Renamed because of typo, use {@link SendHorizontal} 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
|
-
// SquareUserRound aliases
|
|
1305
|
-
export {
|
|
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 */
|
|
1307
|
-
default as UserSquare2
|
|
1308
|
-
} from '../icons/square-user-round';
|
|
1309
|
-
|
|
1310
1304
|
// SquareUser aliases
|
|
1311
1305
|
export {
|
|
1312
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 */
|
|
1313
1307
|
default as UserSquare
|
|
1314
1308
|
} from '../icons/square-user';
|
|
1315
1309
|
|
|
1310
|
+
// SquareUserRound aliases
|
|
1311
|
+
export {
|
|
1312
|
+
/** @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
|
+
default as UserSquare2
|
|
1314
|
+
} from '../icons/square-user-round';
|
|
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,12 +1445,6 @@ export {
|
|
|
1445
1445
|
default as ForkKnifeCrossed
|
|
1446
1446
|
} from '../icons/utensils-crossed';
|
|
1447
1447
|
|
|
1448
|
-
// Utensils aliases
|
|
1449
|
-
export {
|
|
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 */
|
|
1451
|
-
default as ForkKnife
|
|
1452
|
-
} from '../icons/utensils';
|
|
1453
|
-
|
|
1454
1448
|
// WalletMinimal aliases
|
|
1455
1449
|
export {
|
|
1456
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 */
|
|
@@ -1463,6 +1457,12 @@ export {
|
|
|
1463
1457
|
default as Wand2
|
|
1464
1458
|
} from '../icons/wand-sparkles';
|
|
1465
1459
|
|
|
1460
|
+
// Utensils aliases
|
|
1461
|
+
export {
|
|
1462
|
+
/** @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 */
|
|
1463
|
+
default as ForkKnife
|
|
1464
|
+
} from '../icons/utensils';
|
|
1465
|
+
|
|
1466
1466
|
// WavesHorizontal aliases
|
|
1467
1467
|
export {
|
|
1468
1468
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link WavesHorizontal} instead. This alias will be removed in v1.0 */
|