@lucide/astro 1.46.0 → 1.47.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 +190 -190
- package/src/aliases/prefixed.ts +688 -668
- package/src/aliases/suffixed.ts +976 -956
- package/src/icons/broccoli.ts +2 -2
- package/src/icons/calendar-chevrons-right.ts +2 -2
- package/src/icons/cupcake.ts +20 -0
- package/src/icons/door-closed-package.ts +20 -0
- package/src/icons/faucet.ts +20 -0
- package/src/icons/index.ts +205 -195
- package/src/icons/lambda.ts +20 -0
- package/src/icons/nepali-rupee.ts +20 -0
- package/src/icons/rotate-cw-clock.ts +20 -0
- package/src/icons/save-off.ts +2 -2
- package/src/icons/square-dashed-plus.ts +20 -0
- package/src/icons/square-dashed-x-corner.ts +20 -0
- package/src/icons/square-dashed-x.ts +20 -0
- package/src/icons/tube-lotion.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":"lambda","size":24,"node":[["path",{"d":"M11.38 10 5 20"}],["path",{"d":"M19 18a2 2 0 01-2 2c-4.87-.003-5.052-16-10-16a2 2 0 00-2 2"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name Lambda
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/lambda
|
|
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 Lambda = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default Lambda;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"nepali-rupee","size":24,"node":[["path",{"d":"M18 16.173 A4.74 4.74 0 0 0 13.496 8.005"}],["path",{"d":"M4 3 L20 3"}],["path",{"d":"M5 13 L13.5 21"}],["path",{"d":"M5 13 L9 13"}],["path",{"d":"M8 13 C15.5 13 14.667 3 8 3"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name NepaliRupee
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/nepali-rupee
|
|
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 NepaliRupee = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default NepaliRupee;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"rotate-cw-clock","size":24,"node":[["path",{"d":"M12 7v5l4 2"}],["path",{"d":"M16 8h5V3"}],["path",{"d":"m21 8-2.3-2.3A9.7 9.7 0 0012 3a9 9 0 109 9"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name RotateCwClock
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/rotate-cw-clock
|
|
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 RotateCwClock = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default RotateCwClock;
|
package/src/icons/save-off.ts
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
import createLucideIcon from '../createLucideIcon';
|
|
3
3
|
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
4
|
|
|
5
|
-
const iconData: LucideIconData = {"name":"save-off","size":24,"node":[["path",{"d":"M13 13H8a1 1 0 0 0-1 1v7"}],["path",{"d":"M14 8h1"}],["path",{"d":"M17 21v-4"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41"}],["path",{"d":"
|
|
5
|
+
const iconData: LucideIconData = {"name":"save-off","size":24,"node":[["path",{"d":"M13 13H8a1 1 0 0 0-1 1v7"}],["path",{"d":"M14 8h1"}],["path",{"d":"M17 21v-4"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41"}],["path",{"d":"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15"}]]};
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* @component @name SaveOff
|
|
9
9
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
10
|
*
|
|
11
|
-
* @preview  - https://lucide.dev/icons/save-off
|
|
12
12
|
* @see https://lucide.dev/guide/packages/lucide-astro - Documentation
|
|
13
13
|
*
|
|
14
14
|
* @param {import('../types').IconProps} props - Lucide icons props and any valid SVG attribute
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"square-dashed-plus","size":24,"node":[["path",{"d":"M5 3a2 2 0 0 0-2 2"}],["path",{"d":"M19 3a2 2 0 0 1 2 2"}],["path",{"d":"M21 19a2 2 0 0 1-2 2"}],["path",{"d":"M5 21a2 2 0 0 1-2-2"}],["path",{"d":"M9 3h1"}],["path",{"d":"M9 21h1"}],["path",{"d":"M14 3h1"}],["path",{"d":"M14 21h1"}],["path",{"d":"M3 9v1"}],["path",{"d":"M21 9v1"}],["path",{"d":"M3 14v1"}],["path",{"d":"M21 14v1"}],["path",{"d":"M8 12h8"}],["path",{"d":"M12 8v8"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name SquareDashedPlus
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/square-dashed-plus
|
|
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 SquareDashedPlus = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default SquareDashedPlus;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"square-dashed-x-corner","size":24,"node":[["path",{"d":"M14 3h1"}],["path",{"d":"m16 16 5 5"}],["path",{"d":"M19 3a2 2 0 012 2"}],["path",{"d":"m21 16-5 5"}],["path",{"d":"M21 9v1"}],["path",{"d":"M3 14v1"}],["path",{"d":"M3 9v1"}],["path",{"d":"M5 21a2 2 0 01-2-2"}],["path",{"d":"M5 3a2 2 0 00-2 2"}],["path",{"d":"M9 21h1"}],["path",{"d":"M9 3h1"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name SquareDashedXCorner
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/square-dashed-x-corner
|
|
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 SquareDashedXCorner = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default SquareDashedXCorner;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"square-dashed-x","size":24,"node":[["path",{"d":"M14 21h1"}],["path",{"d":"M14 3h1"}],["path",{"d":"M19 3a2 2 0 012 2"}],["path",{"d":"M21 14v1"}],["path",{"d":"M21 19a2 2 0 01-2 2"}],["path",{"d":"M21 9v1"}],["path",{"d":"M3 14v1"}],["path",{"d":"M3 9v1"}],["path",{"d":"M5 21a2 2 0 01-2-2"}],["path",{"d":"M5 3a2 2 0 00-2 2"}],["path",{"d":"m9 15 6-6"}],["path",{"d":"M9 21h1"}],["path",{"d":"M9 3h1"}],["path",{"d":"m9 9 6 6"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name SquareDashedX
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/square-dashed-x
|
|
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 SquareDashedX = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default SquareDashedX;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"tube-lotion","size":24,"node":[["path",{"d":"M15 18v3a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-3"}],["path",{"d":"M17 2a2 2 0 0 1 1.6 3.2A8 8 0 0 0 17 10v6a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2v-6a8 8 0 0 0-1.6-4.8A2 2 0 0 1 7 2z"}],["path",{"d":"M7 10a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name TubeLotion
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/tube-lotion
|
|
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 TubeLotion = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default TubeLotion;
|