ThemeProvider (#677)

closes #655
This commit is contained in:
Tom Moor
2018-06-09 19:10:30 -07:00
committed by GitHub
parent 0942deec38
commit 434129a434
50 changed files with 277 additions and 324 deletions

View File

@ -3,7 +3,6 @@ import * as React from 'react';
import { observer } from 'mobx-react';
import Flex from 'shared/components/Flex';
import styled from 'styled-components';
import { color } from 'shared/styles/constants';
type Props = {
children: React.Node,
@ -31,7 +30,7 @@ const Container = styled(Flex)`
font-size: 14px;
line-height: 1;
background-color: ${({ type }) => color[type]};
background-color: ${({ theme, type }) => theme.color[type]};
`;
export default Alert;