troylusty.com/src/components/Link.astro

16 lines
303 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;
---
2025-01-11 13:35:50 +00:00
<a href={href} target={external ? "_blank" : "_self"} {...rest}>
2024-12-23 21:18:55 +00:00
<slot />
</a>