mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
30 lines
814 B
TypeScript
30 lines
814 B
TypeScript
import { RiBarcodeFill } from "@remixicon/react";
|
|
import { WidgetEmptyState } from "@/components/shared/widget-empty-state";
|
|
import type { DashboardBill } from "@/lib/dashboard/bills";
|
|
import { BillListItem } from "./bill-list-item";
|
|
|
|
type BillsListProps = {
|
|
bills: DashboardBill[];
|
|
onPay: (billId: string) => void;
|
|
};
|
|
|
|
export function BillsList({ bills, onPay }: BillsListProps) {
|
|
if (bills.length === 0) {
|
|
return (
|
|
<WidgetEmptyState
|
|
icon={<RiBarcodeFill className="size-6 text-muted-foreground" />}
|
|
title="Nenhum boleto cadastrado para o período selecionado"
|
|
description="Cadastre boletos para monitorar os pagamentos aqui."
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<ul className="flex flex-col">
|
|
{bills.map((bill) => (
|
|
<BillListItem key={bill.id} bill={bill} onPay={onPay} />
|
|
))}
|
|
</ul>
|
|
);
|
|
}
|