lucide-astro 0.553.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/Ampersand.astro +1 -1
- package/dist/Anchor.astro +4 -3
- package/dist/Calendars.astro +13 -0
- package/dist/Fingerprint.astro +1 -1
- package/dist/FingerprintPattern.astro +16 -0
- package/dist/FolderGit2.astro +1 -1
- 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 +5 -0
- package/dist/index.js +5 -0
- package/package.json +2 -2
package/dist/Ampersand.astro
CHANGED
|
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="ampersand" {...Astro.props}>
|
|
7
|
-
<path d="M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13" />
|
|
8
7
|
<path d="M16 12h3" />
|
|
8
|
+
<path d="M17.5 12a8 8 0 0 1-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13" />
|
|
9
9
|
</Layout>
|
package/dist/Anchor.astro
CHANGED
|
@@ -4,7 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="anchor" {...Astro.props}>
|
|
7
|
-
<path d="M12
|
|
8
|
-
<path d="
|
|
9
|
-
<
|
|
7
|
+
<path d="M12 6v16" />
|
|
8
|
+
<path d="m19 13 2-1a9 9 0 0 1-18 0l2 1" />
|
|
9
|
+
<path d="M9 11h6" />
|
|
10
|
+
<circle cx="12" cy="4" r="2" />
|
|
10
11
|
</Layout>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="calendars" {...Astro.props}>
|
|
7
|
+
<path d="M12 2v2" />
|
|
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
|
+
<path d="M18 2v2" />
|
|
10
|
+
<path d="M2 13h2" />
|
|
11
|
+
<path d="M8 8h14" />
|
|
12
|
+
<rect x="8" y="3" width="14" height="14" rx="2" />
|
|
13
|
+
</Layout>
|
package/dist/Fingerprint.astro
CHANGED
|
@@ -3,7 +3,7 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="fingerprint" {...Astro.props}>
|
|
6
|
+
<Layout iconName="fingerprint-pattern" {...Astro.props}>
|
|
7
7
|
<path d="M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" />
|
|
8
8
|
<path d="M14 13.12c0 2.38 0 6.38-1 8.88" />
|
|
9
9
|
<path d="M17.29 21.02c.12-.6.43-2.3.5-3.02" />
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="fingerprint-pattern" {...Astro.props}>
|
|
7
|
+
<path d="M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" />
|
|
8
|
+
<path d="M14 13.12c0 2.38 0 6.38-1 8.88" />
|
|
9
|
+
<path d="M17.29 21.02c.12-.6.43-2.3.5-3.02" />
|
|
10
|
+
<path d="M2 12a10 10 0 0 1 18-6" />
|
|
11
|
+
<path d="M2 16h.01" />
|
|
12
|
+
<path d="M21.8 16c.2-2 .131-5.354 0-6" />
|
|
13
|
+
<path d="M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2" />
|
|
14
|
+
<path d="M8.65 22c.21-.66.45-1.32.57-2" />
|
|
15
|
+
<path d="M9 6.8a6 6 0 0 1 9 5.2v2" />
|
|
16
|
+
</Layout>
|
package/dist/FolderGit2.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="folder-git-2" {...Astro.props}>
|
|
7
|
+
<path d="M18 19a5 5 0 0 1-5-5v8" />
|
|
7
8
|
<path d="M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5" />
|
|
8
9
|
<circle cx="13" cy="12" r="2" />
|
|
9
|
-
<path d="M18 19c-2.8 0-5-2.2-5-5v8" />
|
|
10
10
|
<circle cx="20" cy="19" r="2" />
|
|
11
11
|
</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
|
@@ -322,6 +322,7 @@ export { default as CalendarSearch } from './CalendarSearch.astro'
|
|
|
322
322
|
export { default as CalendarSync } from './CalendarSync.astro'
|
|
323
323
|
export { default as CalendarX } from './CalendarX.astro'
|
|
324
324
|
export { default as CalendarX2 } from './CalendarX2.astro'
|
|
325
|
+
export { default as Calendars } from './Calendars.astro'
|
|
325
326
|
export { default as Camera } from './Camera.astro'
|
|
326
327
|
export { default as CameraOff } from './CameraOff.astro'
|
|
327
328
|
export { default as CandlestickChart } from './CandlestickChart.astro'
|
|
@@ -748,6 +749,7 @@ export { default as Film } from './Film.astro'
|
|
|
748
749
|
export { default as Filter } from './Filter.astro'
|
|
749
750
|
export { default as FilterX } from './FilterX.astro'
|
|
750
751
|
export { default as Fingerprint } from './Fingerprint.astro'
|
|
752
|
+
export { default as FingerprintPattern } from './FingerprintPattern.astro'
|
|
751
753
|
export { default as FireExtinguisher } from './FireExtinguisher.astro'
|
|
752
754
|
export { default as Fish } from './Fish.astro'
|
|
753
755
|
export { default as FishOff } from './FishOff.astro'
|
|
@@ -809,6 +811,7 @@ export { default as Footprints } from './Footprints.astro'
|
|
|
809
811
|
export { default as ForkKnife } from './ForkKnife.astro'
|
|
810
812
|
export { default as ForkKnifeCrossed } from './ForkKnifeCrossed.astro'
|
|
811
813
|
export { default as Forklift } from './Forklift.astro'
|
|
814
|
+
export { default as Form } from './Form.astro'
|
|
812
815
|
export { default as FormInput } from './FormInput.astro'
|
|
813
816
|
export { default as Forward } from './Forward.astro'
|
|
814
817
|
export { default as Frame } from './Frame.astro'
|
|
@@ -1857,6 +1860,8 @@ export { default as Warehouse } from './Warehouse.astro'
|
|
|
1857
1860
|
export { default as WashingMachine } from './WashingMachine.astro'
|
|
1858
1861
|
export { default as Watch } from './Watch.astro'
|
|
1859
1862
|
export { default as Waves } from './Waves.astro'
|
|
1863
|
+
export { default as WavesArrowDown } from './WavesArrowDown.astro'
|
|
1864
|
+
export { default as WavesArrowUp } from './WavesArrowUp.astro'
|
|
1860
1865
|
export { default as WavesLadder } from './WavesLadder.astro'
|
|
1861
1866
|
export { default as Waypoints } from './Waypoints.astro'
|
|
1862
1867
|
export { default as Webcam } from './Webcam.astro'
|
package/dist/index.js
CHANGED
|
@@ -317,6 +317,7 @@ export { default as CalendarSearch } from './CalendarSearch.astro'
|
|
|
317
317
|
export { default as CalendarSync } from './CalendarSync.astro'
|
|
318
318
|
export { default as CalendarX } from './CalendarX.astro'
|
|
319
319
|
export { default as CalendarX2 } from './CalendarX2.astro'
|
|
320
|
+
export { default as Calendars } from './Calendars.astro'
|
|
320
321
|
export { default as Camera } from './Camera.astro'
|
|
321
322
|
export { default as CameraOff } from './CameraOff.astro'
|
|
322
323
|
export { default as CandlestickChart } from './CandlestickChart.astro'
|
|
@@ -743,6 +744,7 @@ export { default as Film } from './Film.astro'
|
|
|
743
744
|
export { default as Filter } from './Filter.astro'
|
|
744
745
|
export { default as FilterX } from './FilterX.astro'
|
|
745
746
|
export { default as Fingerprint } from './Fingerprint.astro'
|
|
747
|
+
export { default as FingerprintPattern } from './FingerprintPattern.astro'
|
|
746
748
|
export { default as FireExtinguisher } from './FireExtinguisher.astro'
|
|
747
749
|
export { default as Fish } from './Fish.astro'
|
|
748
750
|
export { default as FishOff } from './FishOff.astro'
|
|
@@ -804,6 +806,7 @@ export { default as Footprints } from './Footprints.astro'
|
|
|
804
806
|
export { default as ForkKnife } from './ForkKnife.astro'
|
|
805
807
|
export { default as ForkKnifeCrossed } from './ForkKnifeCrossed.astro'
|
|
806
808
|
export { default as Forklift } from './Forklift.astro'
|
|
809
|
+
export { default as Form } from './Form.astro'
|
|
807
810
|
export { default as FormInput } from './FormInput.astro'
|
|
808
811
|
export { default as Forward } from './Forward.astro'
|
|
809
812
|
export { default as Frame } from './Frame.astro'
|
|
@@ -1852,6 +1855,8 @@ export { default as Warehouse } from './Warehouse.astro'
|
|
|
1852
1855
|
export { default as WashingMachine } from './WashingMachine.astro'
|
|
1853
1856
|
export { default as Watch } from './Watch.astro'
|
|
1854
1857
|
export { default as Waves } from './Waves.astro'
|
|
1858
|
+
export { default as WavesArrowDown } from './WavesArrowDown.astro'
|
|
1859
|
+
export { default as WavesArrowUp } from './WavesArrowUp.astro'
|
|
1855
1860
|
export { default as WavesLadder } from './WavesLadder.astro'
|
|
1856
1861
|
export { default as Waypoints } from './Waypoints.astro'
|
|
1857
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": {
|