@lucide/astro 0.501.0 → 0.503.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 +2 -2
- package/src/aliases/aliases.ts +85 -85
- package/src/aliases/prefixed.ts +481 -477
- package/src/aliases/suffixed.ts +761 -757
- package/src/icons/baby.ts +2 -2
- package/src/icons/book-key.ts +2 -2
- package/src/icons/calendar-plus.ts +2 -2
- package/src/icons/clipboard-paste.ts +2 -2
- package/src/icons/file-badge-2.ts +2 -2
- package/src/icons/index.ts +191 -189
- package/src/icons/non-binary.ts +2 -2
- package/src/icons/orbit.ts +2 -2
- package/src/icons/ruler-dimension-line.ts +18 -0
- package/src/icons/wifi-pen.ts +18 -0
package/src/icons/non-binary.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name NonBinary
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/non-binary
|
|
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 NonBinary = createLucideIcon('non-binary', [["path",{"d":"M12 2v10"}],["path",{"d":"
|
|
16
|
+
const NonBinary = createLucideIcon('non-binary', [["path",{"d":"M12 2v10"}],["path",{"d":"m8.5 4 7 4"}],["path",{"d":"m8.5 8 7-4"}],["circle",{"cx":"12","cy":"17","r":"5"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default NonBinary;
|
package/src/icons/orbit.ts
CHANGED
|
@@ -6,13 +6,13 @@ import type { AstroComponent } from '../types'
|
|
|
6
6
|
* @component @name Orbit
|
|
7
7
|
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
8
|
*
|
|
9
|
-
* @preview  - https://lucide.dev/icons/orbit
|
|
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 Orbit = createLucideIcon('orbit', [["
|
|
16
|
+
const Orbit = createLucideIcon('orbit', [["path",{"d":"M20.341 6.484A10 10 0 0 1 10.266 21.85"}],["path",{"d":"M3.659 17.516A10 10 0 0 1 13.74 2.152"}],["circle",{"cx":"12","cy":"12","r":"3"}],["circle",{"cx":"19","cy":"5","r":"2"}],["circle",{"cx":"5","cy":"19","r":"2"}]]) as AstroComponent;
|
|
17
17
|
|
|
18
18
|
export default Orbit;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name RulerDimensionLine
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/ruler-dimension-line
|
|
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 RulerDimensionLine = createLucideIcon('ruler-dimension-line', [["path",{"d":"M12 15v-3.014"}],["path",{"d":"M16 15v-3.014"}],["path",{"d":"M20 6H4"}],["path",{"d":"M20 8V4"}],["path",{"d":"M4 8V4"}],["path",{"d":"M8 15v-3.014"}],["rect",{"x":"3","y":"12","width":"18","height":"7","rx":"1"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default RulerDimensionLine;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name WifiPen
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/wifi-pen
|
|
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 WifiPen = createLucideIcon('wifi-pen', [["path",{"d":"M2 8.82a15 15 0 0 1 20 0"}],["path",{"d":"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{"d":"M5 12.859a10 10 0 0 1 10.5-2.222"}],["path",{"d":"M8.5 16.429a5 5 0 0 1 3-1.406"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default WifiPen;
|