Spaces:
Running
Running
File size: 528 Bytes
424a8d9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | export default function MessageBubble({ role, content }) {
const isUser = role === "user";
const bubbleStyle = {
backgroundColor: isUser ? "#e0f7fa" : "#f1f1f1",
color: "#333",
padding: "10px",
borderRadius: "8px",
whiteSpace: "pre-wrap",
marginBottom: "4px",
};
const labelStyle = {
fontWeight: "bold",
marginBottom: "4px",
};
return (
<div>
<div style={labelStyle}>{isUser ? "User:" : "Assistant:"}</div>
<div style={bubbleStyle}>{content}</div>
</div>
);
}
|