lucide-astro 0.518.0 → 0.519.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/Blocks.astro +2 -2
- package/dist/Spool.astro +9 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/Blocks.astro
CHANGED
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="blocks" {...Astro.props}>
|
7
|
-
<
|
8
|
-
<
|
7
|
+
<path d="M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2" />
|
8
|
+
<rect x="14" y="2" width="8" height="8" rx="1" />
|
9
9
|
</Layout>
|
package/dist/Spool.astro
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="spool" {...Astro.props}>
|
7
|
+
<path d="M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66" />
|
8
|
+
<path d="m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178" />
|
9
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -1501,6 +1501,7 @@ export { default as SplinePointer } from './SplinePointer.astro'
|
|
1501
1501
|
export { default as Split } from './Split.astro'
|
1502
1502
|
export { default as SplitSquareHorizontal } from './SplitSquareHorizontal.astro'
|
1503
1503
|
export { default as SplitSquareVertical } from './SplitSquareVertical.astro'
|
1504
|
+
export { default as Spool } from './Spool.astro'
|
1504
1505
|
export { default as SprayCan } from './SprayCan.astro'
|
1505
1506
|
export { default as Sprout } from './Sprout.astro'
|
1506
1507
|
export { default as Square } from './Square.astro'
|
package/dist/index.js
CHANGED
@@ -1496,6 +1496,7 @@ export { default as SplinePointer } from './SplinePointer.astro'
|
|
1496
1496
|
export { default as Split } from './Split.astro'
|
1497
1497
|
export { default as SplitSquareHorizontal } from './SplitSquareHorizontal.astro'
|
1498
1498
|
export { default as SplitSquareVertical } from './SplitSquareVertical.astro'
|
1499
|
+
export { default as Spool } from './Spool.astro'
|
1499
1500
|
export { default as SprayCan } from './SprayCan.astro'
|
1500
1501
|
export { default as Sprout } from './Sprout.astro'
|
1501
1502
|
export { default as Square } from './Square.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.519.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.519.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|