@lucide/astro 1.45.0 → 1.46.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 +2 -2
- package/src/aliases/aliases.ts +206 -206
- package/src/aliases/prefixed.ts +731 -723
- package/src/aliases/suffixed.ts +1009 -1001
- package/src/icons/clef-alto.ts +20 -0
- package/src/icons/clef-bass.ts +20 -0
- package/src/icons/clef-treble.ts +20 -0
- package/src/icons/index.ts +176 -172
- package/src/icons/monitor-pc.ts +20 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"clef-alto","size":24,"node":[["path",{"d":"M10 4v16"}],["path",{"d":"M14 4.764a3 3 0 1 1-.152 4.327A4 4 0 0 1 10 12a4 4 0 0 1 3.848 2.909A3 3 0 1 1 14 19.236"}],["path",{"d":"M6 4v16"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name ClefAlto
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/clef-alto
|
|
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 ClefAlto = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default ClefAlto;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"clef-bass","size":24,"node":[["path",{"d":"M19 11h.01"}],["path",{"d":"M19 6h.01"}],["path",{"d":"M5 8c0-4 4-4 4-4 6 0 6 6 6 6 0 7-10 11-10 11"}],["circle",{"cx":"7","cy":"8","r":"2"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name ClefBass
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/clef-bass
|
|
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 ClefBass = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default ClefBass;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"clef-treble","size":24,"node":[["path",{"d":"M10.586 21.414a2 2 0 0 0 3.378-1.791L11.036 4.377a2 2 0 1 1 3.378 1.037C12.414 7.414 7 8 7 13a5 5 0 0 0 5 5 5 4 0 0 0 5-4 3 3 0 0 0-3-3 3 2 0 0 0-3 2"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name ClefTreble
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/clef-treble
|
|
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 ClefTreble = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default ClefTreble;
|