lucide-astro 0.295.0 → 0.298.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/AlarmSmoke.astro +12 -0
- package/dist/BellElectric.astro +13 -0
- package/dist/Cctv.astro +12 -0
- package/dist/FireExtinguisher.astro +13 -0
- package/dist/PointerOff.astro +13 -0
- package/dist/Squircle.astro +8 -0
- package/dist/UserRoundSearch.astro +11 -0
- package/dist/UserSearch.astro +11 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +8 -0
- package/package.json +2 -2
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M4 8a2 2 0 0 1-2-2V3h20v3a2 2 0 0 1-2 2Z" />
|
8
|
+
<path d="m19 8-.8 3c-.1.6-.6 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L5 8" />
|
9
|
+
<path d="M16 21c0-2.5 2-2.5 2-5" />
|
10
|
+
<path d="M11 21c0-2.5 2-2.5 2-5" />
|
11
|
+
<path d="M6 21c0-2.5 2-2.5 2-5" />
|
12
|
+
</Layout>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M18.8 4A6.3 8.7 0 0 1 20 9" />
|
8
|
+
<path d="M9 9h.01" />
|
9
|
+
<circle cx="9" cy="9" r="7" />
|
10
|
+
<rect width="10" height="6" x="4" y="16" rx="2" />
|
11
|
+
<path d="M14 19c3 0 4.6-1.6 4.6-1.6" />
|
12
|
+
<circle cx="20" cy="16" r="2" />
|
13
|
+
</Layout>
|
package/dist/Cctv.astro
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M7 9h.01" />
|
8
|
+
<path d="M16.75 12H22l-3.5 7-3.09-4.32" />
|
9
|
+
<path d="M18 9.5l-4 8-10.39-5.2a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3Z" />
|
10
|
+
<path d="M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15" />
|
11
|
+
<path d="M2 21v-4" />
|
12
|
+
</Layout>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5" />
|
8
|
+
<path d="M9 18h8" />
|
9
|
+
<path d="M18 3h-3" />
|
10
|
+
<path d="M11 3a6 6 0 0 0-6 6v11" />
|
11
|
+
<path d="M5 13h4" />
|
12
|
+
<path d="M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z" />
|
13
|
+
</Layout>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M10 4.5V4a2 2 0 0 0-2.41-1.957" />
|
8
|
+
<path d="M13.9 8.4a2 2 0 0 0-1.26-1.295" />
|
9
|
+
<path d="M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158" />
|
10
|
+
<path d="m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343" />
|
11
|
+
<path d="M6 6v8" />
|
12
|
+
<path d="m2 2 20 20" />
|
13
|
+
</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="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
@@ -13,6 +13,7 @@ export { default as AlarmClockOff } from './AlarmClockOff.astro'
|
|
13
13
|
export { default as AlarmClock } from './AlarmClock.astro'
|
14
14
|
export { default as AlarmMinus } from './AlarmMinus.astro'
|
15
15
|
export { default as AlarmPlus } from './AlarmPlus.astro'
|
16
|
+
export { default as AlarmSmoke } from './AlarmSmoke.astro'
|
16
17
|
export { default as Album } from './Album.astro'
|
17
18
|
export { default as AlertCircle } from './AlertCircle.astro'
|
18
19
|
export { default as AlertOctagon } from './AlertOctagon.astro'
|
@@ -172,6 +173,7 @@ export { default as Bed } from './Bed.astro'
|
|
172
173
|
export { default as Beef } from './Beef.astro'
|
173
174
|
export { default as Beer } from './Beer.astro'
|
174
175
|
export { default as BellDot } from './BellDot.astro'
|
176
|
+
export { default as BellElectric } from './BellElectric.astro'
|
175
177
|
export { default as BellMinus } from './BellMinus.astro'
|
176
178
|
export { default as BellOff } from './BellOff.astro'
|
177
179
|
export { default as BellPlus } from './BellPlus.astro'
|
@@ -276,6 +278,7 @@ export { default as CassetteTape } from './CassetteTape.astro'
|
|
276
278
|
export { default as Cast } from './Cast.astro'
|
277
279
|
export { default as Castle } from './Castle.astro'
|
278
280
|
export { default as Cat } from './Cat.astro'
|
281
|
+
export { default as Cctv } from './Cctv.astro'
|
279
282
|
export { default as CheckCheck } from './CheckCheck.astro'
|
280
283
|
export { default as CheckCircle2 } from './CheckCircle2.astro'
|
281
284
|
export { default as CheckCircle } from './CheckCircle.astro'
|
@@ -535,6 +538,7 @@ export { default as Film } from './Film.astro'
|
|
535
538
|
export { default as FilterX } from './FilterX.astro'
|
536
539
|
export { default as Filter } from './Filter.astro'
|
537
540
|
export { default as Fingerprint } from './Fingerprint.astro'
|
541
|
+
export { default as FireExtinguisher } from './FireExtinguisher.astro'
|
538
542
|
export { default as FishOff } from './FishOff.astro'
|
539
543
|
export { default as FishSymbol } from './FishSymbol.astro'
|
540
544
|
export { default as Fish } from './Fish.astro'
|
@@ -983,6 +987,7 @@ export { default as Plus } from './Plus.astro'
|
|
983
987
|
export { default as PocketKnife } from './PocketKnife.astro'
|
984
988
|
export { default as Pocket } from './Pocket.astro'
|
985
989
|
export { default as Podcast } from './Podcast.astro'
|
990
|
+
export { default as PointerOff } from './PointerOff.astro'
|
986
991
|
export { default as Pointer } from './Pointer.astro'
|
987
992
|
export { default as Popcorn } from './Popcorn.astro'
|
988
993
|
export { default as Popsicle } from './Popsicle.astro'
|
@@ -1168,6 +1173,7 @@ export { default as SquareStack } from './SquareStack.astro'
|
|
1168
1173
|
export { default as SquareUserRound } from './SquareUserRound.astro'
|
1169
1174
|
export { default as SquareUser } from './SquareUser.astro'
|
1170
1175
|
export { default as Square } from './Square.astro'
|
1176
|
+
export { default as Squircle } from './Squircle.astro'
|
1171
1177
|
export { default as Squirrel } from './Squirrel.astro'
|
1172
1178
|
export { default as Stamp } from './Stamp.astro'
|
1173
1179
|
export { default as StarHalf } from './StarHalf.astro'
|
@@ -1292,8 +1298,10 @@ export { default as UserRoundCheck } from './UserRoundCheck.astro'
|
|
1292
1298
|
export { default as UserRoundCog } from './UserRoundCog.astro'
|
1293
1299
|
export { default as UserRoundMinus } from './UserRoundMinus.astro'
|
1294
1300
|
export { default as UserRoundPlus } from './UserRoundPlus.astro'
|
1301
|
+
export { default as UserRoundSearch } from './UserRoundSearch.astro'
|
1295
1302
|
export { default as UserRoundX } from './UserRoundX.astro'
|
1296
1303
|
export { default as UserRound } from './UserRound.astro'
|
1304
|
+
export { default as UserSearch } from './UserSearch.astro'
|
1297
1305
|
export { default as UserX } from './UserX.astro'
|
1298
1306
|
export { default as User } from './User.astro'
|
1299
1307
|
export { default as UsersRound } from './UsersRound.astro'
|
package/dist/index.js
CHANGED
@@ -8,6 +8,7 @@ export { default as AlarmClockOff } from './AlarmClockOff.astro'
|
|
8
8
|
export { default as AlarmClock } from './AlarmClock.astro'
|
9
9
|
export { default as AlarmMinus } from './AlarmMinus.astro'
|
10
10
|
export { default as AlarmPlus } from './AlarmPlus.astro'
|
11
|
+
export { default as AlarmSmoke } from './AlarmSmoke.astro'
|
11
12
|
export { default as Album } from './Album.astro'
|
12
13
|
export { default as AlertCircle } from './AlertCircle.astro'
|
13
14
|
export { default as AlertOctagon } from './AlertOctagon.astro'
|
@@ -167,6 +168,7 @@ export { default as Bed } from './Bed.astro'
|
|
167
168
|
export { default as Beef } from './Beef.astro'
|
168
169
|
export { default as Beer } from './Beer.astro'
|
169
170
|
export { default as BellDot } from './BellDot.astro'
|
171
|
+
export { default as BellElectric } from './BellElectric.astro'
|
170
172
|
export { default as BellMinus } from './BellMinus.astro'
|
171
173
|
export { default as BellOff } from './BellOff.astro'
|
172
174
|
export { default as BellPlus } from './BellPlus.astro'
|
@@ -271,6 +273,7 @@ export { default as CassetteTape } from './CassetteTape.astro'
|
|
271
273
|
export { default as Cast } from './Cast.astro'
|
272
274
|
export { default as Castle } from './Castle.astro'
|
273
275
|
export { default as Cat } from './Cat.astro'
|
276
|
+
export { default as Cctv } from './Cctv.astro'
|
274
277
|
export { default as CheckCheck } from './CheckCheck.astro'
|
275
278
|
export { default as CheckCircle2 } from './CheckCircle2.astro'
|
276
279
|
export { default as CheckCircle } from './CheckCircle.astro'
|
@@ -530,6 +533,7 @@ export { default as Film } from './Film.astro'
|
|
530
533
|
export { default as FilterX } from './FilterX.astro'
|
531
534
|
export { default as Filter } from './Filter.astro'
|
532
535
|
export { default as Fingerprint } from './Fingerprint.astro'
|
536
|
+
export { default as FireExtinguisher } from './FireExtinguisher.astro'
|
533
537
|
export { default as FishOff } from './FishOff.astro'
|
534
538
|
export { default as FishSymbol } from './FishSymbol.astro'
|
535
539
|
export { default as Fish } from './Fish.astro'
|
@@ -978,6 +982,7 @@ export { default as Plus } from './Plus.astro'
|
|
978
982
|
export { default as PocketKnife } from './PocketKnife.astro'
|
979
983
|
export { default as Pocket } from './Pocket.astro'
|
980
984
|
export { default as Podcast } from './Podcast.astro'
|
985
|
+
export { default as PointerOff } from './PointerOff.astro'
|
981
986
|
export { default as Pointer } from './Pointer.astro'
|
982
987
|
export { default as Popcorn } from './Popcorn.astro'
|
983
988
|
export { default as Popsicle } from './Popsicle.astro'
|
@@ -1163,6 +1168,7 @@ export { default as SquareStack } from './SquareStack.astro'
|
|
1163
1168
|
export { default as SquareUserRound } from './SquareUserRound.astro'
|
1164
1169
|
export { default as SquareUser } from './SquareUser.astro'
|
1165
1170
|
export { default as Square } from './Square.astro'
|
1171
|
+
export { default as Squircle } from './Squircle.astro'
|
1166
1172
|
export { default as Squirrel } from './Squirrel.astro'
|
1167
1173
|
export { default as Stamp } from './Stamp.astro'
|
1168
1174
|
export { default as StarHalf } from './StarHalf.astro'
|
@@ -1287,8 +1293,10 @@ export { default as UserRoundCheck } from './UserRoundCheck.astro'
|
|
1287
1293
|
export { default as UserRoundCog } from './UserRoundCog.astro'
|
1288
1294
|
export { default as UserRoundMinus } from './UserRoundMinus.astro'
|
1289
1295
|
export { default as UserRoundPlus } from './UserRoundPlus.astro'
|
1296
|
+
export { default as UserRoundSearch } from './UserRoundSearch.astro'
|
1290
1297
|
export { default as UserRoundX } from './UserRoundX.astro'
|
1291
1298
|
export { default as UserRound } from './UserRound.astro'
|
1299
|
+
export { default as UserSearch } from './UserSearch.astro'
|
1292
1300
|
export { default as UserX } from './UserX.astro'
|
1293
1301
|
export { default as User } from './User.astro'
|
1294
1302
|
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.298.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.298.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|