mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
![]() |
import { ThreeDots } from 'react-loader-spinner'
|
||
|
|
||
|
export function Loader() {
|
||
|
return (
|
||
|
<div className='flex justify-center'>
|
||
|
<ThreeDots color='rgb(96 165 250)' height='100' width='100' radius='10' />
|
||
|
</div>
|
||
|
);
|
||
|
}
|