lucide-astro 0.516.0 → 0.517.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/Barrel.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="barrel" {...Astro.props}>
|
7
|
+
<path d="M10 3a41 41 0 0 0 0 18" />
|
8
|
+
<path d="M14 3a41 41 0 0 1 0 18" />
|
9
|
+
<path d="M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z" />
|
10
|
+
<path d="M3.84 17h16.32" />
|
11
|
+
<path d="M3.84 7h16.32" />
|
12
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -180,6 +180,7 @@ export { default as BarChartBig } from './BarChartBig.astro'
|
|
180
180
|
export { default as BarChartHorizontal } from './BarChartHorizontal.astro'
|
181
181
|
export { default as BarChartHorizontalBig } from './BarChartHorizontalBig.astro'
|
182
182
|
export { default as Barcode } from './Barcode.astro'
|
183
|
+
export { default as Barrel } from './Barrel.astro'
|
183
184
|
export { default as Baseline } from './Baseline.astro'
|
184
185
|
export { default as Bath } from './Bath.astro'
|
185
186
|
export { default as Battery } from './Battery.astro'
|
package/dist/index.js
CHANGED
@@ -175,6 +175,7 @@ export { default as BarChartBig } from './BarChartBig.astro'
|
|
175
175
|
export { default as BarChartHorizontal } from './BarChartHorizontal.astro'
|
176
176
|
export { default as BarChartHorizontalBig } from './BarChartHorizontalBig.astro'
|
177
177
|
export { default as Barcode } from './Barcode.astro'
|
178
|
+
export { default as Barrel } from './Barrel.astro'
|
178
179
|
export { default as Baseline } from './Baseline.astro'
|
179
180
|
export { default as Bath } from './Bath.astro'
|
180
181
|
export { default as Battery } from './Battery.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.517.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.517.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|