import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; /** * Calm empty / blocked / offline message for portal pages. */ export function EmptyState({ title, description, action, className, tone = "default", }: { title: string; description: string; action?: ReactNode; className?: string; tone?: "default" | "warning" | "ok"; }) { return (
{title}
{description}
{action ?