react-spinners#BounceLoader JavaScript Examples
The following examples show how to use
react-spinners#BounceLoader.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Loader.jsx From ui with MIT License | 6 votes |
slowLoad = () => (
<>
<div style={{ padding: 25 }}>
<center>
<BounceLoader
size={50}
color='#8f0b10'
css={{ display: 'block' }}
/>
</center>
</div>
<p>
<Text>
This will take a few minutes...
</Text>
</p>
<p>
<Text type='secondary'>
We're setting up your analysis after a period of inactivity. Please wait.
</Text>
</p>
</>
)