blob: f60e434674f5bdb5f79a3a8b87a3b0401ab93ed1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { Theme } from "./themes";
import { CSSProp } from "styled-components";
declare module "styled-components" {
export interface DefaultTheme extends Theme { }
}
declare module "react" {
interface Attributes {
css?: CSSProp;
}
}
|