import Image from "next/image"; import { ZitadelLogoDark } from "./ZitadelLogoDark"; import { ZitadelLogoLight } from "./ZitadelLogoLight"; type Props = { height?: number; width?: number; }; export function ZitadelLogo({ height = 40, width = 147.5 }: Props) { return ( <>
{/* */} zitadel logo
zitadel logo
); }