@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
13 lines (12 loc) • 459 B
TypeScript
import React from 'react';
import type { WithDimensionsProps } from '../../hoc/with-dimensions';
import { type HeadCellType, type RowCellType } from '../../types';
export interface RankableTableCellProps extends WithDimensionsProps {
head?: HeadCellType;
cell: RowCellType;
isFixedSize: boolean;
testId?: string;
}
export declare class RankableTableCell extends React.Component<RankableTableCellProps, {}> {
render(): React.JSX.Element;
}