From 8707ba91042ffec221a69db19fd678c5d70e58b3 Mon Sep 17 00:00:00 2001 From: apanizo Date: Fri, 31 Aug 2018 12:23:51 +0200 Subject: [PATCH] Making no round button as default --- src/components/layout/Button/index.jsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/layout/Button/index.jsx b/src/components/layout/Button/index.jsx index f0ee9a37..240257bb 100644 --- a/src/components/layout/Button/index.jsx +++ b/src/components/layout/Button/index.jsx @@ -1,4 +1,11 @@ // @flow import Button from '@material-ui/core/Button' +import { withStyles } from '@material-ui/core/styles' -export default Button +const styles = { + root: { + borderRadius: 0, + }, +} + +export default withStyles(styles)(Button)