lucide-astro 0.471.0 → 0.472.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/BatteryPlus.astro +12 -0
- package/dist/MapPlus.astro +12 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -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="battery-plus" {...Astro.props}>
|
7
|
+
<path d="M10 9v6" />
|
8
|
+
<path d="M13.5 7H16a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2.5" />
|
9
|
+
<path d="M22 11v2" />
|
10
|
+
<path d="M6.5 17H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2.5" />
|
11
|
+
<path d="M7 12h6" />
|
12
|
+
</Layout>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="map-plus" {...Astro.props}>
|
7
|
+
<path d="m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12" />
|
8
|
+
<path d="M15 5.764V12" />
|
9
|
+
<path d="M18 15v6" />
|
10
|
+
<path d="M21 18h-6" />
|
11
|
+
<path d="M9 3.236v15" />
|
12
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -184,6 +184,7 @@ export { default as BatteryCharging } from './BatteryCharging.astro'
|
|
184
184
|
export { default as BatteryFull } from './BatteryFull.astro'
|
185
185
|
export { default as BatteryLow } from './BatteryLow.astro'
|
186
186
|
export { default as BatteryMedium } from './BatteryMedium.astro'
|
187
|
+
export { default as BatteryPlus } from './BatteryPlus.astro'
|
187
188
|
export { default as BatteryWarning } from './BatteryWarning.astro'
|
188
189
|
export { default as Beaker } from './Beaker.astro'
|
189
190
|
export { default as Bean } from './Bean.astro'
|
@@ -1006,6 +1007,7 @@ export { default as MapPinPlusInside } from './MapPinPlusInside.astro'
|
|
1006
1007
|
export { default as MapPinX } from './MapPinX.astro'
|
1007
1008
|
export { default as MapPinXInside } from './MapPinXInside.astro'
|
1008
1009
|
export { default as MapPinned } from './MapPinned.astro'
|
1010
|
+
export { default as MapPlus } from './MapPlus.astro'
|
1009
1011
|
export { default as Martini } from './Martini.astro'
|
1010
1012
|
export { default as Maximize } from './Maximize.astro'
|
1011
1013
|
export { default as Maximize2 } from './Maximize2.astro'
|
package/dist/index.js
CHANGED
@@ -179,6 +179,7 @@ export { default as BatteryCharging } from './BatteryCharging.astro'
|
|
179
179
|
export { default as BatteryFull } from './BatteryFull.astro'
|
180
180
|
export { default as BatteryLow } from './BatteryLow.astro'
|
181
181
|
export { default as BatteryMedium } from './BatteryMedium.astro'
|
182
|
+
export { default as BatteryPlus } from './BatteryPlus.astro'
|
182
183
|
export { default as BatteryWarning } from './BatteryWarning.astro'
|
183
184
|
export { default as Beaker } from './Beaker.astro'
|
184
185
|
export { default as Bean } from './Bean.astro'
|
@@ -1001,6 +1002,7 @@ export { default as MapPinPlusInside } from './MapPinPlusInside.astro'
|
|
1001
1002
|
export { default as MapPinX } from './MapPinX.astro'
|
1002
1003
|
export { default as MapPinXInside } from './MapPinXInside.astro'
|
1003
1004
|
export { default as MapPinned } from './MapPinned.astro'
|
1005
|
+
export { default as MapPlus } from './MapPlus.astro'
|
1004
1006
|
export { default as Martini } from './Martini.astro'
|
1005
1007
|
export { default as Maximize } from './Maximize.astro'
|
1006
1008
|
export { default as Maximize2 } from './Maximize2.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.472.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.472.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|