diff --git a/src/components/LinkButton.astro b/src/components/LinkButton.astro index a21cb38..7f8d916 100644 --- a/src/components/LinkButton.astro +++ b/src/components/LinkButton.astro @@ -4,14 +4,16 @@ export interface Props { className?: string; ariaLabel?: string; title?: string; + tabindex?: string; } -const { href, className, ariaLabel, title } = Astro.props; +const { href, className, ariaLabel, title, tabindex } = Astro.props; ---