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