import { cn } from "../lib/utils"; import { conversationService } from "../api/conversationService"; type QuestionBubbleProps = { text: string; image_key?: string | null; }; export const QuestionBubble = ({ text, image_key }: QuestionBubbleProps) => { return (
{image_key && ( Uploaded image )} {text}
); };