@lucide/astro 1.34.0 → 1.35.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 +158 -158
- package/src/aliases/prefixed.ts +688 -680
- package/src/aliases/suffixed.ts +1011 -1003
- package/src/icons/galaxy.ts +18 -0
- package/src/icons/ghost.ts +2 -2
- package/src/icons/index.ts +206 -202
- package/src/icons/robot-arm.ts +18 -0
- package/src/icons/ship-cargo.ts +18 -0
- package/src/icons/ship.ts +2 -2
- package/src/icons/trailer.ts +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Galaxy
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/galaxy
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const Galaxy = createLucideIcon('galaxy', [["path",{"d":"M16.005 15.108a5.041 6.52 28.25 00-8.008-6.217 5.041 6.52 28.25 008.008 6.217A11.884 7.288-60.76 014.029 7.001"}],["path",{"d":"M17 21h.01"}],["path",{"d":"M7 3h.01"}],["path",{"d":"M7.997 8.891a11.885 7.288-60.756 0111.977 8.107"}],["circle",{"cx":"12","cy":"12","r":"1","fill":"currentColor"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Galaxy;
|
package/src/icons/ghost.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Ghost
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/ghost
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Ghost = createLucideIcon('ghost', [["path",{"d":"
|
|
16
|
+
const Ghost = createLucideIcon('ghost', [["path",{"d":"M15 10v1"}],["path",{"d":"M7.528 20.472a1.6 1.6 0 012.277 0l1.057 1.056a1.6 1.6 0 002.276 0l1.057-1.056a1.6 1.6 0 012.277 0l1.114 1.114a1.4 1.4 0 002.414-1V10a8 8 0 00-16 0v10.586a1.4 1.4 0 002.414 1z"}],["path",{"d":"M9 10v1"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Ghost;
|