import { ReferenceLine } from 'recharts'; import type { SRLevel } from '../../lib/types'; import { formatPrice } from '../../lib/format'; interface SROverlayProps { levels: SRLevel[]; } export function SROverlay({ levels }: SROverlayProps) { return ( <> {levels.map((level) => { const isSupport = level.type === 'support'; return ( ); })} ); }