lucide-astro 0.485.0 → 0.486.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/BanknoteArrowUp.astro +13 -0
- package/dist/BanknoteX.astro +13 -0
- package/dist/Newspaper.astro +1 -1
- package/dist/Shrimp.astro +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -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-up" {...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="M18 12h.01" />
|
9
|
+
<path d="M19 22v-6" />
|
10
|
+
<path d="m22 19-3-3-3 3" />
|
11
|
+
<path d="M6 12h.01" />
|
12
|
+
<circle cx="12" cy="12" r="2" />
|
13
|
+
</Layout>
|
@@ -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-x" {...Astro.props}>
|
7
|
+
<path d="M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" />
|
8
|
+
<path d="m17 17 5 5" />
|
9
|
+
<path d="M18 12h.01" />
|
10
|
+
<path d="m22 17-5 5" />
|
11
|
+
<path d="M6 12h.01" />
|
12
|
+
<circle cx="12" cy="12" r="2" />
|
13
|
+
</Layout>
|
package/dist/Newspaper.astro
CHANGED
@@ -7,5 +7,5 @@ export type { Props } from './index.d.ts'
|
|
7
7
|
<path d="M15 18h-5" />
|
8
8
|
<path d="M18 14h-8" />
|
9
9
|
<path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2" />
|
10
|
-
<rect
|
10
|
+
<rect width="8" height="4" x="10" y="6" rx="1" />
|
11
11
|
</Layout>
|
package/dist/Shrimp.astro
CHANGED
@@ -6,7 +6,7 @@ export type { Props } from './index.d.ts'
|
|
6
6
|
<Layout iconName="shrimp" {...Astro.props}>
|
7
7
|
<path d="M11 12h.01" />
|
8
8
|
<path d="M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1" />
|
9
|
-
<path d="M14 2a3.
|
9
|
+
<path d="M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8" />
|
10
10
|
<path d="M14 8a8.5 8.5 0 0 1 0 8" />
|
11
11
|
<path d="M16 16c2 0 4.5-4 4-6" />
|
12
12
|
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -170,6 +170,8 @@ 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
172
|
export { default as BanknoteArrowDown } from './BanknoteArrowDown.astro'
|
173
|
+
export { default as BanknoteArrowUp } from './BanknoteArrowUp.astro'
|
174
|
+
export { default as BanknoteX } from './BanknoteX.astro'
|
173
175
|
export { default as BarChart } from './BarChart.astro'
|
174
176
|
export { default as BarChart2 } from './BarChart2.astro'
|
175
177
|
export { default as BarChart3 } from './BarChart3.astro'
|
package/dist/index.js
CHANGED
@@ -165,6 +165,8 @@ 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
167
|
export { default as BanknoteArrowDown } from './BanknoteArrowDown.astro'
|
168
|
+
export { default as BanknoteArrowUp } from './BanknoteArrowUp.astro'
|
169
|
+
export { default as BanknoteX } from './BanknoteX.astro'
|
168
170
|
export { default as BarChart } from './BarChart.astro'
|
169
171
|
export { default as BarChart2 } from './BarChart2.astro'
|
170
172
|
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.486.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.486.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|