import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, Area, AreaChart, Legend, } from 'recharts'; import type { SentimentTrend } from '../../types'; interface SentimentChartProps { data: SentimentTrend[]; height?: number; } export function SentimentTrendChart({ data, height = 300 }: SentimentChartProps) { if (!data.length) { return (