# TableCellProps

Props for TableCell component

## Definition

```tsx
export interface TableCellProps {
    /** The row data object */
    row: any;
    /** The column definition with calculated widths */
    column: ExtendedColumn;
    /** Custom cell renderer function */
    renderCell?: (row: any, column: ExtendedColumn) => React.ReactNode;
}
```

## Usage

```tsx
import { TableCellProps } from 'uxp/components';
```

## Related Types

* [ExtendedColumn](https://help.iviva.com/uxp/v5/additional-resources/types/extendedcolumn)
* [Column](https://help.iviva.com/uxp/v5/additional-resources/types/column)
