main-site/styled.d.ts

13 lines
242 B
TypeScript
Raw Normal View History

import 'styled-components'
declare module 'styled-components' {
export interface DefaultTheme {
2022-12-15 20:23:45 +00:00
themeName: string,
themeId: number,
colors: {
background: string,
2022-12-15 20:23:45 +00:00
primary: string,
secondary: string,
}
}
}