test home nav icon fix
All checks were successful
Release to Staging / build_and_release (push) Successful in 42s

This commit is contained in:
freakoverse 2024-09-23 20:58:10 +00:00
parent 56c45f5c57
commit 09f3307635

View File

@ -85,12 +85,12 @@ interface NavButtonProps {
viewBox?: string viewBox?: string
} }
const NavButton = ({ to, isActive, svgPath, viewBox='0 0 512 512' }: NavButtonProps) => ( const NavButton = ({ to, isActive, svgPath, viewBox = '0 0 512 512' }: NavButtonProps) => (
<Link <Link
to={to} to={to}
className={btn btnMain socialNavInsideBtn ${ className={`btn btnMain socialNavInsideBtn ${
isActive ? 'socialNavInsideBtnActive' : '' isActive ? 'socialNavInsideBtnActive' : ''
}} }`}
> >
<svg <svg
xmlns='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg'
@ -102,4 +102,6 @@ const NavButton = ({ to, isActive, svgPath, viewBox='0 0 512 512' }: NavButtonPr
<path d={svgPath}></path> <path d={svgPath}></path>
</svg> </svg>
</Link> </Link>
) );