fix(ui-toolkit): fix missing withTheme declaration

This commit is contained in:
Sérgio Ramos 2017-10-09 14:48:27 +01:00 committed by Sérgio Ramos
parent b4abe731c5
commit e52ef9fbbb
1 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,8 @@
import { Component } from 'react';
import { injectGlobal } from 'styled-components';
import { withTheme, injectGlobal } from 'styled-components';
import FontFaceObserver from 'fontfaceobserver';
import { fontFaces } from '../typography/fonts';
import theme from '../theme';
import { loadedFontFamily } from '../typography';
const families = Object.keys(
@ -15,6 +15,8 @@ const observers = families.map(name => new FontFaceObserver(name));
class RootContainer extends Component {
componentWillMount() {
const { theme } = this.props;
// eslint-disable-next-line no-unused-expressions
injectGlobal`
[hidden] {