Skip to main content

HeaderActionMenuItem

Home > @backstage/core-components > HeaderActionMenuItem

Signature:

export type HeaderActionMenuItem = {
label?: ListItemTextProps['primary'];
secondaryLabel?: ListItemTextProps['secondary'];
icon?: ReactElement;
disabled?: boolean;
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
};