Skip to content

Commit

Permalink
fix(DialogButton): fix types, add ref types
Browse files Browse the repository at this point in the history
  • Loading branch information
AAGaming00 committed Sep 18, 2022
1 parent 6441bde commit db41e74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/deck-components/Button.tsx
Original file line number Diff line number Diff line change
@@ -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<HTMLButtonElement> {
label?: string;
style: CSSProperties;
style?: CSSProperties;
className?: string;
noFocusRing?: boolean;
description?: string;
Expand Down

0 comments on commit db41e74

Please sign in to comment.