@atlaskit/table-tree
Version:
A table tree is an expandable table for showing nested hierarchies of information.
17 lines (16 loc) • 322 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import type { FC, ReactNode } from 'react';
type LoaderItemContainerProps = {
isRoot?: boolean;
children: ReactNode;
};
/**
* __Loader item container__
*
* A loader item container.
*/
export declare const LoaderItemContainer: FC<LoaderItemContainerProps>;
export {};