maputnik/src/components/Button.jsx
2017-11-08 08:47:36 +00:00

23 lines
515 B
JavaScript

import React from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
class Button extends React.Component {
static propTypes = {
onClick: PropTypes.func,
style: PropTypes.object,
className: PropTypes.string,
children: PropTypes.node
}
render() {
return <a
onClick={this.props.onClick}
className={classnames("maputnik-button", this.props.className)}
style={this.props.style}>
{this.props.children}
</a>
}
}
export default Button