UNPKG

@atlaskit/table-tree

Version:

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

16 lines (15 loc) • 369 B
/** * @jsxRuntime classic * @jsx jsx */ import type { FC, HTMLAttributes, ReactNode } from 'react'; type ChevronContainerProps = HTMLAttributes<HTMLSpanElement> & { children: ReactNode; }; /** * __Chevron container__ * * A wrapper container around the expand table tree button. */ export declare const ChevronContainer: FC<ChevronContainerProps>; export {};