lucide-astro 0.544.0 → 0.546.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/MonitorCloud.astro +11 -0
- package/dist/Motorbike.astro +12 -0
- package/dist/ReceiptText.astro +2 -2
- package/dist/Replace.astro +6 -6
- package/dist/ReplaceAll.astro +8 -8
- package/dist/SquareM.astro +2 -2
- package/dist/Sword.astro +4 -4
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -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,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="monitor-cloud" {...Astro.props}>
|
|
7
|
+
<path d="M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z" />
|
|
8
|
+
<path d="M12 17v4" />
|
|
9
|
+
<path d="M8 21h8" />
|
|
10
|
+
<rect x="2" y="3" width="20" height="14" rx="2" />
|
|
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 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/ReceiptText.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="receipt-text" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
7
|
+
<path d="M13 16H8" />
|
|
8
8
|
<path d="M14 8H8" />
|
|
9
9
|
<path d="M16 12H8" />
|
|
10
|
-
<path d="
|
|
10
|
+
<path d="M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z" />
|
|
11
11
|
</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/Sword.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="sword" {...Astro.props}>
|
|
7
|
-
<
|
|
8
|
-
<
|
|
9
|
-
<
|
|
10
|
-
<
|
|
7
|
+
<path d="m11 19-6-6" />
|
|
8
|
+
<path d="m5 21-2-2" />
|
|
9
|
+
<path d="m8 16-4 4" />
|
|
10
|
+
<path d="M9.5 17.5 21 6V3h-3L6.5 14.5" />
|
|
11
11
|
</Layout>
|
package/dist/index.d.ts
CHANGED
|
@@ -1127,6 +1127,7 @@ export { default as MinusCircle } from './MinusCircle.astro'
|
|
|
1127
1127
|
export { default as MinusSquare } from './MinusSquare.astro'
|
|
1128
1128
|
export { default as Monitor } from './Monitor.astro'
|
|
1129
1129
|
export { default as MonitorCheck } from './MonitorCheck.astro'
|
|
1130
|
+
export { default as MonitorCloud } from './MonitorCloud.astro'
|
|
1130
1131
|
export { default as MonitorCog } from './MonitorCog.astro'
|
|
1131
1132
|
export { default as MonitorDot } from './MonitorDot.astro'
|
|
1132
1133
|
export { default as MonitorDown } from './MonitorDown.astro'
|
|
@@ -1142,6 +1143,7 @@ export { default as Moon } from './Moon.astro'
|
|
|
1142
1143
|
export { default as MoonStar } from './MoonStar.astro'
|
|
1143
1144
|
export { default as MoreHorizontal } from './MoreHorizontal.astro'
|
|
1144
1145
|
export { default as MoreVertical } from './MoreVertical.astro'
|
|
1146
|
+
export { default as Motorbike } from './Motorbike.astro'
|
|
1145
1147
|
export { default as Mountain } from './Mountain.astro'
|
|
1146
1148
|
export { default as MountainSnow } from './MountainSnow.astro'
|
|
1147
1149
|
export { default as Mouse } from './Mouse.astro'
|
package/dist/index.js
CHANGED
|
@@ -1122,6 +1122,7 @@ export { default as MinusCircle } from './MinusCircle.astro'
|
|
|
1122
1122
|
export { default as MinusSquare } from './MinusSquare.astro'
|
|
1123
1123
|
export { default as Monitor } from './Monitor.astro'
|
|
1124
1124
|
export { default as MonitorCheck } from './MonitorCheck.astro'
|
|
1125
|
+
export { default as MonitorCloud } from './MonitorCloud.astro'
|
|
1125
1126
|
export { default as MonitorCog } from './MonitorCog.astro'
|
|
1126
1127
|
export { default as MonitorDot } from './MonitorDot.astro'
|
|
1127
1128
|
export { default as MonitorDown } from './MonitorDown.astro'
|
|
@@ -1137,6 +1138,7 @@ export { default as Moon } from './Moon.astro'
|
|
|
1137
1138
|
export { default as MoonStar } from './MoonStar.astro'
|
|
1138
1139
|
export { default as MoreHorizontal } from './MoreHorizontal.astro'
|
|
1139
1140
|
export { default as MoreVertical } from './MoreVertical.astro'
|
|
1141
|
+
export { default as Motorbike } from './Motorbike.astro'
|
|
1140
1142
|
export { default as Mountain } from './Mountain.astro'
|
|
1141
1143
|
export { default as MountainSnow } from './MountainSnow.astro'
|
|
1142
1144
|
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.546.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.546.0",
|
|
38
38
|
"semver": "^7.5.4"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|