Menu

A container component for displaying a list of menu items in a dropdown or popover style interface. Typically used with MenuItem components to create interactive navigation menus.

Basic Menu

Menu with Selected Item

Menu with Custom Width

Static Menu (Always Visible)

Menu components can also be displayed statically without requiring user interaction.

Recent Files
Starred Items
Shared with Me
Trash
interface MenuProps {
  children: React.ReactNode;
  width?: number | string;
  className?: string;
}