/**----------------------------------------------------------------------------------------- * Copyright © 2026 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]https://www.telerik.com/kendo-angular-ui/components/indicators/badge/appearance#fill) documentation. */ export type BadgeFill = 'solid' | 'outline';