Files
anomalyco_opencode/packages/desktop/src/renderer/startup/splash.tsx
T
2026-08-23 19:07:10 +08:00

16 lines
404 B
TypeScript

import { Splash } from "@opencode-ai/ui/logo"
export function LoadingSplash(props: { deep: boolean }) {
return (
<div
class="h-dvh w-screen flex flex-col items-center justify-center"
classList={{
"bg-v2-background-bg-deep": props.deep,
"bg-v2-background-bg-base": !props.deep,
}}
>
<Splash class="w-16 h-20 opacity-50 animate-pulse" />
</div>
)
}