@progress/kendo-react-indicators
Version:
React Indicators offer an interface to represent a visual indication for their UI elements. KendoReact Indicators package
19 lines (18 loc) • 667 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Specifies the size of the Loader
* ([see example](https://www.telerik.com/kendo-react-ui/components/indicators/loader/appearance#toc-size)).
*
* The possible values are:
* * `small`
* * `medium` (Default)
* * `large`
*
*/
export type LoaderSize = 'small' | 'medium' | 'large';