2023-12-24 21:18:42 +00:00
|
|
|
import { PlusCircle } from '../assets/icons';
|
2023-12-18 21:15:55 +00:00
|
|
|
import './StreamChat.css';
|
|
|
|
|
|
|
|
function StreamChat(props) {
|
|
|
|
return (
|
|
|
|
<div className='stream-chat'>
|
|
|
|
<div className='stream-chat-header'>
|
|
|
|
<span className='stream-chat-title'>{props.title}</span>
|
2023-12-24 21:18:42 +00:00
|
|
|
<button
|
|
|
|
onClick={() => console.log('Add chat bot')}
|
|
|
|
className='stream-chat-add-button'
|
|
|
|
>
|
|
|
|
<img className='stream-chat-add-icon' src={PlusCircle} />
|
|
|
|
</button>
|
2023-12-18 21:15:55 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default StreamChat;
|