diff options
Diffstat (limited to 'src/components/atoms/links/nav-link.tsx')
| -rw-r--r-- | src/components/atoms/links/nav-link.tsx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/components/atoms/links/nav-link.tsx b/src/components/atoms/links/nav-link.tsx index 7c6fede..66ee570 100644 --- a/src/components/atoms/links/nav-link.tsx +++ b/src/components/atoms/links/nav-link.tsx @@ -24,11 +24,9 @@ export type NavLinkProps = { */ const NavLink: FC<NavLinkProps> = ({ href, label, logo }) => { return ( - <Link href={href}> - <a className={styles.link}> - {logo} - {label} - </a> + <Link className={styles.link} href={href}> + {logo} + {label} </Link> ); }; |
