lucide-astro 0.452.0 → 0.453.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/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/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.453.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.453.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|