main-site/styled.d.ts

16 lines
310 B
TypeScript

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