lucide-astro 0.322.0 → 0.323.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Captions.astro +9 -0
- package/dist/CaptionsOff.astro +13 -0
- package/dist/Subtitles.astro +2 -5
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M10.5 5H19a2 2 0 0 1 2 2v8.5" />
|
8
|
+
<path d="M17 11h-.5" />
|
9
|
+
<path d="M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2" />
|
10
|
+
<path d="m2 2 20 20" />
|
11
|
+
<path d="M7 11h4" />
|
12
|
+
<path d="M7 15h2.5" />
|
13
|
+
</Layout>
|
package/dist/Subtitles.astro
CHANGED
@@ -4,9 +4,6 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<
|
8
|
-
<path d="
|
9
|
-
<path d="M7 9h2" />
|
10
|
-
<path d="M13 9h4" />
|
11
|
-
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2Z" />
|
7
|
+
<rect width="18" height="14" x="3" y="5" rx="2" ry="2" />
|
8
|
+
<path d="M7 15h4M15 15h2M7 11h2M13 11h4" />
|
12
9
|
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -297,6 +297,8 @@ export { default as CandlestickChart } from './CandlestickChart.astro'
|
|
297
297
|
export { default as Candy } from './Candy.astro'
|
298
298
|
export { default as CandyCane } from './CandyCane.astro'
|
299
299
|
export { default as CandyOff } from './CandyOff.astro'
|
300
|
+
export { default as Captions } from './Captions.astro'
|
301
|
+
export { default as CaptionsOff } from './CaptionsOff.astro'
|
300
302
|
export { default as Car } from './Car.astro'
|
301
303
|
export { default as CarFront } from './CarFront.astro'
|
302
304
|
export { default as CarTaxiFront } from './CarTaxiFront.astro'
|
package/dist/index.js
CHANGED
@@ -292,6 +292,8 @@ export { default as CandlestickChart } from './CandlestickChart.astro'
|
|
292
292
|
export { default as Candy } from './Candy.astro'
|
293
293
|
export { default as CandyCane } from './CandyCane.astro'
|
294
294
|
export { default as CandyOff } from './CandyOff.astro'
|
295
|
+
export { default as Captions } from './Captions.astro'
|
296
|
+
export { default as CaptionsOff } from './CaptionsOff.astro'
|
295
297
|
export { default as Car } from './Car.astro'
|
296
298
|
export { default as CarFront } from './CarFront.astro'
|
297
299
|
export { default as CarTaxiFront } from './CarTaxiFront.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.323.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.323.0",
|
30
30
|
"semver": "^7.5.4"
|
31
31
|
},
|
32
32
|
"peerDependencies": {
|