From 320035c82827ce8fa1a2a765cdd0ba039983b08c Mon Sep 17 00:00:00 2001 From: Kai Moschcau Date: Wed, 1 Apr 2026 20:12:48 +0200 Subject: [PATCH] fix: pass through rest props in ButtonLink --- src/components/button-link.astro | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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; ---