@progress/kendo-angular-navigation
Version:
Kendo UI Navigation for Angular
13 lines (12 loc) • 705 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the possible options to control how the icon and text label are positioned in the BottomNavigation items.
*
* The possible values are:
* * `vertical`—Renders the text below the icon.
* * `horizontal`—Renders the icon and the text on the same line.
*/
export type BottomNavigationItemFlow = 'vertical' | 'horizontal';