allow null on textarea value

This commit is contained in:
Wolfgang Rathgeb 2024-03-12 15:19:47 +01:00
commit 10a0ca70e0
No known key found for this signature in database
GPG key ID: C12454F568B9EA95

View file

@ -8,7 +8,7 @@ export interface TextAreaProps extends RestProps {
* Specify the textarea value * Specify the textarea value
* @default "" * @default ""
*/ */
value?: string; value?: null | string;
/** /**
* Specify the placeholder text * Specify the placeholder text