@bluemarble/bm-components 0.0.62 → 0.0.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +1 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -3837,9 +3837,7 @@ const Td = memo(CustomTableCell);
|
|
|
3837
3837
|
|
|
3838
3838
|
const CustomTableRow = (props) => {
|
|
3839
3839
|
const { children, sx, striped = true, bordered = undefined } = props, rest = __rest(props, ["children", "sx", "striped", "bordered"]);
|
|
3840
|
-
return (React__default.createElement(TableRow, Object.assign({ sx: Object.assign({ '&:nth-of-type(even)': { bgcolor: striped ? 'action.selected' : '' } }, sx) }, rest),
|
|
3841
|
-
bordered
|
|
3842
|
-
}))));
|
|
3840
|
+
return (React__default.createElement(TableRow, Object.assign({ sx: Object.assign({ '&:nth-of-type(even)': { bgcolor: striped ? 'action.selected' : '' } }, sx) }, rest), children));
|
|
3843
3841
|
};
|
|
3844
3842
|
const Tr = memo(CustomTableRow);
|
|
3845
3843
|
|