diff --git a/src/components/LinkButton.astro b/src/components/LinkButton.astro index b305067..a21cb38 100644 --- a/src/components/LinkButton.astro +++ b/src/components/LinkButton.astro @@ -2,12 +2,20 @@ export interface Props { href: string; className?: string; + ariaLabel?: string; + title?: string; } -const { href, className } = Astro.props; +const { href, className, ariaLabel, title } = Astro.props; --- - +