From 6471bbf93e91f0a07f7fa1074c1fbb146a4584e1 Mon Sep 17 00:00:00 2001 From: MinamiFunakoshiTR Date: Tue, 20 May 2025 13:32:11 -0700 Subject: [PATCH] changes customProperty to key in CustomTheme type interface --- src/components/Theme/@types/component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Theme/@types/component.ts b/src/components/Theme/@types/component.ts index 325faed0..94e8eb7e 100644 --- a/src/components/Theme/@types/component.ts +++ b/src/components/Theme/@types/component.ts @@ -50,5 +50,5 @@ export interface Theme { export interface CustomTheme { colour?: Partial; font?: Partial; - [customProperty: string]: unknown; + [key: string]: unknown; }