lucide-astro 0.446.0 → 0.447.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/BoxSelect.astro +1 -1
- package/dist/SquareDashed.astro +19 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/BoxSelect.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="
|
6
|
+
<Layout iconName="square-dashed" {...Astro.props}>
|
7
7
|
<path d="M5 3a2 2 0 0 0-2 2" />
|
8
8
|
<path d="M19 3a2 2 0 0 1 2 2" />
|
9
9
|
<path d="M21 19a2 2 0 0 1-2 2" />
|
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="square-dashed" {...Astro.props}>
|
7
|
+
<path d="M5 3a2 2 0 0 0-2 2" />
|
8
|
+
<path d="M19 3a2 2 0 0 1 2 2" />
|
9
|
+
<path d="M21 19a2 2 0 0 1-2 2" />
|
10
|
+
<path d="M5 21a2 2 0 0 1-2-2" />
|
11
|
+
<path d="M9 3h1" />
|
12
|
+
<path d="M9 21h1" />
|
13
|
+
<path d="M14 3h1" />
|
14
|
+
<path d="M14 21h1" />
|
15
|
+
<path d="M3 9v1" />
|
16
|
+
<path d="M21 9v1" />
|
17
|
+
<path d="M3 14v1" />
|
18
|
+
<path d="M21 14v1" />
|
19
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -1459,6 +1459,7 @@ export { default as SquareChevronLeft } from './SquareChevronLeft.astro'
|
|
1459
1459
|
export { default as SquareChevronRight } from './SquareChevronRight.astro'
|
1460
1460
|
export { default as SquareChevronUp } from './SquareChevronUp.astro'
|
1461
1461
|
export { default as SquareCode } from './SquareCode.astro'
|
1462
|
+
export { default as SquareDashed } from './SquareDashed.astro'
|
1462
1463
|
export { default as SquareDashedBottom } from './SquareDashedBottom.astro'
|
1463
1464
|
export { default as SquareDashedBottomCode } from './SquareDashedBottomCode.astro'
|
1464
1465
|
export { default as SquareDashedKanban } from './SquareDashedKanban.astro'
|
package/dist/index.js
CHANGED
@@ -1454,6 +1454,7 @@ export { default as SquareChevronLeft } from './SquareChevronLeft.astro'
|
|
1454
1454
|
export { default as SquareChevronRight } from './SquareChevronRight.astro'
|
1455
1455
|
export { default as SquareChevronUp } from './SquareChevronUp.astro'
|
1456
1456
|
export { default as SquareCode } from './SquareCode.astro'
|
1457
|
+
export { default as SquareDashed } from './SquareDashed.astro'
|
1457
1458
|
export { default as SquareDashedBottom } from './SquareDashedBottom.astro'
|
1458
1459
|
export { default as SquareDashedBottomCode } from './SquareDashedBottomCode.astro'
|
1459
1460
|
export { default as SquareDashedKanban } from './SquareDashedKanban.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.447.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.447.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|