interface TextInput {
    customID: string;
    label: string;
    maxLength?: number;
    minLength?: number;
    placeholder?: string;
    required?: boolean;
    style: TextInputStyles;
    type: TEXT_INPUT;
    value?: string;
}

Properties

customID: string
label: string
maxLength?: number
minLength?: number
placeholder?: string
required?: boolean
value?: string