@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) • 897 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
import * as React from 'react';
/**
* The properties of the KendoReact MenuItemLink component.
*/
export interface MenuItemLinkProps extends KendoReactComponentBaseProps {
/**
* Specifies whether the MenuItemLink component is opened.
*/
opened: boolean;
/**
* Sets the URL of the MenuItemLink component.
*/
url?: string;
}
export declare const MenuItemLink: (props: MenuItemLinkProps) => React.JSX.Element;