You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
15 lines
349 B
import styled from 'styled-components/macro'
|
|
|
|
type TLogo = {
|
|
height?: number,
|
|
width?: number,
|
|
}
|
|
|
|
export const Logo = styled.div<TLogo>`
|
|
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);
|
|
`
|
|
|