/** * Copyright (c) 2023-present Plane Software, Inc. and contributors * SPDX-License-Identifier: AGPL-3.0-only * See the LICENSE file for details. */ import { observer } from "mobx-react"; import { ProjectIcon } from "@plane/propel/icons"; // components import { ProjectLogo } from "@/components/common/project-logo"; // store import type { PublishStore } from "@/store/publish/publish.store"; // local imports import { NavbarControls } from "./controls"; type Props = { publishSettings: PublishStore; }; export const IssuesNavbarRoot = observer(function IssuesNavbarRoot(props: Props) { const { publishSettings } = props; // hooks const { project_details } = publishSettings; return (
{/* project detail */}
{project_details ? ( ) : ( )}
{project_details?.name || `...`}
); });