@lucide/astro 0.530.0 → 0.531.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 +52 -52
- package/src/aliases/prefixed.ts +231 -229
- package/src/aliases/suffixed.ts +355 -353
- package/src/icons/clipboard-clock.ts +18 -0
- package/src/icons/index.ts +89 -88
- package/src/icons/user-star.ts +2 -2
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -35,18 +35,18 @@ export { default as Verified } from '../icons/badge-check';
|
|
|
35
35
|
// BadgeQuestionMark aliases
|
|
36
36
|
export { default as BadgeHelp } from '../icons/badge-question-mark';
|
|
37
37
|
|
|
38
|
-
// BetweenHorizontalEnd aliases
|
|
39
|
-
export {
|
|
40
|
-
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
41
|
-
default as BetweenHorizonalEnd
|
|
42
|
-
} from '../icons/between-horizontal-end';
|
|
43
|
-
|
|
44
38
|
// BetweenHorizontalStart aliases
|
|
45
39
|
export {
|
|
46
40
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
47
41
|
default as BetweenHorizonalStart
|
|
48
42
|
} from '../icons/between-horizontal-start';
|
|
49
43
|
|
|
44
|
+
// BetweenHorizontalEnd aliases
|
|
45
|
+
export {
|
|
46
|
+
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalEnd} instead. This alias will be removed in v1.0 */
|
|
47
|
+
default as BetweenHorizonalEnd
|
|
48
|
+
} from '../icons/between-horizontal-end';
|
|
49
|
+
|
|
50
50
|
// BookDashed aliases
|
|
51
51
|
export { default as BookTemplate } from '../icons/book-dashed';
|
|
52
52
|
|
|
@@ -62,18 +62,18 @@ export {
|
|
|
62
62
|
default as AreaChart
|
|
63
63
|
} from '../icons/chart-area';
|
|
64
64
|
|
|
65
|
-
// ChartBarBig aliases
|
|
66
|
-
export {
|
|
67
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
|
|
68
|
-
default as BarChartHorizontalBig
|
|
69
|
-
} from '../icons/chart-bar-big';
|
|
70
|
-
|
|
71
65
|
// ChartBar aliases
|
|
72
66
|
export {
|
|
73
67
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBar} instead. This alias will be removed in v1.0 */
|
|
74
68
|
default as BarChartHorizontal
|
|
75
69
|
} from '../icons/chart-bar';
|
|
76
70
|
|
|
71
|
+
// ChartBarBig aliases
|
|
72
|
+
export {
|
|
73
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartBarBig} instead. This alias will be removed in v1.0 */
|
|
74
|
+
default as BarChartHorizontalBig
|
|
75
|
+
} from '../icons/chart-bar-big';
|
|
76
|
+
|
|
77
77
|
// ChartCandlestick aliases
|
|
78
78
|
export {
|
|
79
79
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartCandlestick} instead. This alias will be removed in v1.0 */
|
|
@@ -152,12 +152,12 @@ export { default as ArrowDownRightFromCircle } from '../icons/circle-arrow-out-d
|
|
|
152
152
|
// CircleArrowOutUpLeft aliases
|
|
153
153
|
export { default as ArrowUpLeftFromCircle } from '../icons/circle-arrow-out-up-left';
|
|
154
154
|
|
|
155
|
-
// CircleArrowOutUpRight aliases
|
|
156
|
-
export { default as ArrowUpRightFromCircle } from '../icons/circle-arrow-out-up-right';
|
|
157
|
-
|
|
158
155
|
// CircleArrowRight aliases
|
|
159
156
|
export { default as ArrowRightCircle } from '../icons/circle-arrow-right';
|
|
160
157
|
|
|
158
|
+
// CircleArrowOutUpRight aliases
|
|
159
|
+
export { default as ArrowUpRightFromCircle } from '../icons/circle-arrow-out-up-right';
|
|
160
|
+
|
|
161
161
|
// CircleArrowUp aliases
|
|
162
162
|
export { default as ArrowUpCircle } from '../icons/circle-arrow-up';
|
|
163
163
|
|
|
@@ -299,18 +299,18 @@ export {
|
|
|
299
299
|
default as FileBarChart2
|
|
300
300
|
} from '../icons/file-chart-column';
|
|
301
301
|
|
|
302
|
-
// FileChartLine aliases
|
|
303
|
-
export {
|
|
304
|
-
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
305
|
-
default as FileLineChart
|
|
306
|
-
} from '../icons/file-chart-line';
|
|
307
|
-
|
|
308
302
|
// FileChartPie aliases
|
|
309
303
|
export {
|
|
310
304
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartPie} instead. This alias will be removed in v1.0 */
|
|
311
305
|
default as FilePieChart
|
|
312
306
|
} from '../icons/file-chart-pie';
|
|
313
307
|
|
|
308
|
+
// FileChartLine aliases
|
|
309
|
+
export {
|
|
310
|
+
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartLine} instead. This alias will be removed in v1.0 */
|
|
311
|
+
default as FileLineChart
|
|
312
|
+
} from '../icons/file-chart-line';
|
|
313
|
+
|
|
314
314
|
// FileCog aliases
|
|
315
315
|
export {
|
|
316
316
|
/** @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 */
|
|
@@ -353,12 +353,12 @@ export {
|
|
|
353
353
|
default as Filter
|
|
354
354
|
} from '../icons/funnel';
|
|
355
355
|
|
|
356
|
-
// GitCommitHorizontal aliases
|
|
357
|
-
export { default as GitCommit } from '../icons/git-commit-horizontal';
|
|
358
|
-
|
|
359
356
|
// Grid2x2Check aliases
|
|
360
357
|
export { default as Grid2X2Check } from '../icons/grid-2x2-check';
|
|
361
358
|
|
|
359
|
+
// GitCommitHorizontal aliases
|
|
360
|
+
export { default as GitCommit } from '../icons/git-commit-horizontal';
|
|
361
|
+
|
|
362
362
|
// Grid2x2Plus aliases
|
|
363
363
|
export { default as Grid2X2Plus } from '../icons/grid-2x2-plus';
|
|
364
364
|
|
|
@@ -416,20 +416,14 @@ export { default as Unlock } from '../icons/lock-open';
|
|
|
416
416
|
// MailQuestionMark aliases
|
|
417
417
|
export { default as MailQuestion } from '../icons/mail-question-mark';
|
|
418
418
|
|
|
419
|
-
// MessageCircleQuestionMark aliases
|
|
420
|
-
export { default as MessageCircleQuestion } from '../icons/message-circle-question-mark';
|
|
421
|
-
|
|
422
419
|
// MapPinPen aliases
|
|
423
420
|
export {
|
|
424
421
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link MapPinPen} instead. This alias will be removed in v1.0 */
|
|
425
422
|
default as LocationEdit
|
|
426
423
|
} from '../icons/map-pin-pen';
|
|
427
424
|
|
|
428
|
-
//
|
|
429
|
-
export { default as
|
|
430
|
-
|
|
431
|
-
// OctagonAlert aliases
|
|
432
|
-
export { default as AlertOctagon } from '../icons/octagon-alert';
|
|
425
|
+
// MessageCircleQuestionMark aliases
|
|
426
|
+
export { default as MessageCircleQuestion } from '../icons/message-circle-question-mark';
|
|
433
427
|
|
|
434
428
|
// MicVocal aliases
|
|
435
429
|
export {
|
|
@@ -437,9 +431,15 @@ export {
|
|
|
437
431
|
default as Mic2
|
|
438
432
|
} from '../icons/mic-vocal';
|
|
439
433
|
|
|
434
|
+
// Move3d aliases
|
|
435
|
+
export { default as Move3D } from '../icons/move-3d';
|
|
436
|
+
|
|
440
437
|
// OctagonPause aliases
|
|
441
438
|
export { default as PauseOctagon } from '../icons/octagon-pause';
|
|
442
439
|
|
|
440
|
+
// OctagonAlert aliases
|
|
441
|
+
export { default as AlertOctagon } from '../icons/octagon-alert';
|
|
442
|
+
|
|
443
443
|
// OctagonX aliases
|
|
444
444
|
export { default as XOctagon } from '../icons/octagon-x';
|
|
445
445
|
|
|
@@ -476,15 +476,15 @@ export {
|
|
|
476
476
|
default as Edit3
|
|
477
477
|
} from '../icons/pen-line';
|
|
478
478
|
|
|
479
|
+
// PlugZap aliases
|
|
480
|
+
export { default as PlugZap2 } from '../icons/plug-zap';
|
|
481
|
+
|
|
479
482
|
// Pen aliases
|
|
480
483
|
export {
|
|
481
484
|
/** @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 */
|
|
482
485
|
default as Edit2
|
|
483
486
|
} from '../icons/pen';
|
|
484
487
|
|
|
485
|
-
// PlugZap aliases
|
|
486
|
-
export { default as PlugZap2 } from '../icons/plug-zap';
|
|
487
|
-
|
|
488
488
|
// RectangleEllipsis aliases
|
|
489
489
|
export { default as FormInput } from '../icons/rectangle-ellipsis';
|
|
490
490
|
|
|
@@ -539,24 +539,24 @@ export { default as ArrowDownLeftFromSquare } from '../icons/square-arrow-out-do
|
|
|
539
539
|
// SquareArrowOutDownRight aliases
|
|
540
540
|
export { default as ArrowDownRightFromSquare } from '../icons/square-arrow-out-down-right';
|
|
541
541
|
|
|
542
|
-
// SquareArrowOutUpRight aliases
|
|
543
|
-
export { default as ArrowUpRightFromSquare } from '../icons/square-arrow-out-up-right';
|
|
544
|
-
|
|
545
542
|
// SquareArrowOutUpLeft aliases
|
|
546
543
|
export { default as ArrowUpLeftFromSquare } from '../icons/square-arrow-out-up-left';
|
|
547
544
|
|
|
545
|
+
// SquareArrowOutUpRight aliases
|
|
546
|
+
export { default as ArrowUpRightFromSquare } from '../icons/square-arrow-out-up-right';
|
|
547
|
+
|
|
548
548
|
// SquareArrowRight aliases
|
|
549
549
|
export { default as ArrowRightSquare } from '../icons/square-arrow-right';
|
|
550
550
|
|
|
551
551
|
// SquareArrowUpLeft aliases
|
|
552
552
|
export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
553
553
|
|
|
554
|
-
// SquareArrowUpRight aliases
|
|
555
|
-
export { default as ArrowUpRightSquare } from '../icons/square-arrow-up-right';
|
|
556
|
-
|
|
557
554
|
// SquareArrowUp aliases
|
|
558
555
|
export { default as ArrowUpSquare } from '../icons/square-arrow-up';
|
|
559
556
|
|
|
557
|
+
// SquareArrowUpRight aliases
|
|
558
|
+
export { default as ArrowUpRightSquare } from '../icons/square-arrow-up-right';
|
|
559
|
+
|
|
560
560
|
// SquareAsterisk aliases
|
|
561
561
|
export { default as AsteriskSquare } from '../icons/square-asterisk';
|
|
562
562
|
|
|
@@ -704,20 +704,14 @@ export { default as Train } from '../icons/tram-front';
|
|
|
704
704
|
// TreePalm aliases
|
|
705
705
|
export { default as Palmtree } from '../icons/tree-palm';
|
|
706
706
|
|
|
707
|
-
// TriangleAlert aliases
|
|
708
|
-
export { default as AlertTriangle } from '../icons/triangle-alert';
|
|
709
|
-
|
|
710
707
|
// TvMinimal aliases
|
|
711
708
|
export {
|
|
712
709
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link TvMinimal} instead. This alias will be removed in v1.0 */
|
|
713
710
|
default as Tv2
|
|
714
711
|
} from '../icons/tv-minimal';
|
|
715
712
|
|
|
716
|
-
//
|
|
717
|
-
export {
|
|
718
|
-
/** @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 */
|
|
719
|
-
default as UserCheck2
|
|
720
|
-
} from '../icons/user-round-check';
|
|
713
|
+
// TriangleAlert aliases
|
|
714
|
+
export { default as AlertTriangle } from '../icons/triangle-alert';
|
|
721
715
|
|
|
722
716
|
// University aliases
|
|
723
717
|
export {
|
|
@@ -725,6 +719,12 @@ export {
|
|
|
725
719
|
default as School2
|
|
726
720
|
} from '../icons/university';
|
|
727
721
|
|
|
722
|
+
// UserRoundCheck aliases
|
|
723
|
+
export {
|
|
724
|
+
/** @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 */
|
|
725
|
+
default as UserCheck2
|
|
726
|
+
} from '../icons/user-round-check';
|
|
727
|
+
|
|
728
728
|
// UserRoundCog aliases
|
|
729
729
|
export {
|
|
730
730
|
/** @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 */
|
|
@@ -755,15 +755,15 @@ export {
|
|
|
755
755
|
default as User2
|
|
756
756
|
} from '../icons/user-round';
|
|
757
757
|
|
|
758
|
-
// UtensilsCrossed aliases
|
|
759
|
-
export { default as ForkKnifeCrossed } from '../icons/utensils-crossed';
|
|
760
|
-
|
|
761
758
|
// UsersRound aliases
|
|
762
759
|
export {
|
|
763
760
|
/** @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 */
|
|
764
761
|
default as Users2
|
|
765
762
|
} from '../icons/users-round';
|
|
766
763
|
|
|
764
|
+
// UtensilsCrossed aliases
|
|
765
|
+
export { default as ForkKnifeCrossed } from '../icons/utensils-crossed';
|
|
766
|
+
|
|
767
767
|
// Utensils aliases
|
|
768
768
|
export { default as ForkKnife } from '../icons/utensils';
|
|
769
769
|
|