Files
openclaw/src/tui/components/user-message.ts
2026-02-22 14:08:51 +00:00

12 lines
334 B
TypeScript

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),
});
}
}