# extendify/0.1.0/src/components/notices/FeedbackNotice.js

Extendify, version 0.1.0. 28 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.1.0/code/src/components/notices/FeedbackNotice.js
- Raw: https://pluginprobe.com/plugins/extendify/0.1.0/raw/src/components/notices/FeedbackNotice.js
- Modified: 2022-01-06T18:08:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/0.1.0/code/src/components/notices/FeedbackNotice.js#L10-L20`.

```javascript
import { __ } from '@wordpress/i18n'
import { Button } from '@wordpress/components'

export default function FeedbackNotice() {
    return (
        <>
            <span className="text-black">
                {__(
                    'Tell us how to make the Extendify Library work better for you',
                    'extendify',
                )}
            </span>
            <span className="px-2 opacity-50" aria-hidden="true">
                &#124;
            </span>
            <div className="flex space-x-2 justify-center items-center">
                <Button
                    variant="link"
                    className="text-black underline hover:no-underline p-0 h-auto"
                    href={`https://extendify.com/feedback/?utm_source=${window.extendifyData.sdk_partner}&utm_medium=library&utm_campaign=feedback-notice&utm_content=give-feedback`}
                    target="_blank">
                    {__('Give feedback', 'extendify')}
                </Button>
            </div>
        </>
    )
}

```
