lucide-astro 0.276.0 → 0.279.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/BookmarkCheck.astro +9 -0
- package/dist/BookmarkX.astro +10 -0
- package/dist/Drama.astro +15 -0
- package/dist/Speech.astro +10 -0
- package/dist/Theater.astro +16 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/package.json +2 -2
package/dist/Drama.astro
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M 10 11h.01"/>
|
8
|
+
<path d="M 14 6h.01"/>
|
9
|
+
<path d="M 18 6h.01"/>
|
10
|
+
<path d="M 6.5 13.1h.01"/>
|
11
|
+
<path d="M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"/>
|
12
|
+
<path d="M17.4 9.9c-.8.8-2 .8-2.8 0"/>
|
13
|
+
<path d="M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"/>
|
14
|
+
<path d="M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"/>
|
15
|
+
</Layout>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20" />
|
8
|
+
<path d="M19.8 17.8a7.5 7.5 0 0 0 .003-10.603" />
|
9
|
+
<path d="M17 15a3.5 3.5 0 0 0-.025-4.975" />
|
10
|
+
</Layout>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M2 10s3-3 3-8"/>
|
8
|
+
<path d="M22 10s-3-3-3-8"/>
|
9
|
+
<path d="M10 2c0 4.4-3.6 8-8 8"/>
|
10
|
+
<path d="M14 2c0 4.4 3.6 8 8 8"/>
|
11
|
+
<path d="M2 10s2 2 2 5"/>
|
12
|
+
<path d="M22 10s-2 2-2 5"/>
|
13
|
+
<path d="M8 15h8"/>
|
14
|
+
<path d="M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"/>
|
15
|
+
<path d="M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"/>
|
16
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -204,8 +204,10 @@ export { default as BookUp2 } from './BookUp2.astro'
|
|
204
204
|
export { default as BookUp } from './BookUp.astro'
|
205
205
|
export { default as BookX } from './BookX.astro'
|
206
206
|
export { default as Book } from './Book.astro'
|
207
|
+
export { default as BookmarkCheck } from './BookmarkCheck.astro'
|
207
208
|
export { default as BookmarkMinus } from './BookmarkMinus.astro'
|
208
209
|
export { default as BookmarkPlus } from './BookmarkPlus.astro'
|
210
|
+
export { default as BookmarkX } from './BookmarkX.astro'
|
209
211
|
export { default as Bookmark } from './Bookmark.astro'
|
210
212
|
export { default as BoomBox } from './BoomBox.astro'
|
211
213
|
export { default as Bot } from './Bot.astro'
|
@@ -423,6 +425,7 @@ export { default as DoorOpen } from './DoorOpen.astro'
|
|
423
425
|
export { default as Dot } from './Dot.astro'
|
424
426
|
export { default as DownloadCloud } from './DownloadCloud.astro'
|
425
427
|
export { default as Download } from './Download.astro'
|
428
|
+
export { default as Drama } from './Drama.astro'
|
426
429
|
export { default as Dribbble } from './Dribbble.astro'
|
427
430
|
export { default as Droplet } from './Droplet.astro'
|
428
431
|
export { default as Droplets } from './Droplets.astro'
|
@@ -1067,6 +1070,7 @@ export { default as Spade } from './Spade.astro'
|
|
1067
1070
|
export { default as Sparkle } from './Sparkle.astro'
|
1068
1071
|
export { default as Sparkles } from './Sparkles.astro'
|
1069
1072
|
export { default as Speaker } from './Speaker.astro'
|
1073
|
+
export { default as Speech } from './Speech.astro'
|
1070
1074
|
export { default as SpellCheck2 } from './SpellCheck2.astro'
|
1071
1075
|
export { default as SpellCheck } from './SpellCheck.astro'
|
1072
1076
|
export { default as Spline } from './Spline.astro'
|
@@ -1139,6 +1143,7 @@ export { default as TextCursor } from './TextCursor.astro'
|
|
1139
1143
|
export { default as TextQuote } from './TextQuote.astro'
|
1140
1144
|
export { default as TextSelect } from './TextSelect.astro'
|
1141
1145
|
export { default as Text } from './Text.astro'
|
1146
|
+
export { default as Theater } from './Theater.astro'
|
1142
1147
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake.astro'
|
1143
1148
|
export { default as ThermometerSun } from './ThermometerSun.astro'
|
1144
1149
|
export { default as Thermometer } from './Thermometer.astro'
|
package/dist/index.js
CHANGED
@@ -197,8 +197,10 @@ export { default as BookUp2 } from './BookUp2.astro'
|
|
197
197
|
export { default as BookUp } from './BookUp.astro'
|
198
198
|
export { default as BookX } from './BookX.astro'
|
199
199
|
export { default as Book } from './Book.astro'
|
200
|
+
export { default as BookmarkCheck } from './BookmarkCheck.astro'
|
200
201
|
export { default as BookmarkMinus } from './BookmarkMinus.astro'
|
201
202
|
export { default as BookmarkPlus } from './BookmarkPlus.astro'
|
203
|
+
export { default as BookmarkX } from './BookmarkX.astro'
|
202
204
|
export { default as Bookmark } from './Bookmark.astro'
|
203
205
|
export { default as BoomBox } from './BoomBox.astro'
|
204
206
|
export { default as Bot } from './Bot.astro'
|
@@ -416,6 +418,7 @@ export { default as DoorOpen } from './DoorOpen.astro'
|
|
416
418
|
export { default as Dot } from './Dot.astro'
|
417
419
|
export { default as DownloadCloud } from './DownloadCloud.astro'
|
418
420
|
export { default as Download } from './Download.astro'
|
421
|
+
export { default as Drama } from './Drama.astro'
|
419
422
|
export { default as Dribbble } from './Dribbble.astro'
|
420
423
|
export { default as Droplet } from './Droplet.astro'
|
421
424
|
export { default as Droplets } from './Droplets.astro'
|
@@ -1060,6 +1063,7 @@ export { default as Spade } from './Spade.astro'
|
|
1060
1063
|
export { default as Sparkle } from './Sparkle.astro'
|
1061
1064
|
export { default as Sparkles } from './Sparkles.astro'
|
1062
1065
|
export { default as Speaker } from './Speaker.astro'
|
1066
|
+
export { default as Speech } from './Speech.astro'
|
1063
1067
|
export { default as SpellCheck2 } from './SpellCheck2.astro'
|
1064
1068
|
export { default as SpellCheck } from './SpellCheck.astro'
|
1065
1069
|
export { default as Spline } from './Spline.astro'
|
@@ -1132,6 +1136,7 @@ export { default as TextCursor } from './TextCursor.astro'
|
|
1132
1136
|
export { default as TextQuote } from './TextQuote.astro'
|
1133
1137
|
export { default as TextSelect } from './TextSelect.astro'
|
1134
1138
|
export { default as Text } from './Text.astro'
|
1139
|
+
export { default as Theater } from './Theater.astro'
|
1135
1140
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake.astro'
|
1136
1141
|
export { default as ThermometerSun } from './ThermometerSun.astro'
|
1137
1142
|
export { default as Thermometer } from './Thermometer.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.279.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.279.0"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
32
|
"astro": "^2.7.1 || ^3.0.0"
|