import classNames from "classnames"; import { useWorkspaceStore } from "@/stores"; import { FeatureType } from "@/stores/workspace"; import Icon from "./Icon"; interface Props { className?: string; } const Logo = ({ className }: Props) => { const workspaceStore = useWorkspaceStore(); const hasCustomBranding = workspaceStore.checkFeatureAvailable(FeatureType.CustomeBranding); const branding = hasCustomBranding && workspaceStore.setting.branding ? new TextDecoder().decode(workspaceStore.setting.branding) : ""; return (