// ────────────────────────────────────────────────────────────────── // TrafficIcons — the inline SVG set used across AdminTrafficUsage // (header controls, filter buttons, sort indicator, etc.). Page-local // in spirit; co-located here so the parent page imports a single // flat barrel rather than redefining 15 inline icons. // ────────────────────────────────────────────────────────────────── export const SearchIcon = () => ( ); export const ChevronLeftIcon = () => ( ); export const ChevronRightIcon = () => ( ); export const RefreshIcon = ({ className = 'w-5 h-5' }: { className?: string }) => ( ); export const DownloadIcon = () => ( ); export const SortIcon = ({ direction }: { direction: false | 'asc' | 'desc' }) => ( {direction === 'asc' ? ( ) : direction === 'desc' ? ( ) : ( )} ); export const FilterIcon = () => ( ); export const ChevronDownIcon = () => ( ); export const ServerIcon = () => ( ); export const CalendarIcon = () => ( ); export const XIcon = () => ( ); export const StatusIcon = () => ( ); export const GlobeIcon = () => ( ); export const ShieldIcon = () => ( ); export const ServerSmallIcon = () => ( );