forked from github/plane
c16a5b9b71
* restructure the logic to avoid throwing error if any dat is not found * updated files for previous commit * fix build errors * remove throwing error if userId is undefined * optionally chain display_name property to fix sentry issues * add ooptional check * change issue action logic to increase code maintainability and make sure to send only the updated date while updating the issue * fix issue updation bugs * fix module issues build error * fix runtime errors
35 lines
802 B
TypeScript
35 lines
802 B
TypeScript
// helpers
|
|
import { cn } from "helpers/common.helper";
|
|
// types
|
|
import { TProjectLogoProps } from "@plane/types";
|
|
|
|
type Props = {
|
|
className?: string;
|
|
logo: TProjectLogoProps;
|
|
};
|
|
|
|
export const ProjectLogo: React.FC<Props> = (props) => {
|
|
const { className, logo } = props;
|
|
|
|
if (logo && logo.in_use === "icon" && logo.icon)
|
|
return (
|
|
<span
|
|
style={{
|
|
color: logo.icon.color,
|
|
}}
|
|
className={cn("material-symbols-rounded text-base", className)}
|
|
>
|
|
{logo.icon.name}
|
|
</span>
|
|
);
|
|
|
|
if (logo && logo.in_use === "emoji" && logo.emoji)
|
|
return (
|
|
<span className={cn("text-base", className)}>
|
|
{logo.emoji.value?.split("-").map((emoji) => String.fromCodePoint(parseInt(emoji, 10)))}
|
|
</span>
|
|
);
|
|
|
|
return <span />;
|
|
};
|