# TableRowProps

Props for TableRow component

## Definition

```tsx
export interface TableRowProps extends TableRowBasicProps {
    /** The row data to display */
    row: RowData;
}
```

## Usage

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

## Related Types

* [TableRowBasicProps](https://help.iviva.com/uxp/v5/additional-resources/types/tablerowbasicprops)
* [ExtendedColumn](https://help.iviva.com/uxp/v5/additional-resources/types/extendedcolumn)
* [Column](https://help.iviva.com/uxp/v5/additional-resources/types/column)
* [RowData](https://help.iviva.com/uxp/v5/additional-resources/types/rowdata)
* [EditableRowConfig](https://help.iviva.com/uxp/v5/additional-resources/types/editablerowconfig)
