lucide-astro 0.544.0 → 0.545.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/Building2.astro +5 -7
- package/dist/Combine.astro +6 -6
- package/dist/Flame.astro +1 -1
- package/dist/MSquare.astro +2 -2
- package/dist/Motorbike.astro +12 -0
- package/dist/Replace.astro +6 -6
- package/dist/ReplaceAll.astro +8 -8
- package/dist/SquareM.astro +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/Building2.astro
CHANGED
|
@@ -4,11 +4,9 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="building-2" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
9
|
-
<path d="
|
|
10
|
-
<path d="
|
|
11
|
-
<path d="
|
|
12
|
-
<path d="M10 14h4" />
|
|
13
|
-
<path d="M10 18h4" />
|
|
7
|
+
<path d="M10 12h4" />
|
|
8
|
+
<path d="M10 8h4" />
|
|
9
|
+
<path d="M14 21v-3a2 2 0 0 0-4 0v3" />
|
|
10
|
+
<path d="M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2" />
|
|
11
|
+
<path d="M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16" />
|
|
14
12
|
</Layout>
|
package/dist/Combine.astro
CHANGED
|
@@ -4,10 +4,10 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="combine" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
9
|
-
<path d="
|
|
10
|
-
<path d="m7 21 3-
|
|
11
|
-
<rect x="14" y="14" width="
|
|
12
|
-
<rect x="
|
|
7
|
+
<path d="M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1" />
|
|
8
|
+
<path d="M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1" />
|
|
9
|
+
<path d="m7 15 3 3" />
|
|
10
|
+
<path d="m7 21 3-3H5a2 2 0 0 1-2-2v-2" />
|
|
11
|
+
<rect x="14" y="14" width="7" height="7" rx="1" />
|
|
12
|
+
<rect x="3" y="3" width="7" height="7" rx="1" />
|
|
13
13
|
</Layout>
|
package/dist/Flame.astro
CHANGED
|
@@ -4,5 +4,5 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="flame" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
7
|
+
<path d="M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4" />
|
|
8
8
|
</Layout>
|
package/dist/MSquare.astro
CHANGED
|
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="square-m" {...Astro.props}>
|
|
7
|
-
<
|
|
8
|
-
<
|
|
7
|
+
<path d="M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16" />
|
|
8
|
+
<rect x="3" y="3" width="18" height="18" rx="2" />
|
|
9
9
|
</Layout>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="motorbike" {...Astro.props}>
|
|
7
|
+
<path d="m18 14-1-3" />
|
|
8
|
+
<path d="m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81" />
|
|
9
|
+
<path d="M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5" />
|
|
10
|
+
<circle cx="19" cy="17" r="3" />
|
|
11
|
+
<circle cx="5" cy="17" r="3" />
|
|
12
|
+
</Layout>
|
package/dist/Replace.astro
CHANGED
|
@@ -4,11 +4,11 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="replace" {...Astro.props}>
|
|
7
|
-
<path d="M14
|
|
8
|
-
<path d="
|
|
9
|
-
<path d="
|
|
10
|
-
<path d="
|
|
7
|
+
<path d="M14 4a1 1 0 0 1 1-1" />
|
|
8
|
+
<path d="M15 10a1 1 0 0 1-1-1" />
|
|
9
|
+
<path d="M21 4a1 1 0 0 0-1-1" />
|
|
10
|
+
<path d="M21 9a1 1 0 0 1-1 1" />
|
|
11
11
|
<path d="m3 7 3 3 3-3" />
|
|
12
|
-
<path d="M6
|
|
13
|
-
<rect x="
|
|
12
|
+
<path d="M6 10V5a2 2 0 0 1 2-2h2" />
|
|
13
|
+
<rect x="3" y="14" width="7" height="7" rx="1" />
|
|
14
14
|
</Layout>
|
package/dist/ReplaceAll.astro
CHANGED
|
@@ -4,13 +4,13 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="replace-all" {...Astro.props}>
|
|
7
|
-
<path d="M14
|
|
8
|
-
<path d="M14
|
|
9
|
-
<path d="
|
|
10
|
-
<path d="
|
|
11
|
-
<path d="
|
|
12
|
-
<path d="
|
|
7
|
+
<path d="M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1" />
|
|
8
|
+
<path d="M14 4a1 1 0 0 1 1-1" />
|
|
9
|
+
<path d="M15 10a1 1 0 0 1-1-1" />
|
|
10
|
+
<path d="M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1" />
|
|
11
|
+
<path d="M21 4a1 1 0 0 0-1-1" />
|
|
12
|
+
<path d="M21 9a1 1 0 0 1-1 1" />
|
|
13
13
|
<path d="m3 7 3 3 3-3" />
|
|
14
|
-
<path d="M6
|
|
15
|
-
<rect x="
|
|
14
|
+
<path d="M6 10V5a2 2 0 0 1 2-2h2" />
|
|
15
|
+
<rect x="3" y="14" width="7" height="7" rx="1" />
|
|
16
16
|
</Layout>
|
package/dist/SquareM.astro
CHANGED
|
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="square-m" {...Astro.props}>
|
|
7
|
-
<
|
|
8
|
-
<
|
|
7
|
+
<path d="M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16" />
|
|
8
|
+
<rect x="3" y="3" width="18" height="18" rx="2" />
|
|
9
9
|
</Layout>
|
package/dist/index.d.ts
CHANGED
|
@@ -1142,6 +1142,7 @@ export { default as Moon } from './Moon.astro'
|
|
|
1142
1142
|
export { default as MoonStar } from './MoonStar.astro'
|
|
1143
1143
|
export { default as MoreHorizontal } from './MoreHorizontal.astro'
|
|
1144
1144
|
export { default as MoreVertical } from './MoreVertical.astro'
|
|
1145
|
+
export { default as Motorbike } from './Motorbike.astro'
|
|
1145
1146
|
export { default as Mountain } from './Mountain.astro'
|
|
1146
1147
|
export { default as MountainSnow } from './MountainSnow.astro'
|
|
1147
1148
|
export { default as Mouse } from './Mouse.astro'
|
package/dist/index.js
CHANGED
|
@@ -1137,6 +1137,7 @@ export { default as Moon } from './Moon.astro'
|
|
|
1137
1137
|
export { default as MoonStar } from './MoonStar.astro'
|
|
1138
1138
|
export { default as MoreHorizontal } from './MoreHorizontal.astro'
|
|
1139
1139
|
export { default as MoreVertical } from './MoreVertical.astro'
|
|
1140
|
+
export { default as Motorbike } from './Motorbike.astro'
|
|
1140
1141
|
export { default as Mountain } from './Mountain.astro'
|
|
1141
1142
|
export { default as MountainSnow } from './MountainSnow.astro'
|
|
1142
1143
|
export { default as Mouse } from './Mouse.astro'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lucide-astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.545.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.545.0",
|
|
38
38
|
"semver": "^7.5.4"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|