main-site/styled.d.ts

12 lines
217 B
TypeScript
Raw Normal View History

import 'styled-components'
declare module 'styled-components' {
export interface DefaultTheme {
themeId: number,
colors: {
background: string,
primary: string
secondary: string
}
}
}