import { AnchorHTMLAttributes, NamedExoticComponent, RefAttributes } from 'react'; /** * MenuItemLink displays links within a menu item. * Ensures consistent styling and structure for link content or nodes in MenuItem components. * * ```typescript * import { Menu, MenuItem, MenuItemLabel, MenuItemLink, Orientation } from '@syncfusion/react-navigations'; * export default function App() { * return ( *
* ); * } * ``` */ export interface MenuItemLinkProps { /** * Specifies an optional CSS class to apply to the link. * * @default - */ className?: string; /** * Specifies the content of the link. * Can be text or any valid React node. * * @default - */ children?: React.ReactNode; } type IMenuItemLinkProps = MenuItemLinkProps & AnchorHTMLAttributes