mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
96399c7112
* feat: filters in plane deploy implemented multi-level dropdown for plane deploy * style: spacing and fonts * feat: plane deploy implemented authentication/theming, created/modified all the required store & services * devL reactions, voting, comments and theme
18 lines
592 B
TypeScript
18 lines
592 B
TypeScript
"use client";
|
|
|
|
// types
|
|
import { TIssuePriorityKey } from "store/types/issue";
|
|
// constants
|
|
import { issuePriorityFilter } from "constants/data";
|
|
|
|
export const IssueBlockPriority = ({ priority }: { priority: TIssuePriorityKey | null }) => {
|
|
const priority_detail = priority != null ? issuePriorityFilter(priority) : null;
|
|
|
|
if (priority_detail === null) return <></>;
|
|
return (
|
|
<div className={`h-6 w-6 rounded flex justify-center items-center ${priority_detail?.className}`}>
|
|
<span className="material-symbols-rounded text-sm">{priority_detail?.icon}</span>
|
|
</div>
|
|
);
|
|
};
|