mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 09:31:20 -04:00
11 lines
350 B
React
11 lines
350 B
React
import { ChatIdentity, chatRowClass } from './ChatMessageRow.jsx';
|
|
|
|
export default function ChatTypingRow({ message }) {
|
|
return (
|
|
<div className={`${chatRowClass(message)} italic opacity-80 border-slate-600/40 bg-slate-900/40`}>
|
|
<ChatIdentity message={message} />
|
|
<span className="text-slate-300">typing...</span>
|
|
</div>
|
|
);
|
|
}
|