import React from "react"; import { cn } from "../lib/utils"; export const ToolBubble = React.memo(({ text }: { text: string }) => (
{text}
));