@lucide/astro 0.490.0 → 0.491.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 +72 -72
- package/src/aliases/prefixed.ts +452 -450
- package/src/aliases/suffixed.ts +839 -837
- package/src/icons/index.ts +154 -153
- package/src/icons/rotate-ccw-key.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -23,12 +23,12 @@ export { default as ArrowUpAz } from '../icons/arrow-up-a-z';
|
|
|
23
23
|
// ArrowUpNarrowWide aliases
|
|
24
24
|
export { default as SortAsc } from '../icons/arrow-up-narrow-wide';
|
|
25
25
|
|
|
26
|
-
// Axis3d aliases
|
|
27
|
-
export { default as Axis3D } from '../icons/axis-3d';
|
|
28
|
-
|
|
29
26
|
// ArrowUpZA aliases
|
|
30
27
|
export { default as ArrowUpZa } from '../icons/arrow-up-z-a';
|
|
31
28
|
|
|
29
|
+
// Axis3d aliases
|
|
30
|
+
export { default as Axis3D } from '../icons/axis-3d';
|
|
31
|
+
|
|
32
32
|
// BadgeCheck aliases
|
|
33
33
|
export { default as Verified } from '../icons/badge-check';
|
|
34
34
|
|
|
@@ -59,23 +59,17 @@ export {
|
|
|
59
59
|
default as AreaChart
|
|
60
60
|
} from '../icons/chart-area';
|
|
61
61
|
|
|
62
|
-
// ChartBar aliases
|
|
63
|
-
export {
|
|
64
|
-
/** @deprecated */
|
|
65
|
-
default as BarChartHorizontal
|
|
66
|
-
} from '../icons/chart-bar';
|
|
67
|
-
|
|
68
62
|
// ChartBarBig aliases
|
|
69
63
|
export {
|
|
70
64
|
/** @deprecated */
|
|
71
65
|
default as BarChartHorizontalBig
|
|
72
66
|
} from '../icons/chart-bar-big';
|
|
73
67
|
|
|
74
|
-
//
|
|
68
|
+
// ChartBar aliases
|
|
75
69
|
export {
|
|
76
70
|
/** @deprecated */
|
|
77
|
-
default as
|
|
78
|
-
} from '../icons/chart-
|
|
71
|
+
default as BarChartHorizontal
|
|
72
|
+
} from '../icons/chart-bar';
|
|
79
73
|
|
|
80
74
|
// ChartCandlestick aliases
|
|
81
75
|
export {
|
|
@@ -83,6 +77,12 @@ export {
|
|
|
83
77
|
default as CandlestickChart
|
|
84
78
|
} from '../icons/chart-candlestick';
|
|
85
79
|
|
|
80
|
+
// ChartColumnBig aliases
|
|
81
|
+
export {
|
|
82
|
+
/** @deprecated */
|
|
83
|
+
default as BarChartBig
|
|
84
|
+
} from '../icons/chart-column-big';
|
|
85
|
+
|
|
86
86
|
// ChartColumnIncreasing aliases
|
|
87
87
|
export {
|
|
88
88
|
/** @deprecated */
|
|
@@ -95,18 +95,18 @@ export {
|
|
|
95
95
|
default as BarChart3
|
|
96
96
|
} from '../icons/chart-column';
|
|
97
97
|
|
|
98
|
-
// ChartNoAxesColumnIncreasing aliases
|
|
99
|
-
export {
|
|
100
|
-
/** @deprecated */
|
|
101
|
-
default as BarChart
|
|
102
|
-
} from '../icons/chart-no-axes-column-increasing';
|
|
103
|
-
|
|
104
98
|
// ChartLine aliases
|
|
105
99
|
export {
|
|
106
100
|
/** @deprecated */
|
|
107
101
|
default as LineChart
|
|
108
102
|
} from '../icons/chart-line';
|
|
109
103
|
|
|
104
|
+
// ChartNoAxesColumnIncreasing aliases
|
|
105
|
+
export {
|
|
106
|
+
/** @deprecated */
|
|
107
|
+
default as BarChart
|
|
108
|
+
} from '../icons/chart-no-axes-column-increasing';
|
|
109
|
+
|
|
110
110
|
// ChartNoAxesColumn aliases
|
|
111
111
|
export {
|
|
112
112
|
/** @deprecated */
|
|
@@ -119,18 +119,18 @@ export {
|
|
|
119
119
|
default as GanttChart
|
|
120
120
|
} from '../icons/chart-no-axes-gantt';
|
|
121
121
|
|
|
122
|
-
// ChartPie aliases
|
|
123
|
-
export {
|
|
124
|
-
/** @deprecated */
|
|
125
|
-
default as PieChart
|
|
126
|
-
} from '../icons/chart-pie';
|
|
127
|
-
|
|
128
122
|
// ChartScatter aliases
|
|
129
123
|
export {
|
|
130
124
|
/** @deprecated */
|
|
131
125
|
default as ScatterChart
|
|
132
126
|
} from '../icons/chart-scatter';
|
|
133
127
|
|
|
128
|
+
// ChartPie aliases
|
|
129
|
+
export {
|
|
130
|
+
/** @deprecated */
|
|
131
|
+
default as PieChart
|
|
132
|
+
} from '../icons/chart-pie';
|
|
133
|
+
|
|
134
134
|
// CircleAlert aliases
|
|
135
135
|
export { default as AlertCircle } from '../icons/circle-alert';
|
|
136
136
|
|
|
@@ -170,12 +170,12 @@ export { default as ChevronDownCircle } from '../icons/circle-chevron-down';
|
|
|
170
170
|
// CircleChevronLeft aliases
|
|
171
171
|
export { default as ChevronLeftCircle } from '../icons/circle-chevron-left';
|
|
172
172
|
|
|
173
|
-
// CircleChevronUp aliases
|
|
174
|
-
export { default as ChevronUpCircle } from '../icons/circle-chevron-up';
|
|
175
|
-
|
|
176
173
|
// CircleChevronRight aliases
|
|
177
174
|
export { default as ChevronRightCircle } from '../icons/circle-chevron-right';
|
|
178
175
|
|
|
176
|
+
// CircleChevronUp aliases
|
|
177
|
+
export { default as ChevronUpCircle } from '../icons/circle-chevron-up';
|
|
178
|
+
|
|
179
179
|
// CircleDivide aliases
|
|
180
180
|
export { default as DivideCircle } from '../icons/circle-divide';
|
|
181
181
|
|
|
@@ -251,15 +251,15 @@ export { default as Columns } from '../icons/columns-2';
|
|
|
251
251
|
// Columns3 aliases
|
|
252
252
|
export { default as PanelsLeftRight } from '../icons/columns-3';
|
|
253
253
|
|
|
254
|
+
// DiamondPercent aliases
|
|
255
|
+
export { default as PercentDiamond } from '../icons/diamond-percent';
|
|
256
|
+
|
|
254
257
|
// ContactRound aliases
|
|
255
258
|
export {
|
|
256
259
|
/** @deprecated */
|
|
257
260
|
default as Contact2
|
|
258
261
|
} from '../icons/contact-round';
|
|
259
262
|
|
|
260
|
-
// DiamondPercent aliases
|
|
261
|
-
export { default as PercentDiamond } from '../icons/diamond-percent';
|
|
262
|
-
|
|
263
263
|
// Earth aliases
|
|
264
264
|
export {
|
|
265
265
|
/** @deprecated */
|
|
@@ -269,12 +269,12 @@ export {
|
|
|
269
269
|
// EllipsisVertical aliases
|
|
270
270
|
export { default as MoreVertical } from '../icons/ellipsis-vertical';
|
|
271
271
|
|
|
272
|
-
// FileAxis3d aliases
|
|
273
|
-
export { default as FileAxis3D } from '../icons/file-axis-3d';
|
|
274
|
-
|
|
275
272
|
// Ellipsis aliases
|
|
276
273
|
export { default as MoreHorizontal } from '../icons/ellipsis';
|
|
277
274
|
|
|
275
|
+
// FileAxis3d aliases
|
|
276
|
+
export { default as FileAxis3D } from '../icons/file-axis-3d';
|
|
277
|
+
|
|
278
278
|
// FileChartColumnIncreasing aliases
|
|
279
279
|
export {
|
|
280
280
|
/** @deprecated */
|
|
@@ -287,18 +287,18 @@ export {
|
|
|
287
287
|
default as FileBarChart2
|
|
288
288
|
} from '../icons/file-chart-column';
|
|
289
289
|
|
|
290
|
-
// FileChartLine aliases
|
|
291
|
-
export {
|
|
292
|
-
/** @deprecated */
|
|
293
|
-
default as FileLineChart
|
|
294
|
-
} from '../icons/file-chart-line';
|
|
295
|
-
|
|
296
290
|
// FileChartPie aliases
|
|
297
291
|
export {
|
|
298
292
|
/** @deprecated */
|
|
299
293
|
default as FilePieChart
|
|
300
294
|
} from '../icons/file-chart-pie';
|
|
301
295
|
|
|
296
|
+
// FileChartLine aliases
|
|
297
|
+
export {
|
|
298
|
+
/** @deprecated */
|
|
299
|
+
default as FileLineChart
|
|
300
|
+
} from '../icons/file-chart-line';
|
|
301
|
+
|
|
302
302
|
// FileCog aliases
|
|
303
303
|
export {
|
|
304
304
|
/** @deprecated */
|
|
@@ -311,15 +311,15 @@ export { default as FileSignature } from '../icons/file-pen-line';
|
|
|
311
311
|
// FilePen aliases
|
|
312
312
|
export { default as FileEdit } from '../icons/file-pen';
|
|
313
313
|
|
|
314
|
-
// FolderPen aliases
|
|
315
|
-
export { default as FolderEdit } from '../icons/folder-pen';
|
|
316
|
-
|
|
317
314
|
// FolderCog aliases
|
|
318
315
|
export {
|
|
319
316
|
/** @deprecated */
|
|
320
317
|
default as FolderCog2
|
|
321
318
|
} from '../icons/folder-cog';
|
|
322
319
|
|
|
320
|
+
// FolderPen aliases
|
|
321
|
+
export { default as FolderEdit } from '../icons/folder-pen';
|
|
322
|
+
|
|
323
323
|
// FunnelX aliases
|
|
324
324
|
export {
|
|
325
325
|
/** @deprecated */
|
|
@@ -413,12 +413,12 @@ export { default as XOctagon } from '../icons/octagon-x';
|
|
|
413
413
|
// PaintbrushVertical aliases
|
|
414
414
|
export { default as Paintbrush2 } from '../icons/paintbrush-vertical';
|
|
415
415
|
|
|
416
|
-
// PanelBottomDashed aliases
|
|
417
|
-
export { default as PanelBottomInactive } from '../icons/panel-bottom-dashed';
|
|
418
|
-
|
|
419
416
|
// PanelLeftClose aliases
|
|
420
417
|
export { default as SidebarClose } from '../icons/panel-left-close';
|
|
421
418
|
|
|
419
|
+
// PanelBottomDashed aliases
|
|
420
|
+
export { default as PanelBottomInactive } from '../icons/panel-bottom-dashed';
|
|
421
|
+
|
|
422
422
|
// PanelLeftDashed aliases
|
|
423
423
|
export { default as PanelLeftInactive } from '../icons/panel-left-dashed';
|
|
424
424
|
|
|
@@ -476,12 +476,12 @@ export {
|
|
|
476
476
|
// ShieldX aliases
|
|
477
477
|
export { default as ShieldClose } from '../icons/shield-x';
|
|
478
478
|
|
|
479
|
-
// Sparkles aliases
|
|
480
|
-
export { default as Stars } from '../icons/sparkles';
|
|
481
|
-
|
|
482
479
|
// SlidersVertical aliases
|
|
483
480
|
export { default as Sliders } from '../icons/sliders-vertical';
|
|
484
481
|
|
|
482
|
+
// Sparkles aliases
|
|
483
|
+
export { default as Stars } from '../icons/sparkles';
|
|
484
|
+
|
|
485
485
|
// SquareActivity aliases
|
|
486
486
|
export { default as ActivitySquare } from '../icons/square-activity';
|
|
487
487
|
|
|
@@ -500,33 +500,33 @@ export { default as ArrowLeftSquare } from '../icons/square-arrow-left';
|
|
|
500
500
|
// SquareArrowOutDownLeft aliases
|
|
501
501
|
export { default as ArrowDownLeftFromSquare } from '../icons/square-arrow-out-down-left';
|
|
502
502
|
|
|
503
|
-
// SquareArrowOutDownRight aliases
|
|
504
|
-
export { default as ArrowDownRightFromSquare } from '../icons/square-arrow-out-down-right';
|
|
505
|
-
|
|
506
503
|
// SquareArrowOutUpLeft aliases
|
|
507
504
|
export { default as ArrowUpLeftFromSquare } from '../icons/square-arrow-out-up-left';
|
|
508
505
|
|
|
509
506
|
// SquareArrowOutUpRight aliases
|
|
510
507
|
export { default as ArrowUpRightFromSquare } from '../icons/square-arrow-out-up-right';
|
|
511
508
|
|
|
509
|
+
// SquareArrowOutDownRight aliases
|
|
510
|
+
export { default as ArrowDownRightFromSquare } from '../icons/square-arrow-out-down-right';
|
|
511
|
+
|
|
512
512
|
// SquareArrowRight aliases
|
|
513
513
|
export { default as ArrowRightSquare } from '../icons/square-arrow-right';
|
|
514
514
|
|
|
515
|
-
// SquareArrowUpLeft aliases
|
|
516
|
-
export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
517
|
-
|
|
518
515
|
// SquareArrowUpRight aliases
|
|
519
516
|
export { default as ArrowUpRightSquare } from '../icons/square-arrow-up-right';
|
|
520
517
|
|
|
518
|
+
// SquareArrowUpLeft aliases
|
|
519
|
+
export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
520
|
+
|
|
521
521
|
// SquareArrowUp aliases
|
|
522
522
|
export { default as ArrowUpSquare } from '../icons/square-arrow-up';
|
|
523
523
|
|
|
524
|
-
// SquareAsterisk aliases
|
|
525
|
-
export { default as AsteriskSquare } from '../icons/square-asterisk';
|
|
526
|
-
|
|
527
524
|
// SquareBottomDashedScissors aliases
|
|
528
525
|
export { default as ScissorsSquareDashedBottom } from '../icons/square-bottom-dashed-scissors';
|
|
529
526
|
|
|
527
|
+
// SquareAsterisk aliases
|
|
528
|
+
export { default as AsteriskSquare } from '../icons/square-asterisk';
|
|
529
|
+
|
|
530
530
|
// SquareChartGantt aliases
|
|
531
531
|
export { default as GanttChartSquare } from '../icons/square-chart-gantt';
|
|
532
532
|
|
|
@@ -572,12 +572,12 @@ export { default as DotSquare } from '../icons/square-dot';
|
|
|
572
572
|
// SquareEqual aliases
|
|
573
573
|
export { default as EqualSquare } from '../icons/square-equal';
|
|
574
574
|
|
|
575
|
-
// SquareKanban aliases
|
|
576
|
-
export { default as KanbanSquare } from '../icons/square-kanban';
|
|
577
|
-
|
|
578
575
|
// SquareFunction aliases
|
|
579
576
|
export { default as FunctionSquare } from '../icons/square-function';
|
|
580
577
|
|
|
578
|
+
// SquareKanban aliases
|
|
579
|
+
export { default as KanbanSquare } from '../icons/square-kanban';
|
|
580
|
+
|
|
581
581
|
// SquareLibrary aliases
|
|
582
582
|
export { default as LibrarySquare } from '../icons/square-library';
|
|
583
583
|
|
|
@@ -611,12 +611,12 @@ export { default as PenSquare } from '../icons/square-pen';
|
|
|
611
611
|
// SquarePercent aliases
|
|
612
612
|
export { default as PercentSquare } from '../icons/square-percent';
|
|
613
613
|
|
|
614
|
-
// SquarePilcrow aliases
|
|
615
|
-
export { default as PilcrowSquare } from '../icons/square-pilcrow';
|
|
616
|
-
|
|
617
614
|
// SquarePi aliases
|
|
618
615
|
export { default as PiSquare } from '../icons/square-pi';
|
|
619
616
|
|
|
617
|
+
// SquarePilcrow aliases
|
|
618
|
+
export { default as PilcrowSquare } from '../icons/square-pilcrow';
|
|
619
|
+
|
|
620
620
|
// SquarePlay aliases
|
|
621
621
|
export { default as PlaySquare } from '../icons/square-play';
|
|
622
622
|
|
|
@@ -701,18 +701,18 @@ export {
|
|
|
701
701
|
default as UserMinus2
|
|
702
702
|
} from '../icons/user-round-minus';
|
|
703
703
|
|
|
704
|
-
// UserRoundPlus aliases
|
|
705
|
-
export {
|
|
706
|
-
/** @deprecated */
|
|
707
|
-
default as UserPlus2
|
|
708
|
-
} from '../icons/user-round-plus';
|
|
709
|
-
|
|
710
704
|
// UserRoundX aliases
|
|
711
705
|
export {
|
|
712
706
|
/** @deprecated */
|
|
713
707
|
default as UserX2
|
|
714
708
|
} from '../icons/user-round-x';
|
|
715
709
|
|
|
710
|
+
// UserRoundPlus aliases
|
|
711
|
+
export {
|
|
712
|
+
/** @deprecated */
|
|
713
|
+
default as UserPlus2
|
|
714
|
+
} from '../icons/user-round-plus';
|
|
715
|
+
|
|
716
716
|
// UserRound aliases
|
|
717
717
|
export {
|
|
718
718
|
/** @deprecated */
|
|
@@ -728,15 +728,15 @@ export {
|
|
|
728
728
|
// UtensilsCrossed aliases
|
|
729
729
|
export { default as ForkKnifeCrossed } from '../icons/utensils-crossed';
|
|
730
730
|
|
|
731
|
+
// Utensils aliases
|
|
732
|
+
export { default as ForkKnife } from '../icons/utensils';
|
|
733
|
+
|
|
731
734
|
// WalletMinimal aliases
|
|
732
735
|
export {
|
|
733
736
|
/** @deprecated */
|
|
734
737
|
default as Wallet2
|
|
735
738
|
} from '../icons/wallet-minimal';
|
|
736
739
|
|
|
737
|
-
// Utensils aliases
|
|
738
|
-
export { default as ForkKnife } from '../icons/utensils';
|
|
739
|
-
|
|
740
740
|
// WandSparkles aliases
|
|
741
741
|
export {
|
|
742
742
|
/** @deprecated */
|