/// /** * Properties for the Menu component */ export interface MenuProperties { open?: boolean; anchor: React.ReactNode; children: JSX.Element | JSX.Element[]; showArrow?: boolean; onMouseEnter?: () => void; onMouseLeave?: () => void; onClickOutside?: () => void; }