import { FC } from "react" import { Bill } from "@/app/lib/db-types" import Link from "next/link" import { TicketIcon } from "@heroicons/react/24/outline" export interface BillBadgeProps { locationId: string, bill: Bill }; export const BillBadge:FC = ({ locationId, bill: { _id: billId, name, paid, hasAttachment, proofOfPayment }}) => { const className = `badge badge-lg ${paid?"badge-success":" badge-outline"} ${ !paid && hasAttachment ? "btn-outline btn-success" : "" } cursor-pointer`; return ( {name} { proofOfPayment?.uploadedAt ? : null } ); }