UNPKG

react-external-link

Version:

[![Build Status](https://img.shields.io/github/actions/workflow/status/acelaya/react-external-link/ci.yml?branch=main&logo=github&style=flat-square)](https://github.com/acelaya/react-external-link/actions/workflows/ci.yml) [![Code Coverage](https://img.sh

7 lines (6 loc) 265 B
import { FC, HTMLAttributes, RefObject } from 'react'; export type ExternalLinkProps = Omit<HTMLAttributes<HTMLAnchorElement>, 'href'> & { href: string; ref?: RefObject<HTMLAnchorElement | null>; }; export declare const ExternalLink: FC<ExternalLinkProps>;