lucide-astro 0.482.0 → 0.484.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/Candy.astro +5 -5
- package/dist/CandyOff.astro +7 -8
- package/dist/Filter.astro +2 -2
- package/dist/FilterX.astro +4 -4
- package/dist/Funnel.astro +8 -0
- package/dist/FunnelPlus.astro +10 -0
- package/dist/FunnelX.astro +10 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +2 -2
package/dist/Candy.astro
CHANGED
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="candy" {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="M14 6.
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<path d="
|
7
|
+
<path d="M10 7v10.9" />
|
8
|
+
<path d="M14 6.1V17" />
|
9
|
+
<path d="M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4" />
|
10
|
+
<path d="M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07" />
|
11
|
+
<path d="M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4" />
|
12
12
|
</Layout>
|
package/dist/CandyOff.astro
CHANGED
@@ -4,12 +4,11 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="candy-off" {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="M11.
|
9
|
-
<path d="M14
|
10
|
-
<path d="
|
11
|
-
<path d="
|
12
|
-
<path d="
|
13
|
-
<path d="
|
14
|
-
<line x1="2" x2="22" y1="2" y2="22" />
|
7
|
+
<path d="M10 10v7.9" />
|
8
|
+
<path d="M11.802 6.145a5 5 0 0 1 6.053 6.053" />
|
9
|
+
<path d="M14 6.1v2.243" />
|
10
|
+
<path d="m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965" />
|
11
|
+
<path d="M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4" />
|
12
|
+
<path d="m2 2 20 20" />
|
13
|
+
<path d="M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4" />
|
15
14
|
</Layout>
|
package/dist/Filter.astro
CHANGED
@@ -3,6 +3,6 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="
|
7
|
-
<
|
6
|
+
<Layout iconName="funnel" {...Astro.props}>
|
7
|
+
<path d="M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z" />
|
8
8
|
</Layout>
|
package/dist/FilterX.astro
CHANGED
@@ -3,8 +3,8 @@ import Layout from './.Layout.astro'
|
|
3
3
|
export type { Props } from './index.d.ts'
|
4
4
|
---
|
5
5
|
|
6
|
-
<Layout iconName="
|
7
|
-
<path d="
|
8
|
-
<path d="
|
9
|
-
<path d="
|
6
|
+
<Layout iconName="funnel-x" {...Astro.props}>
|
7
|
+
<path d="M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473" />
|
8
|
+
<path d="m16.5 3.5 5 5" />
|
9
|
+
<path d="m21.5 3.5-5 5" />
|
10
10
|
</Layout>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="funnel" {...Astro.props}>
|
7
|
+
<path d="M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z" />
|
8
|
+
</Layout>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="funnel-plus" {...Astro.props}>
|
7
|
+
<path d="M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348" />
|
8
|
+
<path d="M16 6h6" />
|
9
|
+
<path d="M19 3v6" />
|
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 iconName="funnel-x" {...Astro.props}>
|
7
|
+
<path d="M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473" />
|
8
|
+
<path d="m16.5 3.5 5 5" />
|
9
|
+
<path d="m21.5 3.5-5 5" />
|
10
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -764,6 +764,9 @@ export { default as Frown } from './Frown.astro'
|
|
764
764
|
export { default as Fuel } from './Fuel.astro'
|
765
765
|
export { default as Fullscreen } from './Fullscreen.astro'
|
766
766
|
export { default as FunctionSquare } from './FunctionSquare.astro'
|
767
|
+
export { default as Funnel } from './Funnel.astro'
|
768
|
+
export { default as FunnelPlus } from './FunnelPlus.astro'
|
769
|
+
export { default as FunnelX } from './FunnelX.astro'
|
767
770
|
export { default as GalleryHorizontal } from './GalleryHorizontal.astro'
|
768
771
|
export { default as GalleryHorizontalEnd } from './GalleryHorizontalEnd.astro'
|
769
772
|
export { default as GalleryThumbnails } from './GalleryThumbnails.astro'
|
package/dist/index.js
CHANGED
@@ -759,6 +759,9 @@ export { default as Frown } from './Frown.astro'
|
|
759
759
|
export { default as Fuel } from './Fuel.astro'
|
760
760
|
export { default as Fullscreen } from './Fullscreen.astro'
|
761
761
|
export { default as FunctionSquare } from './FunctionSquare.astro'
|
762
|
+
export { default as Funnel } from './Funnel.astro'
|
763
|
+
export { default as FunnelPlus } from './FunnelPlus.astro'
|
764
|
+
export { default as FunnelX } from './FunnelX.astro'
|
762
765
|
export { default as GalleryHorizontal } from './GalleryHorizontal.astro'
|
763
766
|
export { default as GalleryHorizontalEnd } from './GalleryHorizontalEnd.astro'
|
764
767
|
export { default as GalleryThumbnails } from './GalleryThumbnails.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.484.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.484.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|