UNPKG

@atlaskit/dynamic-table

Version:

A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.

13 lines (12 loc) 418 B
/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type HTMLProps, type ReactNode } from 'react'; import { type TruncateStyleProps } from '../constants'; type RankableTableBodyCellProps = HTMLProps<HTMLTableCellElement | HTMLTableRowElement> & TruncateStyleProps & { isRanking?: boolean; children?: ReactNode; }; export declare const RankableTableBodyCell: FC<RankableTableBodyCellProps>; export {};