UNPKG

@e-group/material-module

Version:
16 lines (15 loc) 535 B
import { FC } from 'react'; import { TableCellProps } from '@material-ui/core/TableCell'; export interface DataTableFixedTableCellProps extends TableCellProps { direction: 'left' | 'right'; /** * Set true when table cell is overlapping rows and column. For example left top corner. */ isOverlapping?: boolean; /** * Set value for multiple sticky cell. */ directionValue?: number; } declare const DataTableFixedTableCell: FC<DataTableFixedTableCellProps>; export default DataTableFixedTableCell;