lucide-astro 0.536.0 → 0.537.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/CircleStar.astro +9 -0
- package/dist/School.astro +5 -5
- package/dist/Spade.astro +1 -1
- package/dist/SquareStar.astro +9 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +2 -2
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="circle-star" {...Astro.props}>
|
7
|
+
<path d="M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z" />
|
8
|
+
<circle cx="12" cy="12" r="10" />
|
9
|
+
</Layout>
|
package/dist/School.astro
CHANGED
@@ -4,10 +4,10 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="school" {...Astro.props}>
|
7
|
-
<path d="M14
|
8
|
-
<path d="
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<path d="M6
|
7
|
+
<path d="M14 21v-3a2 2 0 0 0-4 0v3" />
|
8
|
+
<path d="M18 5v16" />
|
9
|
+
<path d="m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6" />
|
10
|
+
<path d="m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11" />
|
11
|
+
<path d="M6 5v16" />
|
12
12
|
<circle cx="12" cy="9" r="2" />
|
13
13
|
</Layout>
|
package/dist/Spade.astro
CHANGED
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="spade" {...Astro.props}>
|
7
|
-
<path d="M5 9c-1.5 1.5-3 3.2-3 5.5A5.5 5.5 0 0 0 7.5 20c1.8 0 3-.5 4.5-2 1.5 1.5 2.7 2 4.5 2a5.5 5.5 0 0 0 5.5-5.5c0-2.3-1.5-4-3-5.5l-7-7-7 7Z" />
|
8
7
|
<path d="M12 18v4" />
|
8
|
+
<path d="M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5" />
|
9
9
|
</Layout>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="square-star" {...Astro.props}>
|
7
|
+
<path d="M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z" />
|
8
|
+
<rect x="3" y="3" width="18" height="18" rx="2" />
|
9
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -444,6 +444,7 @@ export { default as CircleSlash } from './CircleSlash.astro'
|
|
444
444
|
export { default as CircleSlash2 } from './CircleSlash2.astro'
|
445
445
|
export { default as CircleSlashed } from './CircleSlashed.astro'
|
446
446
|
export { default as CircleSmall } from './CircleSmall.astro'
|
447
|
+
export { default as CircleStar } from './CircleStar.astro'
|
447
448
|
export { default as CircleStop } from './CircleStop.astro'
|
448
449
|
export { default as CircleUser } from './CircleUser.astro'
|
449
450
|
export { default as CircleUserRound } from './CircleUserRound.astro'
|
@@ -1580,6 +1581,7 @@ export { default as SquareSplitHorizontal } from './SquareSplitHorizontal.astro'
|
|
1580
1581
|
export { default as SquareSplitVertical } from './SquareSplitVertical.astro'
|
1581
1582
|
export { default as SquareSquare } from './SquareSquare.astro'
|
1582
1583
|
export { default as SquareStack } from './SquareStack.astro'
|
1584
|
+
export { default as SquareStar } from './SquareStar.astro'
|
1583
1585
|
export { default as SquareStop } from './SquareStop.astro'
|
1584
1586
|
export { default as SquareTerminal } from './SquareTerminal.astro'
|
1585
1587
|
export { default as SquareUser } from './SquareUser.astro'
|
package/dist/index.js
CHANGED
@@ -439,6 +439,7 @@ export { default as CircleSlash } from './CircleSlash.astro'
|
|
439
439
|
export { default as CircleSlash2 } from './CircleSlash2.astro'
|
440
440
|
export { default as CircleSlashed } from './CircleSlashed.astro'
|
441
441
|
export { default as CircleSmall } from './CircleSmall.astro'
|
442
|
+
export { default as CircleStar } from './CircleStar.astro'
|
442
443
|
export { default as CircleStop } from './CircleStop.astro'
|
443
444
|
export { default as CircleUser } from './CircleUser.astro'
|
444
445
|
export { default as CircleUserRound } from './CircleUserRound.astro'
|
@@ -1575,6 +1576,7 @@ export { default as SquareSplitHorizontal } from './SquareSplitHorizontal.astro'
|
|
1575
1576
|
export { default as SquareSplitVertical } from './SquareSplitVertical.astro'
|
1576
1577
|
export { default as SquareSquare } from './SquareSquare.astro'
|
1577
1578
|
export { default as SquareStack } from './SquareStack.astro'
|
1579
|
+
export { default as SquareStar } from './SquareStar.astro'
|
1578
1580
|
export { default as SquareStop } from './SquareStop.astro'
|
1579
1581
|
export { default as SquareTerminal } from './SquareTerminal.astro'
|
1580
1582
|
export { default as SquareUser } from './SquareUser.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.537.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.537.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|