# give/4.16.9/src/Views/Components/LoadingOverlay/index.js

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 16 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Views/Components/LoadingOverlay/index.js
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Views/Components/LoadingOverlay/index.js
- Modified: 2021-11-23T23:55:18+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.16.9/code/src/Views/Components/LoadingOverlay/index.js#L10-L20`.

```javascript
// Components
import Spinner from '@givewp/components/Spinner';

// Styles
import styles from './style.module.scss';

const LoadingOverlay = ({spinnerSize}) => {
    return (
        <div className={styles.overlay}>
            <Spinner size={spinnerSize} />
        </div>
    );
};

export default LoadingOverlay;

```
