@lucide/astro 1.0.1 → 1.2.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 +5 -4
- package/src/aliases/aliases.ts +126 -126
- package/src/aliases/prefixed.ts +759 -755
- package/src/aliases/suffixed.ts +1113 -1109
- package/src/icons/arrow-big-down-dash.ts +2 -2
- package/src/icons/arrow-big-down.ts +2 -2
- package/src/icons/arrow-big-left-dash.ts +2 -2
- package/src/icons/arrow-big-left.ts +2 -2
- package/src/icons/arrow-big-right-dash.ts +2 -2
- package/src/icons/arrow-big-right.ts +2 -2
- package/src/icons/arrow-big-up-dash.ts +2 -2
- package/src/icons/arrow-big-up.ts +2 -2
- package/src/icons/circle-user-round.ts +2 -2
- package/src/icons/index.ts +118 -116
- package/src/icons/line-style.ts +18 -0
- package/src/icons/milestone.ts +2 -2
- package/src/icons/road.ts +18 -0
- package/src/icons/signpost.ts +2 -2
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name LineStyle
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/line-style
|
|
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 LineStyle = createLucideIcon('line-style', [["path",{"d":"M11 5h2"}],["path",{"d":"M15 12h6"}],["path",{"d":"M19 5h2"}],["path",{"d":"M3 12h6"}],["path",{"d":"M3 19h18"}],["path",{"d":"M3 5h2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default LineStyle;
|
package/src/icons/milestone.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Milestone
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/milestone
|
|
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 Milestone = createLucideIcon('milestone', [["path",{"d":"M12 13v8"}],["path",{"d":"M12 3v3"}],["path",{"d":"
|
|
16
|
+
const Milestone = createLucideIcon('milestone', [["path",{"d":"M12 13v8"}],["path",{"d":"M12 3v3"}],["path",{"d":"M18.172 6a2 2 0 0 1 1.414.586l2.06 2.06a1.207 1.207 0 0 1 0 1.708l-2.06 2.06a2 2 0 0 1-1.414.586H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1z"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Milestone;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Road
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/road
|
|
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 Road = createLucideIcon('road', [["path",{"d":"M12 17v4"}],["path",{"d":"M12 5V3"}],["path",{"d":"M12 9v3"}],["path",{"d":"M2.077 18.449A2 2 0 0 0 4 21h16a2 2 0 0 0 1.924-2.55l-4-14A2 2 0 0 0 16 3H8a2 2 0 0 0-1.924 1.45z"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Road;
|
package/src/icons/signpost.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Signpost
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/signpost
|
|
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 Signpost = createLucideIcon('signpost', [["path",{"d":"M12 13v8"}],["path",{"d":"M12 3v3"}],["path",{"d":"
|
|
16
|
+
const Signpost = createLucideIcon('signpost', [["path",{"d":"M12 13v8"}],["path",{"d":"M12 3v3"}],["path",{"d":"M2.354 10.354a1.207 1.207 0 0 1 0-1.708l2.06-2.06A2 2 0 0 1 5.828 6h12.344a2 2 0 0 1 1.414.586l2.06 2.06a1.207 1.207 0 0 1 0 1.708l-2.06 2.06a2 2 0 0 1-1.414.586H5.828a2 2 0 0 1-1.414-.586z"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Signpost;
|