mirror of
https://github.com/makeplane/plane.git
synced 2026-02-24 04:00:14 +01:00
23 lines
676 B
TypeScript
23 lines
676 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { useTheme } from "next-themes";
|
|
// assets
|
|
import LogoSpinnerDark from "@/app/assets/images/logo-spinner-dark.gif?url";
|
|
import LogoSpinnerLight from "@/app/assets/images/logo-spinner-light.gif?url";
|
|
|
|
export function InstanceLoading() {
|
|
const { resolvedTheme } = useTheme();
|
|
|
|
const logoSrc = resolvedTheme === "dark" ? LogoSpinnerLight : LogoSpinnerDark;
|
|
|
|
return (
|
|
<div className="flex items-center justify-center">
|
|
<img src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11" />
|
|
</div>
|
|
);
|
|
}
|