import styled from 'styled-components/macro' import { client } from '../../config/clients' type Props = { height?: number, width?: number, } export const Logo = styled.div` ${client.styles.logo}; display: block; background-size: contain; background-repeat: no-repeat; `