@grafana/ui
Version:
Grafana Components Library
13 lines (12 loc) • 362 B
TypeScript
import { HTMLAttributes } from 'react';
import * as React from 'react';
/**
* @public
*/
export interface LoadingPlaceholderProps extends HTMLAttributes<HTMLDivElement> {
text: React.ReactNode;
}
/**
* @public
*/
export declare const LoadingPlaceholder: ({ text, className, ...rest }: LoadingPlaceholderProps) => import("react/jsx-runtime").JSX.Element;