@lucide/astro 0.550.0 → 0.552.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 +184 -88
- package/src/aliases/prefixed.ts +595 -535
- package/src/aliases/suffixed.ts +943 -883
- package/src/icons/calendar-fold.ts +2 -2
- package/src/icons/{file-minus-2.ts → clock-check.ts} +4 -4
- package/src/icons/file-archive.ts +2 -2
- package/src/icons/file-axis-3d.ts +2 -2
- package/src/icons/file-badge.ts +2 -2
- package/src/icons/file-box.ts +2 -2
- package/src/icons/file-braces-corner.ts +18 -0
- package/src/icons/file-braces.ts +18 -0
- package/src/icons/file-chart-column-increasing.ts +2 -2
- package/src/icons/file-chart-column.ts +2 -2
- package/src/icons/file-chart-line.ts +2 -2
- package/src/icons/file-chart-pie.ts +2 -2
- package/src/icons/{file-search-2.ts → file-check-corner.ts} +4 -4
- package/src/icons/file-check.ts +2 -2
- package/src/icons/file-clock.ts +2 -2
- package/src/icons/{file-audio-2.ts → file-code-corner.ts} +4 -4
- package/src/icons/file-code.ts +2 -2
- package/src/icons/file-cog.ts +2 -2
- package/src/icons/file-diff.ts +2 -2
- package/src/icons/file-digit.ts +2 -2
- package/src/icons/file-down.ts +2 -2
- package/src/icons/{file-key-2.ts → file-exclamation-point.ts} +4 -4
- package/src/icons/file-headphone.ts +18 -0
- package/src/icons/file-heart.ts +2 -2
- package/src/icons/file-image.ts +2 -2
- package/src/icons/file-input.ts +2 -2
- package/src/icons/file-key.ts +2 -2
- package/src/icons/file-lock.ts +2 -2
- package/src/icons/{file-code-2.ts → file-minus-corner.ts} +4 -4
- package/src/icons/file-minus.ts +2 -2
- package/src/icons/file-music.ts +2 -2
- package/src/icons/file-output.ts +2 -2
- package/src/icons/file-pen-line.ts +2 -2
- package/src/icons/file-pen.ts +2 -2
- package/src/icons/file-play.ts +2 -2
- package/src/icons/{file-check-2.ts → file-plus-corner.ts} +4 -4
- package/src/icons/file-plus.ts +2 -2
- package/src/icons/file-question-mark.ts +2 -2
- package/src/icons/file-scan.ts +2 -2
- package/src/icons/{file-type-2.ts → file-search-corner.ts} +4 -4
- package/src/icons/file-search.ts +2 -2
- package/src/icons/file-signal.ts +18 -0
- package/src/icons/file-sliders.ts +2 -2
- package/src/icons/file-spreadsheet.ts +2 -2
- package/src/icons/file-symlink.ts +2 -2
- package/src/icons/file-terminal.ts +2 -2
- package/src/icons/file-text.ts +2 -2
- package/src/icons/file-type-corner.ts +18 -0
- package/src/icons/file-type.ts +2 -2
- package/src/icons/file-up.ts +2 -2
- package/src/icons/file-user.ts +2 -2
- package/src/icons/file-video-camera.ts +2 -2
- package/src/icons/file-volume.ts +2 -2
- package/src/icons/{file-audio.ts → file-x-corner.ts} +4 -4
- package/src/icons/file-x.ts +2 -2
- package/src/icons/file.ts +2 -2
- package/src/icons/files.ts +2 -2
- package/src/icons/index.ts +131 -133
- package/src/icons/shredder.ts +2 -2
- package/src/icons/solar-panel.ts +18 -0
- package/src/icons/sticker.ts +2 -2
- package/src/icons/sticky-note.ts +2 -2
- package/src/icons/file-badge-2.ts +0 -18
- package/src/icons/file-json-2.ts +0 -18
- package/src/icons/file-json.ts +0 -18
- package/src/icons/file-lock-2.ts +0 -18
- package/src/icons/file-plus-2.ts +0 -18
- package/src/icons/file-volume-2.ts +0 -18
- package/src/icons/file-warning.ts +0 -18
- package/src/icons/file-x-2.ts +0 -18
package/src/icons/shredder.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Shredder
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/shredder
|
|
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 Shredder = createLucideIcon('shredder', [["path",{"d":"
|
|
16
|
+
const Shredder = createLucideIcon('shredder', [["path",{"d":"M4 13V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5"}],["path",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["path",{"d":"M10 22v-5"}],["path",{"d":"M14 19v-2"}],["path",{"d":"M18 20v-3"}],["path",{"d":"M2 13h20"}],["path",{"d":"M6 20v-3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Shredder;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name SolarPanel
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/solar-panel
|
|
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 SolarPanel = createLucideIcon('solar-panel', [["path",{"d":"M11 2h2"}],["path",{"d":"m14.28 14-4.56 8"}],["path",{"d":"m21 22-1.558-4H4.558"}],["path",{"d":"M3 10v2"}],["path",{"d":"M6.245 15.04A2 2 0 0 1 8 14h12a1 1 0 0 1 .864 1.505l-3.11 5.457A2 2 0 0 1 16 22H4a1 1 0 0 1-.863-1.506z"}],["path",{"d":"M7 2a4 4 0 0 1-4 4"}],["path",{"d":"m8.66 7.66 1.41 1.41"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default SolarPanel;
|
package/src/icons/sticker.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Sticker
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/sticker
|
|
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 Sticker = createLucideIcon('sticker', [["path",{"d":"
|
|
16
|
+
const Sticker = createLucideIcon('sticker', [["path",{"d":"M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z"}],["path",{"d":"M15 3v5a1 1 0 0 0 1 1h5"}],["path",{"d":"M8 13h.01"}],["path",{"d":"M16 13h.01"}],["path",{"d":"M10 16s.8 1 2 1c1.3 0 2-1 2-1"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Sticker;
|
package/src/icons/sticky-note.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name StickyNote
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/sticky-note
|
|
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 StickyNote = createLucideIcon('sticky-note', [["path",{"d":"
|
|
16
|
+
const StickyNote = createLucideIcon('sticky-note', [["path",{"d":"M21 9a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 15 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2z"}],["path",{"d":"M15 3v5a1 1 0 0 0 1 1h5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default StickyNote;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import createLucideIcon from '../createLucideIcon';
|
|
3
|
-
import type { AstroComponent } from '../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @component @name FileBadge2
|
|
7
|
-
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
-
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-badge-2
|
|
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 FileBadge2 = createLucideIcon('file-badge-2', [["path",{"d":"m13.69 12.479 1.29 4.88a.5.5 0 0 1-.697.591l-1.844-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["path",{"d":"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{"cx":"12","cy":"10","r":"3"}]]) as AstroComponent;
|
|
17
|
-
|
|
18
|
-
export default FileBadge2;
|
package/src/icons/file-json-2.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import createLucideIcon from '../createLucideIcon';
|
|
3
|
-
import type { AstroComponent } from '../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @component @name FileJson2
|
|
7
|
-
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
-
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-json-2
|
|
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 FileJson2 = createLucideIcon('file-json-2', [["path",{"d":"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{"d":"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{"d":"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{"d":"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]]) as AstroComponent;
|
|
17
|
-
|
|
18
|
-
export default FileJson2;
|
package/src/icons/file-json.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import createLucideIcon from '../createLucideIcon';
|
|
3
|
-
import type { AstroComponent } from '../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @component @name FileJson
|
|
7
|
-
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
-
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-json
|
|
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 FileJson = createLucideIcon('file-json', [["path",{"d":"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{"d":"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{"d":"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{"d":"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]]) as AstroComponent;
|
|
17
|
-
|
|
18
|
-
export default FileJson;
|
package/src/icons/file-lock-2.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import createLucideIcon from '../createLucideIcon';
|
|
3
|
-
import type { AstroComponent } from '../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @component @name FileLock2
|
|
7
|
-
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
-
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-lock-2
|
|
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 FileLock2 = createLucideIcon('file-lock-2', [["path",{"d":"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1"}],["path",{"d":"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{"width":"8","height":"5","x":"2","y":"13","rx":"1"}],["path",{"d":"M8 13v-2a2 2 0 1 0-4 0v2"}]]) as AstroComponent;
|
|
17
|
-
|
|
18
|
-
export default FileLock2;
|
package/src/icons/file-plus-2.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import createLucideIcon from '../createLucideIcon';
|
|
3
|
-
import type { AstroComponent } from '../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @component @name FilePlus2
|
|
7
|
-
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
-
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-plus-2
|
|
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 FilePlus2 = createLucideIcon('file-plus-2', [["path",{"d":"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{"d":"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{"d":"M3 15h6"}],["path",{"d":"M6 12v6"}]]) as AstroComponent;
|
|
17
|
-
|
|
18
|
-
export default FilePlus2;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import createLucideIcon from '../createLucideIcon';
|
|
3
|
-
import type { AstroComponent } from '../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @component @name FileVolume2
|
|
7
|
-
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
-
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-volume-2
|
|
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 FileVolume2 = createLucideIcon('file-volume-2', [["path",{"d":"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{"d":"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{"d":"M8 15h.01"}],["path",{"d":"M11.5 13.5a2.5 2.5 0 0 1 0 3"}],["path",{"d":"M15 12a5 5 0 0 1 0 6"}]]) as AstroComponent;
|
|
17
|
-
|
|
18
|
-
export default FileVolume2;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import createLucideIcon from '../createLucideIcon';
|
|
3
|
-
import type { AstroComponent } from '../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @component @name FileWarning
|
|
7
|
-
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
-
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-warning
|
|
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 FileWarning = createLucideIcon('file-warning', [["path",{"d":"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{"d":"M12 9v4"}],["path",{"d":"M12 17h.01"}]]) as AstroComponent;
|
|
17
|
-
|
|
18
|
-
export default FileWarning;
|
package/src/icons/file-x-2.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import createLucideIcon from '../createLucideIcon';
|
|
3
|
-
import type { AstroComponent } from '../types'
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @component @name FileX2
|
|
7
|
-
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
-
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/file-x-2
|
|
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 FileX2 = createLucideIcon('file-x-2', [["path",{"d":"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{"d":"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{"d":"m8 12.5-5 5"}],["path",{"d":"m3 12.5 5 5"}]]) as AstroComponent;
|
|
17
|
-
|
|
18
|
-
export default FileX2;
|