import * as React from 'react'; type AnchorProps = React.HTMLProps; type Props = { className?: string; openInNewTab?: boolean; } & Omit; const ExternalLink = React.forwardRef(function ExternalLink( {openInNewTab = true, ...props}, ref ) { const anchorProps = openInNewTab ? {target: '_blank', rel: 'noreferrer noopener'} : {}; return ; }); export default ExternalLink;