ConceptPortal-public/rsconcept/frontend/src/components/Common/Loader.tsx

10 lines
244 B
TypeScript
Raw Normal View History

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 (
2023-07-29 03:31:21 +03:00
<div className='flex justify-center w-full h-full'>
<ThreeDots color='rgb(96 165 250)' height='100' width='100' radius='10' />
2023-07-15 17:46:19 +03:00
</div>
);
}