UNPKG

@atlaskit/table-tree

Version:

A table tree is an expandable table for showing nested hierarchies of information.

16 lines (15 loc) • 343 B
/** * @jsxRuntime classic * @jsx jsx */ import type { FC, HTMLAttributes, ReactNode } from 'react'; interface CommonCellProps { indent?: string; width?: string | number; children?: ReactNode; } /** * __Common cell__ */ declare const CommonCell: FC<HTMLAttributes<HTMLDivElement> & CommonCellProps>; export default CommonCell;