@lucide/astro 0.509.0 → 0.511.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 +3 -3
- package/src/aliases/prefixed.ts +349 -345
- package/src/aliases/suffixed.ts +670 -666
- package/src/icons/axis-3d.ts +2 -2
- package/src/icons/brackets.ts +2 -2
- package/src/icons/check-line.ts +18 -0
- package/src/icons/chevrons-left-right-ellipsis.ts +2 -2
- package/src/icons/clock-6.ts +2 -2
- package/src/icons/code.ts +2 -2
- package/src/icons/corner-down-left.ts +2 -2
- package/src/icons/corner-down-right.ts +2 -2
- package/src/icons/corner-left-down.ts +2 -2
- package/src/icons/corner-left-up.ts +2 -2
- package/src/icons/corner-right-down.ts +2 -2
- package/src/icons/corner-right-up.ts +2 -2
- package/src/icons/corner-up-left.ts +2 -2
- package/src/icons/corner-up-right.ts +2 -2
- package/src/icons/download.ts +2 -2
- package/src/icons/factory.ts +2 -2
- package/src/icons/forward.ts +2 -2
- package/src/icons/index.ts +56 -54
- package/src/icons/iteration-ccw.ts +2 -2
- package/src/icons/iteration-cw.ts +2 -2
- package/src/icons/landmark.ts +2 -2
- package/src/icons/log-in.ts +2 -2
- package/src/icons/log-out.ts +2 -2
- package/src/icons/maximize-2.ts +2 -2
- package/src/icons/minimize-2.ts +2 -2
- package/src/icons/reply-all.ts +2 -2
- package/src/icons/reply.ts +2 -2
- package/src/icons/satellite.ts +2 -2
- package/src/icons/separator-horizontal.ts +2 -2
- package/src/icons/separator-vertical.ts +2 -2
- package/src/icons/share.ts +2 -2
- package/src/icons/square-code.ts +2 -2
- package/src/icons/square-dashed-top-solid.ts +18 -0
- package/src/icons/terminal.ts +2 -2
- package/src/icons/trending-down.ts +2 -2
- package/src/icons/trending-up.ts +2 -2
- package/src/icons/tv.ts +2 -2
- package/src/icons/type.ts +2 -2
- package/src/icons/university.ts +2 -2
- package/src/icons/upload.ts +2 -2
- package/src/icons/user-check.ts +2 -2
- package/src/icons/warehouse.ts +2 -2
- package/src/icons/wrap-text.ts +2 -2
package/src/icons/axis-3d.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Axis3d
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/axis-3d
|
|
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 Axis3d = createLucideIcon('axis-3d', [["path",{"d":"M4
|
|
16
|
+
const Axis3d = createLucideIcon('axis-3d', [["path",{"d":"M13.5 10.5 15 9"}],["path",{"d":"M4 4v15a1 1 0 0 0 1 1h15"}],["path",{"d":"M4.293 19.707 6 18"}],["path",{"d":"m9 15 1.5-1.5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Axis3d;
|
package/src/icons/brackets.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Brackets
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/brackets
|
|
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 Brackets = createLucideIcon('brackets', [["path",{"d":"M16
|
|
16
|
+
const Brackets = createLucideIcon('brackets', [["path",{"d":"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3"}],["path",{"d":"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Brackets;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name CheckLine
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/check-line
|
|
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 CheckLine = createLucideIcon('check-line', [["path",{"d":"M20 4L9 15"}],["path",{"d":"M21 19L3 19"}],["path",{"d":"M9 15L4 10"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default CheckLine;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name ChevronsLeftRightEllipsis
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/chevrons-left-right-ellipsis
|
|
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 ChevronsLeftRightEllipsis = createLucideIcon('chevrons-left-right-ellipsis', [["path",{"d":"
|
|
16
|
+
const ChevronsLeftRightEllipsis = createLucideIcon('chevrons-left-right-ellipsis', [["path",{"d":"M12 12h.01"}],["path",{"d":"M16 12h.01"}],["path",{"d":"m17 7 5 5-5 5"}],["path",{"d":"m7 7-5 5 5 5"}],["path",{"d":"M8 12h.01"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default ChevronsLeftRightEllipsis;
|
package/src/icons/clock-6.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Clock6
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/clock-6
|
|
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 Clock6 = createLucideIcon('clock-6', [["circle",{"cx":"12","cy":"12","r":"10"}]
|
|
16
|
+
const Clock6 = createLucideIcon('clock-6', [["path",{"d":"M12 16.5V6"}],["circle",{"cx":"12","cy":"12","r":"10"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Clock6;
|
package/src/icons/code.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Code
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/code
|
|
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 Code = createLucideIcon('code', [["
|
|
16
|
+
const Code = createLucideIcon('code', [["path",{"d":"m16 18 6-6-6-6"}],["path",{"d":"m8 6-6 6 6 6"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Code;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CornerDownLeft
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/corner-down-left
|
|
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 CornerDownLeft = createLucideIcon('corner-down-left', [["
|
|
16
|
+
const CornerDownLeft = createLucideIcon('corner-down-left', [["path",{"d":"M20 4v7a4 4 0 0 1-4 4H4"}],["path",{"d":"m9 10-5 5 5 5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CornerDownLeft;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CornerDownRight
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/corner-down-right
|
|
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 CornerDownRight = createLucideIcon('corner-down-right', [["
|
|
16
|
+
const CornerDownRight = createLucideIcon('corner-down-right', [["path",{"d":"m15 10 5 5-5 5"}],["path",{"d":"M4 4v7a4 4 0 0 0 4 4h12"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CornerDownRight;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CornerLeftDown
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/corner-left-down
|
|
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 CornerLeftDown = createLucideIcon('corner-left-down', [["
|
|
16
|
+
const CornerLeftDown = createLucideIcon('corner-left-down', [["path",{"d":"m14 15-5 5-5-5"}],["path",{"d":"M20 4h-7a4 4 0 0 0-4 4v12"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CornerLeftDown;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CornerLeftUp
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/corner-left-up
|
|
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 CornerLeftUp = createLucideIcon('corner-left-up', [["
|
|
16
|
+
const CornerLeftUp = createLucideIcon('corner-left-up', [["path",{"d":"M14 9 9 4 4 9"}],["path",{"d":"M20 20h-7a4 4 0 0 1-4-4V4"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CornerLeftUp;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CornerRightDown
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/corner-right-down
|
|
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 CornerRightDown = createLucideIcon('corner-right-down', [["
|
|
16
|
+
const CornerRightDown = createLucideIcon('corner-right-down', [["path",{"d":"m10 15 5 5 5-5"}],["path",{"d":"M4 4h7a4 4 0 0 1 4 4v12"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CornerRightDown;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CornerRightUp
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/corner-right-up
|
|
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 CornerRightUp = createLucideIcon('corner-right-up', [["
|
|
16
|
+
const CornerRightUp = createLucideIcon('corner-right-up', [["path",{"d":"m10 9 5-5 5 5"}],["path",{"d":"M4 20h7a4 4 0 0 0 4-4V4"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CornerRightUp;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CornerUpLeft
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/corner-up-left
|
|
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 CornerUpLeft = createLucideIcon('corner-up-left', [["
|
|
16
|
+
const CornerUpLeft = createLucideIcon('corner-up-left', [["path",{"d":"M20 20v-7a4 4 0 0 0-4-4H4"}],["path",{"d":"M9 14 4 9l5-5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CornerUpLeft;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CornerUpRight
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/corner-up-right
|
|
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 CornerUpRight = createLucideIcon('corner-up-right', [["
|
|
16
|
+
const CornerUpRight = createLucideIcon('corner-up-right', [["path",{"d":"m15 14 5-5-5-5"}],["path",{"d":"M4 20v-7a4 4 0 0 1 4-4h12"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CornerUpRight;
|
package/src/icons/download.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Download
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/download
|
|
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 Download = createLucideIcon('download', [["path",{"d":"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["
|
|
16
|
+
const Download = createLucideIcon('download', [["path",{"d":"M12 15V3"}],["path",{"d":"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["path",{"d":"m7 10 5 5 5-5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Download;
|
package/src/icons/factory.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Factory
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/factory
|
|
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 Factory = createLucideIcon('factory', [["path",{"d":"
|
|
16
|
+
const Factory = createLucideIcon('factory', [["path",{"d":"M12 16h.01"}],["path",{"d":"M16 16h.01"}],["path",{"d":"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"}],["path",{"d":"M8 16h.01"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Factory;
|
package/src/icons/forward.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Forward
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/forward
|
|
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 Forward = createLucideIcon('forward', [["
|
|
16
|
+
const Forward = createLucideIcon('forward', [["path",{"d":"m15 17 5-5-5-5"}],["path",{"d":"M4 18v-2a4 4 0 0 1 4-4h12"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Forward;
|