import React from 'react'; import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from 'recharts'; const LineChartComponent = ({ data, title, description, metaInfo, dataKey = 'value', lineColor = '#8884d8', height = 400, showLegend = true, showGrid = true, customTooltip, customXAxisFormatter, customYAxis, additionalLines = [] }) => { return (
{description}
)} {metaInfo && (