lucide-astro 0.460.0 → 0.462.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/CalendarSync.astro +15 -0
- package/dist/Grid2X2.astro +2 -2
- package/dist/Grid2x2.astro +2 -2
- package/dist/ImageUpscale.astro +15 -0
- package/dist/Scale3D.astro +2 -2
- package/dist/Scale3d.astro +2 -2
- package/dist/Ship.astro +4 -4
- package/dist/Shuffle.astro +4 -4
- package/dist/VenetianMask.astro +3 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="calendar-sync" {...Astro.props}>
|
7
|
+
<path d="M11 10v4h4" />
|
8
|
+
<path d="m11 14 1.535-1.605a5 5 0 0 1 8 1.5" />
|
9
|
+
<path d="M16 2v4" />
|
10
|
+
<path d="m21 18-1.535 1.605a5 5 0 0 1-8-1.5" />
|
11
|
+
<path d="M21 22v-4h-4" />
|
12
|
+
<path d="M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3" />
|
13
|
+
<path d="M3 10h4" />
|
14
|
+
<path d="M8 2v4" />
|
15
|
+
</Layout>
|
package/dist/Grid2X2.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="grid-2x2" {...Astro.props}>
|
7
|
-
<rect width="18" height="18" x="3" y="3" rx="2" />
|
8
|
-
<path d="M3 12h18" />
|
9
7
|
<path d="M12 3v18" />
|
8
|
+
<path d="M3 12h18" />
|
9
|
+
<rect x="3" y="3" width="18" height="18" rx="2" />
|
10
10
|
</Layout>
|
package/dist/Grid2x2.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="grid-2x2" {...Astro.props}>
|
7
|
-
<rect width="18" height="18" x="3" y="3" rx="2" />
|
8
|
-
<path d="M3 12h18" />
|
9
7
|
<path d="M12 3v18" />
|
8
|
+
<path d="M3 12h18" />
|
9
|
+
<rect x="3" y="3" width="18" height="18" rx="2" />
|
10
10
|
</Layout>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="image-upscale" {...Astro.props}>
|
7
|
+
<path d="M16 3h5v5" />
|
8
|
+
<path d="M17 21h2a2 2 0 0 0 2-2" />
|
9
|
+
<path d="M21 12v3" />
|
10
|
+
<path d="m21 3-5 5" />
|
11
|
+
<path d="M3 7V5a2 2 0 0 1 2-2" />
|
12
|
+
<path d="m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19" />
|
13
|
+
<path d="M9 3h3" />
|
14
|
+
<rect x="3" y="11" width="10" height="10" rx="1" />
|
15
|
+
</Layout>
|
package/dist/Scale3D.astro
CHANGED
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="scale-3d" {...Astro.props}>
|
7
|
+
<path d="M5 7v11a1 1 0 0 0 1 1h11" />
|
8
|
+
<path d="M5.293 18.707 11 13" />
|
7
9
|
<circle cx="19" cy="19" r="2" />
|
8
10
|
<circle cx="5" cy="5" r="2" />
|
9
|
-
<path d="M5 7v12h12" />
|
10
|
-
<path d="m5 19 6-6" />
|
11
11
|
</Layout>
|
package/dist/Scale3d.astro
CHANGED
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="scale-3d" {...Astro.props}>
|
7
|
+
<path d="M5 7v11a1 1 0 0 0 1 1h11" />
|
8
|
+
<path d="M5.293 18.707 11 13" />
|
7
9
|
<circle cx="19" cy="19" r="2" />
|
8
10
|
<circle cx="5" cy="5" r="2" />
|
9
|
-
<path d="M5 7v12h12" />
|
10
|
-
<path d="m5 19 6-6" />
|
11
11
|
</Layout>
|
package/dist/Ship.astro
CHANGED
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="ship" {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="M19.38 20A11.6 11.6 0 0 0 21 14l-9-4-9 4c0 2.9.94 5.34 2.81 7.76" />
|
9
|
-
<path d="M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6" />
|
10
|
-
<path d="M12 10v4" />
|
7
|
+
<path d="M12 10.189V14" />
|
11
8
|
<path d="M12 2v3" />
|
9
|
+
<path d="M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6" />
|
10
|
+
<path d="M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76" />
|
11
|
+
<path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" />
|
12
12
|
</Layout>
|
package/dist/Shuffle.astro
CHANGED
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="shuffle" {...Astro.props}>
|
7
|
-
<path d="M2 18h1.4c1.3 0 2.5-.6 3.3-1.7l6.1-8.6c.7-1.1 2-1.7 3.3-1.7H22" />
|
8
|
-
<path d="m18 2 4 4-4 4" />
|
9
|
-
<path d="M2 6h1.9c1.5 0 2.9.9 3.6 2.2" />
|
10
|
-
<path d="M22 18h-5.9c-1.3 0-2.6-.7-3.3-1.8l-.5-.8" />
|
11
7
|
<path d="m18 14 4 4-4 4" />
|
8
|
+
<path d="m18 2 4 4-4 4" />
|
9
|
+
<path d="M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22" />
|
10
|
+
<path d="M2 6h1.972a4 4 0 0 1 3.6 2.2" />
|
11
|
+
<path d="M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45" />
|
12
12
|
</Layout>
|
package/dist/VenetianMask.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="venetian-mask" {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="
|
9
|
-
<path d="
|
7
|
+
<path d="M18 11c-1.5 0-2.5.5-3 2" />
|
8
|
+
<path d="M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z" />
|
9
|
+
<path d="M6 11c1.5 0 2.5.5 3 2" />
|
10
10
|
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -304,6 +304,7 @@ export { default as CalendarPlus } from './CalendarPlus.astro'
|
|
304
304
|
export { default as CalendarPlus2 } from './CalendarPlus2.astro'
|
305
305
|
export { default as CalendarRange } from './CalendarRange.astro'
|
306
306
|
export { default as CalendarSearch } from './CalendarSearch.astro'
|
307
|
+
export { default as CalendarSync } from './CalendarSync.astro'
|
307
308
|
export { default as CalendarX } from './CalendarX.astro'
|
308
309
|
export { default as CalendarX2 } from './CalendarX2.astro'
|
309
310
|
export { default as Camera } from './Camera.astro'
|
@@ -873,6 +874,7 @@ export { default as ImageOff } from './ImageOff.astro'
|
|
873
874
|
export { default as ImagePlay } from './ImagePlay.astro'
|
874
875
|
export { default as ImagePlus } from './ImagePlus.astro'
|
875
876
|
export { default as ImageUp } from './ImageUp.astro'
|
877
|
+
export { default as ImageUpscale } from './ImageUpscale.astro'
|
876
878
|
export { default as Images } from './Images.astro'
|
877
879
|
export { default as Import } from './Import.astro'
|
878
880
|
export { default as Inbox } from './Inbox.astro'
|
package/dist/index.js
CHANGED
@@ -299,6 +299,7 @@ export { default as CalendarPlus } from './CalendarPlus.astro'
|
|
299
299
|
export { default as CalendarPlus2 } from './CalendarPlus2.astro'
|
300
300
|
export { default as CalendarRange } from './CalendarRange.astro'
|
301
301
|
export { default as CalendarSearch } from './CalendarSearch.astro'
|
302
|
+
export { default as CalendarSync } from './CalendarSync.astro'
|
302
303
|
export { default as CalendarX } from './CalendarX.astro'
|
303
304
|
export { default as CalendarX2 } from './CalendarX2.astro'
|
304
305
|
export { default as Camera } from './Camera.astro'
|
@@ -868,6 +869,7 @@ export { default as ImageOff } from './ImageOff.astro'
|
|
868
869
|
export { default as ImagePlay } from './ImagePlay.astro'
|
869
870
|
export { default as ImagePlus } from './ImagePlus.astro'
|
870
871
|
export { default as ImageUp } from './ImageUp.astro'
|
872
|
+
export { default as ImageUpscale } from './ImageUpscale.astro'
|
871
873
|
export { default as Images } from './Images.astro'
|
872
874
|
export { default as Import } from './Import.astro'
|
873
875
|
export { default as Inbox } from './Inbox.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.462.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.462.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|