@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
14 lines (13 loc) • 414 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type CSSProperties, type ReactNode } from 'react';
export type ITableRowProps = {
isHighlighted?: boolean;
children?: ReactNode;
style?: CSSProperties;
className?: string;
testId?: string;
};
export declare const TableBodyRow: React.ForwardRefExoticComponent<React.PropsWithoutRef<ITableRowProps> & React.RefAttributes<HTMLTableRowElement>>;