lucide-astro 0.334.0 → 0.335.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/.Layout.astro +1 -1
- package/dist/Hop.astro +8 -8
- package/dist/HopOff.astro +9 -8
- package/package.json +2 -2
package/dist/.Layout.astro
CHANGED
@@ -8,7 +8,7 @@ delete Astro.props.size
|
|
8
8
|
// allow the user's props to redefine our defaults
|
9
9
|
const props = Object.assign({
|
10
10
|
'xmlns': 'http://www.w3.org/2000/svg',
|
11
|
-
'stroke-width': 2
|
11
|
+
'stroke-width': 2,
|
12
12
|
'width': size ?? 24,
|
13
13
|
'height': size ?? 24,
|
14
14
|
'stroke': 'currentColor',
|
package/dist/Hop.astro
CHANGED
@@ -4,12 +4,12 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<path d="
|
12
|
-
<path d="
|
13
|
-
<path d="M4.
|
14
|
-
<path d="
|
7
|
+
<path d="M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18" />
|
8
|
+
<path d="M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88" />
|
9
|
+
<path d="M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36" />
|
10
|
+
<path d="M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87" />
|
11
|
+
<path d="M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08" />
|
12
|
+
<path d="M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57" />
|
13
|
+
<path d="M4.93 4.93 3 3a.7.7 0 0 1 0-1" />
|
14
|
+
<path d="M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15" />
|
15
15
|
</Layout>
|
package/dist/HopOff.astro
CHANGED
@@ -4,12 +4,13 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<path d="
|
12
|
-
<path d="
|
13
|
-
<path d="
|
14
|
-
<
|
7
|
+
<path d="M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27" />
|
8
|
+
<path d="M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28" />
|
9
|
+
<path d="M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26" />
|
10
|
+
<path d="M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25" />
|
11
|
+
<path d="M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75" />
|
12
|
+
<path d="M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24" />
|
13
|
+
<path d="M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28" />
|
14
|
+
<path d="M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05" />
|
15
|
+
<path d="m2 2 20 20" />
|
15
16
|
</Layout>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.335.1",
|
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.335.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|