lucide-astro 0.319.0 → 0.320.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/Truck.astro +3 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -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>
|
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'
|
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'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.320.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.320.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|