interface Component {
    customId: string;
    label: string;
    maxLength?: number;
    minLength?: number;
    placeholder?: string;
    required?: boolean;
    style: TextInputStyle;
    value?: string;
}

Properties

customId: string
label: string
maxLength?: number
minLength?: number
placeholder?: string
required?: boolean
style: TextInputStyle
value?: string