UNPKG

@progress/kendo-angular-indicators

Version:

Kendo UI Indicators for Angular

16 lines (15 loc) 670 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 Loader component. * * The possible values are: * * `small` * * `medium` (Default) * * `large` * * For more information, see the [Loader Appearance - Size]({% slug appearance_loader %}#toc-size) documentation. */ export type LoaderSize = 'small' | 'medium' | 'large';