import React, { Component } from 'react' import PropTypes from 'prop-types' import classnames from 'classnames' const CLASSNAME_DEFAULT = 'btn-default' const CLASSNAME_PRIMARY = 'btn-primary' const CLASSNAME_SECONDARY = 'btn-secondary' const CLASSNAME_LARGE = 'btn--large' const typeHash = { default: CLASSNAME_DEFAULT, primary: CLASSNAME_PRIMARY, secondary: CLASSNAME_SECONDARY, } class Button extends Component { render () { const { type, large, className, ...buttonProps } = this.props return ( ) } } Button.propTypes = { type: PropTypes.string, large: PropTypes.bool, className: PropTypes.string, children: PropTypes.string, } export default Button