import { HTMLAttributes, FC } from 'react'; /** * MenuItem displays an item within a menu. * Ensures consistent styling and structure for content, icons, links, and submenus in Menu components. * * ```typescript * import { Menu, MenuItem, MenuItemIcon, Orientation } from '@syncfusion/react-navigations'; * import { FileIcon } from '@syncfusion/react-icons'; * * export default function App() { * return ( *
* ); * } * ``` */ export interface MenuItemProps extends HTMLAttributes