0
0
mirror of https://github.com/makeplane/plane synced 2024-06-14 14:31:34 +00:00
plane/web/components/issues/issue-layouts/spreadsheet/columns/link-column.tsx
Aaryan Khandelwal a76e02045b chore: update UI
2024-05-22 18:25:51 +05:30

29 lines
754 B
TypeScript

import React from "react";
import { observer } from "mobx-react-lite";
// types
import { TIssue } from "@plane/types";
// helpers
import { cn } from "@/helpers/common.helper";
type Props = {
issue: TIssue;
isIssueSelected: boolean;
};
export const SpreadsheetLinkColumn: React.FC<Props> = observer((props: Props) => {
const { issue, isIssueSelected } = props;
return (
<div
className={cn(
"flex h-11 w-full items-center border-b-[0.5px] border-custom-border-200 px-2.5 py-1 text-xs hover:bg-custom-background-80",
{
"bg-custom-primary-100/5 hover:bg-custom-primary-100/10": isIssueSelected,
}
)}
>
{issue?.link_count} {issue?.link_count === 1 ? "link" : "links"}
</div>
);
});