9 lines
282 B
TypeScript
9 lines
282 B
TypeScript
export const Loader = () =>
|
|
{
|
|
return (
|
|
<div className="flex h-screen items-center justify-center bg-black">
|
|
<div className="h-16 w-16 animate-spin rounded-full border-4 border-solid border-primary border-t-transparent"/>
|
|
</div>
|
|
);
|
|
};
|