UNPKG

@progress/kendo-react-layout

Version:

React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package

24 lines (23 loc) 872 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BaseMenuItem } from '../models/BaseMenuItem'; /** * The properties of the KendoReact MenuItem component ([more information and examples](https://www.telerik.com/kendo-react-ui/components/layout/menu/items/items)). */ export interface MenuItemProps extends BaseMenuItem { } /** * Represents the MenuItem component. * * @remarks * Supported children components are: {@link MenuItem}. */ export declare const MenuItem: { (_props: MenuItemProps): null; displayName: string; };