@lucide/astro 1.44.0 → 1.46.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 +3 -3
- package/src/aliases/aliases.ts +166 -148
- package/src/aliases/prefixed.ts +730 -682
- package/src/aliases/suffixed.ts +960 -912
- package/src/icons/book-bookmark.ts +20 -0
- package/src/icons/building-complex-plus.ts +20 -0
- package/src/icons/{building-2.ts → building-complex.ts} +5 -5
- package/src/icons/calendar-chevrons-right.ts +20 -0
- package/src/icons/clef-alto.ts +20 -0
- package/src/icons/{book-marked.ts → clef-bass.ts} +5 -5
- package/src/icons/clef-treble.ts +20 -0
- package/src/icons/cookie.ts +2 -2
- package/src/icons/folder-bookmark.ts +2 -2
- package/src/icons/globe-code.ts +20 -0
- package/src/icons/hourglass-cog.ts +20 -0
- package/src/icons/houses.ts +20 -0
- package/src/icons/index.ts +209 -191
- package/src/icons/iv-bag.ts +20 -0
- package/src/icons/{album.ts → layout-arrow-down.ts} +5 -5
- package/src/icons/layout-arrow-right.ts +20 -0
- package/src/icons/lectern.ts +2 -2
- package/src/icons/messages-circle.ts +20 -0
- package/src/icons/monitor-pc.ts +20 -0
- package/src/icons/mouth-off.ts +20 -0
- package/src/icons/mouth.ts +20 -0
- package/src/icons/notebook-dot.ts +20 -0
- package/src/icons/park.ts +20 -0
- package/src/icons/plant-pot.ts +20 -0
- package/src/icons/square-bookmark.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":"iv-bag","size":24,"node":[["path",{"d":"M12 18v2a2 2 0 002 2h6"}],["path",{"d":"M6 11c.72.5 1.44 1 3 1 3 0 3-2 6-2 1.56 0 2.28.5 3 1"}],["path",{"d":"M9.293 3c.453 0 .887-.18 1.207-.5s.754-.5 1.207-.5h.586c.453 0 .887.18 1.207.5s.754.5 1.207.5H16a2 2 0 012 2v11a2 2 0 01-2 2H8a2 2 0 01-2-2V5a2 2 0 012-2z"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name IvBag
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/iv-bag
|
|
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 IvBag = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default IvBag;
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
import createLucideIcon from '../createLucideIcon';
|
|
3
3
|
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
4
|
|
|
5
|
-
const iconData: LucideIconData = {"name":"
|
|
5
|
+
const iconData: LucideIconData = {"name":"layout-arrow-down","size":24,"node":[["rect",{"width":"7","height":"7","x":"3","y":"3","rx":"1"}],["rect",{"width":"7","height":"7","x":"3","y":"14","rx":"1"}],["path",{"d":"M18 3v18"}],["path",{"d":"m21 18-3 3-3-3"}]]};
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* @component @name
|
|
8
|
+
* @component @name LayoutArrowDown
|
|
9
9
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
10
|
*
|
|
11
|
-
* @preview  - https://lucide.dev/icons/layout-arrow-down
|
|
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
|
|
15
15
|
* @returns {any} Astro Component
|
|
16
16
|
*
|
|
17
17
|
*/
|
|
18
|
-
const
|
|
18
|
+
const LayoutArrowDown = createLucideIcon(iconData) as AstroComponent;
|
|
19
19
|
|
|
20
|
-
export default
|
|
20
|
+
export default LayoutArrowDown;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"layout-arrow-right","size":24,"node":[["rect",{"width":"7","height":"7","x":"3","y":"3","rx":"1"}],["rect",{"width":"7","height":"7","x":"14","y":"3","rx":"1"}],["path",{"d":"M3 18h18"}],["path",{"d":"m18 21 3-3-3-3"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name LayoutArrowRight
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/layout-arrow-right
|
|
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 LayoutArrowRight = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default LayoutArrowRight;
|
package/src/icons/lectern.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":"lectern","size":24,"node":[["path",{"d":"
|
|
5
|
+
const iconData: LucideIconData = {"name":"lectern","size":24,"node":[["path",{"d":"M15 13h4a2 2 0 001.901-1.38l1.057-4.333A1 1 0 0021 6H3a1 1 0 00-.958 1.287L3.1 11.621A2 2 0 005.001 13h4"}],["path",{"d":"M15 22V11a1 1 0 00-1-1h-4a1 1 0 00-1 1v11"}],["path",{"d":"M18 22H6"}],["path",{"d":"M18 6V3a1 1 0 00-1-1h-3"}]]};
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* @component @name Lectern
|
|
9
9
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
10
|
*
|
|
11
|
-
* @preview  - https://lucide.dev/icons/lectern
|
|
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":"messages-circle","size":24,"node":[["path",{"d":"M19.95 10.05a7 7 0 011.412 7.872 1 1 0 00-.058.787l.675 2.089a1 1 0 01-1.236 1.168l-2.155-.631a1 1 0 00-.745.06 7 7 0 01-7.793-1.445"}],["path",{"d":"M2.696 12.708a1 1 0 00-.058-.785 7 7 0 113.518 3.473 1 1 0 00-.744-.061l-2.155.63a1 1 0 01-1.236-1.167z"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name MessagesCircle
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/messages-circle
|
|
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 MessagesCircle = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default MessagesCircle;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"monitor-pc","size":24,"node":[["path",{"d":"M10 15H4a2 2 0 01-2-2V7a2 2 0 012-2h6"}],["path",{"d":"M10 19H5"}],["path",{"d":"M14 11h8"}],["path",{"d":"M14 7h8"}],["path",{"d":"M18 17h.01"}],["path",{"d":"M9 19v-4"}],["rect",{"x":"14","y":"3","width":"8","height":"18","rx":"1"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name MonitorPc
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/monitor-pc
|
|
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 MonitorPc = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default MonitorPc;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"mouth-off","size":24,"node":[["path",{"d":"M13.074 7.417a2.6 2.6 0 012.989.099c1.829 1.36 3.053 2.076 5.479 3.644a1 1 0 01.308 1.368 11.6 11.6 0 01-1.617 2.05"}],["path",{"d":"M2 12a50.5 50.5 0 0010.99.99"}],["path",{"d":"m2 2 20 20"}],["path",{"d":"M21 11a1 1 0 011 1 51 51 0 01-3.734.61"}],["path",{"d":"M7.695 7.695c-1.7 1.247-2.92 1.967-5.238 3.464a1 1 0 00-.307 1.369 11.6 11.6 0 0014.766 4.388"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name MouthOff
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/mouth-off
|
|
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 MouthOff = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default MouthOff;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"mouth","size":24,"node":[["path",{"d":"M2 12a50.5 50.5 0 0020 0 1 1 0 00-1-1"}],["path",{"d":"M2.457 11.159a1 1 0 00-.307 1.369 11.59 11.59 0 0019.7 0 1 1 0 00-.308-1.368c-2.426-1.568-3.65-2.284-5.479-3.644a2.6 2.6 0 00-3.373.208 1 1 0 01-1.38 0 2.62 2.62 0 00-3.373-.208c-1.83 1.36-3.053 2.076-5.48 3.643"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name Mouth
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/mouth
|
|
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 Mouth = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default Mouth;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"notebook-dot","size":24,"node":[["path",{"d":"M16 11.75V22"}],["path",{"d":"M2 10h4"}],["path",{"d":"M2 14h4"}],["path",{"d":"M2 18h4"}],["path",{"d":"M2 6h4"}],["path",{"d":"M20 11.75V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h5.65"}],["circle",{"cx":"18","cy":"5","r":"3"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name NotebookDot
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/notebook-dot
|
|
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 NotebookDot = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default NotebookDot;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"park","size":24,"node":[["path",{"d":"M12 18h10"}],["path",{"d":"M13.248 9.998A4.5 4.5 0 0 0 11.75 8.6V8a1 1 0 0 0-7.5 0 4.9 4.9 0 0 0 2.25 9H8"}],["path",{"d":"m15 14-2 6"}],["path",{"d":"m19 14 2 6"}],["path",{"d":"M21 14h-8"}],["path",{"d":"M8 20v-5.922a2 2 0 0 0-.586-1.414L6.5 11.75"}],["path",{"d":"M9.205 12.795 8 14"}],["circle",{"cx":"19","cy":"6","r":"2"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name Park
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/park
|
|
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 Park = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default Park;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"plant-pot","size":24,"node":[["path",{"d":"M14 8.536V6a4 4 0 014-4h1.5a.5.5 0 01.5.5V4a4 4 0 01-4 4 4 4 0 00-4 4 5 5 0 01-8-4 5 5 0 018 4c0 2 1 3 1 5"}],["path",{"d":"m18 17-1.085 3.58A2 2 0 0115 22H9.002a2 2 0 01-1.913-1.418L6 17"}],["path",{"d":"M5 17h14"}]]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name PlantPot
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/plant-pot
|
|
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 PlantPot = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default PlantPot;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent, LucideIconData } from '../types'
|
|
4
|
+
|
|
5
|
+
const iconData: LucideIconData = {"name":"square-bookmark","size":24,"node":[["path",{"d":"M11 3v7.751a.25.25 0 00.407.195l2.28-1.834a.5.5 0 01.627 0l2.28 1.834a.25.25 0 00.406-.195V3"}],["rect",{"x":"3","y":"3","width":"18","height":"18","rx":"2"}]],"aliases":["album"]};
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @component @name SquareBookmark
|
|
9
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
10
|
+
*
|
|
11
|
+
* @preview  - https://lucide.dev/icons/square-bookmark
|
|
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 SquareBookmark = createLucideIcon(iconData) as AstroComponent;
|
|
19
|
+
|
|
20
|
+
export default SquareBookmark;
|