feat(web/input): textarea row

This commit is contained in:
Luke
2023-01-15 11:44:14 +01:00
parent b671181402
commit 8c4d770e46
3 changed files with 55 additions and 1 deletions

View File

@@ -81,3 +81,17 @@ export interface IDateInput {
max?: string;
icon?: IconProp;
}
export interface ITextarea {
type: 'textarea';
label: string;
default?: string;
disabled?: boolean;
description?: string;
required?: boolean;
placeholder?: string;
icon?: IconProp;
autosize?: boolean;
min?: number;
max?: number;
}