@lucide/astro 1.35.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/aliases/aliases.ts +116 -116
- package/src/aliases/prefixed.ts +663 -645
- package/src/aliases/suffixed.ts +1022 -1004
- package/src/icons/asterisk.ts +2 -2
- package/src/icons/badge-check.ts +2 -2
- package/src/icons/beef.ts +2 -2
- package/src/icons/blend.ts +2 -2
- package/src/icons/book-x.ts +2 -2
- package/src/icons/circle-check.ts +2 -2
- package/src/icons/circle-dot.ts +2 -2
- package/src/icons/clipboard-x.ts +2 -2
- package/src/icons/clock-check.ts +2 -2
- package/src/icons/copy-x.ts +2 -2
- package/src/icons/credit-card-check.ts +18 -0
- package/src/icons/credit-card-minus.ts +18 -0
- package/src/icons/credit-card-plus.ts +18 -0
- package/src/icons/credit-card-x.ts +18 -0
- package/src/icons/face-angry.ts +2 -2
- package/src/icons/git-merge-conflict.ts +2 -2
- package/src/icons/git-pull-request-closed.ts +2 -2
- package/src/icons/grid-2x2-x.ts +2 -2
- package/src/icons/index.ts +206 -197
- package/src/icons/key.ts +2 -2
- package/src/icons/mail-x.ts +2 -2
- package/src/icons/message-circle-check.ts +2 -2
- package/src/icons/message-circle-dashed-check.ts +18 -0
- package/src/icons/panda.ts +2 -2
- package/src/icons/piano.ts +2 -2
- package/src/icons/playing-card.ts +18 -0
- package/src/icons/playing-cards-fan.ts +18 -0
- package/src/icons/playing-cards.ts +18 -0
- package/src/icons/robot-vacuum.ts +18 -0
- package/src/icons/shopping-cart.ts +2 -2
- package/src/icons/spell-check.ts +2 -2
- package/src/icons/square-check.ts +2 -2
- package/src/icons/square-split-horizontal.ts +2 -2
- package/src/icons/square-split-vertical.ts +2 -2
- package/src/icons/sword.ts +2 -2
- package/src/icons/swords.ts +2 -2
- package/src/icons/user-round-x.ts +2 -2
- package/src/icons/volume-x.ts +2 -2
package/src/icons/key.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Key
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/key
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Key = createLucideIcon('key', [["path",{"d":"
|
|
16
|
+
const Key = createLucideIcon('key', [["path",{"d":"m2 21 9.6-9.6"}],["path",{"d":"m7.5 15.5 2.3 2.3a1 1 0 0 1 0 1.4l-2.1 2.1a1 1 0 0 1-1.4 0L4 19"}],["circle",{"cx":"15.5","cy":"7.5","r":"5.5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Key;
|
package/src/icons/mail-x.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name MailX
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/mail-x
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const MailX = createLucideIcon('mail-x', [["path",{"d":"M22
|
|
16
|
+
const MailX = createLucideIcon('mail-x', [["path",{"d":"M22 12.532V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8.792"}],["path",{"d":"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["path",{"d":"m16.5 16.5 5 5"}],["path",{"d":"m21.5 16.5-5 5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default MailX;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name MessageCircleCheck
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/message-circle-check
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const MessageCircleCheck = createLucideIcon('message-circle-check', [["path",{"d":"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{"d":"
|
|
16
|
+
const MessageCircleCheck = createLucideIcon('message-circle-check', [["path",{"d":"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{"d":"m16 9-5.5 5.5L8 12"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default MessageCircleCheck;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name MessageCircleDashedCheck
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/message-circle-dashed-check
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const MessageCircleDashedCheck = createLucideIcon('message-circle-dashed-check', [["path",{"d":"M10.1 2.182a10 10 0 013.8 0"}],["path",{"d":"M13.9 21.818a10 10 0 01-3.8 0"}],["path",{"d":"M17.609 3.72a10 10 0 012.69 2.7"}],["path",{"d":"M2.182 13.9a10 10 0 010-3.8"}],["path",{"d":"M20.28 17.61a10 10 0 01-2.7 2.69"}],["path",{"d":"M21.818 10.1a10 10 0 010 3.8"}],["path",{"d":"M3.721 6.391a10 10 0 012.7-2.69"}],["path",{"d":"m6.163 21.117-2.906.85a1 1 0 01-1.236-1.169l.965-2.98"}],["path",{"d":"m16 9-5.5 5.5L8 12"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default MessageCircleDashedCheck;
|
package/src/icons/panda.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Panda
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/panda
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Panda = createLucideIcon('panda', [["path",{"d":"M11.25 17.25h1.5L12 18z"}],["path",{"d":"m15 12 2 2"}],["path",{"d":"
|
|
16
|
+
const Panda = createLucideIcon('panda', [["path",{"d":"M11.25 17.25h1.5L12 18z"}],["path",{"d":"m15 12 2 2"}],["path",{"d":"M17.902 6.599a8 8 0 0 0-.5-.5"}],["path",{"d":"M2 14.5C2 19.47 6.48 22 12 22s10-2.53 10-7.5a10 10 0 0 0-1.3-4.83 4.5 4.5 0 1 0-7.05-5.5 8 8 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5A10 10 0 0 0 2 14.5"}],["path",{"d":"M6.099 6.599a8 8 0 0 1 .5-.5"}],["path",{"d":"m9 12-2 2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Panda;
|
package/src/icons/piano.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Piano
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/piano
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Piano = createLucideIcon('piano', [["path",{"d":"
|
|
16
|
+
const Piano = createLucideIcon('piano', [["path",{"d":"M10 13v4"}],["path",{"d":"M14 13v4"}],["path",{"d":"M18 13v4"}],["path",{"d":"M2 13h20"}],["path",{"d":"M22 11.5A3.5 3.5 0 0018.5 8a3.52 3.52 0 01-3.173-2A7 7 0 002 9v10a2 2 0 002 2h16a2 2 0 002-2z"}],["path",{"d":"M6 13v4"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Piano;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name PlayingCard
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/playing-card
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const PlayingCard = createLucideIcon('playing-card', [["path",{"d":"M12.832 8.445a1 1 0 00-1.589-.098l-2.075 3.098a1 1 0 000 1.11l2 3a1 1 0 001.664 0l2-3a1 1 0 000-1.11z"}],["rect",{"x":"5","y":"2","width":"14","height":"20","rx":"2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default PlayingCard;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name PlayingCardsFan
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/playing-cards-fan
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const PlayingCardsFan = createLucideIcon('playing-cards-fan', [["path",{"d":"M12.65 7.65a2 2 0 012.629-1.046l5.51 2.374a2 2 0 011.046 2.628l-3.957 9.184a2 2 0 01-2.628 1.046l-5.51-2.374a2 2 0 01-1.046-2.628z"}],["path",{"d":"M18 7.777V4a2 2 0 00-2-2h-6a2 2 0 00-2 2v10a2 2 0 001.137 1.805"}],["path",{"d":"m8 4.389-4.364.809a2 2 0 00-1.602 2.33l1.822 9.833a2 2 0 002.331 1.602l2.542-.47"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default PlayingCardsFan;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name PlayingCards
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/playing-cards
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const PlayingCards = createLucideIcon('playing-cards', [["path",{"d":"M14.832 8.445a1 1 0 00-1.589-.098l-2.075 3.098a1 1 0 000 1.11l2 3a1 1 0 001.664 0l2-3a1 1 0 000-1.11z"}],["path",{"d":"m7.18 20.827-5-11a2 2 0 01.993-2.647L7 5.44"}],["rect",{"x":"7","y":"2","width":"14","height":"20","rx":"2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default PlayingCards;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name RobotVacuum
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/robot-vacuum
|
|
10
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
|
+
*
|
|
12
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
|
+
* @returns {any} Astro Component
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
const RobotVacuum = createLucideIcon('robot-vacuum', [["path",{"d":"M11 17h2"}],["path",{"d":"M12 12h.01"}],["path",{"d":"M17 12a5 5 0 00-10 0"}],["path",{"d":"M19 2v2.8"}],["path",{"d":"M2 5h2.8"}],["path",{"d":"M22 5h-2.8"}],["path",{"d":"M5 2v2.8"}],["circle",{"cx":"12","cy":"12","r":"10"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default RobotVacuum;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name ShoppingCart
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/shopping-cart
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const ShoppingCart = createLucideIcon('shopping-cart', [["
|
|
16
|
+
const ShoppingCart = createLucideIcon('shopping-cart', [["path",{"d":"m2.05 2.05 1.099-.028a1 1 0 0 1 1.008.815l2.69 14.347A1 1 0 0 0 7.83 18H18"}],["path",{"d":"M4.563 5h16.435a1 1 0 0 1 .981 1.204l-1.026 6.226A2 2 0 0 1 18.962 14H6.25"}],["circle",{"cx":"18","cy":"20","r":"2"}],["circle",{"cx":"8","cy":"20","r":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default ShoppingCart;
|
package/src/icons/spell-check.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name SpellCheck
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/spell-check
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const SpellCheck = createLucideIcon('spell-check', [["path",{"d":"
|
|
16
|
+
const SpellCheck = createLucideIcon('spell-check', [["path",{"d":"m20 15-5.5 5.5L12 18"}],["path",{"d":"m4 16 6-12 5.115 10.23"}],["path",{"d":"M6 12h8"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default SpellCheck;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name SquareCheck
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/square-check
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const SquareCheck = createLucideIcon('square-check', [["rect",{"width":"18","height":"18","x":"3","y":"3","rx":"2"}],["path",{"d":"
|
|
16
|
+
const SquareCheck = createLucideIcon('square-check', [["rect",{"width":"18","height":"18","x":"3","y":"3","rx":"2"}],["path",{"d":"m16 9-5.5 5.5L8 12"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default SquareCheck;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name SquareSplitHorizontal
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/square-split-horizontal
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const SquareSplitHorizontal = createLucideIcon('square-split-horizontal', [["path",{"d":"
|
|
16
|
+
const SquareSplitHorizontal = createLucideIcon('square-split-horizontal', [["path",{"d":"M12 2v20"}],["path",{"d":"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3"}],["path",{"d":"M8 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default SquareSplitHorizontal;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name SquareSplitVertical
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/square-split-vertical
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const SquareSplitVertical = createLucideIcon('square-split-vertical', [["path",{"d":"
|
|
16
|
+
const SquareSplitVertical = createLucideIcon('square-split-vertical', [["path",{"d":"M2 12h20"}],["path",{"d":"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"}],["path",{"d":"M3 8V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default SquareSplitVertical;
|
package/src/icons/sword.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Sword
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/sword
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Sword = createLucideIcon('sword', [["path",{"d":"m11 19-6-6"}],["path",{"d":"m5 21-2-2"}],["path",{"d":"m8 16-4 4"}],["path",{"d":"M9.5 17.5
|
|
16
|
+
const Sword = createLucideIcon('sword', [["path",{"d":"m11 19-6-6"}],["path",{"d":"m5 21-2-2"}],["path",{"d":"m8 16-4 4"}],["path",{"d":"M9.5 17.5 20.414 6.586A2 2 0 0021 5.172V3h-2.172a2 2 0 00-1.414.586L6.5 14.5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Sword;
|
package/src/icons/swords.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Swords
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/swords
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const Swords = createLucideIcon('swords', [["
|
|
16
|
+
const Swords = createLucideIcon('swords', [["path",{"d":"m13 19 6-6"}],["path",{"d":"M14.5 17.5 3.586 6.586A2 2 0 013 5.172V3h2.172a2 2 0 011.414.586L17.5 14.5"}],["path",{"d":"m14.828 6.172 2.586-2.586A2 2 0 0118.828 3H21v2.172a2 2 0 01-.586 1.414l-2.586 2.586"}],["path",{"d":"m16 16 4 4"}],["path",{"d":"m19 21 2-2"}],["path",{"d":"m5 14 4 4"}],["path",{"d":"m5 21-2-2"}],["path",{"d":"M7.5 16.5 4 20"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Swords;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name UserRoundX
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/user-round-x
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const UserRoundX = createLucideIcon('user-round-x', [["path",{"d":"M2 21a8 8 0 0 1 11.
|
|
16
|
+
const UserRoundX = createLucideIcon('user-round-x', [["path",{"d":"m16.5 16.5 5 5"}],["path",{"d":"M2 21a8 8 0 0 1 11.531-7.18"}],["path",{"d":"m21.5 16.5-5 5"}],["circle",{"cx":"10","cy":"8","r":"5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default UserRoundX;
|
package/src/icons/volume-x.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name VolumeX
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/volume-x
|
|
10
10
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
11
11
|
*
|
|
12
12
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
13
13
|
* @returns {any} Astro Component
|
|
14
14
|
*
|
|
15
15
|
*/
|
|
16
|
-
const VolumeX = createLucideIcon('volume-x', [["path",{"d":"M11 4.702a.
|
|
16
|
+
const VolumeX = createLucideIcon('volume-x', [["path",{"d":"M11 4.702a.7.7 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.7.7 0 0 0 11 19.298z"}],["path",{"d":"m16.5 14.5 5-5"}],["path",{"d":"m16.5 9.5 5 5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default VolumeX;
|