lucide-astro 0.299.0 → 0.300.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/CookingPot.astro +11 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M2 12h20" />
|
8
|
+
<path d="M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8" />
|
9
|
+
<path d="m4 8 16-4" />
|
10
|
+
<path d="m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8" />
|
11
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -390,6 +390,7 @@ export { default as Contact } from './Contact.astro'
|
|
390
390
|
export { default as Container } from './Container.astro'
|
391
391
|
export { default as Contrast } from './Contrast.astro'
|
392
392
|
export { default as Cookie } from './Cookie.astro'
|
393
|
+
export { default as CookingPot } from './CookingPot.astro'
|
393
394
|
export { default as CopyCheck } from './CopyCheck.astro'
|
394
395
|
export { default as CopyMinus } from './CopyMinus.astro'
|
395
396
|
export { default as CopyPlus } from './CopyPlus.astro'
|
package/dist/index.js
CHANGED
@@ -385,6 +385,7 @@ export { default as Contact } from './Contact.astro'
|
|
385
385
|
export { default as Container } from './Container.astro'
|
386
386
|
export { default as Contrast } from './Contrast.astro'
|
387
387
|
export { default as Cookie } from './Cookie.astro'
|
388
|
+
export { default as CookingPot } from './CookingPot.astro'
|
388
389
|
export { default as CopyCheck } from './CopyCheck.astro'
|
389
390
|
export { default as CopyMinus } from './CopyMinus.astro'
|
390
391
|
export { default as CopyPlus } from './CopyPlus.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.300.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.300.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|