lucide-astro 0.512.0 → 0.513.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/CardSim.astro +11 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="card-sim" {...Astro.props}>
|
7
|
+
<path d="M12 14v4" />
|
8
|
+
<path d="M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z" />
|
9
|
+
<path d="M8 14h8" />
|
10
|
+
<rect x="8" y="10" width="8" height="8" rx="1" />
|
11
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -328,6 +328,7 @@ export { default as Car } from './Car.astro'
|
|
328
328
|
export { default as CarFront } from './CarFront.astro'
|
329
329
|
export { default as CarTaxiFront } from './CarTaxiFront.astro'
|
330
330
|
export { default as Caravan } from './Caravan.astro'
|
331
|
+
export { default as CardSim } from './CardSim.astro'
|
331
332
|
export { default as Carrot } from './Carrot.astro'
|
332
333
|
export { default as CaseLower } from './CaseLower.astro'
|
333
334
|
export { default as CaseSensitive } from './CaseSensitive.astro'
|
package/dist/index.js
CHANGED
@@ -323,6 +323,7 @@ export { default as Car } from './Car.astro'
|
|
323
323
|
export { default as CarFront } from './CarFront.astro'
|
324
324
|
export { default as CarTaxiFront } from './CarTaxiFront.astro'
|
325
325
|
export { default as Caravan } from './Caravan.astro'
|
326
|
+
export { default as CardSim } from './CardSim.astro'
|
326
327
|
export { default as Carrot } from './Carrot.astro'
|
327
328
|
export { default as CaseLower } from './CaseLower.astro'
|
328
329
|
export { default as CaseSensitive } from './CaseSensitive.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.513.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.513.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|