@lucide/astro 1.40.0 → 1.41.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 +100 -94
- package/src/aliases/prefixed.ts +592 -572
- package/src/aliases/suffixed.ts +861 -841
- package/src/icons/can-soda.ts +18 -0
- package/src/icons/credit-card-reader.ts +18 -0
- package/src/icons/door-closed-locked.ts +2 -2
- package/src/icons/door-closed.ts +2 -2
- package/src/icons/door-open.ts +2 -2
- package/src/icons/{trash-2.ts → door-stairwell.ts} +4 -4
- package/src/icons/engine.ts +18 -0
- package/src/icons/germ-off.ts +18 -0
- package/src/icons/germ.ts +18 -0
- package/src/icons/index.ts +166 -158
- package/src/icons/leaf.ts +2 -2
- package/src/icons/square-exclamation-point.ts +18 -0
- package/src/icons/trash.ts +2 -2
- package/src/icons/virus-off.ts +18 -0
- package/src/icons/virus.ts +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name CanSoda
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/can-soda
|
|
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 CanSoda = createLucideIcon('can-soda', [["path",{"d":"m17 22 1.664-2.496a2 2 0 00.336-1.11V5.606a2 2 0 00-.336-1.11L17 2"}],["path",{"d":"M18 22H6"}],["path",{"d":"M18 2H6"}],["path",{"d":"M5 17h14"}],["path",{"d":"M5 7h14"}],["path",{"d":"m7 22-1.664-2.496A2 2 0 015 18.394V5.606a2 2 0 01.336-1.11L7 2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default CanSoda;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name CreditCardReader
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/credit-card-reader
|
|
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 CreditCardReader = createLucideIcon('credit-card-reader', [["path",{"d":"M15 16v1"}],["path",{"d":"M16.963 7.734A1 1 0 0015.999 7H8.003a1 1 0 00-.964.734L4.073 18.467A2 2 0 006 21h12a2 2 0 001.927-2.532z"}],["path",{"d":"M2.678 8.5A2 2 0 012 7V5a2 2 0 012-2h16a2 2 0 012 2v2a2 2 0 01-.676 1.499"}],["path",{"d":"m9 21 2-14"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default CreditCardReader;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name DoorClosedLocked
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/door-closed-locked
|
|
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 DoorClosedLocked = createLucideIcon('door-closed-locked', [["path",{"d":"
|
|
16
|
+
const DoorClosedLocked = createLucideIcon('door-closed-locked', [["path",{"d":"M19 8V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16"}],["path",{"d":"M2 21h8"}],["path",{"d":"M20 16v-2a2 2 0 00-4 0v2"}],["path",{"d":"M9 12h.01"}],["rect",{"x":"14","y":"16","width":"8","height":"5","rx":"1"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
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":"
|
|
16
|
+
const DoorClosed = createLucideIcon('door-closed', [["path",{"d":"M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16"}],["path",{"d":"M2 21h20"}],["path",{"d":"M9 12h.01"}]]) 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":"M10 21H2"}],["path",{"d":"M10 4a2 2 0 012.36-1.968l5.41.992A1.5 1.5 0 0119 4.5V21l-7.876.992A1 1 0 0110 21z"}],["path",{"d":"M10.268 3H7a2 2 0 00-2 2v16"}],["path",{"d":"M14 12h.01"}],["path",{"d":"M22 21h-3"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default DoorOpen;
|
|
@@ -3,16 +3,16 @@ import createLucideIcon from '../createLucideIcon';
|
|
|
3
3
|
import type { AstroComponent } from '../types'
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
|
-
* @component @name
|
|
6
|
+
* @component @name DoorStairwell
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/door-stairwell
|
|
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
|
|
16
|
+
const DoorStairwell = createLucideIcon('door-stairwell', [["path",{"d":"M12 17v-3a1 1 0 011-1h6"}],["path",{"d":"M19 17h-9a1 1 0 00-1 1v3"}],["path",{"d":"M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16"}],["path",{"d":"M19 9h-3a1 1 0 00-1 1v3"}],["path",{"d":"M22 21H2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
|
-
export default
|
|
18
|
+
export default DoorStairwell;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Engine
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/engine
|
|
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 Engine = createLucideIcon('engine', [["path",{"d":"M10 3h6"}],["path",{"d":"M13 3v4"}],["path",{"d":"M2 10v6"}],["path",{"d":"M2 13h4"}],["path",{"d":"M6 16a2 2 0 002 2h1a2 2 0 011.6.8l.3.4a2 2 0 001.6.8h2.264a2 2 0 001.789-1.106l1.67-3.341a1 1 0 01.895-.553H21a1 1 0 001-1v-4a1 1 0 00-1-1h-3.5a1 1 0 01-.8-.4l-.9-1.2A1 1 0 0015 7h-4a1 1 0 00-.8.4l-.9 1.2a1 1 0 01-.8.4H7a1 1 0 00-1 1z"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Engine;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name GermOff
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/germ-off
|
|
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 GermOff = createLucideIcon('germ-off', [["path",{"d":"m11 2 .925 1.848"}],["path",{"d":"M13 15h.01"}],["path",{"d":"M13.424 7.768a2 2 0 112.808 2.808"}],["path",{"d":"m16 21-1-2.472"}],["path",{"d":"M16.988 16.988A12 12 0 019 20a5 5 0 01-2.759-9.171 8.8 8.8 0 002.307-2.28"}],["path",{"d":"m19 2-1 1.804"}],["path",{"d":"m2 19 2.746-1.373"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"m22 16-2.474-2.13a12 12 0 001.376-3.786 6 6 0 00-10.313-5.151"}],["path",{"d":"m22 5-1.804 1"}],["path",{"d":"m3 10 2 2"}],["path",{"d":"M9 16h.01"}],["path",{"d":"M9 20v2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default GermOff;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Germ
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/germ
|
|
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 Germ = createLucideIcon('germ', [["path",{"d":"m11 2 .925 1.848"}],["path",{"d":"M13 15h.01"}],["path",{"d":"m16 21-1-2.472"}],["path",{"d":"m19 2-1 1.804"}],["path",{"d":"m2 19 2.746-1.373"}],["path",{"d":"m22 16-2.474-2.13"}],["path",{"d":"m22 5-1.804 1"}],["path",{"d":"m3 10 2 2"}],["path",{"d":"M9 16h.01"}],["path",{"d":"M9 20v2"}],["path",{"d":"M9.33 7.035c-.51 1.478-1.786 2.93-3.09 3.794A5 5 0 009 20a12.1 12.1 0 0011.902-9.916A6 6 0 009.33 7.035"}],["circle",{"cx":"15","cy":"9","r":"2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Germ;
|