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