import React from 'react';
import cn from 'classnames';
import { Popup } from 'UI';
import stl from './issueListItem.module.css';
const IssueListItem = ({ issue, onClick, icon, user, active }) => {
return (
onClick(issue) }
className={ cn(stl.wrapper, active ? 'active-bg' : '', 'flex flex-col justify-between cursor-pointer text-base text-gray-800')}
>
{ icon }
{/*

*/}
{ issue.id }
{ user &&
}
{ issue.title }
);
};
export default IssueListItem;