lucide-astro 0.541.0 → 0.542.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/ListChevronsDownUp.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 iconName="list-chevrons-down-up" {...Astro.props}>
|
7
|
+
<path d="m15 18 3-3 3 3" />
|
8
|
+
<path d="m15 6 3 3 3-3" />
|
9
|
+
<path d="M3 12h8" />
|
10
|
+
<path d="M3 18h8" />
|
11
|
+
<path d="M3 6h8" />
|
12
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -1001,6 +1001,7 @@ export { default as Linkedin } from './Linkedin.astro'
|
|
1001
1001
|
export { default as List } from './List.astro'
|
1002
1002
|
export { default as ListCheck } from './ListCheck.astro'
|
1003
1003
|
export { default as ListChecks } from './ListChecks.astro'
|
1004
|
+
export { default as ListChevronsDownUp } from './ListChevronsDownUp.astro'
|
1004
1005
|
export { default as ListCollapse } from './ListCollapse.astro'
|
1005
1006
|
export { default as ListEnd } from './ListEnd.astro'
|
1006
1007
|
export { default as ListFilter } from './ListFilter.astro'
|
package/dist/index.js
CHANGED
@@ -996,6 +996,7 @@ export { default as Linkedin } from './Linkedin.astro'
|
|
996
996
|
export { default as List } from './List.astro'
|
997
997
|
export { default as ListCheck } from './ListCheck.astro'
|
998
998
|
export { default as ListChecks } from './ListChecks.astro'
|
999
|
+
export { default as ListChevronsDownUp } from './ListChevronsDownUp.astro'
|
999
1000
|
export { default as ListCollapse } from './ListCollapse.astro'
|
1000
1001
|
export { default as ListEnd } from './ListEnd.astro'
|
1001
1002
|
export { default as ListFilter } from './ListFilter.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.542.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.542.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|