lucide-astro 0.300.0 → 0.301.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AArrowDown.astro +11 -0
- package/dist/AArrowUp.astro +11 -0
- package/dist/ALargeSmall.astro +11 -0
- package/dist/Gavel.astro +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +2 -2
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M21 14h-5" />
|
8
|
+
<path d="M16 16v-3.5a2.5 2.5 0 0 1 5 0V16" />
|
9
|
+
<path d="M4.5 13h6" />
|
10
|
+
<path d="m3 16 4.5-9 4.5 9" />
|
11
|
+
</Layout>
|
package/dist/Gavel.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="m14
|
7
|
+
<path d="m14.5 12.5-8 8a2.119 2.119 0 1 1-3-3l8-8" />
|
8
8
|
<path d="m16 16 6-6" />
|
9
9
|
<path d="m8 8 6-6" />
|
10
10
|
<path d="m9 7 8 8" />
|
package/dist/index.d.ts
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
export interface Props extends astroHTML.JSX.SVGAttributes {
|
4
4
|
size?: number
|
5
5
|
}
|
6
|
+
export { default as AArrowDown } from './AArrowDown.astro'
|
7
|
+
export { default as AArrowUp } from './AArrowUp.astro'
|
8
|
+
export { default as ALargeSmall } from './ALargeSmall.astro'
|
6
9
|
export { default as Accessibility } from './Accessibility.astro'
|
7
10
|
export { default as ActivitySquare } from './ActivitySquare.astro'
|
8
11
|
export { default as Activity } from './Activity.astro'
|
package/dist/index.js
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
export { default as AArrowDown } from './AArrowDown.astro'
|
2
|
+
export { default as AArrowUp } from './AArrowUp.astro'
|
3
|
+
export { default as ALargeSmall } from './ALargeSmall.astro'
|
1
4
|
export { default as Accessibility } from './Accessibility.astro'
|
2
5
|
export { default as ActivitySquare } from './ActivitySquare.astro'
|
3
6
|
export { default as Activity } from './Activity.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.301.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.301.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|