diff --git a/front/src/components/LogoButton.tsx b/front/src/components/LogoButton.tsx index f086479..bc41d3c 100644 --- a/front/src/components/LogoButton.tsx +++ b/front/src/components/LogoButton.tsx @@ -1,10 +1,13 @@ +import * as React from 'react'; + interface LogoButtonProps { url:string; - logo:string + logo:string; + style?: React.CSSProperties; } -export default function LogoButton ({url, logo}: LogoButtonProps) { +export default function LogoButton ({url, logo, style}: LogoButtonProps) { return ( - + ) } \ No newline at end of file diff --git a/front/src/components/NavBar.tsx b/front/src/components/NavBar.tsx index 7f8ab2f..7c170d9 100644 --- a/front/src/components/NavBar.tsx +++ b/front/src/components/NavBar.tsx @@ -6,7 +6,7 @@ export default function NavBar(){ return (