accounts-frontend/src/components/ui/form/Button.jsx
2016-05-30 07:42:42 +03:00

47 lines
1.1 KiB
JavaScript

import React, { PropTypes } from 'react';
import classNames from 'classnames';
import buttons from 'components/ui/buttons.scss';
import { colors, COLOR_GREEN } from 'components/ui';
import FormComponent from './FormComponent';
export default class Button extends FormComponent {
static displayName = 'Button';
static propTypes = {
label: PropTypes.oneOfType([
PropTypes.shape({
id: PropTypes.string
}),
PropTypes.string
]).isRequired,
block: PropTypes.bool,
color: PropTypes.oneOf(colors)
};
static defaultProps = {
color: COLOR_GREEN
};
render() {
const { color, block, small } = this.props;
const props = {
...this.props
};
props.label = this.formatMessage(props.label);
return (
<button className={classNames(buttons[color], {
[buttons.block]: block,
[buttons.smallButton]: small
})} {...props}>
{props.label}
</button>
);
}
}