# give/4.17.0/src/EventTickets/resources/admin/feedback/popup/Content.tsx

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

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/src/EventTickets/resources/admin/feedback/popup/Content.tsx
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/src/EventTickets/resources/admin/feedback/popup/Content.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/popup/Content.tsx#L10-L20`.

```tsx
const Content = ({children}) => {
    return (
        <div
            style={{
                fontSize: '14px',
                fontWeight: 400,
                lineHeight: '19.6px',
                display: 'flex',
                flexDirection: 'column',
                gap: '1rem',
            }}
        >
            {children}
        </div>
    );
}

export default Content;

```
