diff --git a/src/components/external-link.astro b/src/components/external-link.astro
index be40781..791f7d8 100644
--- a/src/components/external-link.astro
+++ b/src/components/external-link.astro
@@ -2,21 +2,21 @@
import type { HTMLAttributes } from "astro/types";
interface Props extends HTMLAttributes<"a"> {
- cssClass: string;
- href: string;
- title: string;
+ /** Whether this link should use defaults for external links. */
+ external?: boolean | null | undefined;
}
-const { cssClass, href, title } = Astro.props;
+const { class: className, external, href, target, title, rel } = Astro.props;
---