@lucide/astro 0.562.0 → 0.564.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/LICENSE +2 -2
- package/README.md +11 -2
- package/package.json +6 -4
- package/src/Icon.astro +3 -0
- package/src/aliases/aliases.ts +70 -70
- package/src/aliases/prefixed.ts +608 -598
- package/src/aliases/suffixed.ts +976 -966
- package/src/createLucideIcon.ts +2 -1
- package/src/icons/bandage.ts +2 -2
- package/src/icons/bell-dot.ts +2 -2
- package/src/icons/book-key.ts +2 -2
- package/src/icons/bookmark-check.ts +2 -2
- package/src/icons/bookmark-minus.ts +2 -2
- package/src/icons/bookmark-plus.ts +2 -2
- package/src/icons/bookmark-x.ts +2 -2
- package/src/icons/bookmark.ts +2 -2
- package/src/icons/bug-off.ts +2 -2
- package/src/icons/cloud-alert.ts +2 -2
- package/src/icons/cloud-check.ts +2 -2
- package/src/icons/cloud-off.ts +2 -2
- package/src/icons/cloudy.ts +2 -2
- package/src/icons/database-search.ts +18 -0
- package/src/icons/file-cog.ts +2 -2
- package/src/icons/file-key.ts +2 -2
- package/src/icons/folder-key.ts +2 -2
- package/src/icons/git-branch.ts +2 -2
- package/src/icons/globe-x.ts +18 -0
- package/src/icons/hard-drive.ts +2 -2
- package/src/icons/index.ts +178 -173
- package/src/icons/lasso.ts +2 -2
- package/src/icons/message-square-dashed.ts +2 -2
- package/src/icons/monitor-off.ts +2 -2
- package/src/icons/printer-x.ts +18 -0
- package/src/icons/rotate-ccw-key.ts +2 -2
- package/src/icons/star-off.ts +2 -2
- package/src/icons/tickets-plane.ts +2 -2
- package/src/icons/user-key.ts +18 -0
- package/src/icons/user-lock.ts +2 -2
- package/src/icons/user-round-key.ts +18 -0
- package/src/icons/waypoints.ts +2 -2
- package/src/types.ts +1 -0
- package/src/utils/hasA11yProp.ts +15 -0
- package/src/{utils.ts → utils/mergeClasses.ts} +1 -12
- package/src/utils/toKebabCase.ts +8 -0
package/src/createLucideIcon.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { mergeClasses, toKebabCase } from './utils';
|
|
2
1
|
import type { AstroComponentFactory } from 'astro/runtime/server/render/astro/factory.js';
|
|
3
2
|
import type { IconNode } from './types';
|
|
4
3
|
import { render, renderSlot, createComponent, renderComponent } from 'astro/compiler-runtime';
|
|
5
4
|
import Icon from './Icon.astro';
|
|
5
|
+
import { mergeClasses } from './utils/mergeClasses';
|
|
6
|
+
import { toKebabCase } from './utils/toKebabCase';
|
|
6
7
|
|
|
7
8
|
export default (iconName: string, iconNode: IconNode): AstroComponentFactory => {
|
|
8
9
|
const Component = createComponent(
|
package/src/icons/bandage.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Bandage
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bandage
|
|
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 Bandage = createLucideIcon('bandage', [["path",{"d":"M10 10.01h.01"}],["path",{"d":"M10 14.01h.01"}],["path",{"d":"M14 10.01h.01"}],["path",{"d":"M14 14.01h.01"}],["path",{"d":"M18
|
|
16
|
+
const Bandage = createLucideIcon('bandage', [["path",{"d":"M10 10.01h.01"}],["path",{"d":"M10 14.01h.01"}],["path",{"d":"M14 10.01h.01"}],["path",{"d":"M14 14.01h.01"}],["path",{"d":"M18 6v12"}],["path",{"d":"M6 6v12"}],["rect",{"x":"2","y":"6","width":"20","height":"12","rx":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Bandage;
|
package/src/icons/bell-dot.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name BellDot
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bell-dot
|
|
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 BellDot = createLucideIcon('bell-dot', [["path",{"d":"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{"d":"
|
|
16
|
+
const BellDot = createLucideIcon('bell-dot', [["path",{"d":"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{"d":"M11.68 2.009A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673c-.824-.85-1.678-1.731-2.21-3.348"}],["circle",{"cx":"18","cy":"5","r":"3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default BellDot;
|
package/src/icons/book-key.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name BookKey
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/book-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 BookKey = createLucideIcon('book-key', [["path",{"d":"
|
|
16
|
+
const BookKey = createLucideIcon('book-key', [["path",{"d":"M13 2H6.5A2.5 2.5 0 0 0 4 4.5v15"}],["path",{"d":"M17 2v6"}],["path",{"d":"M17 4h2"}],["path",{"d":"M20 15.2V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{"cx":"17","cy":"10","r":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default BookKey;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name BookmarkCheck
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bookmark-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 BookmarkCheck = createLucideIcon('bookmark-check', [["path",{"d":"
|
|
16
|
+
const BookmarkCheck = createLucideIcon('bookmark-check', [["path",{"d":"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}],["path",{"d":"m9 10 2 2 4-4"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default BookmarkCheck;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name BookmarkMinus
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bookmark-minus
|
|
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 BookmarkMinus = createLucideIcon('bookmark-minus', [["path",{"d":"
|
|
16
|
+
const BookmarkMinus = createLucideIcon('bookmark-minus', [["path",{"d":"M15 10H9"}],["path",{"d":"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default BookmarkMinus;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name BookmarkPlus
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bookmark-plus
|
|
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 BookmarkPlus = createLucideIcon('bookmark-plus', [["path",{"d":"
|
|
16
|
+
const BookmarkPlus = createLucideIcon('bookmark-plus', [["path",{"d":"M12 7v6"}],["path",{"d":"M15 10H9"}],["path",{"d":"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default BookmarkPlus;
|
package/src/icons/bookmark-x.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name BookmarkX
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bookmark-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 BookmarkX = createLucideIcon('bookmark-x', [["path",{"d":"
|
|
16
|
+
const BookmarkX = createLucideIcon('bookmark-x', [["path",{"d":"m14.5 7.5-5 5"}],["path",{"d":"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}],["path",{"d":"m9.5 7.5 5 5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default BookmarkX;
|
package/src/icons/bookmark.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Bookmark
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bookmark
|
|
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 Bookmark = createLucideIcon('bookmark', [["path",{"d":"
|
|
16
|
+
const Bookmark = createLucideIcon('bookmark', [["path",{"d":"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Bookmark;
|
package/src/icons/bug-off.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name BugOff
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bug-off
|
|
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 BugOff = createLucideIcon('bug-off', [["path",{"d":"M12 20v-8"}],["path",{"d":"
|
|
16
|
+
const BugOff = createLucideIcon('bug-off', [["path",{"d":"M12 20v-8"}],["path",{"d":"M12.656 7H14a4 4 0 0 1 4 4v1.344"}],["path",{"d":"M14.12 3.88 16 2"}],["path",{"d":"M17.123 17.123A6 6 0 0 1 6 14v-3a4 4 0 0 1 1.72-3.287"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{"d":"M22 13h-3.344"}],["path",{"d":"M3 21a4 4 0 0 1 3.81-4"}],["path",{"d":"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{"d":"M6 13H2"}],["path",{"d":"m8 2 1.88 1.88"}],["path",{"d":"M9.712 4.06A3 3 0 0 1 15 6v1.13"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default BugOff;
|
package/src/icons/cloud-alert.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CloudAlert
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/cloud-alert
|
|
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 CloudAlert = createLucideIcon('cloud-alert', [["path",{"d":"M12 12v4"}],["path",{"d":"M12 20h.01"}],["path",{"d":"
|
|
16
|
+
const CloudAlert = createLucideIcon('cloud-alert', [["path",{"d":"M12 12v4"}],["path",{"d":"M12 20h.01"}],["path",{"d":"M8.128 16.949A7 7 0 1 1 15.71 8h1.79a1 1 0 0 1 0 9h-1.642"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CloudAlert;
|
package/src/icons/cloud-check.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CloudCheck
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/cloud-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 CloudCheck = createLucideIcon('cloud-check', [["path",{"d":"m17 15-5.5 5.5L9 18"}],["path",{"d":"M5
|
|
16
|
+
const CloudCheck = createLucideIcon('cloud-check', [["path",{"d":"m17 15-5.5 5.5L9 18"}],["path",{"d":"M5.516 16.07A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 3.501 7.327"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CloudCheck;
|
package/src/icons/cloud-off.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name CloudOff
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/cloud-off
|
|
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 CloudOff = createLucideIcon('cloud-off', [["path",{"d":"
|
|
16
|
+
const CloudOff = createLucideIcon('cloud-off', [["path",{"d":"M10.94 5.274A7 7 0 0 1 15.71 10h1.79a4.5 4.5 0 0 1 4.222 6.057"}],["path",{"d":"M18.796 18.81A4.5 4.5 0 0 1 17.5 19H9A7 7 0 0 1 5.79 5.78"}],["path",{"d":"m2 2 20 20"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default CloudOff;
|
package/src/icons/cloudy.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Cloudy
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/cloudy
|
|
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 Cloudy = createLucideIcon('cloudy', [["path",{"d":"M17.5
|
|
16
|
+
const Cloudy = createLucideIcon('cloudy', [["path",{"d":"M17.5 12a1 1 0 1 1 0 9H9.006a7 7 0 1 1 6.702-9z"}],["path",{"d":"M21.832 9A3 3 0 0 0 19 7h-2.207a5.5 5.5 0 0 0-10.72.61"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Cloudy;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name DatabaseSearch
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/database-search
|
|
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 DatabaseSearch = createLucideIcon('database-search', [["path",{"d":"M21 11.693V5"}],["path",{"d":"m22 22-1.875-1.875"}],["path",{"d":"M3 12a9 3 0 0 0 8.697 2.998"}],["path",{"d":"M3 5v14a9 3 0 0 0 9.28 2.999"}],["circle",{"cx":"18","cy":"18","r":"3"}],["ellipse",{"cx":"12","cy":"5","rx":"9","ry":"3"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default DatabaseSearch;
|
package/src/icons/file-cog.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name FileCog
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-cog
|
|
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 FileCog = createLucideIcon('file-cog', [["path",{"d":"
|
|
16
|
+
const FileCog = createLucideIcon('file-cog', [["path",{"d":"M15 8a1 1 0 0 1-1-1V2a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8z"}],["path",{"d":"M20 8v12a2 2 0 0 1-2 2h-4.182"}],["path",{"d":"m3.305 19.53.923-.382"}],["path",{"d":"M4 10.592V4a2 2 0 0 1 2-2h8"}],["path",{"d":"m4.228 16.852-.924-.383"}],["path",{"d":"m5.852 15.228-.383-.923"}],["path",{"d":"m5.852 20.772-.383.924"}],["path",{"d":"m8.148 15.228.383-.923"}],["path",{"d":"m8.53 21.696-.382-.924"}],["path",{"d":"m9.773 16.852.922-.383"}],["path",{"d":"m9.773 19.148.922.383"}],["circle",{"cx":"7","cy":"18","r":"3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default FileCog;
|
package/src/icons/file-key.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name FileKey
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-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 FileKey = createLucideIcon('file-key', [["path",{"d":"
|
|
16
|
+
const FileKey = createLucideIcon('file-key', [["path",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{"d":"M4 12v6"}],["path",{"d":"M4 14h2"}],["path",{"d":"M9.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v4"}],["circle",{"cx":"4","cy":"20","r":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default FileKey;
|
package/src/icons/folder-key.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name FolderKey
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/folder-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 FolderKey = createLucideIcon('folder-key', [["
|
|
16
|
+
const FolderKey = createLucideIcon('folder-key', [["path",{"d":"M13 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v1.36"}],["path",{"d":"M19 12v6"}],["path",{"d":"M19 14h2"}],["circle",{"cx":"19","cy":"20","r":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default FolderKey;
|
package/src/icons/git-branch.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name GitBranch
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/git-branch
|
|
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 GitBranch = createLucideIcon('git-branch', [["
|
|
16
|
+
const GitBranch = createLucideIcon('git-branch', [["path",{"d":"M15 6a9 9 0 0 0-9 9V3"}],["circle",{"cx":"18","cy":"6","r":"3"}],["circle",{"cx":"6","cy":"18","r":"3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default GitBranch;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name GlobeX
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/globe-x
|
|
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 GlobeX = createLucideIcon('globe-x', [["path",{"d":"m16 3 5 5"}],["path",{"d":"M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10"}],["path",{"d":"m21 3-5 5"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default GlobeX;
|
package/src/icons/hard-drive.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name HardDrive
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/hard-drive
|
|
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 HardDrive = createLucideIcon('hard-drive', [["
|
|
16
|
+
const HardDrive = createLucideIcon('hard-drive', [["path",{"d":"M10 16h.01"}],["path",{"d":"M2.212 11.577a2 2 0 0 0-.212.896V18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5.527a2 2 0 0 0-.212-.896L18.55 5.11A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}],["path",{"d":"M21.946 12.013H2.054"}],["path",{"d":"M6 16h.01"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default HardDrive;
|