mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-03 05:55:03 +01:00
12 lines
334 B
TypeScript
12 lines
334 B
TypeScript
// import original module declarations
|
|
import 'styled-components';
|
|
import { BoxShadows, Colors } from '@trezor/theme';
|
|
|
|
import { SuiteThemeColors, ThemeVariant } from './src';
|
|
|
|
declare module 'styled-components' {
|
|
export interface DefaultTheme extends SuiteThemeColors, Colors, BoxShadows {
|
|
variant: ThemeVariant;
|
|
}
|
|
}
|