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.07 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 { SkeletonProps } from './SkeletonProps.js'; import * as React from 'react'; /** * The Skeleton ref. */ export interface SkeletonHandle { /** * The Skeleton element. */ element: HTMLSpanElement | null; /** * Focus the Skeleton. */ focus: () => void; } /** * Represents the [KendoReact Skeleton component](https://www.telerik.com/kendo-react-ui/components/indicators/skeleton). * * @example * ```jsx * const App = () => { * return ( * <Skeleton shape={'text'} style={{width: 200}}/> * ); * }; * ``` */ export declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.RefAttributes<SkeletonHandle | null>>;