Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
MenuItem interface
Signature
export interface MenuItem
Import
import { MenuItem } from '@grafana/ui';
Properties
group property
Handler for the click behaviour
Signature
group?: string;
icon property
Icon of the menu item
Signature
icon?: IconName;
label property
Label of the menu item
Signature
label: string;
onClick property
Handler for the click behaviour
Signature
onClick?: (event?: React.SyntheticEvent<HTMLElement>) => void;
target property
Target of the menu item (i.e. new window)
Signature
target?: LinkTarget;
url property
Url of the menu item
Signature
url?: string;