blob: 82c873004a5a7801f4f9e815abe57e92aa788b34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react';
//import styles from './ExternalLink.module.css';
import ExternalLinkIcon from '@theme/Icon/ExternalLink';
export default function ExternalLink({children, href}) {
return (
<a href={href} rel={"noopener noreferrer"} target={"_blank"}>
{children} <ExternalLinkIcon />
</a>
);
}
|