forked from github/plane
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
25 lines
723 B
TypeScript
25 lines
723 B
TypeScript
import { IssueEmojiReactions, IssueVotes } from "components/issues/peek-overview";
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
export const IssueReactions: React.FC = () => {
|
|
const { project: projectStore } = useMobxStore();
|
|
|
|
return (
|
|
<div className="mt-4 flex items-center gap-3">
|
|
{projectStore?.deploySettings?.votes && (
|
|
<>
|
|
<div className="flex items-center gap-2">
|
|
<IssueVotes />
|
|
</div>
|
|
<div className="h-8 w-0.5 bg-custom-background-200" />
|
|
</>
|
|
)}
|
|
{projectStore?.deploySettings?.reactions && (
|
|
<div className="flex items-center gap-2">
|
|
<IssueEmojiReactions />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|