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
19 lines
440 B
TypeScript
19 lines
440 B
TypeScript
"use client";
|
|
|
|
// ui
|
|
import { IssueEmojiReactions, IssueVotes } from "components/issues/peek-overview";
|
|
|
|
export const IssueReactions: React.FC = () => (
|
|
<div className="flex gap-3 items-center mt-4">
|
|
<div className="flex gap-2 items-center">
|
|
<IssueVotes />
|
|
</div>
|
|
|
|
<div className="w-0.5 h-8 bg-custom-background-200" />
|
|
|
|
<div className="flex gap-2 items-center">
|
|
<IssueEmojiReactions />
|
|
</div>
|
|
</div>
|
|
);
|