From d11f23323c3e0ded75aba651358c0121345a0f42 Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Wed, 21 Sep 2022 09:21:40 +0630 Subject: [PATCH] Add tabindex attribute and prop --- src/components/LinkButton.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; ---