@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
21 lines (20 loc) • 567 B
TypeScript
import React from 'react';
import type { SpinnerSizeType } from '../types';
interface LoadingContainerProps {
children: React.ReactNode;
isLoading?: boolean;
spinnerSize?: SpinnerSizeType;
contentsOpacity: number;
testId?: string;
loadingLabel?: string;
}
export default class LoadingContainer extends React.Component<LoadingContainerProps> {
static defaultProps: {
isLoading: boolean;
spinnerSize: string;
contentsOpacity: number;
loadingLabel: string;
};
render(): React.JSX.Element;
}
export {};