28 lines
607 B
JavaScript
28 lines
607 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import MailPoet from 'mailpoet';
|
|
|
|
const PrintBoolean = (props) => (
|
|
<span>
|
|
{(props.children === true && props.truthy)
|
|
|| (props.children === false && props.falsy)
|
|
|| (props.unknown)}
|
|
</span>
|
|
);
|
|
|
|
PrintBoolean.propTypes = {
|
|
truthy: PropTypes.string,
|
|
falsy: PropTypes.string,
|
|
unknown: PropTypes.string,
|
|
children: PropTypes.bool,
|
|
};
|
|
|
|
PrintBoolean.defaultProps = {
|
|
truthy: MailPoet.I18n.t('yes'),
|
|
falsy: MailPoet.I18n.t('no'),
|
|
unknown: MailPoet.I18n.t('unknown'),
|
|
children: null,
|
|
};
|
|
|
|
export default PrintBoolean;
|