import styled from 'styled-components/macro' type TLogo = { height?: number, width?: number, } export const Logo = styled.div` display: block; width: ${({ width = 174 }) => width}px; height: ${({ height = 40 }) => height}px; background-size: contain; background-repeat: no-repeat; background-image: url(/images/logo.svg); `