UNPKG

@appbuckets/react-ui

Version:
17 lines (16 loc) 481 B
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;