@lucide/astro 0.519.0 → 0.521.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 +27 -27
- package/src/aliases/prefixed.ts +400 -396
- package/src/aliases/suffixed.ts +820 -816
- package/src/icons/circle-arrow-left.ts +2 -2
- package/src/icons/circle-arrow-right.ts +2 -2
- package/src/icons/georgian-lari.ts +18 -0
- package/src/icons/index.ts +101 -99
- package/src/icons/squircle-dashed.ts +18 -0
package/package.json
CHANGED
package/src/aliases/aliases.ts
CHANGED
|
@@ -50,12 +50,12 @@ export {
|
|
|
50
50
|
// BookDashed aliases
|
|
51
51
|
export { default as BookTemplate } from '../icons/book-dashed';
|
|
52
52
|
|
|
53
|
-
// Braces aliases
|
|
54
|
-
export { default as CurlyBraces } from '../icons/braces';
|
|
55
|
-
|
|
56
53
|
// Captions aliases
|
|
57
54
|
export { default as Subtitles } from '../icons/captions';
|
|
58
55
|
|
|
56
|
+
// Braces aliases
|
|
57
|
+
export { default as CurlyBraces } from '../icons/braces';
|
|
58
|
+
|
|
59
59
|
// ChartArea aliases
|
|
60
60
|
export {
|
|
61
61
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link ChartArea} instead. This alias will be removed in v1.0 */
|
|
@@ -227,12 +227,12 @@ export {
|
|
|
227
227
|
default as UserCircle2
|
|
228
228
|
} from '../icons/circle-user-round';
|
|
229
229
|
|
|
230
|
-
// CircleUser aliases
|
|
231
|
-
export { default as UserCircle } from '../icons/circle-user';
|
|
232
|
-
|
|
233
230
|
// CircleX aliases
|
|
234
231
|
export { default as XCircle } from '../icons/circle-x';
|
|
235
232
|
|
|
233
|
+
// CircleUser aliases
|
|
234
|
+
export { default as UserCircle } from '../icons/circle-user';
|
|
235
|
+
|
|
236
236
|
// ClipboardPenLine aliases
|
|
237
237
|
export { default as ClipboardSignature } from '../icons/clipboard-pen-line';
|
|
238
238
|
|
|
@@ -284,15 +284,15 @@ export { default as MoreVertical } from '../icons/ellipsis-vertical';
|
|
|
284
284
|
// Ellipsis aliases
|
|
285
285
|
export { default as MoreHorizontal } from '../icons/ellipsis';
|
|
286
286
|
|
|
287
|
+
// FileAxis3d aliases
|
|
288
|
+
export { default as FileAxis3D } from '../icons/file-axis-3d';
|
|
289
|
+
|
|
287
290
|
// FileChartColumnIncreasing aliases
|
|
288
291
|
export {
|
|
289
292
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumnIncreasing} instead. This alias will be removed in v1.0 */
|
|
290
293
|
default as FileBarChart
|
|
291
294
|
} from '../icons/file-chart-column-increasing';
|
|
292
295
|
|
|
293
|
-
// FileAxis3d aliases
|
|
294
|
-
export { default as FileAxis3D } from '../icons/file-axis-3d';
|
|
295
|
-
|
|
296
296
|
// FileChartColumn aliases
|
|
297
297
|
export {
|
|
298
298
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link FileChartColumn} instead. This alias will be removed in v1.0 */
|
|
@@ -506,15 +506,15 @@ export { default as Sliders } from '../icons/sliders-vertical';
|
|
|
506
506
|
// Sparkles aliases
|
|
507
507
|
export { default as Stars } from '../icons/sparkles';
|
|
508
508
|
|
|
509
|
+
// SquareActivity aliases
|
|
510
|
+
export { default as ActivitySquare } from '../icons/square-activity';
|
|
511
|
+
|
|
509
512
|
// SquareArrowDownLeft aliases
|
|
510
513
|
export { default as ArrowDownLeftSquare } from '../icons/square-arrow-down-left';
|
|
511
514
|
|
|
512
515
|
// SquareArrowDownRight aliases
|
|
513
516
|
export { default as ArrowDownRightSquare } from '../icons/square-arrow-down-right';
|
|
514
517
|
|
|
515
|
-
// SquareActivity aliases
|
|
516
|
-
export { default as ActivitySquare } from '../icons/square-activity';
|
|
517
|
-
|
|
518
518
|
// SquareArrowDown aliases
|
|
519
519
|
export { default as ArrowDownSquare } from '../icons/square-arrow-down';
|
|
520
520
|
|
|
@@ -536,30 +536,30 @@ export { default as ArrowUpRightFromSquare } from '../icons/square-arrow-out-up-
|
|
|
536
536
|
// SquareArrowRight aliases
|
|
537
537
|
export { default as ArrowRightSquare } from '../icons/square-arrow-right';
|
|
538
538
|
|
|
539
|
-
// SquareArrowUpRight aliases
|
|
540
|
-
export { default as ArrowUpRightSquare } from '../icons/square-arrow-up-right';
|
|
541
|
-
|
|
542
539
|
// SquareArrowUpLeft aliases
|
|
543
540
|
export { default as ArrowUpLeftSquare } from '../icons/square-arrow-up-left';
|
|
544
541
|
|
|
542
|
+
// SquareArrowUpRight aliases
|
|
543
|
+
export { default as ArrowUpRightSquare } from '../icons/square-arrow-up-right';
|
|
544
|
+
|
|
545
545
|
// SquareArrowUp aliases
|
|
546
546
|
export { default as ArrowUpSquare } from '../icons/square-arrow-up';
|
|
547
547
|
|
|
548
548
|
// SquareAsterisk aliases
|
|
549
549
|
export { default as AsteriskSquare } from '../icons/square-asterisk';
|
|
550
550
|
|
|
551
|
-
// SquareBottomDashedScissors aliases
|
|
552
|
-
export { default as ScissorsSquareDashedBottom } from '../icons/square-bottom-dashed-scissors';
|
|
553
|
-
|
|
554
|
-
// SquareCheckBig aliases
|
|
555
|
-
export { default as CheckSquare } from '../icons/square-check-big';
|
|
556
|
-
|
|
557
551
|
// SquareChartGantt aliases
|
|
558
552
|
export { default as GanttChartSquare } from '../icons/square-chart-gantt';
|
|
559
553
|
|
|
560
554
|
// SquareChartGantt aliases
|
|
561
555
|
export { default as SquareGanttChart } from '../icons/square-chart-gantt';
|
|
562
556
|
|
|
557
|
+
// SquareBottomDashedScissors aliases
|
|
558
|
+
export { default as ScissorsSquareDashedBottom } from '../icons/square-bottom-dashed-scissors';
|
|
559
|
+
|
|
560
|
+
// SquareCheckBig aliases
|
|
561
|
+
export { default as CheckSquare } from '../icons/square-check-big';
|
|
562
|
+
|
|
563
563
|
// SquareCheck aliases
|
|
564
564
|
export { default as CheckSquare2 } from '../icons/square-check';
|
|
565
565
|
|
|
@@ -599,12 +599,12 @@ export { default as EqualSquare } from '../icons/square-equal';
|
|
|
599
599
|
// SquareFunction aliases
|
|
600
600
|
export { default as FunctionSquare } from '../icons/square-function';
|
|
601
601
|
|
|
602
|
-
// SquareKanban aliases
|
|
603
|
-
export { default as KanbanSquare } from '../icons/square-kanban';
|
|
604
|
-
|
|
605
602
|
// SquareLibrary aliases
|
|
606
603
|
export { default as LibrarySquare } from '../icons/square-library';
|
|
607
604
|
|
|
605
|
+
// SquareKanban aliases
|
|
606
|
+
export { default as KanbanSquare } from '../icons/square-kanban';
|
|
607
|
+
|
|
608
608
|
// SquareM aliases
|
|
609
609
|
export { default as MSquare } from '../icons/square-m';
|
|
610
610
|
|
|
@@ -692,15 +692,15 @@ export { default as Train } from '../icons/tram-front';
|
|
|
692
692
|
// TreePalm aliases
|
|
693
693
|
export { default as Palmtree } from '../icons/tree-palm';
|
|
694
694
|
|
|
695
|
-
// TriangleAlert aliases
|
|
696
|
-
export { default as AlertTriangle } from '../icons/triangle-alert';
|
|
697
|
-
|
|
698
695
|
// TvMinimal aliases
|
|
699
696
|
export {
|
|
700
697
|
/** @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 */
|
|
701
698
|
default as Tv2
|
|
702
699
|
} from '../icons/tv-minimal';
|
|
703
700
|
|
|
701
|
+
// TriangleAlert aliases
|
|
702
|
+
export { default as AlertTriangle } from '../icons/triangle-alert';
|
|
703
|
+
|
|
704
704
|
// University aliases
|
|
705
705
|
export {
|
|
706
706
|
/** @deprecated The name of this icon was changed because it didn't meet our guidelines anymore, use {@link University} instead. This alias will be removed in v1.0 */
|