diff --git a/src/components/Header/HeaderLogo.tsx b/src/components/Header/HeaderLogo.tsx index d2de7fe..20031af 100644 --- a/src/components/Header/HeaderLogo.tsx +++ b/src/components/Header/HeaderLogo.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import styled from '@emotion/styled'; import Logo from '../Logo'; @@ -8,7 +9,14 @@ interface Props { const HeaderLogo: React.FC = ({ logo }) => { if (logo) { - return logo; + const Wrapper = styled('div')({ + fontSize: 0, + }); + return ( + + logo + + ); } return ;