A thin wrapper around the `lucide-react` `Menu` icon, providing a consistent interface for rendering a hamburger/menu icon with configurable dimensions and styling. > **⚠️ Deprecated:** Use icons from `icons-v2-generated` instead. ## Key Components | Export | Type | Description | |--------|------|-------------| | `MenuIcon` | `React.FC` | Deprecated menu/hamburger icon component | | `MenuIconProps` | `interface` | Props for className, width, and height | ## Usage Example ```typescript import { MenuIcon } from './menu-icon'; // Default size (24x24) // Custom size and styling ``` ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `""` | CSS class names for styling | | `width` | `number` | `24` | Icon width in pixels | | `height` | `number` | `24` | Icon height in pixels |