mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-19 17:40:08 +02:00
fix(DialogButton): fix types, add ref types
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user