UNPKG

@equinor/eds-data-grid-react

Version:

A feature-rich data-grid written in React, implementing the Equinor Design System

8 lines (7 loc) 288 B
import { Cell } from '@tanstack/react-table'; import { HTMLAttributes } from 'react'; type Props<T> = { cell: Cell<T, unknown>; } & HTMLAttributes<HTMLTableCellElement>; export declare function TableBodyCell<T>({ cell }: Props<T>): import("react/jsx-runtime").JSX.Element; export {};