Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Gridicon } from '@automattic/components';
import { Button } from '@wordpress/components';
import clsx from 'clsx';
import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import './comment-approve-action.scss';
const noop = () => {};
const CommentApproveAction = ( { translate, status, approveComment, unapproveComment } ) => {
const isApproved = status === 'approved';
const buttonStyle = clsx( 'comments__comment-actions-approve', {
'is-approved': isApproved,
} );
return (
<Button className={ buttonStyle } onClick={ ! isApproved ? approveComment : unapproveComment }>
<Gridicon icon="checkmark" size={ 18 } />
<span className="comments__comment-actions-like-label">
{ isApproved ? translate( 'Approved' ) : translate( 'Approve' ) }
</span>
</Button>
);
};
CommentApproveAction.propTypes = {
translate: PropTypes.func.isRequired,
approveComment: PropTypes.func,
unapproveComment: PropTypes.func,
status: PropTypes.string.isRequired,
};
CommentApproveAction.defaultProps = {
approveComment: noop,
unapproveComment: noop,
};
export default localize( CommentApproveAction );