# give/4.17.0/src/EventTickets/resources/admin/feedback/FeedbackButton.tsx

GiveWP – Donation Plugin and Fundraising Platform, version 4.17.0. 24 lines.

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/src/EventTickets/resources/admin/feedback/FeedbackButton.tsx
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/src/EventTickets/resources/admin/feedback/FeedbackButton.tsx
- Modified: 2024-03-13T21:54:14+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/give/4.17.0/code/src/EventTickets/resources/admin/feedback/FeedbackButton.tsx#L10-L20`.

```tsx
import React from 'react';
import FeedbackIcon from './FeedbackIcon';

const FeedbackButton = (props) => {
    return (
        <button
            className={'button button-primary'}
            style={{
                display: 'flex',
                alignItems: 'center',
                gap: '2px',
                padding: '2px 10px',
                borderRadius: '10px',
                fontSize: '14px',
            }}
            {...props}
        >
            <FeedbackIcon /> {props.children}
        </button>
    );
};

export default FeedbackButton;

```
