mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-13 02:08:18 +00:00
initial setup, ztdl-login, core
This commit is contained in:
15
apps/login/ui/ZitadelLogo.tsx
Normal file
15
apps/login/ui/ZitadelLogo.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { ZitadelLogoDark } from './ZitadelLogoDark';
|
||||
import { ZitadelLogoLight } from './ZitadelLogoLight';
|
||||
|
||||
export function ZitadelLogo() {
|
||||
return (
|
||||
<>
|
||||
<div className="hidden dark:flex">
|
||||
<ZitadelLogoLight />
|
||||
</div>
|
||||
<div className="flex dark:hidden">
|
||||
<ZitadelLogoDark />
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user