Guaxu Docs
    Preparing search index...

    Interface SelectProps

    interface SelectProps {
        children: (item: SelectOptionProps) => ReactNode;
        errorMessage?: string;
        isDisabled?: boolean;
        isInvalid?: boolean;
        isRequired?: boolean;
        label: string;
        name?: string;
        options: SelectOptionProps[];
        placeholder?: string;
        setValue: (value: Key | null) => void;
        value: Key | null;
    }
    Index

    Properties

    children: (item: SelectOptionProps) => ReactNode
    errorMessage?: string
    isDisabled?: boolean
    isInvalid?: boolean
    isRequired?: boolean
    label: string
    name?: string
    placeholder?: string
    setValue: (value: Key | null) => void
    value: Key | null