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

11 lines (7 loc) 273 B
import { AnchorHTMLAttributes } from 'react'; import { FC } from 'react'; export declare const ExternalLink: FC<ExternalLinkProps>; export declare interface ExternalLinkProps extends Omit<AnchorHTMLAttributes<Element>, 'href'> { href: string; } export { }