@lucide/astro 1.42.0 → 1.44.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 +94 -82
- package/src/aliases/prefixed.ts +508 -490
- package/src/aliases/suffixed.ts +755 -737
- package/src/icons/carton-off.ts +20 -0
- package/src/icons/{flip-vertical-2.ts → carton.ts} +5 -5
- package/src/icons/credit-card-check.ts +2 -2
- package/src/icons/credit-card-minus.ts +2 -2
- package/src/icons/credit-card-plus.ts +2 -2
- package/src/icons/credit-card-x.ts +2 -2
- package/src/icons/credit-card.ts +2 -2
- package/src/icons/door-open.ts +2 -2
- package/src/icons/id-card-lanyard.ts +2 -2
- package/src/icons/id-card.ts +2 -2
- package/src/icons/index.ts +151 -146
- package/src/icons/satellite-dish.ts +2 -2
- package/src/icons/tic-tac-toe.ts +20 -0
- package/src/icons/toothbrush-sparkles.ts +20 -0
- package/src/icons/{flip-horizontal-2.ts → toothbrush.ts} +5 -5
- package/src/icons/triangles-centerline-dashed-horizontal.ts +20 -0
- package/src/icons/triangles-centerline-dashed-vertical.ts +20 -0
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
import createLucideIcon from '../createLucideIcon';
|
|
3
3
|
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
4
|
|
|
5
|
-
const iconData: LucideIconData = {"name":"satellite-dish","size":24,"node":[["path",{"d":"
|
|
5
|
+
const iconData: LucideIconData = {"name":"satellite-dish","size":24,"node":[["path",{"d":"M18 12a6 6 0 00-6-6"}],["path",{"d":"M2.824 10.459a8 8 0 0010.717 10.717c.558-.276.623-1.012.183-1.452l-9.448-9.448c-.44-.44-1.176-.375-1.452.183"}],["path",{"d":"M22 12A10 10 0 0012 2"}],["path",{"d":"m9 15 4-4"}]]};
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* @component @name SatelliteDish
|
|
9
9
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
10
|
*
|
|
11
|
-
* @preview  - https://lucide.dev/icons/satellite-dish
|
|
12
12
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
13
13
|
*
|
|
14
14
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"tic-tac-toe","size":24,"node":[["path",{"d":"M12 2v20"}],["path",{"d":"m21 16-5 5"}],["path",{"d":"m21 21-5-5"}],["path",{"d":"M22 12H2"}],["path",{"d":"M8 3 3 8"}],["path",{"d":"M8 8 3 3"}],["circle",{"cx":"18.5","cy":"5.5","r":"2.5"}],["circle",{"cx":"5.5","cy":"18.5","r":"2.5"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name TicTacToe
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/tic-tac-toe
|
|
12
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
13
|
+
*
|
|
14
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
15
|
+
* @returns {any} Astro Component
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
const TicTacToe = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default TicTacToe;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"toothbrush-sparkles","size":24,"node":[["path",{"d":"M10 3H8"}],["path",{"d":"M14.586 11.414 22 4"}],["path",{"d":"M15 11a8 8 0 01-.429.4"}],["path",{"d":"m2 22 7-7c1.857-1.857 3.714-1.99 5.571-3.6l-1.985-1.986A2 2 0 0114 6a2 2 0 012-2 2 2 0 013.262-1.552l2.152 2.138"}],["path",{"d":"M20 15v4"}],["path",{"d":"M22 17h-4"}],["path",{"d":"M4 5v4"}],["path",{"d":"M6 7H2"}],["path",{"d":"M9 2v2"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name ToothbrushSparkles
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/toothbrush-sparkles
|
|
12
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
13
|
+
*
|
|
14
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
15
|
+
* @returns {any} Astro Component
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
const ToothbrushSparkles = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default ToothbrushSparkles;
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
import createLucideIcon from '../createLucideIcon';
|
|
3
3
|
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
4
|
|
|
5
|
-
const iconData: LucideIconData = {"name":"
|
|
5
|
+
const iconData: LucideIconData = {"name":"toothbrush","size":24,"node":[["path",{"d":"M15 11c-2 2-4 2-6 4l-7 7"}],["path",{"d":"m22 4-7.414 7.414-2-2A2 2 0 0114 6c0-.512.196-1.024.586-1.414A2 2 0 0116 4a2 2 0 013.262-1.552l2.152 2.138"}]]};
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* @component @name
|
|
8
|
+
* @component @name Toothbrush
|
|
9
9
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
10
|
*
|
|
11
|
-
* @preview  - https://lucide.dev/icons/toothbrush
|
|
12
12
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
13
13
|
*
|
|
14
14
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
15
15
|
* @returns {any} Astro Component
|
|
16
16
|
*
|
|
17
17
|
*/
|
|
18
|
-
const
|
|
18
|
+
const Toothbrush = createLucideIcon(iconData) as AstroComponent;
|
|
19
19
|
|
|
20
|
-
export default
|
|
20
|
+
export default Toothbrush;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"triangles-centerline-dashed-horizontal","size":24,"node":[["path",{"d":"M10 12H8"}],["path",{"d":"M16 12h-2"}],["path",{"d":"M22 12h-2"}],["path",{"d":"M4 12H2"}],["path",{"d":"M7.298 20.288A1 1 0 008 22h8a1 1 0 00.703-1.712l-3.991-3.99a1 1 0 00-1.424-.001z"}],["path",{"d":"M7.298 3.712A1 1 0 018 2h8a1 1 0 01.703 1.712l-3.991 3.99a1 1 0 01-1.424.001z"}]],"aliases":["flip-horizontal-2"]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name TrianglesCenterlineDashedHorizontal
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/triangles-centerline-dashed-horizontal
|
|
12
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
13
|
+
*
|
|
14
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
15
|
+
* @returns {any} Astro Component
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
const TrianglesCenterlineDashedHorizontal = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default TrianglesCenterlineDashedHorizontal;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"triangles-centerline-dashed-vertical","size":24,"node":[["path",{"d":"M12 14v2"}],["path",{"d":"M12 20v2"}],["path",{"d":"M12 2v2"}],["path",{"d":"M12 8v2"}],["path",{"d":"M20.288 16.703A1 1 0 0022 16V8a1 1 0 00-1.712-.703l-3.99 3.991a1 1 0 00-.001 1.424z"}],["path",{"d":"M3.712 16.703A1 1 0 012 16V8a1 1 0 011.712-.703l3.99 3.991a1 1 0 01.001 1.424z"}]],"aliases":["flip-vertical-2"]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name TrianglesCenterlineDashedVertical
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/triangles-centerline-dashed-vertical
|
|
12
|
+
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
13
|
+
*
|
|
14
|
+
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
15
|
+
* @returns {any} Astro Component
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
const TrianglesCenterlineDashedVertical = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default TrianglesCenterlineDashedVertical;
|