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

const {
    default: styled,
    css,
    injectGlobal,
    keyframes,
    ThemeProvider,
} = styledComponents as styledComponents.ThemedStyledComponentsModule<IThemeInterface>;

export interface IThemeInterface {}

export const theme = {};

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