@lucide/astro 0.503.0 → 0.504.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 +3 -3
- package/src/aliases/aliases.ts +64 -64
- package/src/aliases/prefixed.ts +414 -410
- package/src/aliases/suffixed.ts +822 -818
- package/src/icons/brush.ts +2 -2
- package/src/icons/door-closed-locked.ts +18 -0
- package/src/icons/door-closed.ts +2 -2
- package/src/icons/door-open.ts +2 -2
- package/src/icons/hamburger.ts +18 -0
- package/src/icons/index.ts +168 -166
package/src/icons/brush.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Brush
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/brush
|
|
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 Brush = createLucideIcon('brush', [["path",{"d":"
|
|
16
|
+
const Brush = createLucideIcon('brush', [["path",{"d":"m11 10 3 3"}],["path",{"d":"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z"}],["path",{"d":"M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Brush;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name DoorClosedLocked
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/door-closed-locked
|
|
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 DoorClosedLocked = createLucideIcon('door-closed-locked', [["path",{"d":"M10 12h.01"}],["path",{"d":"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{"d":"M2 20h8"}],["path",{"d":"M20 17v-2a2 2 0 1 0-4 0v2"}],["rect",{"x":"14","y":"17","width":"8","height":"5","rx":"1"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default DoorClosedLocked;
|
package/src/icons/door-closed.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name DoorClosed
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/door-closed
|
|
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 DoorClosed = createLucideIcon('door-closed', [["path",{"d":"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{"d":"M2 20h20"}]
|
|
16
|
+
const DoorClosed = createLucideIcon('door-closed', [["path",{"d":"M10 12h.01"}],["path",{"d":"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{"d":"M2 20h20"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default DoorClosed;
|
package/src/icons/door-open.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name DoorOpen
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/door-open
|
|
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 DoorOpen = createLucideIcon('door-open', [["path",{"d":"
|
|
16
|
+
const DoorOpen = createLucideIcon('door-open', [["path",{"d":"M11 20H2"}],["path",{"d":"M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z"}],["path",{"d":"M11 4H8a2 2 0 0 0-2 2v14"}],["path",{"d":"M14 12h.01"}],["path",{"d":"M22 20h-3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default DoorOpen;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Hamburger
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/hamburger
|
|
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 Hamburger = createLucideIcon('hamburger', [["path",{"d":"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25"}],["path",{"d":"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2"}],["path",{"d":"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0"}],["path",{"d":"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Hamburger;
|