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 = ({ children, className = '', download = false, external = false, href, lang, }) => { const downloadClass = download ? styles['link--download'] : ''; return external ? ( {children} ) : ( {children} ); }; export default Link; Armand Philippot
summaryrefslogtreecommitdiffstats
path: root/public/prism/prism-go-module.min.js
blob: 4bb1d743d39bff6bd2cccd621b1201d28c9db95c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19