aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/style/theme.ts
blob: 94bd0169a2d667161de4856faca6b0ed391a96a4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                      
                                               


                    
                      


                                                                                       
                                              




                                   
                                                                    
import * as styledComponents from 'styled-components';

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

export interface IThemeInterface {}

export const theme = {};

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