import React from "react"; import ReactMarkdown from "react-markdown"; import { cn } from "../lib/utils"; type AnswerBubbleProps = { text: string; loading?: boolean; }; export const AnswerBubble = React.memo(({ text, loading }: AnswerBubbleProps) => { return (