'use client'; import { SearchX } from 'lucide-react'; interface EmptyStateProps { searchTerm?: string; } export function EmptyState({ searchTerm }: EmptyStateProps) { return (

No results found

{searchTerm ? (

No policy settings found matching "{searchTerm}"

) : (

Enter a search term to find policy settings

)}
); }