From 56c45f5c57f8d3d6e2bc90983c283700e417d82d Mon Sep 17 00:00:00 2001 From: freakoverse Date: Mon, 23 Sep 2024 20:53:36 +0000 Subject: [PATCH] test home nav icon fix --- src/layout/socialNav.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/layout/socialNav.tsx b/src/layout/socialNav.tsx index c1f4b64..e65db8a 100644 --- a/src/layout/socialNav.tsx +++ b/src/layout/socialNav.tsx @@ -82,19 +82,20 @@ interface NavButtonProps { to: string isActive: boolean svgPath: string + viewBox?: string } -const NavButton = ({ to, isActive, svgPath }: NavButtonProps) => ( +const NavButton = ({ to, isActive, svgPath, viewBox='0 0 512 512' }: NavButtonProps) => (