lucide-astro 0.273.0 → 0.274.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/PercentCircle.astro +11 -0
- package/dist/PercentDiamond.astro +11 -0
- package/dist/PercentSquare.astro +11 -0
- 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="M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z" />
|
8
|
+
<path d="M9.2 9.2h.01" />
|
9
|
+
<path d="m14.5 9.5-5 5" />
|
10
|
+
<path d="M14.7 14.8h.01" />
|
11
|
+
</Layout>
|
@@ -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
|
+
<rect width="18" height="18" x="3" y="3" rx="2" />
|
8
|
+
<path d="m15 9-6 6" />
|
9
|
+
<path d="M9 9h.01" />
|
10
|
+
<path d="M15 15h.01" />
|
11
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -874,6 +874,9 @@ export { default as Pen } from './Pen.astro'
|
|
874
874
|
export { default as PencilLine } from './PencilLine.astro'
|
875
875
|
export { default as PencilRuler } from './PencilRuler.astro'
|
876
876
|
export { default as Pencil } from './Pencil.astro'
|
877
|
+
export { default as PercentCircle } from './PercentCircle.astro'
|
878
|
+
export { default as PercentDiamond } from './PercentDiamond.astro'
|
879
|
+
export { default as PercentSquare } from './PercentSquare.astro'
|
877
880
|
export { default as Percent } from './Percent.astro'
|
878
881
|
export { default as PersonStanding } from './PersonStanding.astro'
|
879
882
|
export { default as PhoneCall } from './PhoneCall.astro'
|
package/dist/index.js
CHANGED
@@ -867,6 +867,9 @@ export { default as Pen } from './Pen.astro'
|
|
867
867
|
export { default as PencilLine } from './PencilLine.astro'
|
868
868
|
export { default as PencilRuler } from './PencilRuler.astro'
|
869
869
|
export { default as Pencil } from './Pencil.astro'
|
870
|
+
export { default as PercentCircle } from './PercentCircle.astro'
|
871
|
+
export { default as PercentDiamond } from './PercentDiamond.astro'
|
872
|
+
export { default as PercentSquare } from './PercentSquare.astro'
|
870
873
|
export { default as Percent } from './Percent.astro'
|
871
874
|
export { default as PersonStanding } from './PersonStanding.astro'
|
872
875
|
export { default as PhoneCall } from './PhoneCall.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.274.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.274.0"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
32
|
"astro": "^2.7.1 || ^3.0.0"
|