fix(DialogButton): fix ref type

This commit is contained in:
AAGaming
2022-09-18 15:37:44 -04:00
parent 16ec1e3d2e
commit 74aefc7b3c

View File

@@ -2,7 +2,7 @@ import { CSSProperties, FC, RefAttributes } from 'react';
import { CommonUIModule } from '../webpack';
export interface DialogButtonProps extends RefAttributes<HTMLButtonElement> {
export interface DialogButtonProps extends RefAttributes<HTMLDivElement> {
label?: string;
style?: CSSProperties;
className?: string;