lucide-astro 0.308.0 → 0.309.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/ListCollapse.astro +12 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="m3 10 2.5-2.5L3 5" />
|
8
|
+
<path d="m3 19 2.5-2.5L3 14" />
|
9
|
+
<path d="M10 6h11" />
|
10
|
+
<path d="M10 12h11" />
|
11
|
+
<path d="M10 18h11" />
|
12
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -801,6 +801,7 @@ export { default as Link2Off } from './Link2Off.astro'
|
|
801
801
|
export { default as Linkedin } from './Linkedin.astro'
|
802
802
|
export { default as List } from './List.astro'
|
803
803
|
export { default as ListChecks } from './ListChecks.astro'
|
804
|
+
export { default as ListCollapse } from './ListCollapse.astro'
|
804
805
|
export { default as ListEnd } from './ListEnd.astro'
|
805
806
|
export { default as ListFilter } from './ListFilter.astro'
|
806
807
|
export { default as ListMinus } from './ListMinus.astro'
|
package/dist/index.js
CHANGED
@@ -796,6 +796,7 @@ export { default as Link2Off } from './Link2Off.astro'
|
|
796
796
|
export { default as Linkedin } from './Linkedin.astro'
|
797
797
|
export { default as List } from './List.astro'
|
798
798
|
export { default as ListChecks } from './ListChecks.astro'
|
799
|
+
export { default as ListCollapse } from './ListCollapse.astro'
|
799
800
|
export { default as ListEnd } from './ListEnd.astro'
|
800
801
|
export { default as ListFilter } from './ListFilter.astro'
|
801
802
|
export { default as ListMinus } from './ListMinus.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.309.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",
|
@@ -26,7 +26,7 @@
|
|
26
26
|
"author": "Aviortheking",
|
27
27
|
"license": "MIT",
|
28
28
|
"devDependencies": {
|
29
|
-
"lucide-static": "0.
|
29
|
+
"lucide-static": "0.309.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|