UNPKG

@progress/kendo-react-layout

Version:

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

39 lines (38 loc) 1.14 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; /** * The properties of the KendoReact MenuItemArrow component. */ export interface MenuItemArrowProps { /** * Sets the item id of the MenuItemArrow component. */ itemId: string; /** * Sets the direction of the MenuItemArrow component. */ dir: 'ltr' | 'rtl'; /** * Specifies whether the Menu which holds the MenuItemArrow component is vertical. */ verticalMenu?: boolean; } /** * @hidden */ export declare const downArrowName = "chevron-down"; /** * @hidden */ export declare const rightArrowName = "chevron-right"; /** * @hidden */ export declare const leftArrowName = "chevron-left"; export declare const MenuItemArrow: (props: MenuItemArrowProps) => React.JSX.Element;