lucide-astro 0.470.0 → 0.471.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/TriangleDashed.astro +16 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
@@ -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
@@ -1625,6 +1625,7 @@ export { default as TrendingUp } from './TrendingUp.astro'
|
|
1625
1625
|
export { default as TrendingUpDown } from './TrendingUpDown.astro'
|
1626
1626
|
export { default as Triangle } from './Triangle.astro'
|
1627
1627
|
export { default as TriangleAlert } from './TriangleAlert.astro'
|
1628
|
+
export { default as TriangleDashed } from './TriangleDashed.astro'
|
1628
1629
|
export { default as TriangleRight } from './TriangleRight.astro'
|
1629
1630
|
export { default as Trophy } from './Trophy.astro'
|
1630
1631
|
export { default as Truck } from './Truck.astro'
|
package/dist/index.js
CHANGED
@@ -1620,6 +1620,7 @@ export { default as TrendingUp } from './TrendingUp.astro'
|
|
1620
1620
|
export { default as TrendingUpDown } from './TrendingUpDown.astro'
|
1621
1621
|
export { default as Triangle } from './Triangle.astro'
|
1622
1622
|
export { default as TriangleAlert } from './TriangleAlert.astro'
|
1623
|
+
export { default as TriangleDashed } from './TriangleDashed.astro'
|
1623
1624
|
export { default as TriangleRight } from './TriangleRight.astro'
|
1624
1625
|
export { default as Trophy } from './Trophy.astro'
|
1625
1626
|
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.471.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.471.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|