lucide-astro 0.554.0 → 0.555.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Calendars.astro +1 -0
- package/dist/Form.astro +11 -0
- package/dist/Scale.astro +4 -4
- package/dist/WavesArrowDown.astro +11 -0
- package/dist/WavesArrowUp.astro +11 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +2 -2
package/dist/Calendars.astro
CHANGED
|
@@ -7,6 +7,7 @@ export type { Props } from './index.d.ts'
|
|
|
7
7
|
<path d="M12 2v2" />
|
|
8
8
|
<path d="M15.726 21.01A2 2 0 0 1 14 22H4a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2" />
|
|
9
9
|
<path d="M18 2v2" />
|
|
10
|
+
<path d="M2 13h2" />
|
|
10
11
|
<path d="M8 8h14" />
|
|
11
12
|
<rect x="8" y="3" width="14" height="14" rx="2" />
|
|
12
13
|
</Layout>
|
package/dist/Form.astro
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="form" {...Astro.props}>
|
|
7
|
+
<path d="M4 14h6" />
|
|
8
|
+
<path d="M4 2h10" />
|
|
9
|
+
<rect x="4" y="18" width="16" height="4" rx="1" />
|
|
10
|
+
<rect x="4" y="6" width="16" height="4" rx="1" />
|
|
11
|
+
</Layout>
|
package/dist/Scale.astro
CHANGED
|
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="scale" {...Astro.props}>
|
|
7
|
-
<path d="m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z" />
|
|
8
|
-
<path d="m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z" />
|
|
9
|
-
<path d="M7 21h10" />
|
|
10
7
|
<path d="M12 3v18" />
|
|
11
|
-
<path d="
|
|
8
|
+
<path d="m19 8 3 8a5 5 0 0 1-6 0zV7" />
|
|
9
|
+
<path d="M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1" />
|
|
10
|
+
<path d="m5 8 3 8a5 5 0 0 1-6 0zV7" />
|
|
11
|
+
<path d="M7 21h10" />
|
|
12
12
|
</Layout>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="waves-arrow-down" {...Astro.props}>
|
|
7
|
+
<path d="M12 10L12 2" />
|
|
8
|
+
<path d="M16 6L12 10L8 6" />
|
|
9
|
+
<path d="M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15" />
|
|
10
|
+
<path d="M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21" />
|
|
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 iconName="waves-arrow-up" {...Astro.props}>
|
|
7
|
+
<path d="M12 2v8" />
|
|
8
|
+
<path d="M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" />
|
|
9
|
+
<path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1" />
|
|
10
|
+
<path d="m8 6 4-4 4 4" />
|
|
11
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
|
@@ -811,6 +811,7 @@ export { default as Footprints } from './Footprints.astro'
|
|
|
811
811
|
export { default as ForkKnife } from './ForkKnife.astro'
|
|
812
812
|
export { default as ForkKnifeCrossed } from './ForkKnifeCrossed.astro'
|
|
813
813
|
export { default as Forklift } from './Forklift.astro'
|
|
814
|
+
export { default as Form } from './Form.astro'
|
|
814
815
|
export { default as FormInput } from './FormInput.astro'
|
|
815
816
|
export { default as Forward } from './Forward.astro'
|
|
816
817
|
export { default as Frame } from './Frame.astro'
|
|
@@ -1859,6 +1860,8 @@ export { default as Warehouse } from './Warehouse.astro'
|
|
|
1859
1860
|
export { default as WashingMachine } from './WashingMachine.astro'
|
|
1860
1861
|
export { default as Watch } from './Watch.astro'
|
|
1861
1862
|
export { default as Waves } from './Waves.astro'
|
|
1863
|
+
export { default as WavesArrowDown } from './WavesArrowDown.astro'
|
|
1864
|
+
export { default as WavesArrowUp } from './WavesArrowUp.astro'
|
|
1862
1865
|
export { default as WavesLadder } from './WavesLadder.astro'
|
|
1863
1866
|
export { default as Waypoints } from './Waypoints.astro'
|
|
1864
1867
|
export { default as Webcam } from './Webcam.astro'
|
package/dist/index.js
CHANGED
|
@@ -806,6 +806,7 @@ export { default as Footprints } from './Footprints.astro'
|
|
|
806
806
|
export { default as ForkKnife } from './ForkKnife.astro'
|
|
807
807
|
export { default as ForkKnifeCrossed } from './ForkKnifeCrossed.astro'
|
|
808
808
|
export { default as Forklift } from './Forklift.astro'
|
|
809
|
+
export { default as Form } from './Form.astro'
|
|
809
810
|
export { default as FormInput } from './FormInput.astro'
|
|
810
811
|
export { default as Forward } from './Forward.astro'
|
|
811
812
|
export { default as Frame } from './Frame.astro'
|
|
@@ -1854,6 +1855,8 @@ export { default as Warehouse } from './Warehouse.astro'
|
|
|
1854
1855
|
export { default as WashingMachine } from './WashingMachine.astro'
|
|
1855
1856
|
export { default as Watch } from './Watch.astro'
|
|
1856
1857
|
export { default as Waves } from './Waves.astro'
|
|
1858
|
+
export { default as WavesArrowDown } from './WavesArrowDown.astro'
|
|
1859
|
+
export { default as WavesArrowUp } from './WavesArrowUp.astro'
|
|
1857
1860
|
export { default as WavesLadder } from './WavesLadder.astro'
|
|
1858
1861
|
export { default as Waypoints } from './Waypoints.astro'
|
|
1859
1862
|
export { default as Webcam } from './Webcam.astro'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lucide-astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.555.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",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"author": "Aviortheking",
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"lucide-static": "0.
|
|
37
|
+
"lucide-static": "0.555.0",
|
|
38
38
|
"semver": "^7.5.4"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|