lucide-astro 0.357.0 → 0.359.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/ChefHat.astro +2 -2
- package/dist/Cpu.astro +2 -2
- package/dist/Worm.astro +10 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/ChefHat.astro
CHANGED
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<
|
7
|
+
<path d="M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z" />
|
8
|
+
<path d="M6 17h12" />
|
9
9
|
</Layout>
|
package/dist/Cpu.astro
CHANGED
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<rect
|
8
|
-
<rect
|
7
|
+
<rect width="16" height="16" x="4" y="4" rx="2" />
|
8
|
+
<rect width="6" height="6" x="9" y="9" rx="1" />
|
9
9
|
<path d="M15 2v2" />
|
10
10
|
<path d="M15 20v2" />
|
11
11
|
<path d="M2 15h2" />
|
package/dist/Worm.astro
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="m19 12-1.5 3" />
|
8
|
+
<path d="M19.63 18.81 22 20" />
|
9
|
+
<path d="M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z" />
|
10
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -1610,6 +1610,7 @@ export { default as Wind } from './Wind.astro'
|
|
1610
1610
|
export { default as Wine } from './Wine.astro'
|
1611
1611
|
export { default as WineOff } from './WineOff.astro'
|
1612
1612
|
export { default as Workflow } from './Workflow.astro'
|
1613
|
+
export { default as Worm } from './Worm.astro'
|
1613
1614
|
export { default as WrapText } from './WrapText.astro'
|
1614
1615
|
export { default as Wrench } from './Wrench.astro'
|
1615
1616
|
export { default as X } from './X.astro'
|
package/dist/index.js
CHANGED
@@ -1605,6 +1605,7 @@ export { default as Wind } from './Wind.astro'
|
|
1605
1605
|
export { default as Wine } from './Wine.astro'
|
1606
1606
|
export { default as WineOff } from './WineOff.astro'
|
1607
1607
|
export { default as Workflow } from './Workflow.astro'
|
1608
|
+
export { default as Worm } from './Worm.astro'
|
1608
1609
|
export { default as WrapText } from './WrapText.astro'
|
1609
1610
|
export { default as Wrench } from './Wrench.astro'
|
1610
1611
|
export { default as X } from './X.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.359.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.359.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|