9 lines
145 B
TypeScript
9 lines
145 B
TypeScript
|
import "styled-components";
|
||
|
|
||
|
declare module "styled-components" {
|
||
|
export interface Theme {
|
||
|
bgColor: string;
|
||
|
bgGridColor: string;
|
||
|
}
|
||
|
}
|