aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/style/theme.ts
blob: ce7d6975d8f5f6fe4449859e9c2a128cddfadcf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import * as styledComponents from 'styled-components';

// tslint:disable:no-unnecessary-type-assertion
const {
    default: styled,
    css,
    injectGlobal,
    keyframes,
    ThemeProvider,
} = styledComponents as styledComponents.ThemedStyledComponentsModule<IThemeInterface>;
// tslint:enable:no-unnecessary-type-assertion

export interface IThemeInterface {}

export const theme = {};

export { styled, css, injectGlobal, keyframes, ThemeProvider };