aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/button/button.component.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/button/button.component.js')
-rw-r--r--ui/app/components/button/button.component.js45
1 files changed, 0 insertions, 45 deletions
diff --git a/ui/app/components/button/button.component.js b/ui/app/components/button/button.component.js
deleted file mode 100644
index 4a06333e7..000000000
--- a/ui/app/components/button/button.component.js
+++ /dev/null
@@ -1,45 +0,0 @@
-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_RAISED = 'btn-raised'
-const CLASSNAME_LARGE = 'btn--large'
-
-const typeHash = {
- default: CLASSNAME_DEFAULT,
- primary: CLASSNAME_PRIMARY,
- secondary: CLASSNAME_SECONDARY,
- confirm: CLASSNAME_CONFIRM,
- raised: CLASSNAME_RAISED,
-}
-
-export default class Button extends Component {
- static propTypes = {
- type: PropTypes.string,
- large: PropTypes.bool,
- className: PropTypes.string,
- children: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
- }
-
- render () {
- const { type, large, className, ...buttonProps } = this.props
-
- return (
- <button
- className={classnames(
- 'button',
- typeHash[type],
- large && CLASSNAME_LARGE,
- className
- )}
- { ...buttonProps }
- >
- { this.props.children }
- </button>
- )
- }
-}