test home nav icon fix
Some checks failed
Release to Staging / build_and_release (push) Failing after 19s

This commit is contained in:
freakoverse 2024-09-23 20:53:36 +00:00
parent ceeb6d22d0
commit 56c45f5c57

View File

@ -82,19 +82,20 @@ interface NavButtonProps {
to: string to: string
isActive: boolean isActive: boolean
svgPath: string svgPath: string
viewBox?: string
} }
const NavButton = ({ to, isActive, svgPath }: 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'
viewBox='0 0 512 512' viewBox={viewBox}
width='1em' width='1em'
height='1em' height='1em'
fill='currentColor' fill='currentColor'
> >