--- interface Props { href: string; class?: string; } const { href, class: className, ...rest } = Astro.props; const external = !!href.match(/^(https?:)?\/\//); const externalAttrs = external ? { target: "_blank", rel: "noopener" } : {}; ---