import { cn } from "@/lib/utils"; export function EmptyStateContainer({ children, className, ...props }: React.ComponentProps<"div">) { return (
{children}
); } export function EmptyStateTitle({ children, className, ...props }: React.ComponentProps<"p">) { return (

{children}

); } export function EmptyStateDescription({ children, className, ...props }: React.ComponentProps<"p">) { return (

{children}

); }