// Adapted from jalcoui (MIT) — github.com/jal-co/ui 'use client'; import * as React from 'react'; import { ArrowDown, ArrowUp, type LucideIcon } from 'lucide-react'; import { cn } from '@djangocfg/ui-core/lib'; import type { HeaderEntry, NetworkRequest } from '../types'; import { EmptyState } from './EmptyState'; function HeadersTable({ title, headers, icon: Icon, }: { title: string; headers: HeaderEntry[]; icon: LucideIcon; }) { if (headers.length === 0) return null; return (