import React from 'react'; import PropTypes from 'prop-types'; const styles = { button: { padding: '12px 6px', fontSize: '12px', lineHeight: '16px', borderRadius: '5px', }, ok: { backgroundColor: '#028402', color: '#ffffff', }, wrong: { color: '#ffffff', backgroundColor: '#4caf50', } } function Button({ label, content, disabled, contrast }) { return ( ) } Button.propTypes = { label: PropTypes.string, content: PropTypes.string, disabled: PropTypes.bool, contrast: PropTypes.oneOf(['ok', 'wrong']) }; Button.defaultProps = { disabled: false, contrast: 'ok', }; export default Button;