fix: use native buttons

This commit is contained in:
Billy Vong 2017-09-05 16:08:06 -07:00
parent c90b09eea1
commit 691771fc01

View File

@ -1,11 +1,12 @@
import React from 'react';
import glamorous from 'glamorous';
const Button = props => <span role="button" tabIndex={-1} {...props} />;
export default glamorous(Button, { displayName: 'Button', rootEl: 'span' })(
export default glamorous.button(
{
cursor: 'pointer',
border: '1px solid rgba(0, 0, 0, 0)',
font: 'inherit',
background: 'none',
'box-shadow': 'none',
padding: 0,
':hover': {
backgroundColor: 'rgba(0, 0, 0, 0.05)',
border: '1px solid #ccc',