lucide-astro 0.522.0 → 0.523.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/BottleWine.astro +9 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="bottle-wine" {...Astro.props}>
|
7
|
+
<path d="M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z" />
|
8
|
+
<path d="M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4" />
|
9
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -266,6 +266,7 @@ export { default as BoomBox } from './BoomBox.astro'
|
|
266
266
|
export { default as Bot } from './Bot.astro'
|
267
267
|
export { default as BotMessageSquare } from './BotMessageSquare.astro'
|
268
268
|
export { default as BotOff } from './BotOff.astro'
|
269
|
+
export { default as BottleWine } from './BottleWine.astro'
|
269
270
|
export { default as BowArrow } from './BowArrow.astro'
|
270
271
|
export { default as Box } from './Box.astro'
|
271
272
|
export { default as BoxSelect } from './BoxSelect.astro'
|
package/dist/index.js
CHANGED
@@ -261,6 +261,7 @@ export { default as BoomBox } from './BoomBox.astro'
|
|
261
261
|
export { default as Bot } from './Bot.astro'
|
262
262
|
export { default as BotMessageSquare } from './BotMessageSquare.astro'
|
263
263
|
export { default as BotOff } from './BotOff.astro'
|
264
|
+
export { default as BottleWine } from './BottleWine.astro'
|
264
265
|
export { default as BowArrow } from './BowArrow.astro'
|
265
266
|
export { default as Box } from './Box.astro'
|
266
267
|
export { default as BoxSelect } from './BoxSelect.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.523.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.523.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|