import { observer } from "mobx-react"; import { Combobox } from "@headlessui/react"; // hooks import { ISearchIssueResponse } from "@plane/types"; interface Props { issue: ISearchIssueResponse; canDeleteIssueIds: boolean; identifier: string | undefined; } export const BulkDeleteIssuesModalItem: React.FC = observer((props: Props) => { const { issue, canDeleteIssueIds, identifier } = props; const color = issue.state__color; return ( `flex cursor-pointer select-none items-center justify-between rounded-md px-3 py-2 ${ active ? "bg-custom-background-80 text-custom-text-100" : "" }` } >
{identifier}-{issue.sequence_id} {issue.name}
); });