mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
feat(web/input): textarea row
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user