import type { BondResponse } from '../api/responses'; interface BondDetailsProps { bond: BondResponse; } const rowStyle: React.CSSProperties = { display: 'flex', justifyContent: 'space-between', padding: '8px 0', borderBottom: '1px solid #eee', }; export function BondDetails({ bond }: BondDetailsProps) { const md = bond.marketData; return (