Guaxu Docs
    Preparing search index...

    Interface TextInputProps

    interface TextInputProps {
        description?: string;
        errorMessage?: string;
        isDisabled?: boolean;
        isInvalid?: boolean;
        isRequired?: boolean;
        label?: string;
        onBlur?: (event: FocusEvent<HTMLInputElement, Element>) => void;
        onChange: (e: ChangeEvent<HTMLInputElement>) => void;
        placeholder?: string;
        type?: "search" | "text" | "url" | "tel" | "email" | "password";
        value: string;
    }
    Index

    Properties

    description?: string
    errorMessage?: string
    isDisabled?: boolean
    isInvalid?: boolean
    isRequired?: boolean
    label?: string
    onBlur?: (event: FocusEvent<HTMLInputElement, Element>) => void
    onChange: (e: ChangeEvent<HTMLInputElement>) => void
    placeholder?: string
    type?: "search" | "text" | "url" | "tel" | "email" | "password"
    value: string