import { TrashIcon, PencilIcon } from "@heroicons/react/solid"; export const Popover = ({ onEditClick, onDeleteClick }: { onEditClick: Function onDeleteClick: Function }) => { return (
onDeleteClick()} className="w-3 h-3 text-red-400"> onEditClick()} className="w-3 h-3">
); };