Files for my website bwc9876.dev

Set aria-label on IconLinks

+1 -1
+1 -1
src/components/IconLink.astro
··· 13 13 const { href, label, placement, icon, size } = Astro.props; 14 14 --- 15 15 16 - <ExtLink data-tooltip={label} data-placement={placement} href={href}> 16 + <ExtLink aria-label={label} data-tooltip={label} data-placement={placement} href={href}> 17 17 <Icon width={size} height={size} name={`bi:${icon}`} /> 18 18 </ExtLink>