UNPKG

@appbuckets/react-ui

Version:
11 lines (10 loc) 374 B
import * as React from 'react'; import { Creatable } from '../generic'; import { TableCellProps } from './TableCell.types'; import TableCellContent from './TableCellContent'; declare type TableCellChildren = { Content: typeof TableCellContent; }; declare const TableCell: Creatable<React.FunctionComponent<TableCellProps>> & TableCellChildren; export default TableCell;