import type { JSX, AnchorHTMLAttributes } from 'react' import { Button } from '@mantine/core' import { Link } from 'tuono' import { IconExternalLink } from '@tabler/icons-react' export default function MdxLink( props: AnchorHTMLAttributes, ): JSX.Element { if (props.href?.startsWith('http') || props.href?.startsWith('mailto')) { return (