Skip to content

Commit

Permalink
[Table] Remove padding from getting spread to native element (#12505)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLicense authored and oliviertassinari committed Aug 13, 2018
1 parent 90fa749 commit 75b988d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/material-ui/src/Table/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Table extends React.Component {
}

render() {
const { classes, className, component: Component, ...other } = this.props;
const { classes, className, component: Component, padding, ...other } = this.props;

return <Component className={classNames(classes.root, className)} {...other} />;
}
Expand Down

0 comments on commit 75b988d

Please sign in to comment.