@atlaskit/table-tree
Version:
A table tree is an expandable table for showing nested hierarchies of information.
15 lines (14 loc) • 356 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import type { FC, HTMLAttributes, ReactNode } from 'react';
interface OverflowContainerProps {
isSingleLine?: boolean;
chilren?: ReactNode;
}
/**
* __Overflow container__
*/
declare const OverflowContainer: FC<OverflowContainerProps & HTMLAttributes<HTMLSpanElement>>;
export default OverflowContainer;