/**
 * Feedback Vote Component
 *
 * Thumbs up/down feedback collector for settings and features.
 *
 * @package
 * @since 0.1.0
 */

import { __ } from '@wordpress/i18n';

/**
 * Feedback Vote component
 *
 * @param {Object  } props            Component props.
 * @param {string  } props.settingKey Unique identifier for the setting/feature.
 * @param {string  } props.screenId   Current screen/page ID.
 * @param {string  } props.label      Optional accessible label.
 * @param {Function} props.onVote     Optional callback after vote.
 * @return {JSX.Element} Feedback vote buttons.
 */
const FeedbackVote = ({ label = __('Was this helpful?', 'prorank-seo') }) => {
  void label;
  return null;
};

export default FeedbackVote;
