lucide-astro 0.292.0 → 0.294.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AudioLines.astro +13 -0
- package/dist/AudioWaveform.astro +8 -0
- package/dist/CassetteTape.astro +1 -1
- package/dist/DiscAlbum.astro +10 -0
- package/dist/Drama.astro +8 -8
- package/dist/Drum.astro +14 -0
- package/dist/FileMusic.astro +11 -0
- package/dist/Guitar.astro +12 -0
- package/dist/KeyboardMusic.astro +16 -0
- package/dist/LifeBuoy.astro +4 -4
- package/dist/Piano.astro +13 -0
- package/dist/RotateCcw.astro +1 -1
- package/dist/Spade.astro +2 -2
- package/dist/Speaker.astro +3 -2
- package/dist/Store.astro +5 -5
- package/dist/TextCursorInput.astro +5 -5
- package/dist/Theater.astro +9 -9
- package/dist/{User2.astro → UserRound.astro} +1 -1
- package/dist/UserRoundCheck.astro +10 -0
- package/dist/UserRoundCog.astro +18 -0
- package/dist/UserRoundMinus.astro +10 -0
- package/dist/UserRoundPlus.astro +11 -0
- package/dist/UserRoundX.astro +11 -0
- package/dist/UsersRound.astro +10 -0
- package/dist/index.d.ts +20 -12
- package/dist/index.js +20 -12
- package/package.json +2 -2
- package/dist/UserCheck2.astro +0 -10
- package/dist/UserCog2.astro +0 -18
- package/dist/UserMinus2.astro +0 -10
- package/dist/UserPlus2.astro +0 -11
- package/dist/UserX2.astro +0 -11
- package/dist/Users2.astro +0 -10
- /package/dist/{AlarmCheck.astro → AlarmClockCheck.astro} +0 -0
- /package/dist/{UserCircle.astro → CircleUser.astro} +0 -0
- /package/dist/{UserCircle2.astro → CircleUserRound.astro} +0 -0
- /package/dist/{UserSquare.astro → SquareUser.astro} +0 -0
- /package/dist/{UserSquare2.astro → SquareUserRound.astro} +0 -0
@@ -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="M2 10v3" />
|
8
|
+
<path d="M6 6v11" />
|
9
|
+
<path d="M10 3v18" />
|
10
|
+
<path d="M14 8v7" />
|
11
|
+
<path d="M18 5v13" />
|
12
|
+
<path d="M22 10v3" />
|
13
|
+
</Layout>
|
package/dist/CassetteTape.astro
CHANGED
@@ -8,5 +8,5 @@ export type { Props } from './index.d.ts'
|
|
8
8
|
<circle cx="8" cy="10" r="2" />
|
9
9
|
<path d="M8 12h8" />
|
10
10
|
<circle cx="16" cy="10" r="2" />
|
11
|
-
<path d="m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3"/>
|
11
|
+
<path d="m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3" />
|
12
12
|
</Layout>
|
package/dist/Drama.astro
CHANGED
@@ -4,12 +4,12 @@ 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="M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"/>
|
12
|
-
<path d="M17.4 9.9c-.8.8-2 .8-2.8 0"/>
|
13
|
-
<path d="M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"/>
|
14
|
-
<path d="M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"/>
|
7
|
+
<path d="M10 11h.01" />
|
8
|
+
<path d="M14 6h.01" />
|
9
|
+
<path d="M18 6h.01" />
|
10
|
+
<path d="M6.5 13.1h.01" />
|
11
|
+
<path d="M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3" />
|
12
|
+
<path d="M17.4 9.9c-.8.8-2 .8-2.8 0" />
|
13
|
+
<path d="M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7" />
|
14
|
+
<path d="M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4" />
|
15
15
|
</Layout>
|
package/dist/Drum.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 {...Astro.props}>
|
7
|
+
<path d="m2 2 8 8" />
|
8
|
+
<path d="m22 2-8 8" />
|
9
|
+
<ellipse cx="12" cy="9" rx="10" ry="5" />
|
10
|
+
<path d="M7 13.4v7.9" />
|
11
|
+
<path d="M12 14v8" />
|
12
|
+
<path d="M17 13.4v7.9" />
|
13
|
+
<path d="M2 9v8a10 5 0 0 0 20 0V9" />
|
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
|
+
<circle cx="14" cy="16" r="2" />
|
8
|
+
<circle cx="6" cy="18" r="2" />
|
9
|
+
<path d="M4 12.4V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2h-7.5" />
|
10
|
+
<path d="M8 18v-7.7L16 9v7" />
|
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 {...Astro.props}>
|
7
|
+
<path d="m20 7 1.7-1.7a1 1 0 0 0 0-1.4l-1.6-1.6a1 1 0 0 0-1.4 0L17 4v3Z" />
|
8
|
+
<path d="m17 7-5.1 5.1" />
|
9
|
+
<circle cx="11.5" cy="12.5" r=".5" />
|
10
|
+
<path d="M6 12a2 2 0 0 0 1.8-1.2l.4-.9C8.7 8.8 9.8 8 11 8c2.8 0 5 2.2 5 5 0 1.2-.8 2.3-1.9 2.8l-.9.4A2 2 0 0 0 12 18a4 4 0 0 1-4 4c-3.3 0-6-2.7-6-6a4 4 0 0 1 4-4" />
|
11
|
+
<path d="m6 16 2 2" />
|
12
|
+
</Layout>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
import Layout from './.Layout.astro'
|
3
|
+
export type { Props } from './index.d.ts'
|
4
|
+
---
|
5
|
+
|
6
|
+
<Layout {...Astro.props}>
|
7
|
+
<rect width="20" height="16" x="2" y="4" rx="2" />
|
8
|
+
<path d="M6 8h4" />
|
9
|
+
<path d="M14 8h.01" />
|
10
|
+
<path d="M18 8h.01" />
|
11
|
+
<path d="M2 12h20" />
|
12
|
+
<path d="M6 12v4" />
|
13
|
+
<path d="M10 12v4" />
|
14
|
+
<path d="M14 12v4" />
|
15
|
+
<path d="M18 12v4" />
|
16
|
+
</Layout>
|
package/dist/LifeBuoy.astro
CHANGED
@@ -5,9 +5,9 @@ export type { Props } from './index.d.ts'
|
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
7
|
<circle cx="12" cy="12" r="10" />
|
8
|
-
<path d="m4.93 4.93 4.24 4.24"/>
|
9
|
-
<path d="m14.83 9.17 4.24-4.24"/>
|
10
|
-
<path d="m14.83 14.83 4.24 4.24"/>
|
11
|
-
<path d="m9.17 14.83-4.24 4.24"/>
|
8
|
+
<path d="m4.93 4.93 4.24 4.24" />
|
9
|
+
<path d="m14.83 9.17 4.24-4.24" />
|
10
|
+
<path d="m14.83 14.83 4.24 4.24" />
|
11
|
+
<path d="m9.17 14.83-4.24 4.24" />
|
12
12
|
<circle cx="12" cy="12" r="4" />
|
13
13
|
</Layout>
|
package/dist/Piano.astro
ADDED
@@ -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="M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8" />
|
8
|
+
<path d="M2 14h20" />
|
9
|
+
<path d="M6 14v4" />
|
10
|
+
<path d="M10 14v4" />
|
11
|
+
<path d="M14 14v4" />
|
12
|
+
<path d="M18 14v4" />
|
13
|
+
</Layout>
|
package/dist/RotateCcw.astro
CHANGED
package/dist/Spade.astro
CHANGED
@@ -4,6 +4,6 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M5 9c-1.5 1.5-3 3.2-3 5.5A5.5 5.5 0 0 0 7.5 20c1.8 0 3-.5 4.5-2 1.5 1.5 2.7 2 4.5 2a5.5 5.5 0 0 0 5.5-5.5c0-2.3-1.5-4-3-5.5l-7-7-7 7Z"/>
|
8
|
-
<path d="M12 18v4"/>
|
7
|
+
<path d="M5 9c-1.5 1.5-3 3.2-3 5.5A5.5 5.5 0 0 0 7.5 20c1.8 0 3-.5 4.5-2 1.5 1.5 2.7 2 4.5 2a5.5 5.5 0 0 0 5.5-5.5c0-2.3-1.5-4-3-5.5l-7-7-7 7Z" />
|
8
|
+
<path d="M12 18v4" />
|
9
9
|
</Layout>
|
package/dist/Speaker.astro
CHANGED
@@ -4,7 +4,8 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<rect width="16" height="20" x="4" y="2" rx="2"
|
7
|
+
<rect width="16" height="20" x="4" y="2" rx="2" />
|
8
|
+
<path d="M12 6h.01" />
|
8
9
|
<circle cx="12" cy="14" r="4" />
|
9
|
-
<
|
10
|
+
<path d="M12 14h.01" />
|
10
11
|
</Layout>
|
package/dist/Store.astro
CHANGED
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7"/>
|
8
|
-
<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"/>
|
9
|
-
<path d="M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4"/>
|
10
|
-
<path d="M2 7h20"/>
|
11
|
-
<path d="M22 7v3a2 2 0 0 1-2 2v0a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12v0a2 2 0 0 1-2-2V7"/>
|
7
|
+
<path d="m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7" />
|
8
|
+
<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" />
|
9
|
+
<path d="M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4" />
|
10
|
+
<path d="M2 7h20" />
|
11
|
+
<path d="M22 7v3a2 2 0 0 1-2 2v0a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12v0a2 2 0 0 1-2-2V7" />
|
12
12
|
</Layout>
|
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1"/>
|
8
|
-
<path d="M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5"/>
|
9
|
-
<path d="M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1"/>
|
10
|
-
<path d="M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7"/>
|
11
|
-
<path d="M9 7v10"/>
|
7
|
+
<path d="M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1" />
|
8
|
+
<path d="M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5" />
|
9
|
+
<path d="M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1" />
|
10
|
+
<path d="M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7" />
|
11
|
+
<path d="M9 7v10" />
|
12
12
|
</Layout>
|
package/dist/Theater.astro
CHANGED
@@ -4,13 +4,13 @@ export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
5
5
|
|
6
6
|
<Layout {...Astro.props}>
|
7
|
-
<path d="M2 10s3-3 3-8"/>
|
8
|
-
<path d="M22 10s-3-3-3-8"/>
|
9
|
-
<path d="M10 2c0 4.4-3.6 8-8 8"/>
|
10
|
-
<path d="M14 2c0 4.4 3.6 8 8 8"/>
|
11
|
-
<path d="M2 10s2 2 2 5"/>
|
12
|
-
<path d="M22 10s-2 2-2 5"/>
|
13
|
-
<path d="M8 15h8"/>
|
14
|
-
<path d="M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"/>
|
15
|
-
<path d="M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"/>
|
7
|
+
<path d="M2 10s3-3 3-8" />
|
8
|
+
<path d="M22 10s-3-3-3-8" />
|
9
|
+
<path d="M10 2c0 4.4-3.6 8-8 8" />
|
10
|
+
<path d="M14 2c0 4.4 3.6 8 8 8" />
|
11
|
+
<path d="M2 10s2 2 2 5" />
|
12
|
+
<path d="M22 10s-2 2-2 5" />
|
13
|
+
<path d="M8 15h8" />
|
14
|
+
<path d="M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1" />
|
15
|
+
<path d="M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1" />
|
16
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 {...Astro.props}>
|
7
|
+
<path d="M2 21a8 8 0 0 1 10.434-7.62" />
|
8
|
+
<circle cx="10" cy="8" r="5" />
|
9
|
+
<circle cx="18" cy="18" r="3" />
|
10
|
+
<path d="m19.5 14.3-.4.9" />
|
11
|
+
<path d="m16.9 20.8-.4.9" />
|
12
|
+
<path d="m21.7 19.5-.9-.4" />
|
13
|
+
<path d="m15.2 16.9-.9-.4" />
|
14
|
+
<path d="m21.7 16.5-.9.4" />
|
15
|
+
<path d="m15.2 19.1-.9.4" />
|
16
|
+
<path d="m19.5 21.7-.4-.9" />
|
17
|
+
<path d="m16.9 15.2-.4-.9" />
|
18
|
+
</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="M2 21a8 8 0 0 1 13.292-6" />
|
8
|
+
<circle cx="10" cy="8" r="5" />
|
9
|
+
<path d="M19 16v6" />
|
10
|
+
<path d="M22 19h-6" />
|
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="M2 21a8 8 0 0 1 11.873-7" />
|
8
|
+
<circle cx="10" cy="8" r="5" />
|
9
|
+
<path d="m17 17 5 5" />
|
10
|
+
<path d="m22 17-5 5" />
|
11
|
+
</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 21a8 8 0 0 0-16 0" />
|
8
|
+
<circle cx="10" cy="8" r="5" />
|
9
|
+
<path d="M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3" />
|
10
|
+
</Layout>
|
package/dist/index.d.ts
CHANGED
@@ -8,7 +8,7 @@ export { default as ActivitySquare } from './ActivitySquare.astro'
|
|
8
8
|
export { default as Activity } from './Activity.astro'
|
9
9
|
export { default as AirVent } from './AirVent.astro'
|
10
10
|
export { default as Airplay } from './Airplay.astro'
|
11
|
-
export { default as
|
11
|
+
export { default as AlarmClockCheck } from './AlarmClockCheck.astro'
|
12
12
|
export { default as AlarmClockOff } from './AlarmClockOff.astro'
|
13
13
|
export { default as AlarmClock } from './AlarmClock.astro'
|
14
14
|
export { default as AlarmMinus } from './AlarmMinus.astro'
|
@@ -119,6 +119,8 @@ export { default as ArrowsUpFromLine } from './ArrowsUpFromLine.astro'
|
|
119
119
|
export { default as Asterisk } from './Asterisk.astro'
|
120
120
|
export { default as AtSign } from './AtSign.astro'
|
121
121
|
export { default as Atom } from './Atom.astro'
|
122
|
+
export { default as AudioLines } from './AudioLines.astro'
|
123
|
+
export { default as AudioWaveform } from './AudioWaveform.astro'
|
122
124
|
export { default as Award } from './Award.astro'
|
123
125
|
export { default as Axe } from './Axe.astro'
|
124
126
|
export { default as Axis3d } from './Axis3d.astro'
|
@@ -317,6 +319,8 @@ export { default as CircleEqual } from './CircleEqual.astro'
|
|
317
319
|
export { default as CircleOff } from './CircleOff.astro'
|
318
320
|
export { default as CircleSlash2 } from './CircleSlash2.astro'
|
319
321
|
export { default as CircleSlash } from './CircleSlash.astro'
|
322
|
+
export { default as CircleUserRound } from './CircleUserRound.astro'
|
323
|
+
export { default as CircleUser } from './CircleUser.astro'
|
320
324
|
export { default as Circle } from './Circle.astro'
|
321
325
|
export { default as CircuitBoard } from './CircuitBoard.astro'
|
322
326
|
export { default as Citrus } from './Citrus.astro'
|
@@ -426,6 +430,7 @@ export { default as Dices } from './Dices.astro'
|
|
426
430
|
export { default as Diff } from './Diff.astro'
|
427
431
|
export { default as Disc2 } from './Disc2.astro'
|
428
432
|
export { default as Disc3 } from './Disc3.astro'
|
433
|
+
export { default as DiscAlbum } from './DiscAlbum.astro'
|
429
434
|
export { default as Disc } from './Disc.astro'
|
430
435
|
export { default as DivideCircle } from './DivideCircle.astro'
|
431
436
|
export { default as DivideSquare } from './DivideSquare.astro'
|
@@ -445,6 +450,7 @@ export { default as Drama } from './Drama.astro'
|
|
445
450
|
export { default as Dribbble } from './Dribbble.astro'
|
446
451
|
export { default as Droplet } from './Droplet.astro'
|
447
452
|
export { default as Droplets } from './Droplets.astro'
|
453
|
+
export { default as Drum } from './Drum.astro'
|
448
454
|
export { default as Drumstick } from './Drumstick.astro'
|
449
455
|
export { default as Dumbbell } from './Dumbbell.astro'
|
450
456
|
export { default as EarOff } from './EarOff.astro'
|
@@ -498,6 +504,7 @@ export { default as FileLock2 } from './FileLock2.astro'
|
|
498
504
|
export { default as FileLock } from './FileLock.astro'
|
499
505
|
export { default as FileMinus2 } from './FileMinus2.astro'
|
500
506
|
export { default as FileMinus } from './FileMinus.astro'
|
507
|
+
export { default as FileMusic } from './FileMusic.astro'
|
501
508
|
export { default as FileOutput } from './FileOutput.astro'
|
502
509
|
export { default as FilePieChart } from './FilePieChart.astro'
|
503
510
|
export { default as FilePlus2 } from './FilePlus2.astro'
|
@@ -637,6 +644,7 @@ export { default as GripHorizontal } from './GripHorizontal.astro'
|
|
637
644
|
export { default as GripVertical } from './GripVertical.astro'
|
638
645
|
export { default as Grip } from './Grip.astro'
|
639
646
|
export { default as Group } from './Group.astro'
|
647
|
+
export { default as Guitar } from './Guitar.astro'
|
640
648
|
export { default as Hammer } from './Hammer.astro'
|
641
649
|
export { default as HandMetal } from './HandMetal.astro'
|
642
650
|
export { default as Hand } from './Hand.astro'
|
@@ -695,6 +703,7 @@ export { default as Kanban } from './Kanban.astro'
|
|
695
703
|
export { default as KeyRound } from './KeyRound.astro'
|
696
704
|
export { default as KeySquare } from './KeySquare.astro'
|
697
705
|
export { default as Key } from './Key.astro'
|
706
|
+
export { default as KeyboardMusic } from './KeyboardMusic.astro'
|
698
707
|
export { default as Keyboard } from './Keyboard.astro'
|
699
708
|
export { default as LampCeiling } from './LampCeiling.astro'
|
700
709
|
export { default as LampDesk } from './LampDesk.astro'
|
@@ -924,6 +933,7 @@ export { default as PhoneOutgoing } from './PhoneOutgoing.astro'
|
|
924
933
|
export { default as Phone } from './Phone.astro'
|
925
934
|
export { default as PiSquare } from './PiSquare.astro'
|
926
935
|
export { default as Pi } from './Pi.astro'
|
936
|
+
export { default as Piano } from './Piano.astro'
|
927
937
|
export { default as PictureInPicture2 } from './PictureInPicture2.astro'
|
928
938
|
export { default as PictureInPicture } from './PictureInPicture.astro'
|
929
939
|
export { default as PieChart } from './PieChart.astro'
|
@@ -1133,6 +1143,8 @@ export { default as SquareDot } from './SquareDot.astro'
|
|
1133
1143
|
export { default as SquareEqual } from './SquareEqual.astro'
|
1134
1144
|
export { default as SquareSlash } from './SquareSlash.astro'
|
1135
1145
|
export { default as SquareStack } from './SquareStack.astro'
|
1146
|
+
export { default as SquareUserRound } from './SquareUserRound.astro'
|
1147
|
+
export { default as SquareUser } from './SquareUser.astro'
|
1136
1148
|
export { default as Square } from './Square.astro'
|
1137
1149
|
export { default as Squirrel } from './Squirrel.astro'
|
1138
1150
|
export { default as Stamp } from './Stamp.astro'
|
@@ -1250,23 +1262,19 @@ export { default as Unplug } from './Unplug.astro'
|
|
1250
1262
|
export { default as UploadCloud } from './UploadCloud.astro'
|
1251
1263
|
export { default as Upload } from './Upload.astro'
|
1252
1264
|
export { default as Usb } from './Usb.astro'
|
1253
|
-
export { default as User2 } from './User2.astro'
|
1254
|
-
export { default as UserCheck2 } from './UserCheck2.astro'
|
1255
1265
|
export { default as UserCheck } from './UserCheck.astro'
|
1256
|
-
export { default as UserCircle2 } from './UserCircle2.astro'
|
1257
|
-
export { default as UserCircle } from './UserCircle.astro'
|
1258
|
-
export { default as UserCog2 } from './UserCog2.astro'
|
1259
1266
|
export { default as UserCog } from './UserCog.astro'
|
1260
|
-
export { default as UserMinus2 } from './UserMinus2.astro'
|
1261
1267
|
export { default as UserMinus } from './UserMinus.astro'
|
1262
|
-
export { default as UserPlus2 } from './UserPlus2.astro'
|
1263
1268
|
export { default as UserPlus } from './UserPlus.astro'
|
1264
|
-
export { default as
|
1265
|
-
export { default as
|
1266
|
-
export { default as
|
1269
|
+
export { default as UserRoundCheck } from './UserRoundCheck.astro'
|
1270
|
+
export { default as UserRoundCog } from './UserRoundCog.astro'
|
1271
|
+
export { default as UserRoundMinus } from './UserRoundMinus.astro'
|
1272
|
+
export { default as UserRoundPlus } from './UserRoundPlus.astro'
|
1273
|
+
export { default as UserRoundX } from './UserRoundX.astro'
|
1274
|
+
export { default as UserRound } from './UserRound.astro'
|
1267
1275
|
export { default as UserX } from './UserX.astro'
|
1268
1276
|
export { default as User } from './User.astro'
|
1269
|
-
export { default as
|
1277
|
+
export { default as UsersRound } from './UsersRound.astro'
|
1270
1278
|
export { default as Users } from './Users.astro'
|
1271
1279
|
export { default as UtensilsCrossed } from './UtensilsCrossed.astro'
|
1272
1280
|
export { default as Utensils } from './Utensils.astro'
|
package/dist/index.js
CHANGED
@@ -3,7 +3,7 @@ export { default as ActivitySquare } from './ActivitySquare.astro'
|
|
3
3
|
export { default as Activity } from './Activity.astro'
|
4
4
|
export { default as AirVent } from './AirVent.astro'
|
5
5
|
export { default as Airplay } from './Airplay.astro'
|
6
|
-
export { default as
|
6
|
+
export { default as AlarmClockCheck } from './AlarmClockCheck.astro'
|
7
7
|
export { default as AlarmClockOff } from './AlarmClockOff.astro'
|
8
8
|
export { default as AlarmClock } from './AlarmClock.astro'
|
9
9
|
export { default as AlarmMinus } from './AlarmMinus.astro'
|
@@ -114,6 +114,8 @@ export { default as ArrowsUpFromLine } from './ArrowsUpFromLine.astro'
|
|
114
114
|
export { default as Asterisk } from './Asterisk.astro'
|
115
115
|
export { default as AtSign } from './AtSign.astro'
|
116
116
|
export { default as Atom } from './Atom.astro'
|
117
|
+
export { default as AudioLines } from './AudioLines.astro'
|
118
|
+
export { default as AudioWaveform } from './AudioWaveform.astro'
|
117
119
|
export { default as Award } from './Award.astro'
|
118
120
|
export { default as Axe } from './Axe.astro'
|
119
121
|
export { default as Axis3d } from './Axis3d.astro'
|
@@ -312,6 +314,8 @@ export { default as CircleEqual } from './CircleEqual.astro'
|
|
312
314
|
export { default as CircleOff } from './CircleOff.astro'
|
313
315
|
export { default as CircleSlash2 } from './CircleSlash2.astro'
|
314
316
|
export { default as CircleSlash } from './CircleSlash.astro'
|
317
|
+
export { default as CircleUserRound } from './CircleUserRound.astro'
|
318
|
+
export { default as CircleUser } from './CircleUser.astro'
|
315
319
|
export { default as Circle } from './Circle.astro'
|
316
320
|
export { default as CircuitBoard } from './CircuitBoard.astro'
|
317
321
|
export { default as Citrus } from './Citrus.astro'
|
@@ -421,6 +425,7 @@ export { default as Dices } from './Dices.astro'
|
|
421
425
|
export { default as Diff } from './Diff.astro'
|
422
426
|
export { default as Disc2 } from './Disc2.astro'
|
423
427
|
export { default as Disc3 } from './Disc3.astro'
|
428
|
+
export { default as DiscAlbum } from './DiscAlbum.astro'
|
424
429
|
export { default as Disc } from './Disc.astro'
|
425
430
|
export { default as DivideCircle } from './DivideCircle.astro'
|
426
431
|
export { default as DivideSquare } from './DivideSquare.astro'
|
@@ -440,6 +445,7 @@ export { default as Drama } from './Drama.astro'
|
|
440
445
|
export { default as Dribbble } from './Dribbble.astro'
|
441
446
|
export { default as Droplet } from './Droplet.astro'
|
442
447
|
export { default as Droplets } from './Droplets.astro'
|
448
|
+
export { default as Drum } from './Drum.astro'
|
443
449
|
export { default as Drumstick } from './Drumstick.astro'
|
444
450
|
export { default as Dumbbell } from './Dumbbell.astro'
|
445
451
|
export { default as EarOff } from './EarOff.astro'
|
@@ -493,6 +499,7 @@ export { default as FileLock2 } from './FileLock2.astro'
|
|
493
499
|
export { default as FileLock } from './FileLock.astro'
|
494
500
|
export { default as FileMinus2 } from './FileMinus2.astro'
|
495
501
|
export { default as FileMinus } from './FileMinus.astro'
|
502
|
+
export { default as FileMusic } from './FileMusic.astro'
|
496
503
|
export { default as FileOutput } from './FileOutput.astro'
|
497
504
|
export { default as FilePieChart } from './FilePieChart.astro'
|
498
505
|
export { default as FilePlus2 } from './FilePlus2.astro'
|
@@ -632,6 +639,7 @@ export { default as GripHorizontal } from './GripHorizontal.astro'
|
|
632
639
|
export { default as GripVertical } from './GripVertical.astro'
|
633
640
|
export { default as Grip } from './Grip.astro'
|
634
641
|
export { default as Group } from './Group.astro'
|
642
|
+
export { default as Guitar } from './Guitar.astro'
|
635
643
|
export { default as Hammer } from './Hammer.astro'
|
636
644
|
export { default as HandMetal } from './HandMetal.astro'
|
637
645
|
export { default as Hand } from './Hand.astro'
|
@@ -690,6 +698,7 @@ export { default as Kanban } from './Kanban.astro'
|
|
690
698
|
export { default as KeyRound } from './KeyRound.astro'
|
691
699
|
export { default as KeySquare } from './KeySquare.astro'
|
692
700
|
export { default as Key } from './Key.astro'
|
701
|
+
export { default as KeyboardMusic } from './KeyboardMusic.astro'
|
693
702
|
export { default as Keyboard } from './Keyboard.astro'
|
694
703
|
export { default as LampCeiling } from './LampCeiling.astro'
|
695
704
|
export { default as LampDesk } from './LampDesk.astro'
|
@@ -919,6 +928,7 @@ export { default as PhoneOutgoing } from './PhoneOutgoing.astro'
|
|
919
928
|
export { default as Phone } from './Phone.astro'
|
920
929
|
export { default as PiSquare } from './PiSquare.astro'
|
921
930
|
export { default as Pi } from './Pi.astro'
|
931
|
+
export { default as Piano } from './Piano.astro'
|
922
932
|
export { default as PictureInPicture2 } from './PictureInPicture2.astro'
|
923
933
|
export { default as PictureInPicture } from './PictureInPicture.astro'
|
924
934
|
export { default as PieChart } from './PieChart.astro'
|
@@ -1128,6 +1138,8 @@ export { default as SquareDot } from './SquareDot.astro'
|
|
1128
1138
|
export { default as SquareEqual } from './SquareEqual.astro'
|
1129
1139
|
export { default as SquareSlash } from './SquareSlash.astro'
|
1130
1140
|
export { default as SquareStack } from './SquareStack.astro'
|
1141
|
+
export { default as SquareUserRound } from './SquareUserRound.astro'
|
1142
|
+
export { default as SquareUser } from './SquareUser.astro'
|
1131
1143
|
export { default as Square } from './Square.astro'
|
1132
1144
|
export { default as Squirrel } from './Squirrel.astro'
|
1133
1145
|
export { default as Stamp } from './Stamp.astro'
|
@@ -1245,23 +1257,19 @@ export { default as Unplug } from './Unplug.astro'
|
|
1245
1257
|
export { default as UploadCloud } from './UploadCloud.astro'
|
1246
1258
|
export { default as Upload } from './Upload.astro'
|
1247
1259
|
export { default as Usb } from './Usb.astro'
|
1248
|
-
export { default as User2 } from './User2.astro'
|
1249
|
-
export { default as UserCheck2 } from './UserCheck2.astro'
|
1250
1260
|
export { default as UserCheck } from './UserCheck.astro'
|
1251
|
-
export { default as UserCircle2 } from './UserCircle2.astro'
|
1252
|
-
export { default as UserCircle } from './UserCircle.astro'
|
1253
|
-
export { default as UserCog2 } from './UserCog2.astro'
|
1254
1261
|
export { default as UserCog } from './UserCog.astro'
|
1255
|
-
export { default as UserMinus2 } from './UserMinus2.astro'
|
1256
1262
|
export { default as UserMinus } from './UserMinus.astro'
|
1257
|
-
export { default as UserPlus2 } from './UserPlus2.astro'
|
1258
1263
|
export { default as UserPlus } from './UserPlus.astro'
|
1259
|
-
export { default as
|
1260
|
-
export { default as
|
1261
|
-
export { default as
|
1264
|
+
export { default as UserRoundCheck } from './UserRoundCheck.astro'
|
1265
|
+
export { default as UserRoundCog } from './UserRoundCog.astro'
|
1266
|
+
export { default as UserRoundMinus } from './UserRoundMinus.astro'
|
1267
|
+
export { default as UserRoundPlus } from './UserRoundPlus.astro'
|
1268
|
+
export { default as UserRoundX } from './UserRoundX.astro'
|
1269
|
+
export { default as UserRound } from './UserRound.astro'
|
1262
1270
|
export { default as UserX } from './UserX.astro'
|
1263
1271
|
export { default as User } from './User.astro'
|
1264
|
-
export { default as
|
1272
|
+
export { default as UsersRound } from './UsersRound.astro'
|
1265
1273
|
export { default as Users } from './Users.astro'
|
1266
1274
|
export { default as UtensilsCrossed } from './UtensilsCrossed.astro'
|
1267
1275
|
export { default as Utensils } from './Utensils.astro'
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lucide-astro",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.294.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.294.0"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
32
|
"astro": "^2.7.1 || ^3.0.0"
|
package/dist/UserCheck2.astro
DELETED
package/dist/UserCog2.astro
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
---
|
2
|
-
import Layout from './.Layout.astro'
|
3
|
-
export type { Props } from './index.d.ts'
|
4
|
-
---
|
5
|
-
|
6
|
-
<Layout {...Astro.props}>
|
7
|
-
<circle cx="18" cy="15" r="3" />
|
8
|
-
<circle cx="8" cy="9" r="4" />
|
9
|
-
<path d="M10.5 13.5A6 6 0 0 0 2 19" />
|
10
|
-
<path d="m21.7 16.4-.9-.3" />
|
11
|
-
<path d="m15.2 13.9-.9-.3" />
|
12
|
-
<path d="m16.6 18.7.3-.9" />
|
13
|
-
<path d="m19.1 12.2.3-.9" />
|
14
|
-
<path d="m19.6 18.7-.4-1" />
|
15
|
-
<path d="m16.8 12.3-.4-1" />
|
16
|
-
<path d="m14.3 16.6 1-.4" />
|
17
|
-
<path d="m20.7 13.8 1-.4" />
|
18
|
-
</Layout>
|
package/dist/UserMinus2.astro
DELETED
package/dist/UserPlus2.astro
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
---
|
2
|
-
import Layout from './.Layout.astro'
|
3
|
-
export type { Props } from './index.d.ts'
|
4
|
-
---
|
5
|
-
|
6
|
-
<Layout {...Astro.props}>
|
7
|
-
<path d="M14 19a6 6 0 0 0-12 0" />
|
8
|
-
<circle cx="8" cy="9" r="4" />
|
9
|
-
<line x1="19" x2="19" y1="8" y2="14" />
|
10
|
-
<line x1="22" x2="16" y1="11" y2="11" />
|
11
|
-
</Layout>
|
package/dist/UserX2.astro
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
---
|
2
|
-
import Layout from './.Layout.astro'
|
3
|
-
export type { Props } from './index.d.ts'
|
4
|
-
---
|
5
|
-
|
6
|
-
<Layout {...Astro.props}>
|
7
|
-
<path d="M14 19a6 6 0 0 0-12 0" />
|
8
|
-
<circle cx="8" cy="9" r="4" />
|
9
|
-
<line x1="17" x2="22" y1="8" y2="13" />
|
10
|
-
<line x1="22" x2="17" y1="8" y2="13" />
|
11
|
-
</Layout>
|
package/dist/Users2.astro
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|