@lucide/astro 0.554.0 → 0.556.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 +58 -58
- package/src/aliases/prefixed.ts +530 -516
- package/src/aliases/suffixed.ts +794 -780
- package/src/icons/book-search.ts +18 -0
- package/src/icons/bubbles.ts +2 -2
- package/src/icons/calendars.ts +2 -2
- package/src/icons/flashlight-off.ts +2 -2
- package/src/icons/flashlight.ts +2 -2
- package/src/icons/form.ts +18 -0
- package/src/icons/index.ts +94 -87
- package/src/icons/plug.ts +2 -2
- package/src/icons/scale.ts +2 -2
- package/src/icons/scooter.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/van.ts +18 -0
- package/src/icons/waves-arrow-down.ts +18 -0
- package/src/icons/waves-arrow-up.ts +18 -0
- package/src/icons/weight-tilde.ts +18 -0
package/src/icons/plug.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Plug
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/plug
|
|
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 Plug = createLucideIcon('plug', [["path",{"d":"M12 22v-5"}],["path",{"d":"
|
|
16
|
+
const Plug = createLucideIcon('plug', [["path",{"d":"M12 22v-5"}],["path",{"d":"M15 8V2"}],["path",{"d":"M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z"}],["path",{"d":"M9 8V2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Plug;
|
package/src/icons/scale.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Scale
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/scale
|
|
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 Scale = createLucideIcon('scale', [["path",{"d":"
|
|
16
|
+
const Scale = createLucideIcon('scale', [["path",{"d":"M12 3v18"}],["path",{"d":"m19 8 3 8a5 5 0 0 1-6 0zV7"}],["path",{"d":"M3 7h1a17 17 0 0 0 8-2 17 17 0 0 0 8 2h1"}],["path",{"d":"m5 8 3 8a5 5 0 0 1-6 0zV7"}],["path",{"d":"M7 21h10"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Scale;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Scooter
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/scooter
|
|
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 Scooter = createLucideIcon('scooter', [["path",{"d":"M21 4h-3.5l2 11.05"}],["path",{"d":"M6.95 17h5.142c.523 0 .95-.406 1.063-.916a6.5 6.5 0 0 1 5.345-5.009"}],["circle",{"cx":"19.5","cy":"17.5","r":"2.5"}],["circle",{"cx":"4.5","cy":"17.5","r":"2.5"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Scooter;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name SquareBottomDashedScissors
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/square-bottom-dashed-scissors
|
|
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 SquareBottomDashedScissors = createLucideIcon('square-bottom-dashed-scissors', [["path",{"d":"
|
|
16
|
+
const SquareBottomDashedScissors = createLucideIcon('square-bottom-dashed-scissors', [["line",{"x1":"5","y1":"3","x2":"19","y2":"3"}],["line",{"x1":"3","y1":"5","x2":"3","y2":"19"}],["line",{"x1":"21","y1":"5","x2":"21","y2":"19"}],["line",{"x1":"9","y1":"21","x2":"10","y2":"21"}],["line",{"x1":"14","y1":"21","x2":"15","y2":"21"}],["path",{"d":"M 3 5 A2 2 0 0 1 5 3"}],["path",{"d":"M 19 3 A2 2 0 0 1 21 5"}],["path",{"d":"M 5 21 A2 2 0 0 1 3 19"}],["path",{"d":"M 21 19 A2 2 0 0 1 19 21"}],["circle",{"cx":"8.5","cy":"8.5","r":"1.5"}],["line",{"x1":"9.56066","y1":"9.56066","x2":"12","y2":"12"}],["line",{"x1":"17","y1":"17","x2":"14.82","y2":"14.82"}],["circle",{"cx":"8.5","cy":"15.5","r":"1.5"}],["line",{"x1":"9.56066","y1":"14.43934","x2":"17","y2":"7"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default SquareBottomDashedScissors;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name SquareScissors
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/square-scissors
|
|
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 SquareScissors = createLucideIcon('square-scissors', [["rect",{"width":"
|
|
16
|
+
const SquareScissors = createLucideIcon('square-scissors', [["rect",{"width":"18","height":"18","x":"3","y":"3","rx":"2"}],["circle",{"cx":"8.5","cy":"8.5","r":"1.5"}],["line",{"x1":"9.56066","y1":"9.56066","x2":"12","y2":"12"}],["line",{"x1":"17","y1":"17","x2":"14.82","y2":"14.82"}],["circle",{"cx":"8.5","cy":"15.5","r":"1.5"}],["line",{"x1":"9.56066","y1":"14.43934","x2":"17","y2":"7"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default SquareScissors;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name ThermometerSun
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/thermometer-sun
|
|
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 ThermometerSun = createLucideIcon('thermometer-sun', [["path",{"d":"M12
|
|
16
|
+
const ThermometerSun = createLucideIcon('thermometer-sun', [["path",{"d":"M12 2v2"}],["path",{"d":"M12 8a4 4 0 0 0-1.645 7.647"}],["path",{"d":"M2 12h2"}],["path",{"d":"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"}],["path",{"d":"m4.93 4.93 1.41 1.41"}],["path",{"d":"m6.34 17.66-1.41 1.41"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default ThermometerSun;
|
package/src/icons/van.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Van
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/van
|
|
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 Van = createLucideIcon('van', [["path",{"d":"M13 6v5a1 1 0 0 0 1 1h6.102a1 1 0 0 1 .712.298l.898.91a1 1 0 0 1 .288.702V17a1 1 0 0 1-1 1h-3"}],["path",{"d":"M5 18H3a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h12c1.1 0 2.1.8 2.4 1.8l1.176 4.2"}],["path",{"d":"M9 18h5"}],["circle",{"cx":"16","cy":"18","r":"2"}],["circle",{"cx":"7","cy":"18","r":"2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Van;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name WavesArrowDown
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/waves-arrow-down
|
|
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 WavesArrowDown = createLucideIcon('waves-arrow-down', [["path",{"d":"M12 10L12 2"}],["path",{"d":"M16 6L12 10L8 6"}],["path",{"d":"M2 15C2.6 15.5 3.2 16 4.5 16C7 16 7 14 9.5 14C12.1 14 11.9 16 14.5 16C17 16 17 14 19.5 14C20.8 14 21.4 14.5 22 15"}],["path",{"d":"M2 21C2.6 21.5 3.2 22 4.5 22C7 22 7 20 9.5 20C12.1 20 11.9 22 14.5 22C17 22 17 20 19.5 20C20.8 20 21.4 20.5 22 21"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default WavesArrowDown;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name WavesArrowUp
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/waves-arrow-up
|
|
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 WavesArrowUp = createLucideIcon('waves-arrow-up', [["path",{"d":"M12 2v8"}],["path",{"d":"M2 15c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{"d":"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{"d":"m8 6 4-4 4 4"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default WavesArrowUp;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name WeightTilde
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/weight-tilde
|
|
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 WeightTilde = createLucideIcon('weight-tilde', [["path",{"d":"M6.5 8a2 2 0 0 0-1.906 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8z"}],["path",{"d":"M7.999 15a2.5 2.5 0 0 1 4 0 2.5 2.5 0 0 0 4 0"}],["circle",{"cx":"12","cy":"5","r":"3"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default WeightTilde;
|