UNPKG

@progress/kendo-angular-indicators

Version:

Kendo UI Indicators for Angular

17 lines (16 loc) 687 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 options for the Badge component. * * The possible values are: * * `small` * * `medium` (Default) * * `large` * * `none` * * For more information, see the [Badge Appearance - Size]({% slug appearance_badge %}#toc-size) documentation. */ export type BadgeSize = 'small' | 'medium' | 'large' | 'none';