import { GeneratedPropTypes } from '../types'; import { colors } from '../theme/colors'; import { generateProps, mq } from 'styled-gen'; import React from 'react'; import styled, { css } from 'styled-components'; const LogoWrapper = styled.div` height: 2rem; color: ${colors.p500}; svg { height: 100%; width: auto; fill: currentColor; } ${mq.tabletLandscape(css` height: 2.5rem; `)} ${generateProps} `; const SvgLogoWrapper = styled.svg``; export const Logo = (props: GeneratedPropTypes) => { return ( ); };