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) => (