import { useBknd } from "ui/client/bknd"; export function Logo({ scale = 0.2, fill, theme = "light" }: { scale?: number; fill?: string; theme?: string }) { const $bknd = useBknd(); const _theme = theme ?? $bknd?.app?.getAdminConfig().color_scheme ?? "light"; const svgFill = fill ? fill : _theme === "light" ? "black" : "white"; const dim = { width: Math.round(578 * scale), height: Math.round(188 * scale) } as const; return (