feat(webui): highlight slash commands and app mentions (#4933)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import {
|
||||
INLINE_TOKEN_HIGHLIGHT_COLOR,
|
||||
InlineTokenHighlight,
|
||||
} from "@/components/InlineTokenHighlight";
|
||||
|
||||
interface SlashCommandTextProps {
|
||||
command: string;
|
||||
}
|
||||
|
||||
export function SlashCommandText({
|
||||
command,
|
||||
}: SlashCommandTextProps) {
|
||||
return (
|
||||
<InlineTokenHighlight
|
||||
testId="message-slash-command"
|
||||
color={INLINE_TOKEN_HIGHLIGHT_COLOR}
|
||||
className="font-medium"
|
||||
>
|
||||
{command}
|
||||
</InlineTokenHighlight>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user