@lucide/astro 0.555.0 → 0.557.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 +4 -2
- package/src/aliases/aliases.ts +70 -70
- package/src/aliases/prefixed.ts +611 -591
- package/src/aliases/suffixed.ts +936 -916
- package/src/icons/balloon.ts +18 -0
- package/src/icons/book-search.ts +18 -0
- package/src/icons/brush-cleaning.ts +2 -2
- package/src/icons/bubbles.ts +2 -2
- package/src/icons/circle-pile.ts +18 -0
- package/src/icons/cloud-backup.ts +18 -0
- package/src/icons/cloud-sync.ts +18 -0
- package/src/icons/flashlight-off.ts +2 -2
- package/src/icons/flashlight.ts +2 -2
- package/src/icons/index.ts +138 -128
- package/src/icons/layers-plus.ts +18 -0
- package/src/icons/memory-stick.ts +2 -2
- package/src/icons/microchip.ts +2 -2
- package/src/icons/paint-bucket.ts +2 -2
- package/src/icons/plug.ts +2 -2
- package/src/icons/scooter.ts +18 -0
- package/src/icons/search-alert.ts +18 -0
- package/src/icons/square-bottom-dashed-scissors.ts +2 -2
- package/src/icons/square-scissors.ts +2 -2
- package/src/icons/thermometer-sun.ts +2 -2
- package/src/icons/thumbs-down.ts +2 -2
- package/src/icons/thumbs-up.ts +2 -2
- package/src/icons/tickets-plane.ts +2 -2
- package/src/icons/tickets.ts +2 -2
- package/src/icons/van.ts +18 -0
- package/src/icons/weight-tilde.ts +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Balloon
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/balloon
|
|
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 Balloon = createLucideIcon('balloon', [["path",{"d":"M12 16v1a2 2 0 0 0 2 2h1a2 2 0 0 1 2 2v1"}],["path",{"d":"M12 6a2 2 0 0 1 2 2"}],["path",{"d":"M18 8c0 4-3.5 8-6 8s-6-4-6-8a6 6 0 0 1 12 0"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Balloon;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name BookSearch
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/book-search
|
|
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 BookSearch = createLucideIcon('book-search', [["path",{"d":"M11 22H5.5a1 1 0 0 1 0-5h4.501"}],["path",{"d":"m21 22-1.879-1.878"}],["path",{"d":"M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8"}],["circle",{"cx":"17","cy":"18","r":"3"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default BookSearch;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name BrushCleaning
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/brush-cleaning
|
|
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 BrushCleaning = createLucideIcon('brush-cleaning', [["path",{"d":"m16 22-1-4"}],["path",{"d":"M19
|
|
16
|
+
const BrushCleaning = createLucideIcon('brush-cleaning', [["path",{"d":"m16 22-1-4"}],["path",{"d":"M19 14a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v1a1 1 0 0 0 1 1"}],["path",{"d":"M19 14H5l-1.973 6.767A1 1 0 0 0 4 22h16a1 1 0 0 0 .973-1.233z"}],["path",{"d":"m8 22 1-4"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default BrushCleaning;
|
package/src/icons/bubbles.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Bubbles
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/bubbles
|
|
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 Bubbles = createLucideIcon('bubbles', [["path",{"d":"M7.
|
|
16
|
+
const Bubbles = createLucideIcon('bubbles', [["path",{"d":"M7.001 15.085A1.5 1.5 0 0 1 9 16.5"}],["circle",{"cx":"18.5","cy":"8.5","r":"3.5"}],["circle",{"cx":"7.5","cy":"16.5","r":"5.5"}],["circle",{"cx":"7.5","cy":"4.5","r":"2.5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Bubbles;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name CirclePile
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/circle-pile
|
|
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 CirclePile = createLucideIcon('circle-pile', [["circle",{"cx":"12","cy":"19","r":"2"}],["circle",{"cx":"12","cy":"5","r":"2"}],["circle",{"cx":"16","cy":"12","r":"2"}],["circle",{"cx":"20","cy":"19","r":"2"}],["circle",{"cx":"4","cy":"19","r":"2"}],["circle",{"cx":"8","cy":"12","r":"2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default CirclePile;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name CloudBackup
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/cloud-backup
|
|
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 CloudBackup = createLucideIcon('cloud-backup', [["path",{"d":"M21 15.251A4.5 4.5 0 0 0 17.5 8h-1.79A7 7 0 1 0 3 13.607"}],["path",{"d":"M7 11v4h4"}],["path",{"d":"M8 19a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5 4.82 4.82 0 0 0-3.41 1.41L7 15"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default CloudBackup;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name CloudSync
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/cloud-sync
|
|
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 CloudSync = createLucideIcon('cloud-sync', [["path",{"d":"m17 18-1.535 1.605a5 5 0 0 1-8-1.5"}],["path",{"d":"M17 22v-4h-4"}],["path",{"d":"M20.996 15.251A4.5 4.5 0 0 0 17.495 8h-1.79a7 7 0 1 0-12.709 5.607"}],["path",{"d":"M7 10v4h4"}],["path",{"d":"m7 14 1.535-1.605a5 5 0 0 1 8 1.5"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default CloudSync;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name FlashlightOff
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/flashlight-off
|
|
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 FlashlightOff = createLucideIcon('flashlight-off', [["path",{"d":"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-
|
|
16
|
+
const FlashlightOff = createLucideIcon('flashlight-off', [["path",{"d":"M11.652 6H18"}],["path",{"d":"M12 13v1"}],["path",{"d":"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V6"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M7.649 2H17a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8a4 4 0 0 0-.55 1.007"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default FlashlightOff;
|
package/src/icons/flashlight.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Flashlight
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/flashlight
|
|
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 Flashlight = createLucideIcon('flashlight', [["path",{"d":"
|
|
16
|
+
const Flashlight = createLucideIcon('flashlight', [["path",{"d":"M12 13v1"}],["path",{"d":"M17 2a1 1 0 0 1 1 1v4a3 3 0 0 1-.6 1.8l-.6.8A4 4 0 0 0 16 12v8a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-8a4 4 0 0 0-.8-2.4l-.6-.8A3 3 0 0 1 6 7V3a1 1 0 0 1 1-1z"}],["path",{"d":"M6 6h12"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Flashlight;
|