UNPKG

@js-smart/react-kit

Version:
18 lines (17 loc) 394 B
import { default as React } from 'react'; interface Props { href: string; linkText?: string; target?: string; children?: React.ReactNode; } /** * Reusable custom Next.js 13 Link component. * * @param props Properties of the React Node * * @author Pavan Kumar Jadda * @since 0.3.2 */ export declare function NextLink(props: Readonly<Props>): React.JSX.Element; export {};