"use client"; import { CalendarCheck2 } from "lucide-react"; // types import { TStateGroups } from "@plane/types"; // helpers import { cn } from "@/helpers/common.helper"; import { renderFormattedDate } from "@/helpers/date-time.helper"; import { shouldHighlightIssueDueDate } from "@/helpers/issue.helper"; type Props = { due_date: string; group: TStateGroups; }; export const IssueBlockDueDate = (props: Props) => { const { due_date, group } = props; return (
{renderFormattedDate(due_date)}
); };