@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
17 lines • 737 B
TypeScript
import * as React from 'react';
import { GridOverlayProps } from "./containers/GridOverlay.js";
export type GridLoadingOverlayVariant = 'circular-progress' | 'linear-progress' | 'skeleton';
export interface GridLoadingOverlayProps extends GridOverlayProps {
/**
* The variant of the overlay.
* @default 'linear-progress'
*/
variant?: GridLoadingOverlayVariant;
/**
* The variant of the overlay when no rows are displayed.
* @default 'skeleton'
*/
noRowsVariant?: GridLoadingOverlayVariant;
}
declare const GridLoadingOverlay: React.ForwardRefExoticComponent<GridLoadingOverlayProps> | React.ForwardRefExoticComponent<GridLoadingOverlayProps & React.RefAttributes<HTMLDivElement>>;
export { GridLoadingOverlay };