lucide-astro 0.374.0 → 0.376.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Grid2x2Check.astro +9 -0
- package/dist/Grid2x2X.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="M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3" />
|
8
|
+
<path d="m16 19 2 2 4-4" />
|
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 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3" />
|
8
|
+
<path d="m16 16 5 5" />
|
9
|
+
<path d="m16 21 5-5" />
|
10
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -754,6 +754,8 @@ export { default as Grape } from './Grape.astro'
|
|
754
754
|
export { default as Grid } from './Grid.astro'
|
755
755
|
export { default as Grid2X2 } from './Grid2X2.astro'
|
756
756
|
export { default as Grid2x2 } from './Grid2x2.astro'
|
757
|
+
export { default as Grid2x2Check } from './Grid2x2Check.astro'
|
758
|
+
export { default as Grid2x2X } from './Grid2x2X.astro'
|
757
759
|
export { default as Grid3X3 } from './Grid3X3.astro'
|
758
760
|
export { default as Grid3x3 } from './Grid3x3.astro'
|
759
761
|
export { default as Grip } from './Grip.astro'
|
package/dist/index.js
CHANGED
@@ -749,6 +749,8 @@ export { default as Grape } from './Grape.astro'
|
|
749
749
|
export { default as Grid } from './Grid.astro'
|
750
750
|
export { default as Grid2X2 } from './Grid2X2.astro'
|
751
751
|
export { default as Grid2x2 } from './Grid2x2.astro'
|
752
|
+
export { default as Grid2x2Check } from './Grid2x2Check.astro'
|
753
|
+
export { default as Grid2x2X } from './Grid2x2X.astro'
|
752
754
|
export { default as Grid3X3 } from './Grid3X3.astro'
|
753
755
|
export { default as Grid3x3 } from './Grid3x3.astro'
|
754
756
|
export { default as Grip } from './Grip.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.376.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.376.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|