@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
14 lines (13 loc) • 391 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type HTMLProps } from 'react';
type TableProps = HTMLProps<HTMLTableElement> & {
isFixedSize?: boolean;
isLoading?: boolean;
hasDataRow: boolean;
testId?: string;
};
export declare const Table: import('react').ForwardRefExoticComponent<Omit<TableProps, 'ref'> & import('react').RefAttributes<HTMLTableElement>>;
export {};