Sanity Library Reference Docs
    Preparing search index...

    Interface PrimitiveInputElementProps

    interface PrimitiveInputElementProps {
        "aria-describedby": string;
        id: string;
        onBlur: FocusEventHandler;
        onChange: FormEventHandler;
        onFocus: FocusEventHandler;
        placeholder?: string;
        readOnly: boolean;
        ref: MutableRefObject<any>;
        value?: string;
    }
    Index

    Properties

    "aria-describedby": string
    id: string
    onBlur: FocusEventHandler
    onChange: FormEventHandler
    onFocus: FocusEventHandler
    placeholder?: string
    readOnly: boolean
    ref: MutableRefObject<any>
    value?: string