1 2 3 4 5 6 7 8
import "styled-components"; import { theme } from "../../constants"; type ThemeType = typeof theme; declare module "styled-components" { export interface DefaultTheme extends ThemeType {} }
[PATCH repo_name]