import { INLINE_TOKEN_HIGHLIGHT_COLOR, InlineTokenHighlight, } from "@/components/InlineTokenHighlight"; interface SlashCommandTextProps { command: string; } export function SlashCommandText({ command, }: SlashCommandTextProps) { return ( {command} ); }