interface Props { icon?: string; title: string; message: string; actionLabel?: string; onAction?: () => void; } export default function EmptyState({ icon = '🔍', title, message, actionLabel, onAction }: Props) { return (
{message}