import { ReactNode } from "react" import { cn } from "@/lib/utils" export function Bubble({ children, className }: { children?: ReactNode className?: string }) { if (!children) { return null } return (
{children}
) }