import React from 'react'; import { Menu } from 'lucide-react'; interface MenuIconProps { className?: string; width?: number; height?: number; } export const MenuIcon: React.FC = ({ className = "", width = 24, height = 24 }) => { return ( ); };