interface MenuRow {
    danger?: boolean;
    disabled?: boolean;
    key?: string;
    label: string;
    on?: boolean;
    onSelect: () => void;
    sub?: string;
}

Properties

danger?: boolean
disabled?: boolean
key?: string

Shown at the right edge, for a chord.

label: string
on?: boolean

Marks the row as the current choice.

onSelect: () => void
sub?: string