"use client"; import { Area, AreaChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from "recharts"; import { CHART_TOOLTIP_STYLE } from "@/lib/chart-utils"; type GrowthPoint = { date: string; trial: number; paid: number; total: number; cumulative: number }; export function MembershipGrowthChart({ growth, }: { growth: GrowthPoint[]; }) { return ( <>