'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}"

) : (

No policy settings available. Trigger a sync to import policies from Intune.

)}
); }