lucide-astro 0.519.0 → 0.522.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/ArrowLeftCircle.astro +1 -1
- package/dist/ArrowRightCircle.astro +1 -1
- package/dist/CircleArrowLeft.astro +1 -1
- package/dist/CircleArrowRight.astro +1 -1
- package/dist/GeorgianLari.astro +11 -0
- package/dist/LineSquiggle.astro +8 -0
- package/dist/ShoppingBag.astro +2 -2
- package/dist/SquircleDashed.astro +15 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -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="georgian-lari" {...Astro.props}>
|
7
|
+
<path d="M11.5 21a7.5 7.5 0 1 1 7.35-9" />
|
8
|
+
<path d="M13 12V3" />
|
9
|
+
<path d="M4 21h16" />
|
10
|
+
<path d="M9 12V3" />
|
11
|
+
</Layout>
|
package/dist/ShoppingBag.astro
CHANGED
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout iconName="shopping-bag" {...Astro.props}>
|
7
|
-
<path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" />
|
8
|
-
<path d="M3 6h18" />
|
9
7
|
<path d="M16 10a4 4 0 0 1-8 0" />
|
8
|
+
<path d="M3.103 6.034h17.794" />
|
9
|
+
<path d="M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z" />
|
10
10
|
</Layout>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout iconName="squircle-dashed" {...Astro.props}>
|
7
|
+
<path d="M13.77 3.043a34 34 0 0 0-3.54 0" />
|
8
|
+
<path d="M13.771 20.956a33 33 0 0 1-3.541.001" />
|
9
|
+
<path d="M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44" />
|
10
|
+
<path d="M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438" />
|
11
|
+
<path d="M20.957 10.23a33 33 0 0 1 0 3.54" />
|
12
|
+
<path d="M3.043 10.23a34 34 0 0 0 .001 3.541" />
|
13
|
+
<path d="M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438" />
|
14
|
+
<path d="M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44" />
|
15
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -803,6 +803,7 @@ export { default as Gauge } from './Gauge.astro'
|
|
803
803
|
export { default as GaugeCircle } from './GaugeCircle.astro'
|
804
804
|
export { default as Gavel } from './Gavel.astro'
|
805
805
|
export { default as Gem } from './Gem.astro'
|
806
|
+
export { default as GeorgianLari } from './GeorgianLari.astro'
|
806
807
|
export { default as Ghost } from './Ghost.astro'
|
807
808
|
export { default as Gift } from './Gift.astro'
|
808
809
|
export { default as GitBranch } from './GitBranch.astro'
|
@@ -978,6 +979,7 @@ export { default as Ligature } from './Ligature.astro'
|
|
978
979
|
export { default as Lightbulb } from './Lightbulb.astro'
|
979
980
|
export { default as LightbulbOff } from './LightbulbOff.astro'
|
980
981
|
export { default as LineChart } from './LineChart.astro'
|
982
|
+
export { default as LineSquiggle } from './LineSquiggle.astro'
|
981
983
|
export { default as Link } from './Link.astro'
|
982
984
|
export { default as Link2 } from './Link2.astro'
|
983
985
|
export { default as Link2Off } from './Link2Off.astro'
|
@@ -1572,6 +1574,7 @@ export { default as SquaresIntersect } from './SquaresIntersect.astro'
|
|
1572
1574
|
export { default as SquaresSubtract } from './SquaresSubtract.astro'
|
1573
1575
|
export { default as SquaresUnite } from './SquaresUnite.astro'
|
1574
1576
|
export { default as Squircle } from './Squircle.astro'
|
1577
|
+
export { default as SquircleDashed } from './SquircleDashed.astro'
|
1575
1578
|
export { default as Squirrel } from './Squirrel.astro'
|
1576
1579
|
export { default as Stamp } from './Stamp.astro'
|
1577
1580
|
export { default as Star } from './Star.astro'
|
package/dist/index.js
CHANGED
@@ -798,6 +798,7 @@ export { default as Gauge } from './Gauge.astro'
|
|
798
798
|
export { default as GaugeCircle } from './GaugeCircle.astro'
|
799
799
|
export { default as Gavel } from './Gavel.astro'
|
800
800
|
export { default as Gem } from './Gem.astro'
|
801
|
+
export { default as GeorgianLari } from './GeorgianLari.astro'
|
801
802
|
export { default as Ghost } from './Ghost.astro'
|
802
803
|
export { default as Gift } from './Gift.astro'
|
803
804
|
export { default as GitBranch } from './GitBranch.astro'
|
@@ -973,6 +974,7 @@ export { default as Ligature } from './Ligature.astro'
|
|
973
974
|
export { default as Lightbulb } from './Lightbulb.astro'
|
974
975
|
export { default as LightbulbOff } from './LightbulbOff.astro'
|
975
976
|
export { default as LineChart } from './LineChart.astro'
|
977
|
+
export { default as LineSquiggle } from './LineSquiggle.astro'
|
976
978
|
export { default as Link } from './Link.astro'
|
977
979
|
export { default as Link2 } from './Link2.astro'
|
978
980
|
export { default as Link2Off } from './Link2Off.astro'
|
@@ -1567,6 +1569,7 @@ export { default as SquaresIntersect } from './SquaresIntersect.astro'
|
|
1567
1569
|
export { default as SquaresSubtract } from './SquaresSubtract.astro'
|
1568
1570
|
export { default as SquaresUnite } from './SquaresUnite.astro'
|
1569
1571
|
export { default as Squircle } from './Squircle.astro'
|
1572
|
+
export { default as SquircleDashed } from './SquircleDashed.astro'
|
1570
1573
|
export { default as Squirrel } from './Squirrel.astro'
|
1571
1574
|
export { default as Stamp } from './Stamp.astro'
|
1572
1575
|
export { default as Star } from './Star.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.522.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.522.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|