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}

{action}
: undefined} description={description} title={title} />
); } export function NotFoundScreen({ action, appName = "Uhuru UI", description = "The page you were looking for could not be found.", }: { action?: ReactNode; appName?: string; description?: string; }) { return (

{appName}

404

{description}

{action ?
{action}
: null}
); }