diff --git a/src/components/Button/Button.js b/src/components/Button/Button.js index 8c3fa592..fb9f7866 100644 --- a/src/components/Button/Button.js +++ b/src/components/Button/Button.js @@ -36,7 +36,7 @@ class Button extends Component { variant: 'raised', color: 'primary', size: 'md', - type: 'button', + tagName: 'button', }; onClick = (event: *) => { @@ -46,13 +46,12 @@ class Button extends Component { } render() { - const { children, type, loading, ...rest } = this.props; + const { children, tagName, loading, ...rest } = this.props; return ( ', () => { onClick={[Function]} size="md" tagName="button" - type="button" variant="raised" > { const [ButtonTag, theme] = createThemeTag(name, ({ COLORS, SIZES }: *) => ({ root: (props) => ({ + appearance: 'none', outline: 'none', textAlign: 'center', textDecoration: 'none',