MenuSelectItem

View Source

Signature

interface MenuSelectItem {
  checked?: boolean;
  id: string;
  label: string;
  name: string;
  type: MenuItemType;
  value: string | null;
}