mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-10 17:28:53 +01:00
9 lines
296 B
TypeScript
9 lines
296 B
TypeScript
// import original module declarations
|
|
import 'styled-components';
|
|
import { SuiteThemeColors } from '@trezor/components';
|
|
import { BoxShadows, Colors } from '@trezor/theme';
|
|
|
|
declare module 'styled-components' {
|
|
export interface DefaultTheme extends SuiteThemeColors, Colors, BoxShadows {}
|
|
}
|