forked from github/plane
cd5e5b96da
* feat: init mobx and issue filter * feat: Implemented list and kanban views in plane space and integrated mobx. * feat: updated store type check
18 lines
609 B
TypeScript
18 lines
609 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={`w-[24px] h-[24px] rounded-sm flex justify-center items-center ${priority_detail?.className}`}>
|
|
<span className="material-symbols-rounded text-[16px]">{priority_detail?.icon}</span>
|
|
</div>
|
|
);
|
|
};
|