lucide-astro 0.519.0 → 0.523.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/BottleWine.astro +9 -0
- 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 +4 -0
- package/dist/index.js +4 -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="bottle-wine" {...Astro.props}>
|
7
|
+
<path d="M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z" />
|
8
|
+
<path d="M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4" />
|
9
|
+
</Layout>
|
@@ -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
@@ -266,6 +266,7 @@ export { default as BoomBox } from './BoomBox.astro'
|
|
266
266
|
export { default as Bot } from './Bot.astro'
|
267
267
|
export { default as BotMessageSquare } from './BotMessageSquare.astro'
|
268
268
|
export { default as BotOff } from './BotOff.astro'
|
269
|
+
export { default as BottleWine } from './BottleWine.astro'
|
269
270
|
export { default as BowArrow } from './BowArrow.astro'
|
270
271
|
export { default as Box } from './Box.astro'
|
271
272
|
export { default as BoxSelect } from './BoxSelect.astro'
|
@@ -803,6 +804,7 @@ export { default as Gauge } from './Gauge.astro'
|
|
803
804
|
export { default as GaugeCircle } from './GaugeCircle.astro'
|
804
805
|
export { default as Gavel } from './Gavel.astro'
|
805
806
|
export { default as Gem } from './Gem.astro'
|
807
|
+
export { default as GeorgianLari } from './GeorgianLari.astro'
|
806
808
|
export { default as Ghost } from './Ghost.astro'
|
807
809
|
export { default as Gift } from './Gift.astro'
|
808
810
|
export { default as GitBranch } from './GitBranch.astro'
|
@@ -978,6 +980,7 @@ export { default as Ligature } from './Ligature.astro'
|
|
978
980
|
export { default as Lightbulb } from './Lightbulb.astro'
|
979
981
|
export { default as LightbulbOff } from './LightbulbOff.astro'
|
980
982
|
export { default as LineChart } from './LineChart.astro'
|
983
|
+
export { default as LineSquiggle } from './LineSquiggle.astro'
|
981
984
|
export { default as Link } from './Link.astro'
|
982
985
|
export { default as Link2 } from './Link2.astro'
|
983
986
|
export { default as Link2Off } from './Link2Off.astro'
|
@@ -1572,6 +1575,7 @@ export { default as SquaresIntersect } from './SquaresIntersect.astro'
|
|
1572
1575
|
export { default as SquaresSubtract } from './SquaresSubtract.astro'
|
1573
1576
|
export { default as SquaresUnite } from './SquaresUnite.astro'
|
1574
1577
|
export { default as Squircle } from './Squircle.astro'
|
1578
|
+
export { default as SquircleDashed } from './SquircleDashed.astro'
|
1575
1579
|
export { default as Squirrel } from './Squirrel.astro'
|
1576
1580
|
export { default as Stamp } from './Stamp.astro'
|
1577
1581
|
export { default as Star } from './Star.astro'
|
package/dist/index.js
CHANGED
@@ -261,6 +261,7 @@ export { default as BoomBox } from './BoomBox.astro'
|
|
261
261
|
export { default as Bot } from './Bot.astro'
|
262
262
|
export { default as BotMessageSquare } from './BotMessageSquare.astro'
|
263
263
|
export { default as BotOff } from './BotOff.astro'
|
264
|
+
export { default as BottleWine } from './BottleWine.astro'
|
264
265
|
export { default as BowArrow } from './BowArrow.astro'
|
265
266
|
export { default as Box } from './Box.astro'
|
266
267
|
export { default as BoxSelect } from './BoxSelect.astro'
|
@@ -798,6 +799,7 @@ export { default as Gauge } from './Gauge.astro'
|
|
798
799
|
export { default as GaugeCircle } from './GaugeCircle.astro'
|
799
800
|
export { default as Gavel } from './Gavel.astro'
|
800
801
|
export { default as Gem } from './Gem.astro'
|
802
|
+
export { default as GeorgianLari } from './GeorgianLari.astro'
|
801
803
|
export { default as Ghost } from './Ghost.astro'
|
802
804
|
export { default as Gift } from './Gift.astro'
|
803
805
|
export { default as GitBranch } from './GitBranch.astro'
|
@@ -973,6 +975,7 @@ export { default as Ligature } from './Ligature.astro'
|
|
973
975
|
export { default as Lightbulb } from './Lightbulb.astro'
|
974
976
|
export { default as LightbulbOff } from './LightbulbOff.astro'
|
975
977
|
export { default as LineChart } from './LineChart.astro'
|
978
|
+
export { default as LineSquiggle } from './LineSquiggle.astro'
|
976
979
|
export { default as Link } from './Link.astro'
|
977
980
|
export { default as Link2 } from './Link2.astro'
|
978
981
|
export { default as Link2Off } from './Link2Off.astro'
|
@@ -1567,6 +1570,7 @@ export { default as SquaresIntersect } from './SquaresIntersect.astro'
|
|
1567
1570
|
export { default as SquaresSubtract } from './SquaresSubtract.astro'
|
1568
1571
|
export { default as SquaresUnite } from './SquaresUnite.astro'
|
1569
1572
|
export { default as Squircle } from './Squircle.astro'
|
1573
|
+
export { default as SquircleDashed } from './SquircleDashed.astro'
|
1570
1574
|
export { default as Squirrel } from './Squirrel.astro'
|
1571
1575
|
export { default as Stamp } from './Stamp.astro'
|
1572
1576
|
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.523.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.523.0",
|
38
38
|
"semver": "^7.5.4"
|
39
39
|
},
|
40
40
|
"peerDependencies": {
|