File size: 334 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 | import { theme } from "../theme/theme.js";
import { MarkdownMessageComponent } from "./markdown-message.js";
export class UserMessageComponent extends MarkdownMessageComponent {
constructor(text: string) {
super(text, 1, {
bgColor: (line) => theme.userBg(line),
color: (line) => theme.userText(line),
});
}
}
|