@grafana/ui
Version:
Grafana Components Library
12 lines (11 loc) • 421 B
TypeScript
export interface LoadingBarProps {
width: number;
delay?: number;
ariaLabel?: string;
}
/**
* The LoadingBar is used as a simple loading slider animation in the top of its container.
*
* https://developers.grafana.com/ui/latest/index.html?path=/docs/information-loadingbar--docs
*/
export declare function LoadingBar({ width, delay, ariaLabel }: LoadingBarProps): import("react/jsx-runtime").JSX.Element;