@appbuckets/react-ui
Version:
Just Another React UI Framework
17 lines (16 loc) • 481 B
TypeScript
import * as React from 'react';
import { RxTableColumnProps } from '../RxTable.types';
export interface CellProps<Data> {
/** Defined ClassName */
className?: string;
/** The column object */
column: RxTableColumnProps<Data>;
/** Override column content */
overrideContent?: React.ReactNode;
/** The current row */
row: Data;
/** The current row index */
rowIndex: number;
}
declare const Cell: React.FunctionComponent<CellProps<unknown>>;
export default Cell;