lucide-astro 0.452.0 → 0.454.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Calendar1.astro +12 -0
- package/dist/Pizza.astro +5 -5
- package/dist/Star.astro +1 -1
- package/dist/StarHalf.astro +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -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 iconName="calendar-1" {...Astro.props}>
|
7
|
+
<path d="M11 14h1v4" />
|
8
|
+
<path d="M16 2v4" />
|
9
|
+
<path d="M3 10h18" />
|
10
|
+
<path d="M8 2v4" />
|
11
|
+
<rect x="3" y="4" width="18" height="18" rx="2" />
|
12
|
+
</Layout>
|
package/dist/Pizza.astro
CHANGED
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="pizza" {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<path d="
|
7
|
+
<path d="m12 14-1 1" />
|
8
|
+
<path d="m13.75 18.25-1.25 1.42" />
|
9
|
+
<path d="M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12" />
|
10
|
+
<path d="M18.8 9.3a1 1 0 0 0 2.1 7.7" />
|
11
|
+
<path d="M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z" />
|
12
12
|
</Layout>
|
package/dist/Star.astro
CHANGED
@@ -4,5 +4,5 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="star" {...Astro.props}>
|
7
|
-
<
|
7
|
+
<path d="M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z" />
|
8
8
|
</Layout>
|
package/dist/StarHalf.astro
CHANGED
@@ -4,5 +4,5 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="star-half" {...Astro.props}>
|
7
|
-
<path d="M12
|
7
|
+
<path d="M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2" />
|
8
8
|
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -287,6 +287,7 @@ export { default as Cake } from './Cake.astro'
|
|
287
287
|
export { default as CakeSlice } from './CakeSlice.astro'
|
288
288
|
export { default as Calculator } from './Calculator.astro'
|
289
289
|
export { default as Calendar } from './Calendar.astro'
|
290
|
+
export { default as Calendar1 } from './Calendar1.astro'
|
290
291
|
export { default as CalendarArrowDown } from './CalendarArrowDown.astro'
|
291
292
|
export { default as CalendarArrowUp } from './CalendarArrowUp.astro'
|
292
293
|
export { default as CalendarCheck } from './CalendarCheck.astro'
|
package/dist/index.js
CHANGED
@@ -282,6 +282,7 @@ export { default as Cake } from './Cake.astro'
|
|
282
282
|
export { default as CakeSlice } from './CakeSlice.astro'
|
283
283
|
export { default as Calculator } from './Calculator.astro'
|
284
284
|
export { default as Calendar } from './Calendar.astro'
|
285
|
+
export { default as Calendar1 } from './Calendar1.astro'
|
285
286
|
export { default as CalendarArrowDown } from './CalendarArrowDown.astro'
|
286
287
|
export { default as CalendarArrowUp } from './CalendarArrowUp.astro'
|
287
288
|
export { default as CalendarCheck } from './CalendarCheck.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.454.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.454.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|