lucide-astro 0.262.1 → 0.265.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Blocks.astro +11 -0
- package/dist/BringToFront.astro +12 -0
- package/dist/Bus.astro +7 -4
- package/dist/BusFront.astro +18 -0
- package/dist/CableCar.astro +17 -0
- package/dist/Car.astro +4 -3
- package/dist/CarFront.astro +15 -0
- package/dist/CarTaxiFront.astro +16 -0
- package/dist/{Edit2.astro → FishSymbol.astro} +1 -1
- package/dist/Grid2x2.astro +12 -0
- package/dist/Grid3x3.astro +14 -0
- package/dist/MSquare.astro +11 -0
- package/dist/ParkingMeter.astro +14 -0
- package/dist/PawPrint.astro +13 -0
- package/dist/Pen.astro +10 -0
- package/dist/{Edit3.astro → PenLine.astro} +1 -1
- package/dist/{Edit.astro → PenSquare.astro} +1 -1
- package/dist/Pencil.astro +2 -2
- package/dist/PencilLine.astro +12 -0
- package/dist/PencilRuler.astro +15 -0
- package/dist/Rabbit.astro +14 -0
- package/dist/RailSymbol.astro +12 -0
- package/dist/Ruler.astro +5 -5
- package/dist/Send.astro +2 -2
- package/dist/SendHorizonal.astro +11 -0
- package/dist/SendToBack.astro +13 -0
- package/dist/Shell.astro +10 -0
- package/dist/ShipWheel.astro +19 -0
- package/dist/Snail.astro +14 -0
- package/dist/Tractor.astro +18 -0
- package/dist/TrafficCone.astro +13 -0
- package/dist/TrainFront.astro +15 -0
- package/dist/TrainFrontTunnel.astro +16 -0
- package/dist/TrainTrack.astro +16 -0
- package/dist/Truck.astro +5 -5
- package/dist/Turtle.astro +13 -0
- package/dist/index.d.ts +31 -5
- package/dist/index.js +31 -5
- package/package.json +3 -3
- package/dist/Grid.astro +0 -14
- /package/dist/{Train.astro → TramFront.astro} +0 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<rect width="7" height="7" x="14" y="3" rx="1" />
|
10
|
+
<path d="M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3" />
|
11
|
+
</Layout>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<rect x="8" y="8" width="8" height="8" rx="2" />
|
10
|
+
<path d="M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2" />
|
11
|
+
<path d="M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2" />
|
12
|
+
</Layout>
|
package/dist/Bus.astro
CHANGED
@@ -6,8 +6,11 @@ export type { Props } from './index.d.ts'
|
|
6
6
|
<Layout
|
7
7
|
{...Astro.props}
|
8
8
|
>
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<
|
12
|
-
<
|
9
|
+
<path d="M8 6v6" />
|
10
|
+
<path d="M15 6v6" />
|
11
|
+
<path d="M2 12h19.6" />
|
12
|
+
<path d="M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3" />
|
13
|
+
<circle cx="7" cy="18" r="2" />
|
14
|
+
<path d="M9 18h5" />
|
15
|
+
<circle cx="16" cy="18" r="2" />
|
13
16
|
</Layout>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M4 6 2 7" />
|
10
|
+
<path d="M10 6h4" />
|
11
|
+
<path d="m22 7-2-1" />
|
12
|
+
<rect width="16" height="16" x="4" y="3" rx="2" />
|
13
|
+
<path d="M4 11h16" />
|
14
|
+
<path d="M8 15h.01" />
|
15
|
+
<path d="M16 15h.01" />
|
16
|
+
<path d="M6 19v2" />
|
17
|
+
<path d="M18 21v-2" />
|
18
|
+
</Layout>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M10 3h.01" />
|
10
|
+
<path d="M14 2h.01" />
|
11
|
+
<path d="m2 9 20-5" />
|
12
|
+
<path d="M12 12V6.5" />
|
13
|
+
<rect width="16" height="10" x="4" y="12" rx="3" />
|
14
|
+
<path d="M9 12v5" />
|
15
|
+
<path d="M15 12v5" />
|
16
|
+
<path d="M4 17h16" />
|
17
|
+
</Layout>
|
package/dist/Car.astro
CHANGED
@@ -6,7 +6,8 @@ export type { Props } from './index.d.ts'
|
|
6
6
|
<Layout
|
7
7
|
{...Astro.props}
|
8
8
|
>
|
9
|
-
<path d="
|
10
|
-
<circle cx="
|
11
|
-
<
|
9
|
+
<path d="M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2" />
|
10
|
+
<circle cx="7" cy="17" r="2" />
|
11
|
+
<path d="M9 17h6" />
|
12
|
+
<circle cx="17" cy="17" r="2" />
|
12
13
|
</Layout>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8" />
|
10
|
+
<path d="M7 14h.01" />
|
11
|
+
<path d="M17 14h.01" />
|
12
|
+
<rect width="18" height="8" x="3" y="10" rx="2" />
|
13
|
+
<path d="M5 18v2" />
|
14
|
+
<path d="M19 18v2" />
|
15
|
+
</Layout>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M10 2h4" />
|
10
|
+
<path d="m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8" />
|
11
|
+
<path d="M7 14h.01" />
|
12
|
+
<path d="M17 14h.01" />
|
13
|
+
<rect width="18" height="8" x="3" y="10" rx="2" />
|
14
|
+
<path d="M5 18v2" />
|
15
|
+
<path d="M19 18v2" />
|
16
|
+
</Layout>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<rect width="18" height="18" x="3" y="3" rx="2" />
|
10
|
+
<path d="M3 9h18" />
|
11
|
+
<path d="M3 15h18" />
|
12
|
+
<path d="M9 3v18" />
|
13
|
+
<path d="M15 3v18" />
|
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
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M9 9a3 3 0 1 1 6 0" />
|
10
|
+
<path d="M12 12v3" />
|
11
|
+
<path d="M11 15h2" />
|
12
|
+
<path d="M19 9a7 7 0 1 0-13.6 2.3C6.4 14.4 8 19 8 19h8s1.6-4.6 2.6-7.7c.3-.8.4-1.5.4-2.3" />
|
13
|
+
<path d="M12 19v3" />
|
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
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<circle cx="11" cy="4" r="2" />
|
10
|
+
<circle cx="18" cy="8" r="2" />
|
11
|
+
<circle cx="20" cy="16" r="2" />
|
12
|
+
<path d="M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z" />
|
13
|
+
</Layout>
|
package/dist/Pen.astro
ADDED
@@ -7,5 +7,5 @@ export type { Props } from './index.d.ts'
|
|
7
7
|
{...Astro.props}
|
8
8
|
>
|
9
9
|
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
|
10
|
-
<path d="M18.5 2.5a2.
|
10
|
+
<path d="M18.5 2.5a2.12 2.12 0 0 1 3 3L12 15l-4 1 1-4Z" />
|
11
11
|
</Layout>
|
package/dist/Pencil.astro
CHANGED
@@ -6,6 +6,6 @@ export type { Props } from './index.d.ts'
|
|
6
6
|
<Layout
|
7
7
|
{...Astro.props}
|
8
8
|
>
|
9
|
-
<
|
10
|
-
<path d="
|
9
|
+
<path d="M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" />
|
10
|
+
<path d="m15 5 4 4" />
|
11
11
|
</Layout>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="m15 5 4 4" />
|
10
|
+
<path d="M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13" />
|
11
|
+
<path d="m8 6 2-2" />
|
12
|
+
<path d="m2 22 5.5-1.5L21.17 6.83a2.82 2.82 0 0 0-4-4L3.5 16.5Z" />
|
13
|
+
<path d="m18 16 2-2" />
|
14
|
+
<path d="m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17" />
|
15
|
+
</Layout>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M20 8.54V4a2 2 0 1 0-4 0v3" />
|
10
|
+
<path d="M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1.93 1.93 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1c-1.7 0-3 1.3-3 3" />
|
11
|
+
<path d="M7.61 12.53a3 3 0 1 0-1.6 4.3" />
|
12
|
+
<path d="M13 16a3 3 0 0 1 2.24 5" />
|
13
|
+
<path d="M18 12h.01" />
|
14
|
+
</Layout>
|
package/dist/Ruler.astro
CHANGED
@@ -6,9 +6,9 @@ export type { Props } from './index.d.ts'
|
|
6
6
|
<Layout
|
7
7
|
{...Astro.props}
|
8
8
|
>
|
9
|
-
<path d="M21.3
|
10
|
-
<path d="
|
11
|
-
<path d="
|
12
|
-
<path d="
|
13
|
-
<path d="
|
9
|
+
<path d="M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z" />
|
10
|
+
<path d="m14.5 12.5 2-2" />
|
11
|
+
<path d="m11.5 9.5 2-2" />
|
12
|
+
<path d="m8.5 6.5 2-2" />
|
13
|
+
<path d="m17.5 15.5 2-2" />
|
14
14
|
</Layout>
|
package/dist/Send.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
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<rect x="14" y="14" width="8" height="8" rx="2" />
|
10
|
+
<rect x="2" y="2" width="8" height="8" rx="2" />
|
11
|
+
<path d="M7 14v1a2 2 0 0 0 2 2h1" />
|
12
|
+
<path d="M14 7h1a2 2 0 0 1 2 2v1" />
|
13
|
+
</Layout>
|
package/dist/Shell.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
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44" />
|
10
|
+
</Layout>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<circle cx="12" cy="12" r="8" />
|
10
|
+
<path d="M12 2v7.5" />
|
11
|
+
<path d="m19 5-5.23 5.23" />
|
12
|
+
<path d="M22 12h-7.5" />
|
13
|
+
<path d="m19 19-5.23-5.23" />
|
14
|
+
<path d="M12 14.5V22" />
|
15
|
+
<path d="M10.23 13.77 5 19" />
|
16
|
+
<path d="M9.5 12H2" />
|
17
|
+
<path d="M10.23 10.23 5 5" />
|
18
|
+
<circle cx="12" cy="12" r="2.5" />
|
19
|
+
</Layout>
|
package/dist/Snail.astro
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0" />
|
10
|
+
<circle cx="10" cy="13" r="8" />
|
11
|
+
<path d="M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6" />
|
12
|
+
<path d="M18 3 19.1 5.2" />
|
13
|
+
<path d="M22 3 20.9 5.2" />
|
14
|
+
</Layout>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M3 4h9l1 7" />
|
10
|
+
<path d="M4 11V4" />
|
11
|
+
<path d="M8 10V4" />
|
12
|
+
<path d="M18 5c-.6 0-1 .4-1 1v5.6" />
|
13
|
+
<path d="m10 11 11 .9c.6 0 .9.5.8 1.1l-.8 5h-1" />
|
14
|
+
<circle cx="7" cy="15" r=".5" />
|
15
|
+
<circle cx="7" cy="15" r="5" />
|
16
|
+
<path d="M16 18h-5" />
|
17
|
+
<circle cx="18" cy="18" r="2" />
|
18
|
+
</Layout>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M9.3 6.2a4.55 4.55 0 0 0 5.4 0" />
|
10
|
+
<path d="M7.9 10.7c.9.8 2.4 1.3 4.1 1.3s3.2-.5 4.1-1.3" />
|
11
|
+
<path d="M13.9 3.5a1.93 1.93 0 0 0-3.8-.1l-3 10c-.1.2-.1.4-.1.6 0 1.7 2.2 3 5 3s5-1.3 5-3c0-.2 0-.4-.1-.5Z" />
|
12
|
+
<path d="m7.5 12.2-4.7 2.7c-.5.3-.8.7-.8 1.1s.3.8.8 1.1l7.6 4.5c.9.5 2.1.5 3 0l7.6-4.5c.7-.3 1-.7 1-1.1s-.3-.8-.8-1.1l-4.7-2.8" />
|
13
|
+
</Layout>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M8 3.1V7a4 4 0 0 0 8 0V3.1" />
|
10
|
+
<path d="m9 15-1-1" />
|
11
|
+
<path d="m15 15 1-1" />
|
12
|
+
<path d="M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z" />
|
13
|
+
<path d="m8 19-2 3" />
|
14
|
+
<path d="m16 19 2 3" />
|
15
|
+
</Layout>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M2 22V12a10 10 0 1 1 20 0v10" />
|
10
|
+
<path d="M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8" />
|
11
|
+
<path d="M10 15h.01" />
|
12
|
+
<path d="M14 15h.01" />
|
13
|
+
<path d="M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z" />
|
14
|
+
<path d="m9 19-2 3" />
|
15
|
+
<path d="m15 19 2 3" />
|
16
|
+
</Layout>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="M2 17 17 2" />
|
10
|
+
<path d="m2 14 8 8" />
|
11
|
+
<path d="m5 11 8 8" />
|
12
|
+
<path d="m8 8 8 8" />
|
13
|
+
<path d="m11 5 8 8" />
|
14
|
+
<path d="m14 2 8 8" />
|
15
|
+
<path d="M7 22 22 7" />
|
16
|
+
</Layout>
|
package/dist/Truck.astro
CHANGED
@@ -6,9 +6,9 @@ export type { Props } from './index.d.ts'
|
|
6
6
|
<Layout
|
7
7
|
{...Astro.props}
|
8
8
|
>
|
9
|
-
<path d="
|
10
|
-
<path d="
|
11
|
-
<
|
12
|
-
<
|
13
|
-
<circle cx="17
|
9
|
+
<path d="M5 18H3c-.6 0-1-.4-1-1V7c0-.6.4-1 1-1h10c.6 0 1 .4 1 1v11" />
|
10
|
+
<path d="M14 9h4l4 4v4c0 .6-.4 1-1 1h-2" />
|
11
|
+
<circle cx="7" cy="18" r="2" />
|
12
|
+
<path d="M15 18H9" />
|
13
|
+
<circle cx="17" cy="18" r="2" />
|
14
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
|
7
|
+
{...Astro.props}
|
8
|
+
>
|
9
|
+
<path d="m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z" />
|
10
|
+
<path d="M4.82 7.9 8 10" />
|
11
|
+
<path d="M15.18 7.9 12 10" />
|
12
|
+
<path d="M16.93 10H20a2 2 0 0 1 0 4H2" />
|
13
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -179,6 +179,7 @@ export { default as Biohazard } from './Biohazard.astro'
|
|
179
179
|
export { default as Bird } from './Bird.astro'
|
180
180
|
export { default as Bitcoin } from './Bitcoin.astro'
|
181
181
|
export { default as Blinds } from './Blinds.astro'
|
182
|
+
export { default as Blocks } from './Blocks.astro'
|
182
183
|
export { default as BluetoothConnected } from './BluetoothConnected.astro'
|
183
184
|
export { default as BluetoothOff } from './BluetoothOff.astro'
|
184
185
|
export { default as BluetoothSearching } from './BluetoothSearching.astro'
|
@@ -214,11 +215,14 @@ export { default as BrainCircuit } from './BrainCircuit.astro'
|
|
214
215
|
export { default as BrainCog } from './BrainCog.astro'
|
215
216
|
export { default as Brain } from './Brain.astro'
|
216
217
|
export { default as Briefcase } from './Briefcase.astro'
|
218
|
+
export { default as BringToFront } from './BringToFront.astro'
|
217
219
|
export { default as Brush } from './Brush.astro'
|
218
220
|
export { default as Bug } from './Bug.astro'
|
219
221
|
export { default as Building2 } from './Building2.astro'
|
220
222
|
export { default as Building } from './Building.astro'
|
223
|
+
export { default as BusFront } from './BusFront.astro'
|
221
224
|
export { default as Bus } from './Bus.astro'
|
225
|
+
export { default as CableCar } from './CableCar.astro'
|
222
226
|
export { default as Cable } from './Cable.astro'
|
223
227
|
export { default as CakeSlice } from './CakeSlice.astro'
|
224
228
|
export { default as Cake } from './Cake.astro'
|
@@ -242,6 +246,8 @@ export { default as CandlestickChart } from './CandlestickChart.astro'
|
|
242
246
|
export { default as CandyCane } from './CandyCane.astro'
|
243
247
|
export { default as CandyOff } from './CandyOff.astro'
|
244
248
|
export { default as Candy } from './Candy.astro'
|
249
|
+
export { default as CarFront } from './CarFront.astro'
|
250
|
+
export { default as CarTaxiFront } from './CarTaxiFront.astro'
|
245
251
|
export { default as Car } from './Car.astro'
|
246
252
|
export { default as Carrot } from './Carrot.astro'
|
247
253
|
export { default as CaseLower } from './CaseLower.astro'
|
@@ -418,9 +424,6 @@ export { default as Drumstick } from './Drumstick.astro'
|
|
418
424
|
export { default as Dumbbell } from './Dumbbell.astro'
|
419
425
|
export { default as EarOff } from './EarOff.astro'
|
420
426
|
export { default as Ear } from './Ear.astro'
|
421
|
-
export { default as Edit2 } from './Edit2.astro'
|
422
|
-
export { default as Edit3 } from './Edit3.astro'
|
423
|
-
export { default as Edit } from './Edit.astro'
|
424
427
|
export { default as EggFried } from './EggFried.astro'
|
425
428
|
export { default as EggOff } from './EggOff.astro'
|
426
429
|
export { default as Egg } from './Egg.astro'
|
@@ -502,6 +505,7 @@ export { default as FilterX } from './FilterX.astro'
|
|
502
505
|
export { default as Filter } from './Filter.astro'
|
503
506
|
export { default as Fingerprint } from './Fingerprint.astro'
|
504
507
|
export { default as FishOff } from './FishOff.astro'
|
508
|
+
export { default as FishSymbol } from './FishSymbol.astro'
|
505
509
|
export { default as Fish } from './Fish.astro'
|
506
510
|
export { default as FlagOff } from './FlagOff.astro'
|
507
511
|
export { default as FlagTriangleLeft } from './FlagTriangleLeft.astro'
|
@@ -596,7 +600,8 @@ export { default as Goal } from './Goal.astro'
|
|
596
600
|
export { default as Grab } from './Grab.astro'
|
597
601
|
export { default as GraduationCap } from './GraduationCap.astro'
|
598
602
|
export { default as Grape } from './Grape.astro'
|
599
|
-
export { default as
|
603
|
+
export { default as Grid2x2 } from './Grid2x2.astro'
|
604
|
+
export { default as Grid3x3 } from './Grid3x3.astro'
|
600
605
|
export { default as GripHorizontal } from './GripHorizontal.astro'
|
601
606
|
export { default as GripVertical } from './GripVertical.astro'
|
602
607
|
export { default as Grip } from './Grip.astro'
|
@@ -717,6 +722,7 @@ export { default as LogIn } from './LogIn.astro'
|
|
717
722
|
export { default as LogOut } from './LogOut.astro'
|
718
723
|
export { default as Lollipop } from './Lollipop.astro'
|
719
724
|
export { default as Luggage } from './Luggage.astro'
|
725
|
+
export { default as MSquare } from './MSquare.astro'
|
720
726
|
export { default as Magnet } from './Magnet.astro'
|
721
727
|
export { default as MailCheck } from './MailCheck.astro'
|
722
728
|
export { default as MailMinus } from './MailMinus.astro'
|
@@ -847,14 +853,21 @@ export { default as Paperclip } from './Paperclip.astro'
|
|
847
853
|
export { default as Parentheses } from './Parentheses.astro'
|
848
854
|
export { default as ParkingCircleOff } from './ParkingCircleOff.astro'
|
849
855
|
export { default as ParkingCircle } from './ParkingCircle.astro'
|
856
|
+
export { default as ParkingMeter } from './ParkingMeter.astro'
|
850
857
|
export { default as ParkingSquareOff } from './ParkingSquareOff.astro'
|
851
858
|
export { default as ParkingSquare } from './ParkingSquare.astro'
|
852
859
|
export { default as PartyPopper } from './PartyPopper.astro'
|
853
860
|
export { default as PauseCircle } from './PauseCircle.astro'
|
854
861
|
export { default as PauseOctagon } from './PauseOctagon.astro'
|
855
862
|
export { default as Pause } from './Pause.astro'
|
863
|
+
export { default as PawPrint } from './PawPrint.astro'
|
856
864
|
export { default as PcCase } from './PcCase.astro'
|
865
|
+
export { default as PenLine } from './PenLine.astro'
|
866
|
+
export { default as PenSquare } from './PenSquare.astro'
|
857
867
|
export { default as PenTool } from './PenTool.astro'
|
868
|
+
export { default as Pen } from './Pen.astro'
|
869
|
+
export { default as PencilLine } from './PencilLine.astro'
|
870
|
+
export { default as PencilRuler } from './PencilRuler.astro'
|
858
871
|
export { default as Pencil } from './Pencil.astro'
|
859
872
|
export { default as Percent } from './Percent.astro'
|
860
873
|
export { default as PersonStanding } from './PersonStanding.astro'
|
@@ -906,11 +919,13 @@ export { default as Projector } from './Projector.astro'
|
|
906
919
|
export { default as Puzzle } from './Puzzle.astro'
|
907
920
|
export { default as QrCode } from './QrCode.astro'
|
908
921
|
export { default as Quote } from './Quote.astro'
|
922
|
+
export { default as Rabbit } from './Rabbit.astro'
|
909
923
|
export { default as Radar } from './Radar.astro'
|
910
924
|
export { default as Radiation } from './Radiation.astro'
|
911
925
|
export { default as RadioReceiver } from './RadioReceiver.astro'
|
912
926
|
export { default as RadioTower } from './RadioTower.astro'
|
913
927
|
export { default as Radio } from './Radio.astro'
|
928
|
+
export { default as RailSymbol } from './RailSymbol.astro'
|
914
929
|
export { default as Rainbow } from './Rainbow.astro'
|
915
930
|
export { default as Rat } from './Rat.astro'
|
916
931
|
export { default as Ratio } from './Ratio.astro'
|
@@ -976,6 +991,8 @@ export { default as SearchCode } from './SearchCode.astro'
|
|
976
991
|
export { default as SearchSlash } from './SearchSlash.astro'
|
977
992
|
export { default as SearchX } from './SearchX.astro'
|
978
993
|
export { default as Search } from './Search.astro'
|
994
|
+
export { default as SendHorizonal } from './SendHorizonal.astro'
|
995
|
+
export { default as SendToBack } from './SendToBack.astro'
|
979
996
|
export { default as Send } from './Send.astro'
|
980
997
|
export { default as SeparatorHorizontal } from './SeparatorHorizontal.astro'
|
981
998
|
export { default as SeparatorVertical } from './SeparatorVertical.astro'
|
@@ -989,12 +1006,14 @@ export { default as Shapes } from './Shapes.astro'
|
|
989
1006
|
export { default as Share2 } from './Share2.astro'
|
990
1007
|
export { default as Share } from './Share.astro'
|
991
1008
|
export { default as Sheet } from './Sheet.astro'
|
1009
|
+
export { default as Shell } from './Shell.astro'
|
992
1010
|
export { default as ShieldAlert } from './ShieldAlert.astro'
|
993
1011
|
export { default as ShieldCheck } from './ShieldCheck.astro'
|
994
1012
|
export { default as ShieldClose } from './ShieldClose.astro'
|
995
1013
|
export { default as ShieldOff } from './ShieldOff.astro'
|
996
1014
|
export { default as ShieldQuestion } from './ShieldQuestion.astro'
|
997
1015
|
export { default as Shield } from './Shield.astro'
|
1016
|
+
export { default as ShipWheel } from './ShipWheel.astro'
|
998
1017
|
export { default as Ship } from './Ship.astro'
|
999
1018
|
export { default as Shirt } from './Shirt.astro'
|
1000
1019
|
export { default as ShoppingBag } from './ShoppingBag.astro'
|
@@ -1025,6 +1044,7 @@ export { default as SmartphoneNfc } from './SmartphoneNfc.astro'
|
|
1025
1044
|
export { default as Smartphone } from './Smartphone.astro'
|
1026
1045
|
export { default as SmilePlus } from './SmilePlus.astro'
|
1027
1046
|
export { default as Smile } from './Smile.astro'
|
1047
|
+
export { default as Snail } from './Snail.astro'
|
1028
1048
|
export { default as Snowflake } from './Snowflake.astro'
|
1029
1049
|
export { default as Sofa } from './Sofa.astro'
|
1030
1050
|
export { default as Soup } from './Soup.astro'
|
@@ -1120,7 +1140,12 @@ export { default as TouchpadOff } from './TouchpadOff.astro'
|
|
1120
1140
|
export { default as Touchpad } from './Touchpad.astro'
|
1121
1141
|
export { default as TowerControl } from './TowerControl.astro'
|
1122
1142
|
export { default as ToyBrick } from './ToyBrick.astro'
|
1123
|
-
export { default as
|
1143
|
+
export { default as Tractor } from './Tractor.astro'
|
1144
|
+
export { default as TrafficCone } from './TrafficCone.astro'
|
1145
|
+
export { default as TrainFrontTunnel } from './TrainFrontTunnel.astro'
|
1146
|
+
export { default as TrainFront } from './TrainFront.astro'
|
1147
|
+
export { default as TrainTrack } from './TrainTrack.astro'
|
1148
|
+
export { default as TramFront } from './TramFront.astro'
|
1124
1149
|
export { default as Trash2 } from './Trash2.astro'
|
1125
1150
|
export { default as Trash } from './Trash.astro'
|
1126
1151
|
export { default as TreeDeciduous } from './TreeDeciduous.astro'
|
@@ -1133,6 +1158,7 @@ export { default as TriangleRight } from './TriangleRight.astro'
|
|
1133
1158
|
export { default as Triangle } from './Triangle.astro'
|
1134
1159
|
export { default as Trophy } from './Trophy.astro'
|
1135
1160
|
export { default as Truck } from './Truck.astro'
|
1161
|
+
export { default as Turtle } from './Turtle.astro'
|
1136
1162
|
export { default as Tv2 } from './Tv2.astro'
|
1137
1163
|
export { default as Tv } from './Tv.astro'
|
1138
1164
|
export { default as Twitch } from './Twitch.astro'
|
package/dist/index.js
CHANGED
@@ -167,6 +167,7 @@ export { default as Biohazard } from './Biohazard.astro'
|
|
167
167
|
export { default as Bird } from './Bird.astro'
|
168
168
|
export { default as Bitcoin } from './Bitcoin.astro'
|
169
169
|
export { default as Blinds } from './Blinds.astro'
|
170
|
+
export { default as Blocks } from './Blocks.astro'
|
170
171
|
export { default as BluetoothConnected } from './BluetoothConnected.astro'
|
171
172
|
export { default as BluetoothOff } from './BluetoothOff.astro'
|
172
173
|
export { default as BluetoothSearching } from './BluetoothSearching.astro'
|
@@ -202,11 +203,14 @@ export { default as BrainCircuit } from './BrainCircuit.astro'
|
|
202
203
|
export { default as BrainCog } from './BrainCog.astro'
|
203
204
|
export { default as Brain } from './Brain.astro'
|
204
205
|
export { default as Briefcase } from './Briefcase.astro'
|
206
|
+
export { default as BringToFront } from './BringToFront.astro'
|
205
207
|
export { default as Brush } from './Brush.astro'
|
206
208
|
export { default as Bug } from './Bug.astro'
|
207
209
|
export { default as Building2 } from './Building2.astro'
|
208
210
|
export { default as Building } from './Building.astro'
|
211
|
+
export { default as BusFront } from './BusFront.astro'
|
209
212
|
export { default as Bus } from './Bus.astro'
|
213
|
+
export { default as CableCar } from './CableCar.astro'
|
210
214
|
export { default as Cable } from './Cable.astro'
|
211
215
|
export { default as CakeSlice } from './CakeSlice.astro'
|
212
216
|
export { default as Cake } from './Cake.astro'
|
@@ -230,6 +234,8 @@ export { default as CandlestickChart } from './CandlestickChart.astro'
|
|
230
234
|
export { default as CandyCane } from './CandyCane.astro'
|
231
235
|
export { default as CandyOff } from './CandyOff.astro'
|
232
236
|
export { default as Candy } from './Candy.astro'
|
237
|
+
export { default as CarFront } from './CarFront.astro'
|
238
|
+
export { default as CarTaxiFront } from './CarTaxiFront.astro'
|
233
239
|
export { default as Car } from './Car.astro'
|
234
240
|
export { default as Carrot } from './Carrot.astro'
|
235
241
|
export { default as CaseLower } from './CaseLower.astro'
|
@@ -406,9 +412,6 @@ export { default as Drumstick } from './Drumstick.astro'
|
|
406
412
|
export { default as Dumbbell } from './Dumbbell.astro'
|
407
413
|
export { default as EarOff } from './EarOff.astro'
|
408
414
|
export { default as Ear } from './Ear.astro'
|
409
|
-
export { default as Edit2 } from './Edit2.astro'
|
410
|
-
export { default as Edit3 } from './Edit3.astro'
|
411
|
-
export { default as Edit } from './Edit.astro'
|
412
415
|
export { default as EggFried } from './EggFried.astro'
|
413
416
|
export { default as EggOff } from './EggOff.astro'
|
414
417
|
export { default as Egg } from './Egg.astro'
|
@@ -490,6 +493,7 @@ export { default as FilterX } from './FilterX.astro'
|
|
490
493
|
export { default as Filter } from './Filter.astro'
|
491
494
|
export { default as Fingerprint } from './Fingerprint.astro'
|
492
495
|
export { default as FishOff } from './FishOff.astro'
|
496
|
+
export { default as FishSymbol } from './FishSymbol.astro'
|
493
497
|
export { default as Fish } from './Fish.astro'
|
494
498
|
export { default as FlagOff } from './FlagOff.astro'
|
495
499
|
export { default as FlagTriangleLeft } from './FlagTriangleLeft.astro'
|
@@ -584,7 +588,8 @@ export { default as Goal } from './Goal.astro'
|
|
584
588
|
export { default as Grab } from './Grab.astro'
|
585
589
|
export { default as GraduationCap } from './GraduationCap.astro'
|
586
590
|
export { default as Grape } from './Grape.astro'
|
587
|
-
export { default as
|
591
|
+
export { default as Grid2x2 } from './Grid2x2.astro'
|
592
|
+
export { default as Grid3x3 } from './Grid3x3.astro'
|
588
593
|
export { default as GripHorizontal } from './GripHorizontal.astro'
|
589
594
|
export { default as GripVertical } from './GripVertical.astro'
|
590
595
|
export { default as Grip } from './Grip.astro'
|
@@ -705,6 +710,7 @@ export { default as LogIn } from './LogIn.astro'
|
|
705
710
|
export { default as LogOut } from './LogOut.astro'
|
706
711
|
export { default as Lollipop } from './Lollipop.astro'
|
707
712
|
export { default as Luggage } from './Luggage.astro'
|
713
|
+
export { default as MSquare } from './MSquare.astro'
|
708
714
|
export { default as Magnet } from './Magnet.astro'
|
709
715
|
export { default as MailCheck } from './MailCheck.astro'
|
710
716
|
export { default as MailMinus } from './MailMinus.astro'
|
@@ -835,14 +841,21 @@ export { default as Paperclip } from './Paperclip.astro'
|
|
835
841
|
export { default as Parentheses } from './Parentheses.astro'
|
836
842
|
export { default as ParkingCircleOff } from './ParkingCircleOff.astro'
|
837
843
|
export { default as ParkingCircle } from './ParkingCircle.astro'
|
844
|
+
export { default as ParkingMeter } from './ParkingMeter.astro'
|
838
845
|
export { default as ParkingSquareOff } from './ParkingSquareOff.astro'
|
839
846
|
export { default as ParkingSquare } from './ParkingSquare.astro'
|
840
847
|
export { default as PartyPopper } from './PartyPopper.astro'
|
841
848
|
export { default as PauseCircle } from './PauseCircle.astro'
|
842
849
|
export { default as PauseOctagon } from './PauseOctagon.astro'
|
843
850
|
export { default as Pause } from './Pause.astro'
|
851
|
+
export { default as PawPrint } from './PawPrint.astro'
|
844
852
|
export { default as PcCase } from './PcCase.astro'
|
853
|
+
export { default as PenLine } from './PenLine.astro'
|
854
|
+
export { default as PenSquare } from './PenSquare.astro'
|
845
855
|
export { default as PenTool } from './PenTool.astro'
|
856
|
+
export { default as Pen } from './Pen.astro'
|
857
|
+
export { default as PencilLine } from './PencilLine.astro'
|
858
|
+
export { default as PencilRuler } from './PencilRuler.astro'
|
846
859
|
export { default as Pencil } from './Pencil.astro'
|
847
860
|
export { default as Percent } from './Percent.astro'
|
848
861
|
export { default as PersonStanding } from './PersonStanding.astro'
|
@@ -894,11 +907,13 @@ export { default as Projector } from './Projector.astro'
|
|
894
907
|
export { default as Puzzle } from './Puzzle.astro'
|
895
908
|
export { default as QrCode } from './QrCode.astro'
|
896
909
|
export { default as Quote } from './Quote.astro'
|
910
|
+
export { default as Rabbit } from './Rabbit.astro'
|
897
911
|
export { default as Radar } from './Radar.astro'
|
898
912
|
export { default as Radiation } from './Radiation.astro'
|
899
913
|
export { default as RadioReceiver } from './RadioReceiver.astro'
|
900
914
|
export { default as RadioTower } from './RadioTower.astro'
|
901
915
|
export { default as Radio } from './Radio.astro'
|
916
|
+
export { default as RailSymbol } from './RailSymbol.astro'
|
902
917
|
export { default as Rainbow } from './Rainbow.astro'
|
903
918
|
export { default as Rat } from './Rat.astro'
|
904
919
|
export { default as Ratio } from './Ratio.astro'
|
@@ -964,6 +979,8 @@ export { default as SearchCode } from './SearchCode.astro'
|
|
964
979
|
export { default as SearchSlash } from './SearchSlash.astro'
|
965
980
|
export { default as SearchX } from './SearchX.astro'
|
966
981
|
export { default as Search } from './Search.astro'
|
982
|
+
export { default as SendHorizonal } from './SendHorizonal.astro'
|
983
|
+
export { default as SendToBack } from './SendToBack.astro'
|
967
984
|
export { default as Send } from './Send.astro'
|
968
985
|
export { default as SeparatorHorizontal } from './SeparatorHorizontal.astro'
|
969
986
|
export { default as SeparatorVertical } from './SeparatorVertical.astro'
|
@@ -977,12 +994,14 @@ export { default as Shapes } from './Shapes.astro'
|
|
977
994
|
export { default as Share2 } from './Share2.astro'
|
978
995
|
export { default as Share } from './Share.astro'
|
979
996
|
export { default as Sheet } from './Sheet.astro'
|
997
|
+
export { default as Shell } from './Shell.astro'
|
980
998
|
export { default as ShieldAlert } from './ShieldAlert.astro'
|
981
999
|
export { default as ShieldCheck } from './ShieldCheck.astro'
|
982
1000
|
export { default as ShieldClose } from './ShieldClose.astro'
|
983
1001
|
export { default as ShieldOff } from './ShieldOff.astro'
|
984
1002
|
export { default as ShieldQuestion } from './ShieldQuestion.astro'
|
985
1003
|
export { default as Shield } from './Shield.astro'
|
1004
|
+
export { default as ShipWheel } from './ShipWheel.astro'
|
986
1005
|
export { default as Ship } from './Ship.astro'
|
987
1006
|
export { default as Shirt } from './Shirt.astro'
|
988
1007
|
export { default as ShoppingBag } from './ShoppingBag.astro'
|
@@ -1013,6 +1032,7 @@ export { default as SmartphoneNfc } from './SmartphoneNfc.astro'
|
|
1013
1032
|
export { default as Smartphone } from './Smartphone.astro'
|
1014
1033
|
export { default as SmilePlus } from './SmilePlus.astro'
|
1015
1034
|
export { default as Smile } from './Smile.astro'
|
1035
|
+
export { default as Snail } from './Snail.astro'
|
1016
1036
|
export { default as Snowflake } from './Snowflake.astro'
|
1017
1037
|
export { default as Sofa } from './Sofa.astro'
|
1018
1038
|
export { default as Soup } from './Soup.astro'
|
@@ -1108,7 +1128,12 @@ export { default as TouchpadOff } from './TouchpadOff.astro'
|
|
1108
1128
|
export { default as Touchpad } from './Touchpad.astro'
|
1109
1129
|
export { default as TowerControl } from './TowerControl.astro'
|
1110
1130
|
export { default as ToyBrick } from './ToyBrick.astro'
|
1111
|
-
export { default as
|
1131
|
+
export { default as Tractor } from './Tractor.astro'
|
1132
|
+
export { default as TrafficCone } from './TrafficCone.astro'
|
1133
|
+
export { default as TrainFrontTunnel } from './TrainFrontTunnel.astro'
|
1134
|
+
export { default as TrainFront } from './TrainFront.astro'
|
1135
|
+
export { default as TrainTrack } from './TrainTrack.astro'
|
1136
|
+
export { default as TramFront } from './TramFront.astro'
|
1112
1137
|
export { default as Trash2 } from './Trash2.astro'
|
1113
1138
|
export { default as Trash } from './Trash.astro'
|
1114
1139
|
export { default as TreeDeciduous } from './TreeDeciduous.astro'
|
@@ -1121,6 +1146,7 @@ export { default as TriangleRight } from './TriangleRight.astro'
|
|
1121
1146
|
export { default as Triangle } from './Triangle.astro'
|
1122
1147
|
export { default as Trophy } from './Trophy.astro'
|
1123
1148
|
export { default as Truck } from './Truck.astro'
|
1149
|
+
export { default as Turtle } from './Turtle.astro'
|
1124
1150
|
export { default as Tv2 } from './Tv2.astro'
|
1125
1151
|
export { default as Tv } from './Tv.astro'
|
1126
1152
|
export { default as Twitch } from './Twitch.astro'
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.265.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",
|
7
|
-
"homepage": "https://
|
7
|
+
"homepage": "https://lucide-astro.dzeio.com",
|
8
8
|
"bugs": "https://github.com/dzeiocom/lucide-astro/issues",
|
9
9
|
"repository": "https://github.com/dzeiocom/lucide-astro.git",
|
10
10
|
"scripts": {
|
@@ -26,7 +26,7 @@
|
|
26
26
|
"author": "Aviortheking",
|
27
27
|
"license": "MIT",
|
28
28
|
"devDependencies": {
|
29
|
-
"lucide-static": "0.
|
29
|
+
"lucide-static": "0.265.0"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
32
|
"astro": "^2.7.1"
|
package/dist/Grid.astro
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
---
|
2
|
-
import Layout from './.Layout.astro'
|
3
|
-
export type { Props } from './index.d.ts'
|
4
|
-
---
|
5
|
-
|
6
|
-
<Layout
|
7
|
-
{...Astro.props}
|
8
|
-
>
|
9
|
-
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
|
10
|
-
<line x1="3" x2="21" y1="9" y2="9" />
|
11
|
-
<line x1="3" x2="21" y1="15" y2="15" />
|
12
|
-
<line x1="9" x2="9" y1="3" y2="21" />
|
13
|
-
<line x1="15" x2="15" y1="3" y2="21" />
|
14
|
-
</Layout>
|
File without changes
|