# give/4.17.0/src/Views/Components/ListTable/Select/index.tsx

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

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/src/Views/Components/ListTable/Select/index.tsx
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/src/Views/Components/ListTable/Select/index.tsx
- Modified: 2025-10-01T11:37:12+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/Views/Components/ListTable/Select/index.tsx#L10-L20`.

```tsx
import cx from 'classnames';

export default function Select({children, className = '', ...rest}) {
    return (
            <select className={cx('givewp-select', className)} {...rest}>
                {children}
            </select>
    );
}

```
