lucide-astro 0.303.0 → 0.304.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Bolt.astro +9 -0
- package/dist/Drill.astro +14 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
package/dist/Bolt.astro
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z" />
|
8
|
+
<circle cx="12" cy="12" r="4" />
|
9
|
+
</Layout>
|
package/dist/Drill.astro
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M14 9c0 .6-.4 1-1 1H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9c.6 0 1 .4 1 1Z" />
|
8
|
+
<path d="M18 6h4" />
|
9
|
+
<path d="M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3" />
|
10
|
+
<path d="m5 10-2 8" />
|
11
|
+
<path d="M12 10v3c0 .6-.4 1-1 1H8" />
|
12
|
+
<path d="m7 18 2-8" />
|
13
|
+
<path d="M5 22c-1.7 0-3-1.3-3-3 0-.6.4-1 1-1h7c.6 0 1 .4 1 1v2c0 .6-.4 1-1 1Z" />
|
14
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -195,6 +195,7 @@ export { default as BluetoothOff } from './BluetoothOff.astro'
|
|
195
195
|
export { default as BluetoothSearching } from './BluetoothSearching.astro'
|
196
196
|
export { default as Bluetooth } from './Bluetooth.astro'
|
197
197
|
export { default as Bold } from './Bold.astro'
|
198
|
+
export { default as Bolt } from './Bolt.astro'
|
198
199
|
export { default as Bomb } from './Bomb.astro'
|
199
200
|
export { default as Bone } from './Bone.astro'
|
200
201
|
export { default as BookA } from './BookA.astro'
|
@@ -459,6 +460,7 @@ export { default as Download } from './Download.astro'
|
|
459
460
|
export { default as DraftingCompass } from './DraftingCompass.astro'
|
460
461
|
export { default as Drama } from './Drama.astro'
|
461
462
|
export { default as Dribbble } from './Dribbble.astro'
|
463
|
+
export { default as Drill } from './Drill.astro'
|
462
464
|
export { default as Droplet } from './Droplet.astro'
|
463
465
|
export { default as Droplets } from './Droplets.astro'
|
464
466
|
export { default as Drum } from './Drum.astro'
|
package/dist/index.js
CHANGED
@@ -190,6 +190,7 @@ export { default as BluetoothOff } from './BluetoothOff.astro'
|
|
190
190
|
export { default as BluetoothSearching } from './BluetoothSearching.astro'
|
191
191
|
export { default as Bluetooth } from './Bluetooth.astro'
|
192
192
|
export { default as Bold } from './Bold.astro'
|
193
|
+
export { default as Bolt } from './Bolt.astro'
|
193
194
|
export { default as Bomb } from './Bomb.astro'
|
194
195
|
export { default as Bone } from './Bone.astro'
|
195
196
|
export { default as BookA } from './BookA.astro'
|
@@ -454,6 +455,7 @@ export { default as Download } from './Download.astro'
|
|
454
455
|
export { default as DraftingCompass } from './DraftingCompass.astro'
|
455
456
|
export { default as Drama } from './Drama.astro'
|
456
457
|
export { default as Dribbble } from './Dribbble.astro'
|
458
|
+
export { default as Drill } from './Drill.astro'
|
457
459
|
export { default as Droplet } from './Droplet.astro'
|
458
460
|
export { default as Droplets } from './Droplets.astro'
|
459
461
|
export { default as Drum } from './Drum.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.304.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.304.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|