From 71c7afa1a641b6651e6e73ff5575b665e5e3c48e Mon Sep 17 00:00:00 2001 From: AAGaming Date: Fri, 9 Sep 2022 16:16:15 -0400 Subject: [PATCH] fix(textfield): extend HTMLAttributes --- src/deck-components/TextField.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deck-components/TextField.tsx b/src/deck-components/TextField.tsx index 64e0a6e..2be5322 100644 --- a/src/deck-components/TextField.tsx +++ b/src/deck-components/TextField.tsx @@ -1,8 +1,8 @@ -import { ChangeEventHandler, ReactNode, VFC } from 'react'; +import { ChangeEventHandler, HTMLAttributes, ReactNode, VFC } from 'react'; import { CommonUIModule, Module } from '../webpack'; -export interface TextFieldProps { +export interface TextFieldProps extends HTMLAttributes { label?: ReactNode; requiredLabel?: ReactNode; description?: ReactNode;