// Receipt thumbnail (placeholder)
function ReceiptThumb({ small = false }) {
  const s = small ? 22 : 32;
  return (
    <div className="receipt-chip" style={small ? {} : { width: s, height: s, borderRadius: 6 }}>
      <svg width={small ? 12 : 16} height={small ? 12 : 16} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.6" strokeLinecap="round" strokeLinejoin="round">
        <path d="M6 3h12v18l-3-2-3 2-3-2-3 2z"/>
        <path d="M9 8h6M9 12h6M9 16h3"/>
      </svg>
    </div>
  );
}

Object.assign(window, { ReceiptThumb });
