'use client'; import { SearchX } from 'lucide-react'; interface EmptyStateProps { searchTerm?: string; } export function EmptyState({ searchTerm }: EmptyStateProps) { return (
No policy settings found matching "{searchTerm}"
) : (Enter a search term to find policy settings
)}