diff --git a/src/components/Theme/@types/component.ts b/src/components/Theme/@types/component.ts index c771d653..7788d6b4 100644 --- a/src/components/Theme/@types/component.ts +++ b/src/components/Theme/@types/component.ts @@ -47,12 +47,8 @@ export interface Theme { font: Font; } -export interface CustomProperties { - [key: string]: string | number | boolean | object | []; -} - export interface CustomTheme { colour?: Partial; font?: Partial; - customProperties?: CustomProperties; + customProperties?: unknown; }