fix: css repetition is not closed in Logo component

This commit is contained in:
Sergio Herrera Guzmán
2019-07-15 14:43:44 +02:00
parent cad5ac91e7
commit ec243b1352
4 changed files with 5 additions and 4 deletions

View File

@@ -23,6 +23,7 @@ const StyledLogo = styled('div')<Props>`
background-repeat: no-repeat;
width: ${({ size }) => size};
height: ${({ size }) => size};
}
`;
const Logo: React.FC<Props> = ({ size = Size.Small }) => {
return <StyledLogo size={size} />;