---
import type { HTMLAttributes } from "astro/types";
interface Props extends HTMLAttributes<"a"> {
href: string;
}
const { href, ...rest } = Astro.props;
const isExternal =
/^(https?:)?\/\//.test(href) ||
href.startsWith("mailto:") ||
href.startsWith("tel:");
---