7 lines
151 B
TypeScript
7 lines
151 B
TypeScript
|
|
import 'styled-components';
|
||
|
|
import { Theme } from './themes';
|
||
|
|
|
||
|
|
declare module 'styled-components' {
|
||
|
|
export interface DefaultTheme extends Theme {}
|
||
|
|
}
|