/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the possible sizes for the buttons.
 */
export type ButtonSize = 'xsmall' | 'small' | 'medium' | 'large';
/**
 * Specifies the possible sizes for the Chip.
 */
export type ChipSize = 'small' | 'medium' | 'large';
/**
 * Specifies the possible sizes for the SplitButton.
 */
export type SplitButtonSize = 'small' | 'medium' | 'large';
/**
 * Specifies the possible sizes for the DropDownButton.
 */
export type DropDownButtonSize = 'small' | 'medium' | 'large';
/**
 * Specifies the possible sizes for the FloatingActionButton.
 */
export type FloatingActionButtonSize = 'small' | 'medium' | 'large';
