You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
984 B
42 lines
984 B
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_CONFIRM = 'btn-confirm'
|
|
const CLASSNAME_LARGE = 'btn--large'
|
|
|
|
const typeHash = {
|
|
default: CLASSNAME_DEFAULT,
|
|
primary: CLASSNAME_PRIMARY,
|
|
secondary: CLASSNAME_SECONDARY,
|
|
confirm: CLASSNAME_CONFIRM,
|
|
}
|
|
|
|
export default class Button extends Component {
|
|
static propTypes = {
|
|
type: PropTypes.string,
|
|
large: PropTypes.bool,
|
|
className: PropTypes.string,
|
|
children: PropTypes.string,
|
|
}
|
|
|
|
render () {
|
|
const { type, large, className, ...buttonProps } = this.props
|
|
|
|
return (
|
|
<button
|
|
className={classnames(
|
|
typeHash[type],
|
|
large && CLASSNAME_LARGE,
|
|
className
|
|
)}
|
|
{ ...buttonProps }
|
|
>
|
|
{ this.props.children }
|
|
</button>
|
|
)
|
|
}
|
|
}
|
|
|