blob: c8ba273ff973d7d9d6a5a9d9cc2a0caeaa7f86b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
import NextLink from 'next/link';
import { FC, ReactNode } from 'react';
import styles from './link.module.scss';
export type LinkProps = {
/**
* The link body.
*/
children: ReactNode;
/**
* Set additional classnames to the link.
*/
className?: string;
/**
* True if it is a download link. Default: false.
*/
download?: boolean;
/**
* True if it is an external link. Default: false.
*/
external?: boolean;
/**
* The link target.
*/
href: string;
/**
* The link target code language.
*/
lang?: string;
};
/**
* Link Component
*
* Render a link.
*/
const Link: FC<LinkProps> = ({
children,
className = '',
download = false,
external = false,
href,
lang,
}) => {
const downloadClass = download ? styles['link--download'] : '';
return external ? (
<a
href={href}
hrefLang={lang}
className={`${styles.link} ${styles['link--external']} ${downloadClass} ${className}`}
>
{children}
</a>
) : (
<NextLink href={href}>
<a
hrefLang={lang}
className={`${styles.link} ${downloadClass} ${className}`}
>
{children}
</a>
</NextLink>
);
};
export default Link;
|