lucide-astro 0.479.0 → 0.482.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/ClockFading.astro +13 -0
- package/dist/Infinity.astro +1 -1
- package/dist/Newspaper.astro +3 -3
- package/dist/SaudiRiyal.astro +11 -0
- package/dist/Shrimp.astro +12 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +2 -2
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="clock-fading" {...Astro.props}>
|
7
|
+
<path d="M12 2a10 10 0 0 1 7.38 16.75" />
|
8
|
+
<path d="M12 6v6l4 2" />
|
9
|
+
<path d="M2.5 8.875a10 10 0 0 0-.5 3" />
|
10
|
+
<path d="M2.83 16a10 10 0 0 0 2.43 3.4" />
|
11
|
+
<path d="M4.636 5.235a10 10 0 0 1 .891-.857" />
|
12
|
+
<path d="M8.644 21.42a10 10 0 0 0 7.631-.38" />
|
13
|
+
</Layout>
|
package/dist/Infinity.astro
CHANGED
@@ -4,5 +4,5 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="infinity" {...Astro.props}>
|
7
|
-
<path d="
|
7
|
+
<path d="M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8" />
|
8
8
|
</Layout>
|
package/dist/Newspaper.astro
CHANGED
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="newspaper" {...Astro.props}>
|
7
|
-
<path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2" />
|
8
|
-
<path d="M18 14h-8" />
|
9
7
|
<path d="M15 18h-5" />
|
10
|
-
<path d="
|
8
|
+
<path d="M18 14h-8" />
|
9
|
+
<path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2" />
|
10
|
+
<rect x="10" y="6" width="8" height="4" rx="1" />
|
11
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 iconName="saudi-riyal" {...Astro.props}>
|
7
|
+
<path d="m20 19.5-5.5 1.2" />
|
8
|
+
<path d="M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2" />
|
9
|
+
<path d="m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2" />
|
10
|
+
<path d="M20 10 4 13.5" />
|
11
|
+
</Layout>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="shrimp" {...Astro.props}>
|
7
|
+
<path d="M11 12h.01" />
|
8
|
+
<path d="M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1" />
|
9
|
+
<path d="M14 2a3.276 3.276 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8" />
|
10
|
+
<path d="M14 8a8.5 8.5 0 0 1 0 8" />
|
11
|
+
<path d="M16 16c2 0 4.5-4 4-6" />
|
12
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -464,6 +464,7 @@ export { default as Clock9 } from './Clock9.astro'
|
|
464
464
|
export { default as ClockAlert } from './ClockAlert.astro'
|
465
465
|
export { default as ClockArrowDown } from './ClockArrowDown.astro'
|
466
466
|
export { default as ClockArrowUp } from './ClockArrowUp.astro'
|
467
|
+
export { default as ClockFading } from './ClockFading.astro'
|
467
468
|
export { default as Cloud } from './Cloud.astro'
|
468
469
|
export { default as CloudAlert } from './CloudAlert.astro'
|
469
470
|
export { default as CloudCog } from './CloudCog.astro'
|
@@ -1333,6 +1334,7 @@ export { default as Salad } from './Salad.astro'
|
|
1333
1334
|
export { default as Sandwich } from './Sandwich.astro'
|
1334
1335
|
export { default as Satellite } from './Satellite.astro'
|
1335
1336
|
export { default as SatelliteDish } from './SatelliteDish.astro'
|
1337
|
+
export { default as SaudiRiyal } from './SaudiRiyal.astro'
|
1336
1338
|
export { default as Save } from './Save.astro'
|
1337
1339
|
export { default as SaveAll } from './SaveAll.astro'
|
1338
1340
|
export { default as SaveOff } from './SaveOff.astro'
|
@@ -1404,6 +1406,7 @@ export { default as ShoppingBasket } from './ShoppingBasket.astro'
|
|
1404
1406
|
export { default as ShoppingCart } from './ShoppingCart.astro'
|
1405
1407
|
export { default as Shovel } from './Shovel.astro'
|
1406
1408
|
export { default as ShowerHead } from './ShowerHead.astro'
|
1409
|
+
export { default as Shrimp } from './Shrimp.astro'
|
1407
1410
|
export { default as Shrink } from './Shrink.astro'
|
1408
1411
|
export { default as Shrub } from './Shrub.astro'
|
1409
1412
|
export { default as Shuffle } from './Shuffle.astro'
|
package/dist/index.js
CHANGED
@@ -459,6 +459,7 @@ export { default as Clock9 } from './Clock9.astro'
|
|
459
459
|
export { default as ClockAlert } from './ClockAlert.astro'
|
460
460
|
export { default as ClockArrowDown } from './ClockArrowDown.astro'
|
461
461
|
export { default as ClockArrowUp } from './ClockArrowUp.astro'
|
462
|
+
export { default as ClockFading } from './ClockFading.astro'
|
462
463
|
export { default as Cloud } from './Cloud.astro'
|
463
464
|
export { default as CloudAlert } from './CloudAlert.astro'
|
464
465
|
export { default as CloudCog } from './CloudCog.astro'
|
@@ -1328,6 +1329,7 @@ export { default as Salad } from './Salad.astro'
|
|
1328
1329
|
export { default as Sandwich } from './Sandwich.astro'
|
1329
1330
|
export { default as Satellite } from './Satellite.astro'
|
1330
1331
|
export { default as SatelliteDish } from './SatelliteDish.astro'
|
1332
|
+
export { default as SaudiRiyal } from './SaudiRiyal.astro'
|
1331
1333
|
export { default as Save } from './Save.astro'
|
1332
1334
|
export { default as SaveAll } from './SaveAll.astro'
|
1333
1335
|
export { default as SaveOff } from './SaveOff.astro'
|
@@ -1399,6 +1401,7 @@ export { default as ShoppingBasket } from './ShoppingBasket.astro'
|
|
1399
1401
|
export { default as ShoppingCart } from './ShoppingCart.astro'
|
1400
1402
|
export { default as Shovel } from './Shovel.astro'
|
1401
1403
|
export { default as ShowerHead } from './ShowerHead.astro'
|
1404
|
+
export { default as Shrimp } from './Shrimp.astro'
|
1402
1405
|
export { default as Shrink } from './Shrink.astro'
|
1403
1406
|
export { default as Shrub } from './Shrub.astro'
|
1404
1407
|
export { default as Shuffle } from './Shuffle.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.482.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",
|
@@ -34,7 +34,7 @@
|
|
34
34
|
"author": "Aviortheking",
|
35
35
|
"license": "MIT",
|
36
36
|
"devDependencies": {
|
37
|
-
"lucide-static": "0.
|
37
|
+
"lucide-static": "0.482.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|