@lucide/astro 0.549.0 → 0.550.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 +78 -78
- package/src/aliases/prefixed.ts +556 -554
- package/src/aliases/suffixed.ts +860 -858
- package/src/icons/helicopter.ts +18 -0
- package/src/icons/index.ts +116 -115
|
@@ -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;
|