@js-smart/react-kit
Version:
18 lines (17 loc) • 459 B
TypeScript
import { default as React } from 'react';
interface Props {
href: string;
linkText: string;
target: string;
children?: React.ReactNode;
}
/**
* Reusable component to open a link in new tab and show open new icon at the end
*
* @param props Properties of the component
*
* @author Pavan Kumar Jadda
* @since 1.2.24
*/
export declare function OpenInNewIconLink(props: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
export {};