/** * External dependencies */ import { __ } from '@wordpress/i18n'; import PropTypes from 'prop-types'; import { Icon, comment, external } from '@woocommerce/icons'; /** * Internal dependencies */ import './style.scss'; /** * Component to render a Feedback prompt in the sidebar. */ const FeedbackPrompt = ( { text } ) => { return (

{ __( 'Feedback?', 'woo-gutenberg-products-block' ) }

{ text }

{ __( 'Give us your feedback.', 'woo-gutenberg-products-block' ) }
); }; FeedbackPrompt.propTypes = { text: PropTypes.string, }; export default FeedbackPrompt;