Allow set a name for textarea message

This commit is contained in:
prototypa
2024-03-25 08:18:12 -04:00
parent fc2012b52c
commit 5e8bb02ab8
2 changed files with 5 additions and 2 deletions

1
src/types.d.ts vendored
View File

@@ -166,6 +166,7 @@ export interface Input {
export interface Textarea {
label?: string;
name: string;
placeholder?: string;
rows?: number;
}