This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
dashboard/styled.d.ts

14 lines
258 B
TypeScript

// import original module declarations
import "styled-components";
// and extend them!
declare module "styled-components" {
export interface DefaultTheme {
borderRadius: string;
colors: {
main: string;
secondary: string;
};
}
}