UNPKG

@progress/kendo-angular-indicators

Version:

Kendo UI Indicators for Angular

17 lines (16 loc) 613 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies the size of the Badge * ([see example]({% slug appearance_badge %}#toc-size)). * * The possible values are: * * `small` * * `medium` (Default) * * `large` * * `none` * */ export type BadgeSize = 'small' | 'medium' | 'large' | 'none';