UNPKG

@atlaskit/dynamic-table

Version:

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

12 lines (11 loc) 344 B
import React from 'react'; import { type HeadType, type RowType } from '../types'; interface RowProps { head?: HeadType; isFixedSize: boolean; isHighlighted?: boolean; row: RowType; testId?: string; } declare const Row: ({ row, head, testId, isFixedSize, isHighlighted }: RowProps) => React.JSX.Element; export default Row;