lucide-react-native
Version:
A Lucide icon library package for React Native applications.
18 lines (15 loc) • 1.15 kB
TypeScript
import * as react from 'react';
import * as ___types from '../lucide-react-native.js';
/**
* @component @name Link
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/link
* @see https://lucide.dev/guide/packages/lucide-react-native - Documentation
*
* @param {Object} props - Lucide icons props and any valid SVG attribute
* @returns {JSX.Element} JSX Element
*
*/
declare const Link: react.ForwardRefExoticComponent<___types.LucideProps & react.RefAttributes<SVGSVGElement>>;
export { Link as default };