lucide-astro 0.281.0 → 0.282.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/LockKeyhole.astro +10 -0
- package/dist/UnlockKeyhole.astro +10 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
@@ -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
|
+
<circle cx="12" cy="16" r="1" />
|
8
|
+
<rect x="3" y="10" width="18" height="12" rx="2" />
|
9
|
+
<path d="M7 10V7a5 5 0 0 1 10 0v3" />
|
10
|
+
</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
|
+
<circle cx="12" cy="16" r="1" />
|
8
|
+
<rect x="3" y="10" width="18" height="12" rx="2" />
|
9
|
+
<path d="M7 10V7a5 5 0 0 1 9.33-2.5" />
|
10
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -731,6 +731,7 @@ export { default as Loader } from './Loader.astro'
|
|
731
731
|
export { default as LocateFixed } from './LocateFixed.astro'
|
732
732
|
export { default as LocateOff } from './LocateOff.astro'
|
733
733
|
export { default as Locate } from './Locate.astro'
|
734
|
+
export { default as LockKeyhole } from './LockKeyhole.astro'
|
734
735
|
export { default as Lock } from './Lock.astro'
|
735
736
|
export { default as LogIn } from './LogIn.astro'
|
736
737
|
export { default as LogOut } from './LogOut.astro'
|
@@ -1207,6 +1208,7 @@ export { default as UnfoldVertical } from './UnfoldVertical.astro'
|
|
1207
1208
|
export { default as Ungroup } from './Ungroup.astro'
|
1208
1209
|
export { default as Unlink2 } from './Unlink2.astro'
|
1209
1210
|
export { default as Unlink } from './Unlink.astro'
|
1211
|
+
export { default as UnlockKeyhole } from './UnlockKeyhole.astro'
|
1210
1212
|
export { default as Unlock } from './Unlock.astro'
|
1211
1213
|
export { default as Unplug } from './Unplug.astro'
|
1212
1214
|
export { default as UploadCloud } from './UploadCloud.astro'
|
package/dist/index.js
CHANGED
@@ -724,6 +724,7 @@ export { default as Loader } from './Loader.astro'
|
|
724
724
|
export { default as LocateFixed } from './LocateFixed.astro'
|
725
725
|
export { default as LocateOff } from './LocateOff.astro'
|
726
726
|
export { default as Locate } from './Locate.astro'
|
727
|
+
export { default as LockKeyhole } from './LockKeyhole.astro'
|
727
728
|
export { default as Lock } from './Lock.astro'
|
728
729
|
export { default as LogIn } from './LogIn.astro'
|
729
730
|
export { default as LogOut } from './LogOut.astro'
|
@@ -1200,6 +1201,7 @@ export { default as UnfoldVertical } from './UnfoldVertical.astro'
|
|
1200
1201
|
export { default as Ungroup } from './Ungroup.astro'
|
1201
1202
|
export { default as Unlink2 } from './Unlink2.astro'
|
1202
1203
|
export { default as Unlink } from './Unlink.astro'
|
1204
|
+
export { default as UnlockKeyhole } from './UnlockKeyhole.astro'
|
1203
1205
|
export { default as Unlock } from './Unlock.astro'
|
1204
1206
|
export { default as Unplug } from './Unplug.astro'
|
1205
1207
|
export { default as UploadCloud } from './UploadCloud.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.282.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.282.0"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
32
|
"astro": "^2.7.1 || ^3.0.0"
|