import { Box } from '@mui/material' import type { ChatUserMessageProps } from '../types' import { ChatMessageOverflow, styles } from './styles' export function ChatUserMessage({ children, muted = false, topContext, sx, }: ChatUserMessageProps) { return ( {topContext && {topContext}} {children} ) }