From 09f33076351dbb45a826b85a62205b52c016f2ab Mon Sep 17 00:00:00 2001 From: freakoverse Date: Mon, 23 Sep 2024 20:58:10 +0000 Subject: [PATCH] test home nav icon fix --- src/layout/socialNav.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/layout/socialNav.tsx b/src/layout/socialNav.tsx index e65db8a..022f555 100644 --- a/src/layout/socialNav.tsx +++ b/src/layout/socialNav.tsx @@ -85,21 +85,23 @@ interface NavButtonProps { viewBox?: string } -const NavButton = ({ to, isActive, svgPath, viewBox='0 0 512 512' }: NavButtonProps) => ( +const NavButton = ({ to, isActive, svgPath, viewBox = '0 0 512 512' }: NavButtonProps) => ( -) +); + +