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;