import { PureComponent } from "react"; import { AreaChart, Area, ResponsiveContainer, Tooltip } from "recharts"; import CustomTooltip from "./custom_tooltip"; class Chart extends PureComponent { render() { const { dataPoints, formatter, label } = this.props; return (
} classNames="rounded-md text-xs p-0.5" contentStyle={{ backgroundColor: "rgb(var(--color-800))", color: "rgb(var(--color-100))", }} />
); } } export default Chart;