import { forwardRef } from 'react' import { Link, LinkProps } from '../Link' export interface GitHubMentionProps extends LinkProps { children: string } export let GitHubMention = forwardRef( function GitHubMention({ children, ...props }: GitHubMentionProps, ref) { return ( {children} ) }, ) export default GitHubMention