lucide-astro 0.507.0 → 0.508.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/Panda.astro +13 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/Panda.astro
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="panda" {...Astro.props}>
|
7
|
+
<path d="M11.25 17.25h1.5L12 18z" />
|
8
|
+
<path d="m15 12 2 2" />
|
9
|
+
<path d="M18 6.5a.5.5 0 0 0-.5-.5" />
|
10
|
+
<path d="M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83" />
|
11
|
+
<path d="M6 6.5a.495.495 0 0 1 .5-.5" />
|
12
|
+
<path d="m9 12-2 2" />
|
13
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -1172,6 +1172,7 @@ export { default as Paintbrush2 } from './Paintbrush2.astro'
|
|
1172
1172
|
export { default as PaintbrushVertical } from './PaintbrushVertical.astro'
|
1173
1173
|
export { default as Palette } from './Palette.astro'
|
1174
1174
|
export { default as Palmtree } from './Palmtree.astro'
|
1175
|
+
export { default as Panda } from './Panda.astro'
|
1175
1176
|
export { default as PanelBottom } from './PanelBottom.astro'
|
1176
1177
|
export { default as PanelBottomClose } from './PanelBottomClose.astro'
|
1177
1178
|
export { default as PanelBottomDashed } from './PanelBottomDashed.astro'
|
package/dist/index.js
CHANGED
@@ -1167,6 +1167,7 @@ export { default as Paintbrush2 } from './Paintbrush2.astro'
|
|
1167
1167
|
export { default as PaintbrushVertical } from './PaintbrushVertical.astro'
|
1168
1168
|
export { default as Palette } from './Palette.astro'
|
1169
1169
|
export { default as Palmtree } from './Palmtree.astro'
|
1170
|
+
export { default as Panda } from './Panda.astro'
|
1170
1171
|
export { default as PanelBottom } from './PanelBottom.astro'
|
1171
1172
|
export { default as PanelBottomClose } from './PanelBottomClose.astro'
|
1172
1173
|
export { default as PanelBottomDashed } from './PanelBottomDashed.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.508.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.508.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|