lucide-astro 0.282.0 → 0.285.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Barcode.astro +12 -0
- package/dist/Caravan.astro +12 -0
- package/dist/FlameKindling.astro +10 -0
- package/dist/Fullscreen.astro +12 -0
- 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/ScanBarcode.astro +14 -0
- package/dist/ScanEye.astro +13 -0
- package/dist/ScanLine.astro +1 -1
- package/dist/ScanSearch.astro +13 -0
- package/dist/ScanText.astro +14 -0
- package/dist/Signpost.astro +10 -0
- package/dist/SignpostBig.astro +11 -0
- package/dist/Tent.astro +4 -5
- package/dist/TentTree.astro +14 -0
- package/dist/Waypoints.astro +14 -0
- package/dist/index.d.ts +16 -2
- package/dist/index.js +16 -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
|
+
<rect width="4" height="4" x="2" y="9" />
|
8
|
+
<rect width="4" height="10" x="10" y="9" />
|
9
|
+
<path d="M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2" />
|
10
|
+
<circle cx="8" cy="19" r="2" />
|
11
|
+
<path d="M10 19h12v-2" />
|
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="M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z" />
|
8
|
+
<path d="m5 22 14-4" />
|
9
|
+
<path d="m5 18 14 4" />
|
10
|
+
</Layout>
|
@@ -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
|
+
<path d="M3 7V5a2 2 0 0 1 2-2h2" />
|
8
|
+
<path d="M17 3h2a2 2 0 0 1 2 2v2" />
|
9
|
+
<path d="M21 17v2a2 2 0 0 1-2 2h-2" />
|
10
|
+
<path d="M7 21H5a2 2 0 0 1-2-2v-2" />
|
11
|
+
<rect width="10" height="8" x="7" y="8" rx="1" />
|
12
|
+
</Layout>
|
@@ -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,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M3 7V5a2 2 0 0 1 2-2h2" />
|
8
|
+
<path d="M17 3h2a2 2 0 0 1 2 2v2" />
|
9
|
+
<path d="M21 17v2a2 2 0 0 1-2 2h-2" />
|
10
|
+
<path d="M7 21H5a2 2 0 0 1-2-2v-2" />
|
11
|
+
<path d="M8 7v10" />
|
12
|
+
<path d="M12 7v10" />
|
13
|
+
<path d="M17 7v10" />
|
14
|
+
</Layout>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M3 7V5a2 2 0 0 1 2-2h2" />
|
8
|
+
<path d="M17 3h2a2 2 0 0 1 2 2v2" />
|
9
|
+
<path d="M21 17v2a2 2 0 0 1-2 2h-2" />
|
10
|
+
<path d="M7 21H5a2 2 0 0 1-2-2v-2" />
|
11
|
+
<circle cx="12" cy="12" r="1" />
|
12
|
+
<path d="M5 12s2.5-5 7-5 7 5 7 5-2.5 5-7 5-7-5-7-5" />
|
13
|
+
</Layout>
|
package/dist/ScanLine.astro
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<path d="M3 7V5a2 2 0 0 1 2-2h2" />
|
8
|
+
<path d="M17 3h2a2 2 0 0 1 2 2v2" />
|
9
|
+
<path d="M21 17v2a2 2 0 0 1-2 2h-2" />
|
10
|
+
<path d="M7 21H5a2 2 0 0 1-2-2v-2" />
|
11
|
+
<circle cx="12" cy="12" r="3" />
|
12
|
+
<path d="m16 16-1.9-1.9" />
|
13
|
+
</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
|
+
<path d="M3 7V5a2 2 0 0 1 2-2h2" />
|
8
|
+
<path d="M17 3h2a2 2 0 0 1 2 2v2" />
|
9
|
+
<path d="M21 17v2a2 2 0 0 1-2 2h-2" />
|
10
|
+
<path d="M7 21H5a2 2 0 0 1-2-2v-2" />
|
11
|
+
<path d="M7 8h8" />
|
12
|
+
<path d="M7 12h10" />
|
13
|
+
<path d="M7 16h6" />
|
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>
|
package/dist/Tent.astro
CHANGED
@@ -4,9 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="
|
8
|
-
<path d="
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<path d="m12 15 3 5" />
|
7
|
+
<path d="M3.5 21 14 3" />
|
8
|
+
<path d="M20.5 21 10 3" />
|
9
|
+
<path d="M15.5 21 12 15l-3.5 6" />
|
10
|
+
<path d="M2 21h20" />
|
12
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="4" cy="4" r="2" />
|
8
|
+
<path d="m14 5 3-3 3 3" />
|
9
|
+
<path d="m14 10 3-3 3 3" />
|
10
|
+
<path d="M17 14V2" />
|
11
|
+
<path d="M17 14H7l-5 8h20Z" />
|
12
|
+
<path d="M8 14v8" />
|
13
|
+
<path d="m9 14 5 8" />
|
14
|
+
</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'
|
@@ -154,6 +152,7 @@ export { default as BarChartBig } from './BarChartBig.astro'
|
|
154
152
|
export { default as BarChartHorizontalBig } from './BarChartHorizontalBig.astro'
|
155
153
|
export { default as BarChartHorizontal } from './BarChartHorizontal.astro'
|
156
154
|
export { default as BarChart } from './BarChart.astro'
|
155
|
+
export { default as Barcode } from './Barcode.astro'
|
157
156
|
export { default as Baseline } from './Baseline.astro'
|
158
157
|
export { default as Bath } from './Bath.astro'
|
159
158
|
export { default as BatteryCharging } from './BatteryCharging.astro'
|
@@ -256,6 +255,7 @@ export { default as Candy } from './Candy.astro'
|
|
256
255
|
export { default as CarFront } from './CarFront.astro'
|
257
256
|
export { default as CarTaxiFront } from './CarTaxiFront.astro'
|
258
257
|
export { default as Car } from './Car.astro'
|
258
|
+
export { default as Caravan } from './Caravan.astro'
|
259
259
|
export { default as Carrot } from './Carrot.astro'
|
260
260
|
export { default as CaseLower } from './CaseLower.astro'
|
261
261
|
export { default as CaseSensitive } from './CaseSensitive.astro'
|
@@ -524,6 +524,7 @@ export { default as FlagOff } from './FlagOff.astro'
|
|
524
524
|
export { default as FlagTriangleLeft } from './FlagTriangleLeft.astro'
|
525
525
|
export { default as FlagTriangleRight } from './FlagTriangleRight.astro'
|
526
526
|
export { default as Flag } from './Flag.astro'
|
527
|
+
export { default as FlameKindling } from './FlameKindling.astro'
|
527
528
|
export { default as Flame } from './Flame.astro'
|
528
529
|
export { default as FlashlightOff } from './FlashlightOff.astro'
|
529
530
|
export { default as Flashlight } from './Flashlight.astro'
|
@@ -577,6 +578,7 @@ export { default as Frame } from './Frame.astro'
|
|
577
578
|
export { default as Framer } from './Framer.astro'
|
578
579
|
export { default as Frown } from './Frown.astro'
|
579
580
|
export { default as Fuel } from './Fuel.astro'
|
581
|
+
export { default as Fullscreen } from './Fullscreen.astro'
|
580
582
|
export { default as FunctionSquare } from './FunctionSquare.astro'
|
581
583
|
export { default as GalleryHorizontalEnd } from './GalleryHorizontalEnd.astro'
|
582
584
|
export { default as GalleryHorizontal } from './GalleryHorizontal.astro'
|
@@ -653,6 +655,7 @@ export { default as Hotel } from './Hotel.astro'
|
|
653
655
|
export { default as Hourglass } from './Hourglass.astro'
|
654
656
|
export { default as IceCream2 } from './IceCream2.astro'
|
655
657
|
export { default as IceCream } from './IceCream.astro'
|
658
|
+
export { default as ImageDown } from './ImageDown.astro'
|
656
659
|
export { default as ImageMinus } from './ImageMinus.astro'
|
657
660
|
export { default as ImageOff } from './ImageOff.astro'
|
658
661
|
export { default as ImagePlus } from './ImagePlus.astro'
|
@@ -752,6 +755,7 @@ export { default as Mailbox } from './Mailbox.astro'
|
|
752
755
|
export { default as Mails } from './Mails.astro'
|
753
756
|
export { default as MapPinOff } from './MapPinOff.astro'
|
754
757
|
export { default as MapPin } from './MapPin.astro'
|
758
|
+
export { default as MapPinned } from './MapPinned.astro'
|
755
759
|
export { default as Map } from './Map.astro'
|
756
760
|
export { default as Martini } from './Martini.astro'
|
757
761
|
export { default as Maximize2 } from './Maximize2.astro'
|
@@ -980,6 +984,8 @@ export { default as RollerCoaster } from './RollerCoaster.astro'
|
|
980
984
|
export { default as Rotate3d } from './Rotate3d.astro'
|
981
985
|
export { default as RotateCcw } from './RotateCcw.astro'
|
982
986
|
export { default as RotateCw } from './RotateCw.astro'
|
987
|
+
export { default as RouteOff } from './RouteOff.astro'
|
988
|
+
export { default as Route } from './Route.astro'
|
983
989
|
export { default as Router } from './Router.astro'
|
984
990
|
export { default as Rows } from './Rows.astro'
|
985
991
|
export { default as Rss } from './Rss.astro'
|
@@ -995,8 +1001,12 @@ export { default as Save } from './Save.astro'
|
|
995
1001
|
export { default as Scale3d } from './Scale3d.astro'
|
996
1002
|
export { default as Scale } from './Scale.astro'
|
997
1003
|
export { default as Scaling } from './Scaling.astro'
|
1004
|
+
export { default as ScanBarcode } from './ScanBarcode.astro'
|
1005
|
+
export { default as ScanEye } from './ScanEye.astro'
|
998
1006
|
export { default as ScanFace } from './ScanFace.astro'
|
999
1007
|
export { default as ScanLine } from './ScanLine.astro'
|
1008
|
+
export { default as ScanSearch } from './ScanSearch.astro'
|
1009
|
+
export { default as ScanText } from './ScanText.astro'
|
1000
1010
|
export { default as Scan } from './Scan.astro'
|
1001
1011
|
export { default as ScatterChart } from './ScatterChart.astro'
|
1002
1012
|
export { default as School2 } from './School2.astro'
|
@@ -1059,6 +1069,8 @@ export { default as SignalLow } from './SignalLow.astro'
|
|
1059
1069
|
export { default as SignalMedium } from './SignalMedium.astro'
|
1060
1070
|
export { default as SignalZero } from './SignalZero.astro'
|
1061
1071
|
export { default as Signal } from './Signal.astro'
|
1072
|
+
export { default as SignpostBig } from './SignpostBig.astro'
|
1073
|
+
export { default as Signpost } from './Signpost.astro'
|
1062
1074
|
export { default as Siren } from './Siren.astro'
|
1063
1075
|
export { default as SkipBack } from './SkipBack.astro'
|
1064
1076
|
export { default as SkipForward } from './SkipForward.astro'
|
@@ -1145,6 +1157,7 @@ export { default as Tally4 } from './Tally4.astro'
|
|
1145
1157
|
export { default as Tally5 } from './Tally5.astro'
|
1146
1158
|
export { default as Tangent } from './Tangent.astro'
|
1147
1159
|
export { default as Target } from './Target.astro'
|
1160
|
+
export { default as TentTree } from './TentTree.astro'
|
1148
1161
|
export { default as Tent } from './Tent.astro'
|
1149
1162
|
export { default as TerminalSquare } from './TerminalSquare.astro'
|
1150
1163
|
export { default as Terminal } from './Terminal.astro'
|
@@ -1259,6 +1272,7 @@ export { default as Wand } from './Wand.astro'
|
|
1259
1272
|
export { default as Warehouse } from './Warehouse.astro'
|
1260
1273
|
export { default as Watch } from './Watch.astro'
|
1261
1274
|
export { default as Waves } from './Waves.astro'
|
1275
|
+
export { default as Waypoints } from './Waypoints.astro'
|
1262
1276
|
export { default as Webcam } from './Webcam.astro'
|
1263
1277
|
export { default as Webhook } from './Webhook.astro'
|
1264
1278
|
export { default as Weight } from './Weight.astro'
|
package/dist/index.js
CHANGED
@@ -147,6 +147,7 @@ export { default as BarChartBig } from './BarChartBig.astro'
|
|
147
147
|
export { default as BarChartHorizontalBig } from './BarChartHorizontalBig.astro'
|
148
148
|
export { default as BarChartHorizontal } from './BarChartHorizontal.astro'
|
149
149
|
export { default as BarChart } from './BarChart.astro'
|
150
|
+
export { default as Barcode } from './Barcode.astro'
|
150
151
|
export { default as Baseline } from './Baseline.astro'
|
151
152
|
export { default as Bath } from './Bath.astro'
|
152
153
|
export { default as BatteryCharging } from './BatteryCharging.astro'
|
@@ -249,6 +250,7 @@ export { default as Candy } from './Candy.astro'
|
|
249
250
|
export { default as CarFront } from './CarFront.astro'
|
250
251
|
export { default as CarTaxiFront } from './CarTaxiFront.astro'
|
251
252
|
export { default as Car } from './Car.astro'
|
253
|
+
export { default as Caravan } from './Caravan.astro'
|
252
254
|
export { default as Carrot } from './Carrot.astro'
|
253
255
|
export { default as CaseLower } from './CaseLower.astro'
|
254
256
|
export { default as CaseSensitive } from './CaseSensitive.astro'
|
@@ -517,6 +519,7 @@ export { default as FlagOff } from './FlagOff.astro'
|
|
517
519
|
export { default as FlagTriangleLeft } from './FlagTriangleLeft.astro'
|
518
520
|
export { default as FlagTriangleRight } from './FlagTriangleRight.astro'
|
519
521
|
export { default as Flag } from './Flag.astro'
|
522
|
+
export { default as FlameKindling } from './FlameKindling.astro'
|
520
523
|
export { default as Flame } from './Flame.astro'
|
521
524
|
export { default as FlashlightOff } from './FlashlightOff.astro'
|
522
525
|
export { default as Flashlight } from './Flashlight.astro'
|
@@ -570,6 +573,7 @@ export { default as Frame } from './Frame.astro'
|
|
570
573
|
export { default as Framer } from './Framer.astro'
|
571
574
|
export { default as Frown } from './Frown.astro'
|
572
575
|
export { default as Fuel } from './Fuel.astro'
|
576
|
+
export { default as Fullscreen } from './Fullscreen.astro'
|
573
577
|
export { default as FunctionSquare } from './FunctionSquare.astro'
|
574
578
|
export { default as GalleryHorizontalEnd } from './GalleryHorizontalEnd.astro'
|
575
579
|
export { default as GalleryHorizontal } from './GalleryHorizontal.astro'
|
@@ -646,6 +650,7 @@ export { default as Hotel } from './Hotel.astro'
|
|
646
650
|
export { default as Hourglass } from './Hourglass.astro'
|
647
651
|
export { default as IceCream2 } from './IceCream2.astro'
|
648
652
|
export { default as IceCream } from './IceCream.astro'
|
653
|
+
export { default as ImageDown } from './ImageDown.astro'
|
649
654
|
export { default as ImageMinus } from './ImageMinus.astro'
|
650
655
|
export { default as ImageOff } from './ImageOff.astro'
|
651
656
|
export { default as ImagePlus } from './ImagePlus.astro'
|
@@ -745,6 +750,7 @@ export { default as Mailbox } from './Mailbox.astro'
|
|
745
750
|
export { default as Mails } from './Mails.astro'
|
746
751
|
export { default as MapPinOff } from './MapPinOff.astro'
|
747
752
|
export { default as MapPin } from './MapPin.astro'
|
753
|
+
export { default as MapPinned } from './MapPinned.astro'
|
748
754
|
export { default as Map } from './Map.astro'
|
749
755
|
export { default as Martini } from './Martini.astro'
|
750
756
|
export { default as Maximize2 } from './Maximize2.astro'
|
@@ -973,6 +979,8 @@ export { default as RollerCoaster } from './RollerCoaster.astro'
|
|
973
979
|
export { default as Rotate3d } from './Rotate3d.astro'
|
974
980
|
export { default as RotateCcw } from './RotateCcw.astro'
|
975
981
|
export { default as RotateCw } from './RotateCw.astro'
|
982
|
+
export { default as RouteOff } from './RouteOff.astro'
|
983
|
+
export { default as Route } from './Route.astro'
|
976
984
|
export { default as Router } from './Router.astro'
|
977
985
|
export { default as Rows } from './Rows.astro'
|
978
986
|
export { default as Rss } from './Rss.astro'
|
@@ -988,8 +996,12 @@ export { default as Save } from './Save.astro'
|
|
988
996
|
export { default as Scale3d } from './Scale3d.astro'
|
989
997
|
export { default as Scale } from './Scale.astro'
|
990
998
|
export { default as Scaling } from './Scaling.astro'
|
999
|
+
export { default as ScanBarcode } from './ScanBarcode.astro'
|
1000
|
+
export { default as ScanEye } from './ScanEye.astro'
|
991
1001
|
export { default as ScanFace } from './ScanFace.astro'
|
992
1002
|
export { default as ScanLine } from './ScanLine.astro'
|
1003
|
+
export { default as ScanSearch } from './ScanSearch.astro'
|
1004
|
+
export { default as ScanText } from './ScanText.astro'
|
993
1005
|
export { default as Scan } from './Scan.astro'
|
994
1006
|
export { default as ScatterChart } from './ScatterChart.astro'
|
995
1007
|
export { default as School2 } from './School2.astro'
|
@@ -1052,6 +1064,8 @@ export { default as SignalLow } from './SignalLow.astro'
|
|
1052
1064
|
export { default as SignalMedium } from './SignalMedium.astro'
|
1053
1065
|
export { default as SignalZero } from './SignalZero.astro'
|
1054
1066
|
export { default as Signal } from './Signal.astro'
|
1067
|
+
export { default as SignpostBig } from './SignpostBig.astro'
|
1068
|
+
export { default as Signpost } from './Signpost.astro'
|
1055
1069
|
export { default as Siren } from './Siren.astro'
|
1056
1070
|
export { default as SkipBack } from './SkipBack.astro'
|
1057
1071
|
export { default as SkipForward } from './SkipForward.astro'
|
@@ -1138,6 +1152,7 @@ export { default as Tally4 } from './Tally4.astro'
|
|
1138
1152
|
export { default as Tally5 } from './Tally5.astro'
|
1139
1153
|
export { default as Tangent } from './Tangent.astro'
|
1140
1154
|
export { default as Target } from './Target.astro'
|
1155
|
+
export { default as TentTree } from './TentTree.astro'
|
1141
1156
|
export { default as Tent } from './Tent.astro'
|
1142
1157
|
export { default as TerminalSquare } from './TerminalSquare.astro'
|
1143
1158
|
export { default as Terminal } from './Terminal.astro'
|
@@ -1252,6 +1267,7 @@ export { default as Wand } from './Wand.astro'
|
|
1252
1267
|
export { default as Warehouse } from './Warehouse.astro'
|
1253
1268
|
export { default as Watch } from './Watch.astro'
|
1254
1269
|
export { default as Waves } from './Waves.astro'
|
1270
|
+
export { default as Waypoints } from './Waypoints.astro'
|
1255
1271
|
export { default as Webcam } from './Webcam.astro'
|
1256
1272
|
export { default as Webhook } from './Webhook.astro'
|
1257
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"
|