import { Area, AreaChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis, } from "recharts"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; interface Props { data: { date: string; ingested: number; failed: number }[]; } export function IngestionStatsChart({ data }: Props) { return (
Ingestion volume Documents processed per day ยท last 14 days
v.slice(5)} stroke="hsl(var(--muted-foreground))" fontSize={11} tickLine={false} axisLine={false} />
); }