import { useTheme } from "ui/client/use-theme"; export function Logo({ scale = 0.2, fill, ...props }: { scale?: number; fill?: string; theme?: string }) { const t = useTheme(); const theme = props.theme ?? t.theme; const svgFill = fill ? fill : theme === "light" ? "black" : "white"; const dim = { width: Math.round(578 * scale), height: Math.round(188 * scale) } as const; return (