anvil/striker-ui/types/DefaultTheme.d.ts

12 lines
197 B
TypeScript
Raw Normal View History

2021-02-18 04:12:47 +00:00
import 'styled-components';
declare module 'styled-components' {
2021-02-19 05:01:01 +00:00
export type DefaultTheme = {
2021-02-18 04:12:47 +00:00
colors: {
primary: string;
secondary: string;
2021-02-19 05:01:01 +00:00
tertiary: string;
2021-02-18 04:12:47 +00:00
};
2021-02-19 05:01:01 +00:00
};
2021-02-18 04:12:47 +00:00
}