lucide-astro 0.547.0 → 0.548.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/dist/GamepadDirectional.astro +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="gamepad-directional" {...Astro.props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z" />
|
|
9
|
+
<path
|
|
10
|
+
d="M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z" />
|
|
11
|
+
<path
|
|
12
|
+
d="M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z" />
|
|
13
|
+
<path
|
|
14
|
+
d="M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z" />
|
|
15
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
|
@@ -808,6 +808,7 @@ export { default as GalleryVertical } from './GalleryVertical.astro'
|
|
|
808
808
|
export { default as GalleryVerticalEnd } from './GalleryVerticalEnd.astro'
|
|
809
809
|
export { default as Gamepad } from './Gamepad.astro'
|
|
810
810
|
export { default as Gamepad2 } from './Gamepad2.astro'
|
|
811
|
+
export { default as GamepadDirectional } from './GamepadDirectional.astro'
|
|
811
812
|
export { default as GanttChart } from './GanttChart.astro'
|
|
812
813
|
export { default as GanttChartSquare } from './GanttChartSquare.astro'
|
|
813
814
|
export { default as Gauge } from './Gauge.astro'
|
package/dist/index.js
CHANGED
|
@@ -803,6 +803,7 @@ export { default as GalleryVertical } from './GalleryVertical.astro'
|
|
|
803
803
|
export { default as GalleryVerticalEnd } from './GalleryVerticalEnd.astro'
|
|
804
804
|
export { default as Gamepad } from './Gamepad.astro'
|
|
805
805
|
export { default as Gamepad2 } from './Gamepad2.astro'
|
|
806
|
+
export { default as GamepadDirectional } from './GamepadDirectional.astro'
|
|
806
807
|
export { default as GanttChart } from './GanttChart.astro'
|
|
807
808
|
export { default as GanttChartSquare } from './GanttChartSquare.astro'
|
|
808
809
|
export { default as Gauge } from './Gauge.astro'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lucide-astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.548.0",
|
|
4
4
|
"description": "Get your Lucide icons right into your Astro project",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"author": "Aviortheking",
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"lucide-static": "0.
|
|
37
|
+
"lucide-static": "0.548.0",
|
|
38
38
|
"semver": "^7.5.4"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|