UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

9 lines 332 B
import { ComponentProps, FC } from "react"; import type { ColumnType } from "./types"; export type EbayTableCellProps = ComponentProps<"td" | "th"> & { rowHeader?: boolean; columnType?: ColumnType; }; declare const EbayTableCell: FC<EbayTableCellProps>; export default EbayTableCell; //# sourceMappingURL=table-cell.d.ts.map