diff --git a/src/components/button-link.astro b/src/components/button-link.astro
index 791f7d8..69221a0 100644
--- a/src/components/button-link.astro
+++ b/src/components/button-link.astro
@@ -6,7 +6,7 @@ interface Props extends HTMLAttributes<"a"> {
external?: boolean | null | undefined;
}
-const { class: className, external, href, target, title, rel } = Astro.props;
+const { class: className, external, target, rel, ...rest } = Astro.props;
---