A single option in a Select.

interface SelectOption {
    disabled?: boolean;
    label: ReactNode;
    value: string;
}

Properties

Properties

disabled?: boolean
label: ReactNode
value: string