@lucide/astro 0.516.0 → 0.517.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 +60 -60
- package/src/aliases/prefixed.ts +422 -420
- package/src/aliases/suffixed.ts +844 -842
- package/src/icons/barrel.ts +18 -0
- package/src/icons/index.ts +90 -89
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -20,12 +20,12 @@ export { default as ArrowDownZa } from '../icons/arrow-down-z-a';
|
|
|
20
20
|
// ArrowUpAZ aliases
|
|
21
21
|
export { default as ArrowUpAz } from '../icons/arrow-up-a-z';
|
|
22
22
|
|
|
23
|
-
// ArrowUpZA aliases
|
|
24
|
-
export { default as ArrowUpZa } from '../icons/arrow-up-z-a';
|
|
25
|
-
|
|
26
23
|
// ArrowUpNarrowWide aliases
|
|
27
24
|
export { default as SortAsc } from '../icons/arrow-up-narrow-wide';
|
|
28
25
|
|
|
26
|
+
// ArrowUpZA aliases
|
|
27
|
+
export { default as ArrowUpZa } from '../icons/arrow-up-z-a';
|
|
28
|
+
|
|
29
29
|
// Axis3d aliases
|
|
30
30
|
export { default as Axis3D } from '../icons/axis-3d';
|
|
31
31
|
|
|
@@ -38,15 +38,15 @@ export {
|
|
|
38
38
|
default as BetweenHorizonalEnd
|
|
39
39
|
} from '../icons/between-horizontal-end';
|
|
40
40
|
|
|
41
|
-
// BookDashed aliases
|
|
42
|
-
export { default as BookTemplate } from '../icons/book-dashed';
|
|
43
|
-
|
|
44
41
|
// BetweenHorizontalStart aliases
|
|
45
42
|
export {
|
|
46
43
|
/** @deprecated Renamed because of typo, use {@link BetweenHorizontalStart} instead. This alias will be removed in v1.0 */
|
|
47
44
|
default as BetweenHorizonalStart
|
|
48
45
|
} from '../icons/between-horizontal-start';
|
|
49
46
|
|
|
47
|
+
// BookDashed aliases
|
|
48
|
+
export { default as BookTemplate } from '../icons/book-dashed';
|
|
49
|
+
|
|
50
50
|
// Braces aliases
|
|
51
51
|
export { default as CurlyBraces } from '../icons/braces';
|
|
52
52
|
|
|
@@ -77,18 +77,18 @@ export {
|
|
|
77
77
|
default as CandlestickChart
|
|
78
78
|
} from '../icons/chart-candlestick';
|
|
79
79
|
|
|
80
|
-
// ChartColumnIncreasing aliases
|
|
81
|
-
export {
|
|
82
|
-
/** @deprecated */
|
|
83
|
-
default as BarChart4
|
|
84
|
-
} from '../icons/chart-column-increasing';
|
|
85
|
-
|
|
86
80
|
// ChartColumnBig aliases
|
|
87
81
|
export {
|
|
88
82
|
/** @deprecated */
|
|
89
83
|
default as BarChartBig
|
|
90
84
|
} from '../icons/chart-column-big';
|
|
91
85
|
|
|
86
|
+
// ChartColumnIncreasing aliases
|
|
87
|
+
export {
|
|
88
|
+
/** @deprecated */
|
|
89
|
+
default as BarChart4
|
|
90
|
+
} from '../icons/chart-column-increasing';
|
|
91
|
+
|
|
92
92
|
// ChartColumn aliases
|
|
93
93
|
export {
|
|
94
94
|
/** @deprecated */
|
|
@@ -113,18 +113,18 @@ export {
|
|
|
113
113
|
default as BarChart2
|
|
114
114
|
} from '../icons/chart-no-axes-column';
|
|
115
115
|
|
|
116
|
-
// ChartPie aliases
|
|
117
|
-
export {
|
|
118
|
-
/** @deprecated */
|
|
119
|
-
default as PieChart
|
|
120
|
-
} from '../icons/chart-pie';
|
|
121
|
-
|
|
122
116
|
// ChartNoAxesGantt aliases
|
|
123
117
|
export {
|
|
124
118
|
/** @deprecated */
|
|
125
119
|
default as GanttChart
|
|
126
120
|
} from '../icons/chart-no-axes-gantt';
|
|
127
121
|
|
|
122
|
+
// ChartPie aliases
|
|
123
|
+
export {
|
|
124
|
+
/** @deprecated */
|
|
125
|
+
default as PieChart
|
|
126
|
+
} from '../icons/chart-pie';
|
|
127
|
+
|
|
128
128
|
// ChartScatter aliases
|
|
129
129
|
export {
|
|
130
130
|
/** @deprecated */
|
|
@@ -152,12 +152,12 @@ export { default as ArrowUpLeftFromCircle } from '../icons/circle-arrow-out-up-l
|
|
|
152
152
|
// CircleArrowOutUpRight aliases
|
|
153
153
|
export { default as ArrowUpRightFromCircle } from '../icons/circle-arrow-out-up-right';
|
|
154
154
|
|
|
155
|
-
// CircleArrowUp aliases
|
|
156
|
-
export { default as ArrowUpCircle } from '../icons/circle-arrow-up';
|
|
157
|
-
|
|
158
155
|
// CircleArrowRight aliases
|
|
159
156
|
export { default as ArrowRightCircle } from '../icons/circle-arrow-right';
|
|
160
157
|
|
|
158
|
+
// CircleArrowUp aliases
|
|
159
|
+
export { default as ArrowUpCircle } from '../icons/circle-arrow-up';
|
|
160
|
+
|
|
161
161
|
// CircleCheckBig aliases
|
|
162
162
|
export { default as CheckCircle } from '../icons/circle-check-big';
|
|
163
163
|
|
|
@@ -185,12 +185,12 @@ export { default as GaugeCircle } from '../icons/circle-gauge';
|
|
|
185
185
|
// CircleHelp aliases
|
|
186
186
|
export { default as HelpCircle } from '../icons/circle-help';
|
|
187
187
|
|
|
188
|
-
// CircleMinus aliases
|
|
189
|
-
export { default as MinusCircle } from '../icons/circle-minus';
|
|
190
|
-
|
|
191
188
|
// CircleParkingOff aliases
|
|
192
189
|
export { default as ParkingCircleOff } from '../icons/circle-parking-off';
|
|
193
190
|
|
|
191
|
+
// CircleMinus aliases
|
|
192
|
+
export { default as MinusCircle } from '../icons/circle-minus';
|
|
193
|
+
|
|
194
194
|
// CircleParking aliases
|
|
195
195
|
export { default as ParkingCircle } from '../icons/circle-parking';
|
|
196
196
|
|
|
@@ -272,12 +272,12 @@ export {
|
|
|
272
272
|
default as Globe2
|
|
273
273
|
} from '../icons/earth';
|
|
274
274
|
|
|
275
|
-
// EllipsisVertical aliases
|
|
276
|
-
export { default as MoreVertical } from '../icons/ellipsis-vertical';
|
|
277
|
-
|
|
278
275
|
// Ellipsis aliases
|
|
279
276
|
export { default as MoreHorizontal } from '../icons/ellipsis';
|
|
280
277
|
|
|
278
|
+
// EllipsisVertical aliases
|
|
279
|
+
export { default as MoreVertical } from '../icons/ellipsis-vertical';
|
|
280
|
+
|
|
281
281
|
// FileAxis3d aliases
|
|
282
282
|
export { default as FileAxis3D } from '../icons/file-axis-3d';
|
|
283
283
|
|
|
@@ -299,18 +299,18 @@ export {
|
|
|
299
299
|
default as FileLineChart
|
|
300
300
|
} from '../icons/file-chart-line';
|
|
301
301
|
|
|
302
|
-
// FileChartPie aliases
|
|
303
|
-
export {
|
|
304
|
-
/** @deprecated */
|
|
305
|
-
default as FilePieChart
|
|
306
|
-
} from '../icons/file-chart-pie';
|
|
307
|
-
|
|
308
302
|
// FileCog aliases
|
|
309
303
|
export {
|
|
310
304
|
/** @deprecated */
|
|
311
305
|
default as FileCog2
|
|
312
306
|
} from '../icons/file-cog';
|
|
313
307
|
|
|
308
|
+
// FileChartPie aliases
|
|
309
|
+
export {
|
|
310
|
+
/** @deprecated */
|
|
311
|
+
default as FilePieChart
|
|
312
|
+
} from '../icons/file-chart-pie';
|
|
313
|
+
|
|
314
314
|
// FilePenLine aliases
|
|
315
315
|
export { default as FileSignature } from '../icons/file-pen-line';
|
|
316
316
|
|
|
@@ -338,12 +338,12 @@ export {
|
|
|
338
338
|
default as Filter
|
|
339
339
|
} from '../icons/funnel';
|
|
340
340
|
|
|
341
|
-
// GitCommitHorizontal aliases
|
|
342
|
-
export { default as GitCommit } from '../icons/git-commit-horizontal';
|
|
343
|
-
|
|
344
341
|
// Grid2x2Check aliases
|
|
345
342
|
export { default as Grid2X2Check } from '../icons/grid-2x2-check';
|
|
346
343
|
|
|
344
|
+
// GitCommitHorizontal aliases
|
|
345
|
+
export { default as GitCommit } from '../icons/git-commit-horizontal';
|
|
346
|
+
|
|
347
347
|
// Grid2x2Plus aliases
|
|
348
348
|
export { default as Grid2X2Plus } from '../icons/grid-2x2-plus';
|
|
349
349
|
|
|
@@ -377,15 +377,15 @@ export { default as IceCream } from '../icons/ice-cream-cone';
|
|
|
377
377
|
// IndentDecrease aliases
|
|
378
378
|
export { default as Outdent } from '../icons/indent-decrease';
|
|
379
379
|
|
|
380
|
-
// IndentIncrease aliases
|
|
381
|
-
export { default as Indent } from '../icons/indent-increase';
|
|
382
|
-
|
|
383
380
|
// LaptopMinimal aliases
|
|
384
381
|
export {
|
|
385
382
|
/** @deprecated */
|
|
386
383
|
default as Laptop2
|
|
387
384
|
} from '../icons/laptop-minimal';
|
|
388
385
|
|
|
386
|
+
// IndentIncrease aliases
|
|
387
|
+
export { default as Indent } from '../icons/indent-increase';
|
|
388
|
+
|
|
389
389
|
// Layers aliases
|
|
390
390
|
export { default as Layers3 } from '../icons/layers';
|
|
391
391
|
|
|
@@ -404,12 +404,12 @@ export {
|
|
|
404
404
|
default as Mic2
|
|
405
405
|
} from '../icons/mic-vocal';
|
|
406
406
|
|
|
407
|
-
// OctagonAlert aliases
|
|
408
|
-
export { default as AlertOctagon } from '../icons/octagon-alert';
|
|
409
|
-
|
|
410
407
|
// Move3d aliases
|
|
411
408
|
export { default as Move3D } from '../icons/move-3d';
|
|
412
409
|
|
|
410
|
+
// OctagonAlert aliases
|
|
411
|
+
export { default as AlertOctagon } from '../icons/octagon-alert';
|
|
412
|
+
|
|
413
413
|
// OctagonPause aliases
|
|
414
414
|
export { default as PauseOctagon } from '../icons/octagon-pause';
|
|
415
415
|
|
|
@@ -425,12 +425,12 @@ export { default as PanelBottomInactive } from '../icons/panel-bottom-dashed';
|
|
|
425
425
|
// PanelLeftClose aliases
|
|
426
426
|
export { default as SidebarClose } from '../icons/panel-left-close';
|
|
427
427
|
|
|
428
|
-
// PanelLeftDashed aliases
|
|
429
|
-
export { default as PanelLeftInactive } from '../icons/panel-left-dashed';
|
|
430
|
-
|
|
431
428
|
// PanelLeftOpen aliases
|
|
432
429
|
export { default as SidebarOpen } from '../icons/panel-left-open';
|
|
433
430
|
|
|
431
|
+
// PanelLeftDashed aliases
|
|
432
|
+
export { default as PanelLeftInactive } from '../icons/panel-left-dashed';
|
|
433
|
+
|
|
434
434
|
// PanelLeft aliases
|
|
435
435
|
export { default as Sidebar } from '../icons/panel-left';
|
|
436
436
|
|
|
@@ -440,15 +440,15 @@ export { default as PanelRightInactive } from '../icons/panel-right-dashed';
|
|
|
440
440
|
// PanelTopDashed aliases
|
|
441
441
|
export { default as PanelTopInactive } from '../icons/panel-top-dashed';
|
|
442
442
|
|
|
443
|
-
// PanelsTopLeft aliases
|
|
444
|
-
export { default as Layout } from '../icons/panels-top-left';
|
|
445
|
-
|
|
446
443
|
// PenLine aliases
|
|
447
444
|
export {
|
|
448
445
|
/** @deprecated */
|
|
449
446
|
default as Edit3
|
|
450
447
|
} from '../icons/pen-line';
|
|
451
448
|
|
|
449
|
+
// PanelsTopLeft aliases
|
|
450
|
+
export { default as Layout } from '../icons/panels-top-left';
|
|
451
|
+
|
|
452
452
|
// Pen aliases
|
|
453
453
|
export {
|
|
454
454
|
/** @deprecated */
|
|
@@ -461,12 +461,12 @@ export { default as PlugZap2 } from '../icons/plug-zap';
|
|
|
461
461
|
// RectangleEllipsis aliases
|
|
462
462
|
export { default as FormInput } from '../icons/rectangle-ellipsis';
|
|
463
463
|
|
|
464
|
-
// Rotate3d aliases
|
|
465
|
-
export { default as Rotate3D } from '../icons/rotate-3d';
|
|
466
|
-
|
|
467
464
|
// Rows2 aliases
|
|
468
465
|
export { default as Rows } from '../icons/rows-2';
|
|
469
466
|
|
|
467
|
+
// Rotate3d aliases
|
|
468
|
+
export { default as Rotate3D } from '../icons/rotate-3d';
|
|
469
|
+
|
|
470
470
|
// Rows3 aliases
|
|
471
471
|
export { default as PanelsTopBottom } from '../icons/rows-3';
|
|
472
472
|
|
|
@@ -485,15 +485,15 @@ export { default as ShieldClose } from '../icons/shield-x';
|
|
|
485
485
|
// SlidersVertical aliases
|
|
486
486
|
export { default as Sliders } from '../icons/sliders-vertical';
|
|
487
487
|
|
|
488
|
+
// Sparkles aliases
|
|
489
|
+
export { default as Stars } from '../icons/sparkles';
|
|
490
|
+
|
|
488
491
|
// SquareActivity aliases
|
|
489
492
|
export { default as ActivitySquare } from '../icons/square-activity';
|
|
490
493
|
|
|
491
494
|
// SquareArrowDownLeft aliases
|
|
492
495
|
export { default as ArrowDownLeftSquare } from '../icons/square-arrow-down-left';
|
|
493
496
|
|
|
494
|
-
// Sparkles aliases
|
|
495
|
-
export { default as Stars } from '../icons/sparkles';
|
|
496
|
-
|
|
497
497
|
// SquareArrowDownRight aliases
|
|
498
498
|
export { default as ArrowDownRightSquare } from '../icons/square-arrow-down-right';
|
|
499
499
|
|
|
@@ -524,12 +524,12 @@ export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
|
524
524
|
// SquareArrowUpRight aliases
|
|
525
525
|
export { default as ArrowUpRightSquare } from '../icons/square-arrow-up-right';
|
|
526
526
|
|
|
527
|
-
// SquareAsterisk aliases
|
|
528
|
-
export { default as AsteriskSquare } from '../icons/square-asterisk';
|
|
529
|
-
|
|
530
527
|
// SquareArrowUp aliases
|
|
531
528
|
export { default as ArrowUpSquare } from '../icons/square-arrow-up';
|
|
532
529
|
|
|
530
|
+
// SquareAsterisk aliases
|
|
531
|
+
export { default as AsteriskSquare } from '../icons/square-asterisk';
|
|
532
|
+
|
|
533
533
|
// SquareBottomDashedScissors aliases
|
|
534
534
|
export { default as ScissorsSquareDashedBottom } from '../icons/square-bottom-dashed-scissors';
|
|
535
535
|
|
|
@@ -638,12 +638,12 @@ export { default as ScissorsSquare } from '../icons/square-scissors';
|
|
|
638
638
|
// SquareSigma aliases
|
|
639
639
|
export { default as SigmaSquare } from '../icons/square-sigma';
|
|
640
640
|
|
|
641
|
-
// SquareSplitHorizontal aliases
|
|
642
|
-
export { default as SplitSquareHorizontal } from '../icons/square-split-horizontal';
|
|
643
|
-
|
|
644
641
|
// SquareSlash aliases
|
|
645
642
|
export { default as SlashSquare } from '../icons/square-slash';
|
|
646
643
|
|
|
644
|
+
// SquareSplitHorizontal aliases
|
|
645
|
+
export { default as SplitSquareHorizontal } from '../icons/square-split-horizontal';
|
|
646
|
+
|
|
647
647
|
// SquareSplitVertical aliases
|
|
648
648
|
export { default as SplitSquareVertical } from '../icons/square-split-vertical';
|
|
649
649
|
|