UNPKG

@progress/kendo-angular-indicators

Version:

Kendo UI Indicators for Angular

18 lines (17 loc) 901 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 roundness of the Badge * ([see example]({% slug appearance_badge %}#toc-rounded)). * * The possible values are: * * `small`—Sets the `border radius` to `1px`. * * `medium` (Default)—Sets the `border radius` to `2px`. * * `large`—Sets the `border radius` to `4px`. * * `full`—Sets the `border radius` to `9999px`. * * `none`—The none option removes the built-in roundness. Allows for custom `border radius`. * */ export type BadgeRounded = 'small' | 'medium' | 'large' | 'full' | 'none';