lucide-astro 0.284.0 → 0.285.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/ImageDown.astro +12 -0
- package/dist/MapPinned.astro +10 -0
- package/dist/Route.astro +10 -0
- package/dist/RouteOff.astro +14 -0
- package/dist/Signpost.astro +10 -0
- package/dist/SignpostBig.astro +11 -0
- package/dist/Waypoints.astro +14 -0
- package/dist/index.d.ts +7 -2
- package/dist/index.js +7 -0
- package/package.json +2 -2
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<circle cx="9" cy="9" r="2" />
|
8
|
+
<path d="M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10.8" />
|
9
|
+
<path d="m21 15-3.1-3.1a2 2 0 0 0-2.814.014L6 21" />
|
10
|
+
<path d="m14 19.5 3 3v-6" />
|
11
|
+
<path d="m17 22.5 3-3" />
|
12
|
+
</Layout>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M18 8c0 4.5-6 9-6 9s-6-4.5-6-9a6 6 0 0 1 12 0" />
|
8
|
+
<circle cx="12" cy="8" r="2" />
|
9
|
+
<path d="M8.835 14H5a1 1 0 0 0-.9.7l-2 6c-.1.1-.1.2-.1.3 0 .6.4 1 1 1h18c.6 0 1-.4 1-1 0-.1 0-.2-.1-.3l-2-6a1 1 0 0 0-.9-.7h-3.835" />
|
10
|
+
</Layout>
|
package/dist/Route.astro
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<circle cx="6" cy="19" r="3" />
|
8
|
+
<path d="M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15" />
|
9
|
+
<circle cx="18" cy="5" r="3" />
|
10
|
+
</Layout>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<circle cx="6" cy="19" r="3" />
|
8
|
+
<path d="M9 19h8.5c.4 0 .9-.1 1.3-.2" />
|
9
|
+
<path d="M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12" />
|
10
|
+
<path d="m2 2 20 20" />
|
11
|
+
<path d="M21 15.3a3.5 3.5 0 0 0-3.3-3.3" />
|
12
|
+
<path d="M15 5h-4.3" />
|
13
|
+
<circle cx="18" cy="5" r="3" />
|
14
|
+
</Layout>
|
@@ -0,0 +1,11 @@
|
|
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 9H4L2 7l2-2h6" />
|
8
|
+
<path d="M14 5h6l2 2-2 2h-6" />
|
9
|
+
<path d="M10 22V4a2 2 0 1 1 4 0v18" />
|
10
|
+
<path d="M8 22h8" />
|
11
|
+
</Layout>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<circle cx="12" cy="4.5" r="2.5" />
|
8
|
+
<path d="m10.2 6.3-3.9 3.9" />
|
9
|
+
<circle cx="4.5" cy="12" r="2.5" />
|
10
|
+
<path d="M7 12h10" />
|
11
|
+
<circle cx="19.5" cy="12" r="2.5" />
|
12
|
+
<path d="m13.8 17.7 3.9-3.9" />
|
13
|
+
<circle cx="12" cy="19.5" r="2.5" />
|
14
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
|
3
3
|
export interface Props extends astroHTML.JSX.SVGAttributes {
|
4
4
|
size?: number
|
5
|
-
// https://github.com/withastro/astro/pull/8189
|
6
|
-
width?: number
|
7
5
|
}
|
8
6
|
export { default as Accessibility } from './Accessibility.astro'
|
9
7
|
export { default as ActivitySquare } from './ActivitySquare.astro'
|
@@ -657,6 +655,7 @@ export { default as Hotel } from './Hotel.astro'
|
|
657
655
|
export { default as Hourglass } from './Hourglass.astro'
|
658
656
|
export { default as IceCream2 } from './IceCream2.astro'
|
659
657
|
export { default as IceCream } from './IceCream.astro'
|
658
|
+
export { default as ImageDown } from './ImageDown.astro'
|
660
659
|
export { default as ImageMinus } from './ImageMinus.astro'
|
661
660
|
export { default as ImageOff } from './ImageOff.astro'
|
662
661
|
export { default as ImagePlus } from './ImagePlus.astro'
|
@@ -756,6 +755,7 @@ export { default as Mailbox } from './Mailbox.astro'
|
|
756
755
|
export { default as Mails } from './Mails.astro'
|
757
756
|
export { default as MapPinOff } from './MapPinOff.astro'
|
758
757
|
export { default as MapPin } from './MapPin.astro'
|
758
|
+
export { default as MapPinned } from './MapPinned.astro'
|
759
759
|
export { default as Map } from './Map.astro'
|
760
760
|
export { default as Martini } from './Martini.astro'
|
761
761
|
export { default as Maximize2 } from './Maximize2.astro'
|
@@ -984,6 +984,8 @@ export { default as RollerCoaster } from './RollerCoaster.astro'
|
|
984
984
|
export { default as Rotate3d } from './Rotate3d.astro'
|
985
985
|
export { default as RotateCcw } from './RotateCcw.astro'
|
986
986
|
export { default as RotateCw } from './RotateCw.astro'
|
987
|
+
export { default as RouteOff } from './RouteOff.astro'
|
988
|
+
export { default as Route } from './Route.astro'
|
987
989
|
export { default as Router } from './Router.astro'
|
988
990
|
export { default as Rows } from './Rows.astro'
|
989
991
|
export { default as Rss } from './Rss.astro'
|
@@ -1067,6 +1069,8 @@ export { default as SignalLow } from './SignalLow.astro'
|
|
1067
1069
|
export { default as SignalMedium } from './SignalMedium.astro'
|
1068
1070
|
export { default as SignalZero } from './SignalZero.astro'
|
1069
1071
|
export { default as Signal } from './Signal.astro'
|
1072
|
+
export { default as SignpostBig } from './SignpostBig.astro'
|
1073
|
+
export { default as Signpost } from './Signpost.astro'
|
1070
1074
|
export { default as Siren } from './Siren.astro'
|
1071
1075
|
export { default as SkipBack } from './SkipBack.astro'
|
1072
1076
|
export { default as SkipForward } from './SkipForward.astro'
|
@@ -1268,6 +1272,7 @@ export { default as Wand } from './Wand.astro'
|
|
1268
1272
|
export { default as Warehouse } from './Warehouse.astro'
|
1269
1273
|
export { default as Watch } from './Watch.astro'
|
1270
1274
|
export { default as Waves } from './Waves.astro'
|
1275
|
+
export { default as Waypoints } from './Waypoints.astro'
|
1271
1276
|
export { default as Webcam } from './Webcam.astro'
|
1272
1277
|
export { default as Webhook } from './Webhook.astro'
|
1273
1278
|
export { default as Weight } from './Weight.astro'
|
package/dist/index.js
CHANGED
@@ -650,6 +650,7 @@ export { default as Hotel } from './Hotel.astro'
|
|
650
650
|
export { default as Hourglass } from './Hourglass.astro'
|
651
651
|
export { default as IceCream2 } from './IceCream2.astro'
|
652
652
|
export { default as IceCream } from './IceCream.astro'
|
653
|
+
export { default as ImageDown } from './ImageDown.astro'
|
653
654
|
export { default as ImageMinus } from './ImageMinus.astro'
|
654
655
|
export { default as ImageOff } from './ImageOff.astro'
|
655
656
|
export { default as ImagePlus } from './ImagePlus.astro'
|
@@ -749,6 +750,7 @@ export { default as Mailbox } from './Mailbox.astro'
|
|
749
750
|
export { default as Mails } from './Mails.astro'
|
750
751
|
export { default as MapPinOff } from './MapPinOff.astro'
|
751
752
|
export { default as MapPin } from './MapPin.astro'
|
753
|
+
export { default as MapPinned } from './MapPinned.astro'
|
752
754
|
export { default as Map } from './Map.astro'
|
753
755
|
export { default as Martini } from './Martini.astro'
|
754
756
|
export { default as Maximize2 } from './Maximize2.astro'
|
@@ -977,6 +979,8 @@ export { default as RollerCoaster } from './RollerCoaster.astro'
|
|
977
979
|
export { default as Rotate3d } from './Rotate3d.astro'
|
978
980
|
export { default as RotateCcw } from './RotateCcw.astro'
|
979
981
|
export { default as RotateCw } from './RotateCw.astro'
|
982
|
+
export { default as RouteOff } from './RouteOff.astro'
|
983
|
+
export { default as Route } from './Route.astro'
|
980
984
|
export { default as Router } from './Router.astro'
|
981
985
|
export { default as Rows } from './Rows.astro'
|
982
986
|
export { default as Rss } from './Rss.astro'
|
@@ -1060,6 +1064,8 @@ export { default as SignalLow } from './SignalLow.astro'
|
|
1060
1064
|
export { default as SignalMedium } from './SignalMedium.astro'
|
1061
1065
|
export { default as SignalZero } from './SignalZero.astro'
|
1062
1066
|
export { default as Signal } from './Signal.astro'
|
1067
|
+
export { default as SignpostBig } from './SignpostBig.astro'
|
1068
|
+
export { default as Signpost } from './Signpost.astro'
|
1063
1069
|
export { default as Siren } from './Siren.astro'
|
1064
1070
|
export { default as SkipBack } from './SkipBack.astro'
|
1065
1071
|
export { default as SkipForward } from './SkipForward.astro'
|
@@ -1261,6 +1267,7 @@ export { default as Wand } from './Wand.astro'
|
|
1261
1267
|
export { default as Warehouse } from './Warehouse.astro'
|
1262
1268
|
export { default as Watch } from './Watch.astro'
|
1263
1269
|
export { default as Waves } from './Waves.astro'
|
1270
|
+
export { default as Waypoints } from './Waypoints.astro'
|
1264
1271
|
export { default as Webcam } from './Webcam.astro'
|
1265
1272
|
export { default as Webhook } from './Webhook.astro'
|
1266
1273
|
export { default as Weight } from './Weight.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.285.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.285.0"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
32
|
"astro": "^2.7.1 || ^3.0.0"
|