@lucide/astro 0.506.0 → 0.508.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 +43 -43
- package/src/aliases/prefixed.ts +473 -469
- package/src/aliases/suffixed.ts +693 -689
- package/src/icons/air-vent.ts +2 -2
- package/src/icons/bell-electric.ts +2 -2
- package/src/icons/dumbbell.ts +2 -2
- package/src/icons/guitar.ts +2 -2
- package/src/icons/index.ts +146 -144
- package/src/icons/mail.ts +2 -2
- package/src/icons/menu.ts +2 -2
- package/src/icons/panda.ts +18 -0
- package/src/icons/search.ts +2 -2
- package/src/icons/soap-dispenser-droplet.ts +18 -0
- package/src/icons/touchpad-off.ts +2 -2
package/src/icons/mail.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Mail
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/mail
|
|
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 Mail = createLucideIcon('mail', [["
|
|
16
|
+
const Mail = createLucideIcon('mail', [["path",{"d":"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["rect",{"x":"2","y":"4","width":"20","height":"16","rx":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Mail;
|
package/src/icons/menu.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Menu
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/menu
|
|
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 Menu = createLucideIcon('menu', [["
|
|
16
|
+
const Menu = createLucideIcon('menu', [["path",{"d":"M4 12h16"}],["path",{"d":"M4 18h16"}],["path",{"d":"M4 6h16"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Menu;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Panda
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/panda
|
|
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 Panda = createLucideIcon('panda', [["path",{"d":"M11.25 17.25h1.5L12 18z"}],["path",{"d":"m15 12 2 2"}],["path",{"d":"M18 6.5a.5.5 0 0 0-.5-.5"}],["path",{"d":"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83"}],["path",{"d":"M6 6.5a.495.495 0 0 1 .5-.5"}],["path",{"d":"m9 12-2 2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Panda;
|
package/src/icons/search.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Search
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/search
|
|
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 Search = createLucideIcon('search', [["circle",{"cx":"11","cy":"11","r":"8"}]
|
|
16
|
+
const Search = createLucideIcon('search', [["path",{"d":"m21 21-4.34-4.34"}],["circle",{"cx":"11","cy":"11","r":"8"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Search;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name SoapDispenserDroplet
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/soap-dispenser-droplet
|
|
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 SoapDispenserDroplet = createLucideIcon('soap-dispenser-droplet', [["path",{"d":"M10.5 2v4"}],["path",{"d":"M14 2H7a2 2 0 0 0-2 2"}],["path",{"d":"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19"}],["path",{"d":"M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default SoapDispenserDroplet;
|
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name TouchpadOff
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/touchpad-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 TouchpadOff = createLucideIcon('touchpad-off', [["path",{"d":"
|
|
16
|
+
const TouchpadOff = createLucideIcon('touchpad-off', [["path",{"d":"M12 20v-6"}],["path",{"d":"M19.656 14H22"}],["path",{"d":"M2 14h12"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{"d":"M9.656 4H20a2 2 0 0 1 2 2v10.344"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default TouchpadOff;
|