import { LineChart, Line } from 'recharts' interface SparklineProps { data: number[] color?: string width?: number height?: number } export function Sparkline({ data, color = 'hsl(var(--accent))', width = 60, height = 24 }: SparklineProps) { const chartData = data.map((v, i) => ({ v, i })) return ( ) }