mirror of
https://github.com/run-llama/chat-llamaindex.git
synced 2026-07-01 21:04:08 -04:00
18 lines
349 B
TypeScript
18 lines
349 B
TypeScript
import LoadingIcon from "@/app/icons/three-dots.svg";
|
|
|
|
export function LoadingThreeDot() {
|
|
return (
|
|
<div className="text-primary">
|
|
<LoadingIcon />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function LoadingModule() {
|
|
return (
|
|
<div className="w-full h-screen max-h-full flex items-center justify-center">
|
|
<LoadingThreeDot />
|
|
</div>
|
|
);
|
|
}
|