UNPKG

@progress/kendo-react-indicators

Version:

React Indicators offer an interface to represent a visual indication for their UI elements. KendoReact Indicators package

36 lines (35 loc) 1.01 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { LoaderProps } from './LoaderProps.js'; import * as React from 'react'; /** * The Loader ref. */ export interface LoaderHandle { /** * The Loader element. */ element: HTMLSpanElement | null; /** * Focus the Loader. */ focus: () => void; } /** * Represents the [KendoReact Loader component](https://www.telerik.com/kendo-react-ui/components/indicators/loader). * * @example * ```jsx * const App = () => { * return ( * <Loader /> * ); * }; * ``` */ export declare const Loader: React.ForwardRefExoticComponent<LoaderProps & React.RefAttributes<LoaderHandle | null>>;