From 74aefc7b3c19a98fb607e78c4063c098a2e12546 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sun, 18 Sep 2022 15:37:44 -0400 Subject: [PATCH] fix(DialogButton): fix ref type --- src/deck-components/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deck-components/Button.tsx b/src/deck-components/Button.tsx index 0c859b5..93f3323 100644 --- a/src/deck-components/Button.tsx +++ b/src/deck-components/Button.tsx @@ -2,7 +2,7 @@ import { CSSProperties, FC, RefAttributes } from 'react'; import { CommonUIModule } from '../webpack'; -export interface DialogButtonProps extends RefAttributes { +export interface DialogButtonProps extends RefAttributes { label?: string; style?: CSSProperties; className?: string;