mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
09a0fe1c81
Patch background color for fullscreen loader
19 lines
551 B
JavaScript
19 lines
551 B
JavaScript
export default function PreLoader({ size = "16" }) {
|
|
return (
|
|
<div
|
|
className={`h-${size} w-${size} animate-spin rounded-full border-4 border-solid border-primary border-t-transparent`}
|
|
></div>
|
|
);
|
|
}
|
|
|
|
export function FullScreenLoader() {
|
|
return (
|
|
<div
|
|
id="preloader"
|
|
className="fixed left-0 top-0 z-999999 flex h-screen w-screen items-center justify-center bg-sidebar"
|
|
>
|
|
<div className="h-16 w-16 animate-spin rounded-full border-4 border-solid border-primary border-t-transparent"></div>
|
|
</div>
|
|
);
|
|
}
|