@atlaskit/table-tree
Version:
A table tree is an expandable table for showing nested hierarchies of information.
13 lines (12 loc) • 360 B
TypeScript
import React from 'react';
interface LoaderItemProps {
/**
* @default 1
*/
depth?: number;
onComplete: (...args: any[]) => void;
isCompleting?: boolean;
loadingLabel?: string;
}
declare const LoaderItem: ({ depth, loadingLabel, isCompleting, onComplete, }: LoaderItemProps) => React.JSX.Element | null;
export default LoaderItem;