/** * @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]({% slug appearance_loader %}#toc-size)). * * The possible values are: * * `small` * * `medium` (Default) * * `large` * */ export type LoaderSize = 'small' | 'medium' | 'large';