UNPKG

@newrelic/gatsby-theme-newrelic

Version:

[![Community Project header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Project.png)](https://opensource.newrelic.com/oss-category/#community-project)

14 lines (10 loc) 268 B
import React from 'react'; import PropTypes from 'prop-types'; import Link from './Link'; const ExternalLink = ({ href, ...props }) => { return <Link to={href} {...props} />; }; ExternalLink.propTypes = { href: PropTypes.string, }; export default ExternalLink;