@lucide/astro 0.529.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 +53 -53
- package/src/aliases/prefixed.ts +393 -389
- package/src/aliases/suffixed.ts +629 -625
- package/src/icons/clipboard-clock.ts +18 -0
- package/src/icons/index.ts +137 -135
- package/src/icons/user-star.ts +18 -0
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 */
|
|
@@ -134,12 +134,12 @@ export {
|
|
|
134
134
|
default as ScatterChart
|
|
135
135
|
} from '../icons/chart-scatter';
|
|
136
136
|
|
|
137
|
-
// CircleArrowDown aliases
|
|
138
|
-
export { default as ArrowDownCircle } from '../icons/circle-arrow-down';
|
|
139
|
-
|
|
140
137
|
// CircleAlert aliases
|
|
141
138
|
export { default as AlertCircle } from '../icons/circle-alert';
|
|
142
139
|
|
|
140
|
+
// CircleArrowDown aliases
|
|
141
|
+
export { default as ArrowDownCircle } from '../icons/circle-arrow-down';
|
|
142
|
+
|
|
143
143
|
// CircleArrowLeft aliases
|
|
144
144
|
export { default as ArrowLeftCircle } from '../icons/circle-arrow-left';
|
|
145
145
|
|
|
@@ -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
|
|
|
@@ -434,12 +434,12 @@ export {
|
|
|
434
434
|
// Move3d aliases
|
|
435
435
|
export { default as Move3D } from '../icons/move-3d';
|
|
436
436
|
|
|
437
|
-
// OctagonAlert aliases
|
|
438
|
-
export { default as AlertOctagon } from '../icons/octagon-alert';
|
|
439
|
-
|
|
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
|
|
|
@@ -458,12 +458,12 @@ export { default as PanelLeftInactive } from '../icons/panel-left-dashed';
|
|
|
458
458
|
// PanelLeftOpen aliases
|
|
459
459
|
export { default as SidebarOpen } from '../icons/panel-left-open';
|
|
460
460
|
|
|
461
|
-
// PanelRightDashed aliases
|
|
462
|
-
export { default as PanelRightInactive } from '../icons/panel-right-dashed';
|
|
463
|
-
|
|
464
461
|
// PanelLeft aliases
|
|
465
462
|
export { default as Sidebar } from '../icons/panel-left';
|
|
466
463
|
|
|
464
|
+
// PanelRightDashed aliases
|
|
465
|
+
export { default as PanelRightInactive } from '../icons/panel-right-dashed';
|
|
466
|
+
|
|
467
467
|
// PanelTopDashed aliases
|
|
468
468
|
export { default as PanelTopInactive } from '../icons/panel-top-dashed';
|
|
469
469
|
|
|
@@ -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
|
|
|
@@ -515,12 +515,12 @@ export { default as ShieldClose } from '../icons/shield-x';
|
|
|
515
515
|
// SlidersVertical aliases
|
|
516
516
|
export { default as Sliders } from '../icons/sliders-vertical';
|
|
517
517
|
|
|
518
|
-
// SquareActivity aliases
|
|
519
|
-
export { default as ActivitySquare } from '../icons/square-activity';
|
|
520
|
-
|
|
521
518
|
// Sparkles aliases
|
|
522
519
|
export { default as Stars } from '../icons/sparkles';
|
|
523
520
|
|
|
521
|
+
// SquareActivity aliases
|
|
522
|
+
export { default as ActivitySquare } from '../icons/square-activity';
|
|
523
|
+
|
|
524
524
|
// SquareArrowDownLeft aliases
|
|
525
525
|
export { default as ArrowDownLeftSquare } from '../icons/square-arrow-down-left';
|
|
526
526
|
|
|
@@ -545,18 +545,18 @@ export { default as ArrowUpLeftFromSquare } from '../icons/square-arrow-out-up-l
|
|
|
545
545
|
// SquareArrowOutUpRight aliases
|
|
546
546
|
export { default as ArrowUpRightFromSquare } from '../icons/square-arrow-out-up-right';
|
|
547
547
|
|
|
548
|
-
// SquareArrowUpLeft aliases
|
|
549
|
-
export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
550
|
-
|
|
551
548
|
// SquareArrowRight aliases
|
|
552
549
|
export { default as ArrowRightSquare } from '../icons/square-arrow-right';
|
|
553
550
|
|
|
554
|
-
//
|
|
555
|
-
export { default as
|
|
551
|
+
// SquareArrowUpLeft aliases
|
|
552
|
+
export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
556
553
|
|
|
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
|
|
|
@@ -599,15 +599,15 @@ export { default as MousePointerSquareDashed } from '../icons/square-dashed-mous
|
|
|
599
599
|
// SquareDashed aliases
|
|
600
600
|
export { default as BoxSelect } from '../icons/square-dashed';
|
|
601
601
|
|
|
602
|
-
// SquareEqual aliases
|
|
603
|
-
export { default as EqualSquare } from '../icons/square-equal';
|
|
604
|
-
|
|
605
602
|
// SquareDivide aliases
|
|
606
603
|
export { default as DivideSquare } from '../icons/square-divide';
|
|
607
604
|
|
|
608
605
|
// SquareDot aliases
|
|
609
606
|
export { default as DotSquare } from '../icons/square-dot';
|
|
610
607
|
|
|
608
|
+
// SquareEqual aliases
|
|
609
|
+
export { default as EqualSquare } from '../icons/square-equal';
|
|
610
|
+
|
|
611
611
|
// SquareFunction aliases
|
|
612
612
|
export { default as FunctionSquare } from '../icons/square-function';
|
|
613
613
|
|
|
@@ -704,6 +704,12 @@ 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
|
+
// TvMinimal aliases
|
|
708
|
+
export {
|
|
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 */
|
|
710
|
+
default as Tv2
|
|
711
|
+
} from '../icons/tv-minimal';
|
|
712
|
+
|
|
707
713
|
// TriangleAlert aliases
|
|
708
714
|
export { default as AlertTriangle } from '../icons/triangle-alert';
|
|
709
715
|
|
|
@@ -713,12 +719,6 @@ export {
|
|
|
713
719
|
default as School2
|
|
714
720
|
} from '../icons/university';
|
|
715
721
|
|
|
716
|
-
// TvMinimal aliases
|
|
717
|
-
export {
|
|
718
|
-
/** @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 */
|
|
719
|
-
default as Tv2
|
|
720
|
-
} from '../icons/tv-minimal';
|
|
721
|
-
|
|
722
722
|
// UserRoundCheck aliases
|
|
723
723
|
export {
|
|
724
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 */
|