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