import { Search } from 'lucide-react' const EmptyStateRow = () => { return (
) } export function LogsTableEmptyState({ title = 'No results found', description = 'Try another search or adjust the filters', }: { title?: string description?: string }) { return (

{title}

{description}

) }