lucide-astro 0.470.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/TriangleDashed.astro +16 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -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>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="triangle-dashed" {...Astro.props}>
|
7
|
+
<path d="M10.17 4.193a2 2 0 0 1 3.666.013" />
|
8
|
+
<path d="M14 21h2" />
|
9
|
+
<path d="m15.874 7.743 1 1.732" />
|
10
|
+
<path d="m18.849 12.952 1 1.732" />
|
11
|
+
<path d="M21.824 18.18a2 2 0 0 1-1.835 2.824" />
|
12
|
+
<path d="M4.024 21a2 2 0 0 1-1.839-2.839" />
|
13
|
+
<path d="m5.136 12.952-1 1.732" />
|
14
|
+
<path d="M8 21h2" />
|
15
|
+
<path d="m8.102 7.743-1 1.732" />
|
16
|
+
</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'
|
@@ -1625,6 +1627,7 @@ export { default as TrendingUp } from './TrendingUp.astro'
|
|
1625
1627
|
export { default as TrendingUpDown } from './TrendingUpDown.astro'
|
1626
1628
|
export { default as Triangle } from './Triangle.astro'
|
1627
1629
|
export { default as TriangleAlert } from './TriangleAlert.astro'
|
1630
|
+
export { default as TriangleDashed } from './TriangleDashed.astro'
|
1628
1631
|
export { default as TriangleRight } from './TriangleRight.astro'
|
1629
1632
|
export { default as Trophy } from './Trophy.astro'
|
1630
1633
|
export { default as Truck } from './Truck.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'
|
@@ -1620,6 +1622,7 @@ export { default as TrendingUp } from './TrendingUp.astro'
|
|
1620
1622
|
export { default as TrendingUpDown } from './TrendingUpDown.astro'
|
1621
1623
|
export { default as Triangle } from './Triangle.astro'
|
1622
1624
|
export { default as TriangleAlert } from './TriangleAlert.astro'
|
1625
|
+
export { default as TriangleDashed } from './TriangleDashed.astro'
|
1623
1626
|
export { default as TriangleRight } from './TriangleRight.astro'
|
1624
1627
|
export { default as Trophy } from './Trophy.astro'
|
1625
1628
|
export { default as Truck } from './Truck.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": {
|