import type { ReactNode } from "react"; import { cn } from "../../lib/cn"; import { Button } from "../button"; import { EmptyState } from "./empty-state"; export function EmptyStateScreen({ action, description, eyebrow = "Empty state", title, }: { action?: ReactNode; description: string; eyebrow?: string; title: string; }) { return (
{eyebrow}
{appName}
{description}