@lucide/astro 1.16.0 → 1.18.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 +120 -120
- package/src/aliases/prefixed.ts +753 -745
- package/src/aliases/suffixed.ts +1066 -1058
- package/src/icons/globe-check.ts +18 -0
- package/src/icons/index.ts +190 -186
- package/src/icons/martini.ts +2 -2
- package/src/icons/parasol.ts +18 -0
- package/src/icons/play-off.ts +18 -0
- package/src/icons/webcam-off.ts +18 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import createLucideIcon from '../createLucideIcon';
|
|
3
|
+
import type { AstroComponent } from '../types'
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @component @name GlobeCheck
|
|
7
|
+
* @description Lucide SVG icon component, renders SVG Element with children.
|
|
8
|
+
*
|
|
9
|
+
* @preview  - https://lucide.dev/icons/globe-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 GlobeCheck = createLucideIcon('globe-check', [["path",{"d":"m15 6 2 2 4-4"}],["path",{"d":"M2 12h20A10 10 0 1 1 12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 4-10"}]]) as AstroComponent;
|
|
17
|
+
|
|
18
|
+
export default GlobeCheck;
|