lucide-astro 0.484.0 → 0.485.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/BanknoteArrowDown.astro +13 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="banknote-arrow-down" {...Astro.props}>
|
7
|
+
<path d="M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" />
|
8
|
+
<path d="m16 19 3 3 3-3" />
|
9
|
+
<path d="M18 12h.01" />
|
10
|
+
<path d="M19 16v6" />
|
11
|
+
<path d="M6 12h.01" />
|
12
|
+
<circle cx="12" cy="12" r="2" />
|
13
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -169,6 +169,7 @@ export { default as Ban } from './Ban.astro'
|
|
169
169
|
export { default as Banana } from './Banana.astro'
|
170
170
|
export { default as Bandage } from './Bandage.astro'
|
171
171
|
export { default as Banknote } from './Banknote.astro'
|
172
|
+
export { default as BanknoteArrowDown } from './BanknoteArrowDown.astro'
|
172
173
|
export { default as BarChart } from './BarChart.astro'
|
173
174
|
export { default as BarChart2 } from './BarChart2.astro'
|
174
175
|
export { default as BarChart3 } from './BarChart3.astro'
|
package/dist/index.js
CHANGED
@@ -164,6 +164,7 @@ export { default as Ban } from './Ban.astro'
|
|
164
164
|
export { default as Banana } from './Banana.astro'
|
165
165
|
export { default as Bandage } from './Bandage.astro'
|
166
166
|
export { default as Banknote } from './Banknote.astro'
|
167
|
+
export { default as BanknoteArrowDown } from './BanknoteArrowDown.astro'
|
167
168
|
export { default as BarChart } from './BarChart.astro'
|
168
169
|
export { default as BarChart2 } from './BarChart2.astro'
|
169
170
|
export { default as BarChart3 } from './BarChart3.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.485.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.485.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|