lucide-astro 0.370.0 → 0.371.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/DiamondMinus.astro +9 -0
- package/dist/DiamondPlus.astro +10 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z" />
|
8
|
+
<path d="M8 12h8" />
|
9
|
+
</Layout>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M12 8v8" />
|
8
|
+
<path d="M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z" />
|
9
|
+
<path d="M8 12h8" />
|
10
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -507,7 +507,9 @@ export { default as Delete } from './Delete.astro'
|
|
507
507
|
export { default as Dessert } from './Dessert.astro'
|
508
508
|
export { default as Diameter } from './Diameter.astro'
|
509
509
|
export { default as Diamond } from './Diamond.astro'
|
510
|
+
export { default as DiamondMinus } from './DiamondMinus.astro'
|
510
511
|
export { default as DiamondPercent } from './DiamondPercent.astro'
|
512
|
+
export { default as DiamondPlus } from './DiamondPlus.astro'
|
511
513
|
export { default as Dice1 } from './Dice1.astro'
|
512
514
|
export { default as Dice2 } from './Dice2.astro'
|
513
515
|
export { default as Dice3 } from './Dice3.astro'
|
package/dist/index.js
CHANGED
@@ -502,7 +502,9 @@ export { default as Delete } from './Delete.astro'
|
|
502
502
|
export { default as Dessert } from './Dessert.astro'
|
503
503
|
export { default as Diameter } from './Diameter.astro'
|
504
504
|
export { default as Diamond } from './Diamond.astro'
|
505
|
+
export { default as DiamondMinus } from './DiamondMinus.astro'
|
505
506
|
export { default as DiamondPercent } from './DiamondPercent.astro'
|
507
|
+
export { default as DiamondPlus } from './DiamondPlus.astro'
|
506
508
|
export { default as Dice1 } from './Dice1.astro'
|
507
509
|
export { default as Dice2 } from './Dice2.astro'
|
508
510
|
export { default as Dice3 } from './Dice3.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.371.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.371.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|