troylusty.com/src/components/Link.astro

21 lines
365 B
Text
Raw Normal View History

2024-12-23 21:18:55 +00:00
---
import type { HTMLAttributes } from "astro/types";
interface Props extends HTMLAttributes<"a"> {
href: string;
external?: boolean;
class?: string;
}
const { href, external = true, ...rest } = Astro.props;
---
<a
href={href}
rel={external ? "noopener nofollow noreferrer" : ""}
target={external ? "_blank" : "_self"}
{...rest}
>
<slot />
</a>