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

10 lines
231 B
TypeScript
Raw Normal View History

2023-07-15 17:46:19 +03:00
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>
);
}