import { FC } from "react"; // types import { IProject } from "@plane/types"; // ui import { Logo } from "@/components/common"; export type ActiveCyclesProjectTitleProps = { project: Partial | undefined; }; export const ActiveCyclesProjectTitle: FC = (props) => { const { project } = props; return (
{project?.logo_props && }

{project?.name}

); };