/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the Chameleon License found in the * LICENSE file in the root directory of this source tree. */ import { WSContent, IMAGE } from "../../DataTypes"; import { User, Bot } from "@carbon/icons-react"; import { ReactNode } from "react"; import Markdown from "react-markdown"; import remarkGfm from "remark-gfm"; import { ImageResult } from "./ImageResult"; export interface ChatRowProps { isUser: boolean; data?: WSContent; children?: ReactNode; index?: number; streaming?: boolean; } export function ChatRow({ isUser, data, children, index = 0, streaming = false, }: ChatRowProps) { const userIconStyle = `w-6 h-6 p-1 ${ isUser ? "bg-gray-100" : "bg-purple-200" } flex items-center justify-start rounded-full`; const badgeStyle = "flex flex-row items-center gap-2 text-sm font-bold"; return (