@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
package/src/icons/leaf.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Leaf
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/leaf
|
|
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 Leaf = createLucideIcon('leaf', [["path",{"d":"M11
|
|
16
|
+
const Leaf = createLucideIcon('leaf', [["path",{"d":"M11 20a10 10 0 0010-10 25.9 25.9 0 00-1.04-7.281 1 1 0 00-1.755-.325C15.833 5.5 13 5.5 9.8 6.1A7 7 0 0011 20"}],["path",{"d":"M2 21a5 5 0 012.911-4.544C7.613 15.212 8.351 15.24 11 13"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Leaf;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name SquareExclamationPoint
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/square-exclamation-point
|
|
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 SquareExclamationPoint = createLucideIcon('square-exclamation-point', [["rect",{"width":"18","height":"18","x":"3","y":"3","rx":"2"}],["line",{"x1":"12","x2":"12","y1":"8","y2":"12"}],["line",{"x1":"12","x2":"12.01","y1":"16","y2":"16"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default SquareExclamationPoint;
|
package/src/icons/trash.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Trash
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/trash
|
|
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 Trash = createLucideIcon('trash', [["path",{"d":"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{"d":"M3 6h18"}],["path",{"d":"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]]) as AstroComponent;
|
|
16
|
+
const Trash = createLucideIcon('trash', [["path",{"d":"M10 11v6"}],["path",{"d":"M14 11v6"}],["path",{"d":"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{"d":"M3 6h18"}],["path",{"d":"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Trash;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name VirusOff
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/virus-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 VirusOff = createLucideIcon('virus-off', [["path",{"d":"M10.01 10h.01"}],["path",{"d":"M12 14.991h.01"}],["path",{"d":"M12 22v-3"}],["path",{"d":"M12 2v3"}],["path",{"d":"M13 22h-2"}],["path",{"d":"M13 2h-2"}],["path",{"d":"m16.5 19.794-1-1.733"}],["path",{"d":"m16.5 4.205-1 1.732"}],["path",{"d":"M18.891 13.235a7 7 0 00-8.126-8.126"}],["path",{"d":"m19.794 7.5-1.732 1"}],["path",{"d":"M2 12h3"}],["path",{"d":"M2 13v-2"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M22 12h-3"}],["path",{"d":"M22 13v-2"}],["path",{"d":"m4.206 16.5 1.732-1"}],["path",{"d":"m4.206 7.5 1.732 1"}],["path",{"d":"M7.05 7.05a7 7 0 009.9 9.9"}],["path",{"d":"m7.5 19.794 1-1.733"}],["path",{"d":"M9 12h.01"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default VirusOff;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Virus
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/virus
|
|
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 Virus = createLucideIcon('virus', [["path",{"d":"M12 14.991h.01"}],["path",{"d":"M12 22v-3"}],["path",{"d":"M12 2v3"}],["path",{"d":"M13 22h-2"}],["path",{"d":"M13 2h-2"}],["path",{"d":"M13.99 10H14"}],["path",{"d":"m16.5 19.794-1-1.733"}],["path",{"d":"m16.5 4.205-1 1.732"}],["path",{"d":"m19.794 16.5-1.732-1"}],["path",{"d":"m19.794 7.5-1.732 1"}],["path",{"d":"M2 12h3"}],["path",{"d":"M2 13v-2"}],["path",{"d":"M22 12h-3"}],["path",{"d":"M22 13v-2"}],["path",{"d":"m4.206 16.5 1.732-1"}],["path",{"d":"m4.206 7.5 1.732 1"}],["path",{"d":"m7.5 19.794 1-1.733"}],["path",{"d":"m7.5 4.205 1 1.732"}],["path",{"d":"M9 12h.01"}],["circle",{"cx":"12","cy":"12","r":"7"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Virus;
|