"use client"; import { Cell, Pie, PieChart, ResponsiveContainer, Tooltip } from "recharts"; import { CHART_TOOLTIP_STYLE } from "@/lib/chart-utils"; const COLORS = ["#ef4444", "#f59e0b", "#3b82f6", "#10b981", "#a855f7", "#6366f1", "#ec4899"]; export function PaymentIncidentPieChart({ data, }: { data: { name: string; value: number }[]; }) { return (
{data.map((_, i) => ( ))}
{data.map((item, i) => (
{item.name} {item.value}
))}
); }