UNPKG

copper-ui

Version:

Modern React UI components library with TypeScript support, built on top of Ant Design

12 lines 493 B
import { Row } from '@tanstack/react-table'; import { ReactNode } from 'react'; import { TTableCell } from '../../model/cell.types'; import { TTableItem } from '../../model/table.types'; type CellProps<T extends TTableItem> = { children: ReactNode; cell: TTableCell<T>; row: Row<T>; }; declare const CellCommon: <T extends TTableItem>({ children, cell }: CellProps<T>) => import("react/jsx-runtime").JSX.Element; export default CellCommon; //# sourceMappingURL=cell-common.d.ts.map