fix: about tab links and icons

This commit is contained in:
David Ralph
2026-01-03 17:58:08 +00:00
parent 7807462c7b
commit 0b6fb4f3c2
3 changed files with 18 additions and 2 deletions

View File

@@ -50,7 +50,10 @@ const Button = forwardRef(
);
const linkButton = (
<a className={className} onClick={onClick} ref={ref} disabled={disabled} href={href} style={style}>
<a className={className} onClick={onClick} ref={ref} disabled={disabled} href={href} style={style}
target="_blank"
rel="noopener noreferrer"
>
{icon}
{label}
</a>