/** * ============================================================================= * QWHPI — Quebec Weekly Housing Price Index * Author : Simon-Pierre Boucher * Contact : contact@spboucher.ai * File : web/components/Sparkline.tsx * Purpose : Inline SVG sparkline for stat tiles (no axes, one series). * ============================================================================= */ export default function Sparkline({ values, width = 160, height = 40, }: { values: number[]; width?: number; height?: number; }) { if (values.length < 2) return null; const min = Math.min(...values); const max = Math.max(...values); const span = max - min || 1; const pts = values .map((v, i) => { const x = (i / (values.length - 1)) * (width - 4) + 2; const y = height - 3 - ((v - min) / span) * (height - 6); return `${x.toFixed(1)},${y.toFixed(1)}`; }) .join(" "); return ( ); }