12 lines
197 B
TypeScript
12 lines
197 B
TypeScript
import 'styled-components';
|
|
|
|
declare module 'styled-components' {
|
|
export type DefaultTheme = {
|
|
colors: {
|
|
primary: string;
|
|
secondary: string;
|
|
tertiary: string;
|
|
};
|
|
};
|
|
}
|