lucide-astro 0.295.0 → 0.297.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Squircle.astro +8 -0
- package/dist/UserRoundSearch.astro +11 -0
- package/dist/UserSearch.astro +11 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +2 -2
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<circle cx="10" cy="8" r="5" />
|
8
|
+
<path d="M2 21a8 8 0 0 1 10.434-7.62" />
|
9
|
+
<circle cx="18" cy="18" r="3" />
|
10
|
+
<path d="m22 22-1.9-1.9" />
|
11
|
+
</Layout>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<circle cx="10" cy="7" r="4" />
|
8
|
+
<path d="M10.3 15H7a4 4 0 0 0-4 4v2" />
|
9
|
+
<circle cx="17" cy="17" r="3" />
|
10
|
+
<path d="m21 21-1.9-1.9" />
|
11
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -1168,6 +1168,7 @@ export { default as SquareStack } from './SquareStack.astro'
|
|
1168
1168
|
export { default as SquareUserRound } from './SquareUserRound.astro'
|
1169
1169
|
export { default as SquareUser } from './SquareUser.astro'
|
1170
1170
|
export { default as Square } from './Square.astro'
|
1171
|
+
export { default as Squircle } from './Squircle.astro'
|
1171
1172
|
export { default as Squirrel } from './Squirrel.astro'
|
1172
1173
|
export { default as Stamp } from './Stamp.astro'
|
1173
1174
|
export { default as StarHalf } from './StarHalf.astro'
|
@@ -1292,8 +1293,10 @@ export { default as UserRoundCheck } from './UserRoundCheck.astro'
|
|
1292
1293
|
export { default as UserRoundCog } from './UserRoundCog.astro'
|
1293
1294
|
export { default as UserRoundMinus } from './UserRoundMinus.astro'
|
1294
1295
|
export { default as UserRoundPlus } from './UserRoundPlus.astro'
|
1296
|
+
export { default as UserRoundSearch } from './UserRoundSearch.astro'
|
1295
1297
|
export { default as UserRoundX } from './UserRoundX.astro'
|
1296
1298
|
export { default as UserRound } from './UserRound.astro'
|
1299
|
+
export { default as UserSearch } from './UserSearch.astro'
|
1297
1300
|
export { default as UserX } from './UserX.astro'
|
1298
1301
|
export { default as User } from './User.astro'
|
1299
1302
|
export { default as UsersRound } from './UsersRound.astro'
|
package/dist/index.js
CHANGED
@@ -1163,6 +1163,7 @@ export { default as SquareStack } from './SquareStack.astro'
|
|
1163
1163
|
export { default as SquareUserRound } from './SquareUserRound.astro'
|
1164
1164
|
export { default as SquareUser } from './SquareUser.astro'
|
1165
1165
|
export { default as Square } from './Square.astro'
|
1166
|
+
export { default as Squircle } from './Squircle.astro'
|
1166
1167
|
export { default as Squirrel } from './Squirrel.astro'
|
1167
1168
|
export { default as Stamp } from './Stamp.astro'
|
1168
1169
|
export { default as StarHalf } from './StarHalf.astro'
|
@@ -1287,8 +1288,10 @@ export { default as UserRoundCheck } from './UserRoundCheck.astro'
|
|
1287
1288
|
export { default as UserRoundCog } from './UserRoundCog.astro'
|
1288
1289
|
export { default as UserRoundMinus } from './UserRoundMinus.astro'
|
1289
1290
|
export { default as UserRoundPlus } from './UserRoundPlus.astro'
|
1291
|
+
export { default as UserRoundSearch } from './UserRoundSearch.astro'
|
1290
1292
|
export { default as UserRoundX } from './UserRoundX.astro'
|
1291
1293
|
export { default as UserRound } from './UserRound.astro'
|
1294
|
+
export { default as UserSearch } from './UserSearch.astro'
|
1292
1295
|
export { default as UserX } from './UserX.astro'
|
1293
1296
|
export { default as User } from './User.astro'
|
1294
1297
|
export { default as UsersRound } from './UsersRound.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.297.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.297.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|