@lucide/astro 0.549.0 → 0.551.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 +96 -96
- package/src/aliases/prefixed.ts +681 -677
- package/src/aliases/suffixed.ts +978 -974
- package/src/icons/clock-check.ts +18 -0
- package/src/icons/helicopter.ts +18 -0
- package/src/icons/index.ts +179 -177
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name ClockCheck
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/clock-check
|
|
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 ClockCheck = createLucideIcon('clock-check', [["path",{"d":"M12 6v6l4 2"}],["path",{"d":"M22 12a10 10 0 1 0-11 9.95"}],["path",{"d":"m22 16-5.5 5.5L14 19"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default ClockCheck;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name Helicopter
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/helicopter
|
|
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 Helicopter = createLucideIcon('helicopter', [["path",{"d":"M11 17v4"}],["path",{"d":"M14 3v8a2 2 0 0 0 2 2h5.865"}],["path",{"d":"M17 17v4"}],["path",{"d":"M18 17a4 4 0 0 0 4-4 8 6 0 0 0-8-6 6 5 0 0 0-6 5v3a2 2 0 0 0 2 2z"}],["path",{"d":"M2 10v5"}],["path",{"d":"M6 3h16"}],["path",{"d":"M7 21h14"}],["path",{"d":"M8 13H2"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default Helicopter;
|