From acc092304b70f8671a29d8cdecad8ea4bf59e5fe Mon Sep 17 00:00:00 2001 From: Navid Salehi Date: Tue, 20 Aug 2024 13:57:33 +0330 Subject: [PATCH] add label to ButtonProps type definition (#6066) --- src/panels/config/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/panels/config/config.ts b/src/panels/config/config.ts index 87b7c2330..c8bfcc444 100644 --- a/src/panels/config/config.ts +++ b/src/panels/config/config.ts @@ -12,6 +12,7 @@ const prv = 'preview'; interface ButtonProps { id?: string; active?: boolean; + label?: string; togglable?: boolean; className?: string; command?: string | (() => any);