@progress/kendo-angular-indicators
Version:
Kendo UI Indicators for Angular
15 lines (14 loc) • 662 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the appearance fill style of the Badge component.
*
* The possible values are:
* * `solid` (Default)
* * `outline`
*
* For more information, see the [Badge Appearance - Fill]({% slug appearance_badge %}#toc-fill) documentation.
*/
export type BadgeFill = 'solid' | 'outline' | 'none';