lucide-astro 0.319.0 → 0.321.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/ClipboardMinus.astro +10 -0
- package/dist/ClipboardPlus.astro +11 -0
- package/dist/Handshake.astro +12 -0
- package/dist/ShieldMinus.astro +1 -1
- package/dist/ShieldPlus.astro +2 -2
- package/dist/Truck.astro +3 -3
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +2 -2
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<rect width="8" height="4" x="8" y="2" rx="1" ry="1" />
|
8
|
+
<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
|
9
|
+
<path d="M9 14h6" />
|
10
|
+
</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="8" height="4" x="8" y="2" rx="1" ry="1" />
|
8
|
+
<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" />
|
9
|
+
<path d="M9 14h6" />
|
10
|
+
<path d="M12 17v-6" />
|
11
|
+
</Layout>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="m11 17 2 2a1 1 0 1 0 3-3" />
|
8
|
+
<path d="m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4" />
|
9
|
+
<path d="m21 3 1 11h-2" />
|
10
|
+
<path d="M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3" />
|
11
|
+
<path d="M3 4h8" />
|
12
|
+
</Layout>
|
package/dist/ShieldMinus.astro
CHANGED
package/dist/ShieldPlus.astro
CHANGED
package/dist/Truck.astro
CHANGED
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="M14 9h4l4 4v4c0 .6-.4 1-1 1h-2" />
|
9
|
-
<circle cx="7" cy="18" r="2" />
|
7
|
+
<path d="M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2" />
|
10
8
|
<path d="M15 18H9" />
|
9
|
+
<path d="M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14" />
|
11
10
|
<circle cx="17" cy="18" r="2" />
|
11
|
+
<circle cx="7" cy="18" r="2" />
|
12
12
|
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -366,9 +366,11 @@ export { default as ClipboardCheck } from './ClipboardCheck.astro'
|
|
366
366
|
export { default as ClipboardCopy } from './ClipboardCopy.astro'
|
367
367
|
export { default as ClipboardEdit } from './ClipboardEdit.astro'
|
368
368
|
export { default as ClipboardList } from './ClipboardList.astro'
|
369
|
+
export { default as ClipboardMinus } from './ClipboardMinus.astro'
|
369
370
|
export { default as ClipboardPaste } from './ClipboardPaste.astro'
|
370
371
|
export { default as ClipboardPen } from './ClipboardPen.astro'
|
371
372
|
export { default as ClipboardPenLine } from './ClipboardPenLine.astro'
|
373
|
+
export { default as ClipboardPlus } from './ClipboardPlus.astro'
|
372
374
|
export { default as ClipboardSignature } from './ClipboardSignature.astro'
|
373
375
|
export { default as ClipboardType } from './ClipboardType.astro'
|
374
376
|
export { default as ClipboardX } from './ClipboardX.astro'
|
@@ -717,6 +719,7 @@ export { default as HandHeart } from './HandHeart.astro'
|
|
717
719
|
export { default as HandHelping } from './HandHelping.astro'
|
718
720
|
export { default as HandMetal } from './HandMetal.astro'
|
719
721
|
export { default as HandPlatter } from './HandPlatter.astro'
|
722
|
+
export { default as Handshake } from './Handshake.astro'
|
720
723
|
export { default as HardDrive } from './HardDrive.astro'
|
721
724
|
export { default as HardDriveDownload } from './HardDriveDownload.astro'
|
722
725
|
export { default as HardDriveUpload } from './HardDriveUpload.astro'
|
package/dist/index.js
CHANGED
@@ -361,9 +361,11 @@ export { default as ClipboardCheck } from './ClipboardCheck.astro'
|
|
361
361
|
export { default as ClipboardCopy } from './ClipboardCopy.astro'
|
362
362
|
export { default as ClipboardEdit } from './ClipboardEdit.astro'
|
363
363
|
export { default as ClipboardList } from './ClipboardList.astro'
|
364
|
+
export { default as ClipboardMinus } from './ClipboardMinus.astro'
|
364
365
|
export { default as ClipboardPaste } from './ClipboardPaste.astro'
|
365
366
|
export { default as ClipboardPen } from './ClipboardPen.astro'
|
366
367
|
export { default as ClipboardPenLine } from './ClipboardPenLine.astro'
|
368
|
+
export { default as ClipboardPlus } from './ClipboardPlus.astro'
|
367
369
|
export { default as ClipboardSignature } from './ClipboardSignature.astro'
|
368
370
|
export { default as ClipboardType } from './ClipboardType.astro'
|
369
371
|
export { default as ClipboardX } from './ClipboardX.astro'
|
@@ -712,6 +714,7 @@ export { default as HandHeart } from './HandHeart.astro'
|
|
712
714
|
export { default as HandHelping } from './HandHelping.astro'
|
713
715
|
export { default as HandMetal } from './HandMetal.astro'
|
714
716
|
export { default as HandPlatter } from './HandPlatter.astro'
|
717
|
+
export { default as Handshake } from './Handshake.astro'
|
715
718
|
export { default as HardDrive } from './HardDrive.astro'
|
716
719
|
export { default as HardDriveDownload } from './HardDriveDownload.astro'
|
717
720
|
export { default as HardDriveUpload } from './HardDriveUpload.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.321.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.321.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|