diff --git a/src/deck-components/Button.tsx b/src/deck-components/Button.tsx index f4c06a7..0c859b5 100644 --- a/src/deck-components/Button.tsx +++ b/src/deck-components/Button.tsx @@ -1,10 +1,10 @@ -import { CSSProperties, FC } from 'react'; +import { CSSProperties, FC, RefAttributes } from 'react'; import { CommonUIModule } from '../webpack'; -export interface DialogButtonProps { +export interface DialogButtonProps extends RefAttributes { label?: string; - style: CSSProperties; + style?: CSSProperties; className?: string; noFocusRing?: boolean; description?: string;