lucide-astro 0.303.0 → 0.305.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/Heater.astro +17 -0
- package/dist/Vault.astro +17 -0
- package/dist/WashingMachine.astro +12 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -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>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M11 8c2-3-2-3 0-6" />
|
8
|
+
<path d="M15.5 8c2-3-2-3 0-6" />
|
9
|
+
<path d="M6 10h.01" />
|
10
|
+
<path d="M6 14h.01" />
|
11
|
+
<path d="M10 16v-4" />
|
12
|
+
<path d="M14 16v-4" />
|
13
|
+
<path d="M18 16v-4" />
|
14
|
+
<path d="M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3" />
|
15
|
+
<path d="M5 20v2" />
|
16
|
+
<path d="M19 20v2" />
|
17
|
+
</Layout>
|
package/dist/Vault.astro
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<rect width="18" height="18" x="3" y="3" rx="2" />
|
8
|
+
<circle cx="7.5" cy="7.5" r=".5" />
|
9
|
+
<path d="m7.9 7.9 2.7 2.7" />
|
10
|
+
<circle cx="16.5" cy="7.5" r=".5" />
|
11
|
+
<path d="m13.4 10.6 2.7-2.7" />
|
12
|
+
<circle cx="7.5" cy="16.5" r=".5" />
|
13
|
+
<path d="m7.9 16.1 2.7-2.7" />
|
14
|
+
<circle cx="16.5" cy="16.5" r=".5" />
|
15
|
+
<path d="m13.4 13.4 2.7 2.7" />
|
16
|
+
<circle cx="12" cy="12" r="2" />
|
17
|
+
</Layout>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M3 6h3" />
|
8
|
+
<path d="M17 6h.01" />
|
9
|
+
<rect width="18" height="20" x="3" y="2" rx="2" />
|
10
|
+
<circle cx="12" cy="13" r="5" />
|
11
|
+
<path d="M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5" />
|
12
|
+
</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'
|
@@ -681,6 +683,7 @@ export { default as HeartHandshake } from './HeartHandshake.astro'
|
|
681
683
|
export { default as HeartOff } from './HeartOff.astro'
|
682
684
|
export { default as HeartPulse } from './HeartPulse.astro'
|
683
685
|
export { default as Heart } from './Heart.astro'
|
686
|
+
export { default as Heater } from './Heater.astro'
|
684
687
|
export { default as HelpCircle } from './HelpCircle.astro'
|
685
688
|
export { default as HelpingHand } from './HelpingHand.astro'
|
686
689
|
export { default as Hexagon } from './Hexagon.astro'
|
@@ -1324,6 +1327,7 @@ export { default as UtensilsCrossed } from './UtensilsCrossed.astro'
|
|
1324
1327
|
export { default as Utensils } from './Utensils.astro'
|
1325
1328
|
export { default as UtilityPole } from './UtilityPole.astro'
|
1326
1329
|
export { default as Variable } from './Variable.astro'
|
1330
|
+
export { default as Vault } from './Vault.astro'
|
1327
1331
|
export { default as Vegan } from './Vegan.astro'
|
1328
1332
|
export { default as VenetianMask } from './VenetianMask.astro'
|
1329
1333
|
export { default as VibrateOff } from './VibrateOff.astro'
|
@@ -1345,6 +1349,7 @@ export { default as Wallpaper } from './Wallpaper.astro'
|
|
1345
1349
|
export { default as Wand2 } from './Wand2.astro'
|
1346
1350
|
export { default as Wand } from './Wand.astro'
|
1347
1351
|
export { default as Warehouse } from './Warehouse.astro'
|
1352
|
+
export { default as WashingMachine } from './WashingMachine.astro'
|
1348
1353
|
export { default as Watch } from './Watch.astro'
|
1349
1354
|
export { default as Waves } from './Waves.astro'
|
1350
1355
|
export { default as Waypoints } from './Waypoints.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'
|
@@ -676,6 +678,7 @@ export { default as HeartHandshake } from './HeartHandshake.astro'
|
|
676
678
|
export { default as HeartOff } from './HeartOff.astro'
|
677
679
|
export { default as HeartPulse } from './HeartPulse.astro'
|
678
680
|
export { default as Heart } from './Heart.astro'
|
681
|
+
export { default as Heater } from './Heater.astro'
|
679
682
|
export { default as HelpCircle } from './HelpCircle.astro'
|
680
683
|
export { default as HelpingHand } from './HelpingHand.astro'
|
681
684
|
export { default as Hexagon } from './Hexagon.astro'
|
@@ -1319,6 +1322,7 @@ export { default as UtensilsCrossed } from './UtensilsCrossed.astro'
|
|
1319
1322
|
export { default as Utensils } from './Utensils.astro'
|
1320
1323
|
export { default as UtilityPole } from './UtilityPole.astro'
|
1321
1324
|
export { default as Variable } from './Variable.astro'
|
1325
|
+
export { default as Vault } from './Vault.astro'
|
1322
1326
|
export { default as Vegan } from './Vegan.astro'
|
1323
1327
|
export { default as VenetianMask } from './VenetianMask.astro'
|
1324
1328
|
export { default as VibrateOff } from './VibrateOff.astro'
|
@@ -1340,6 +1344,7 @@ export { default as Wallpaper } from './Wallpaper.astro'
|
|
1340
1344
|
export { default as Wand2 } from './Wand2.astro'
|
1341
1345
|
export { default as Wand } from './Wand.astro'
|
1342
1346
|
export { default as Warehouse } from './Warehouse.astro'
|
1347
|
+
export { default as WashingMachine } from './WashingMachine.astro'
|
1343
1348
|
export { default as Watch } from './Watch.astro'
|
1344
1349
|
export { default as Waves } from './Waves.astro'
|
1345
1350
|
export { default as Waypoints } from './Waypoints.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.305.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.305.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|