Pilates
    Preparing search index...

    Interface SelectItem<T>

    interface SelectItem<T> {
        disabled?: boolean;
        key?: string;
        label: string;
        value: T;
    }

    Type Parameters

    • T
    Index

    Properties

    disabled?: boolean

    When true, item cannot receive highlight or be selected.

    key?: string

    Stable identity for React reconciliation. Defaults to String(value) if omitted.

    label: string
    value: T