| | |
| | |
| |
|
| |
|
| | |
| |
|
| |
|
| | import classNames from 'classnames';
|
| | import PropTypes from 'prop-types';
|
| | import React from 'react';
|
| |
|
| | import styles from './button.css';
|
| |
|
| | const ButtonComponent = ({
|
| | className,
|
| | highlighted,
|
| | onClick,
|
| | children,
|
| | ...props
|
| | }) => {
|
| | const disabled = props.disabled || false;
|
| | if (disabled === false) {
|
| |
|
| |
|
| | props.onClick = onClick;
|
| | }
|
| | return (
|
| | <span
|
| | className={classNames(
|
| | styles.button,
|
| | className,
|
| | {
|
| | [styles.modDisabled]: disabled,
|
| | [styles.highlighted]: highlighted
|
| | }
|
| | )}
|
| | role="button"
|
| | {...props}
|
| | >
|
| | {children}
|
| | </span>
|
| | );
|
| | };
|
| |
|
| | ButtonComponent.propTypes = {
|
| | children: PropTypes.node,
|
| | className: PropTypes.string,
|
| | disabled: PropTypes.oneOfType([
|
| | PropTypes.string,
|
| | PropTypes.bool
|
| | ]),
|
| | highlighted: PropTypes.bool,
|
| | onClick: PropTypes.func.isRequired
|
| | };
|
| | export default ButtonComponent;
|
| |
|