import { FC, type HTMLAttributes } from 'react'; /** * MenuItemLabel is a semantic container for menu item content. * Provides consistent styling and structure for displaying text or nodes within MenuItem components. * * ```typescript * import { Menu, MenuItem, MenuItemLabel, Orientation } from '@syncfusion/react-navigations'; * export default function App() { * return ( *
* ); * } * ``` */ export interface MenuItemLabelProps { /** * Specifies an optional CSS class to apply to the label. * * @default - */ className?: string; /** * Specifies the content of the label. * Can be text or any valid React node. * * @default - */ children?: React.ReactNode; } type IMenuItemLabelProps = MenuItemLabelProps & HTMLAttributes