lucide-astro 0.284.0 → 0.286.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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>
@@ -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,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="M12 3v3" />
8
+ <path d="M18.5 13h-13L2 9.5 5.5 6h13L22 9.5Z" />
9
+ <path d="M12 13v8" />
10
+ </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,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="M12 2v1" />
8
+ <path d="M15.5 21a1.85 1.85 0 0 1-3.5-1v-8H2a10 10 0 0 1 3.428-6.575" />
9
+ <path d="M17.5 12H22A10 10 0 0 0 9.004 3.455" />
10
+ <path d="m2 2 20 20" />
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'
@@ -1207,6 +1211,7 @@ export { default as Tv } from './Tv.astro'
1207
1211
  export { default as Twitch } from './Twitch.astro'
1208
1212
  export { default as Twitter } from './Twitter.astro'
1209
1213
  export { default as Type } from './Type.astro'
1214
+ export { default as UmbrellaOff } from './UmbrellaOff.astro'
1210
1215
  export { default as Umbrella } from './Umbrella.astro'
1211
1216
  export { default as Underline } from './Underline.astro'
1212
1217
  export { default as Undo2 } from './Undo2.astro'
@@ -1268,6 +1273,7 @@ export { default as Wand } from './Wand.astro'
1268
1273
  export { default as Warehouse } from './Warehouse.astro'
1269
1274
  export { default as Watch } from './Watch.astro'
1270
1275
  export { default as Waves } from './Waves.astro'
1276
+ export { default as Waypoints } from './Waypoints.astro'
1271
1277
  export { default as Webcam } from './Webcam.astro'
1272
1278
  export { default as Webhook } from './Webhook.astro'
1273
1279
  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'
@@ -1200,6 +1206,7 @@ export { default as Tv } from './Tv.astro'
1200
1206
  export { default as Twitch } from './Twitch.astro'
1201
1207
  export { default as Twitter } from './Twitter.astro'
1202
1208
  export { default as Type } from './Type.astro'
1209
+ export { default as UmbrellaOff } from './UmbrellaOff.astro'
1203
1210
  export { default as Umbrella } from './Umbrella.astro'
1204
1211
  export { default as Underline } from './Underline.astro'
1205
1212
  export { default as Undo2 } from './Undo2.astro'
@@ -1261,6 +1268,7 @@ export { default as Wand } from './Wand.astro'
1261
1268
  export { default as Warehouse } from './Warehouse.astro'
1262
1269
  export { default as Watch } from './Watch.astro'
1263
1270
  export { default as Waves } from './Waves.astro'
1271
+ export { default as Waypoints } from './Waypoints.astro'
1264
1272
  export { default as Webcam } from './Webcam.astro'
1265
1273
  export { default as Webhook } from './Webhook.astro'
1266
1274
  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.284.0",
3
+ "version": "0.286.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.284.0"
29
+ "lucide-static": "0.286.0"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "astro": "^2.7.1 || ^3.0.0"