use styled-components theme in logo insted of color prop

This commit is contained in:
August Skare 2018-11-19 09:15:50 +01:00
parent b88e2c5483
commit b811b51af9

View File

@ -9,11 +9,11 @@ import { Small } from './Typography';
const Header: React.StatelessComponent<{}> = () => (
<ThemeContext.Consumer>
{({ icon, title, colors }: ContextInterface) => (
{({ icon, title }: ContextInterface) => (
<StyledHeader>
<Container>
<LogoMark>
<Logo as={icon} color={colors.main} />
<Logo as={icon} />
<Title>{title}</Title>
</LogoMark>
@ -51,7 +51,7 @@ const LogoMark = styled.div`
`;
const StyledLogo = styled.div`
color: ${props => props.color};
color: ${props => props.theme.colors.main};
width: 1.75rem;
height: 100%;
`;