Skip to content

Commit

Permalink
fix: pass through props for DataTableCell
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkrulltott committed Sep 8, 2023
1 parent 7efe185 commit 589c573
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions components/table/src/data-table/data-table-cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const DataTableCell = forwardRef(
valid,
width,
onClick,
...props
},
ref
) => {
Expand All @@ -36,6 +37,7 @@ export const DataTableCell = forwardRef(
: TableDataCell
return (
<TableCell
{...props}
active={active}
align={align}
backgroundColor={backgroundColor}
Expand Down

0 comments on commit 589c573

Please sign in to comment.