ConstMenu configuration (see MUI docs for all available props)
Menu component with positioning and animation support
// Basic usage
<Menu
open={isOpen}
anchorEl={anchorEl}
onClose={handleClose}
>
<MenuItem>Option 1</MenuItem>
<MenuItem>Option 2</MenuItem>
</Menu>
// With custom styling
<Menu
className="custom-menu"
open={isOpen}
anchorEl={anchorEl}
>
<MenuItem>Menu Item</MenuItem>
</Menu>
// With position
<Menu
open={isOpen}
anchorEl={anchorEl}
anchorOrigin={{
vertical: 'bottom',
horizontal: 'right',
}}
>
<MenuItem>Positioned Item</MenuItem>
</Menu>
Material-UI Menu component for dropdown menu container.
Wraps Material-UI's Menu to provide dropdown menu container positioned relative to an anchor element. Supports custom positioning, animations, and all Material-UI Menu props. Best used with MenuItem components for complete menu hierarchies.