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