2023-07-25 20:27:29 +03:00
|
|
|
import { ThreeDots } from 'react-loader-spinner';
|
2023-07-15 17:46:19 +03:00
|
|
|
|
|
|
|
export function Loader() {
|
|
|
|
return (
|
|
|
|
<div className='flex justify-center'>
|
|
|
|
<ThreeDots color='rgb(96 165 250)' height='100' width='100' radius='10' />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|