/**-----------------------------------------------------------------------------------------
* Copyright © 2026 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`&mdash;Renders the text below the icon.
 * * `horizontal`&mdash;Renders the icon and the text on the same line.
 */
export type BottomNavigationItemFlow = 'vertical' | 'horizontal';
