import { LineChart as RechartsLineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer } from 'recharts'; import { ChartData } from '../../types'; interface LineChartProps { data: ChartData[]; title?: string; color?: string; } export const LineChart = ({ data, title, color = '#10b981' }: LineChartProps) => { return (