import { cn } from "@prototype/lib/utils"; import type { ReactNode } from "react"; type EmptyStateProps = { children: ReactNode; className?: string; }; export function EmptyState({ children, className }: EmptyStateProps) { return (

{children}

); }