lucide-astro 0.437.0 → 0.438.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/BatteryWarning.astro +5 -5
- package/dist/OctagonMinus.astro +9 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="battery-warning" {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="
|
9
|
-
<
|
10
|
-
<
|
11
|
-
<
|
7
|
+
<path d="M10 17h.01" />
|
8
|
+
<path d="M10 7v6" />
|
9
|
+
<path d="M14 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2" />
|
10
|
+
<path d="M22 11v2" />
|
11
|
+
<path d="M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2" />
|
12
12
|
</Layout>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="octagon-minus" {...Astro.props}>
|
7
|
+
<path d="M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z" />
|
8
|
+
<path d="M8 12h8" />
|
9
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -1103,6 +1103,7 @@ export { default as Nut } from './Nut.astro'
|
|
1103
1103
|
export { default as NutOff } from './NutOff.astro'
|
1104
1104
|
export { default as Octagon } from './Octagon.astro'
|
1105
1105
|
export { default as OctagonAlert } from './OctagonAlert.astro'
|
1106
|
+
export { default as OctagonMinus } from './OctagonMinus.astro'
|
1106
1107
|
export { default as OctagonPause } from './OctagonPause.astro'
|
1107
1108
|
export { default as OctagonX } from './OctagonX.astro'
|
1108
1109
|
export { default as Omega } from './Omega.astro'
|
package/dist/index.js
CHANGED
@@ -1098,6 +1098,7 @@ export { default as Nut } from './Nut.astro'
|
|
1098
1098
|
export { default as NutOff } from './NutOff.astro'
|
1099
1099
|
export { default as Octagon } from './Octagon.astro'
|
1100
1100
|
export { default as OctagonAlert } from './OctagonAlert.astro'
|
1101
|
+
export { default as OctagonMinus } from './OctagonMinus.astro'
|
1101
1102
|
export { default as OctagonPause } from './OctagonPause.astro'
|
1102
1103
|
export { default as OctagonX } from './OctagonX.astro'
|
1103
1104
|
export { default as Omega } from './Omega.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.438.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.438.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|