LucasBassetti / react-simple-chatbot

:speech_balloon: Easy way to create conversation chats
https://lucasbassetti.com.br/react-simple-chatbot/
MIT License
1.71k stars 596 forks source link

how to change the bot avatar ? #376

Closed valdesguefa closed 10 months ago

valdesguefa commented 10 months ago

I set the botAvatar props to the name of the image in the same directory as my javascript file bellow the bot avatar didn't show image

valdesguefa commented 10 months ago

Here is the code ``

``

pascalgagneur commented 10 months ago

I don't how your project is set up. But if it create react app or similar you could just import your image.

import botAvatarImg from '[path-to-asset]/robot_AI.png
...
 <ChatBot headerTitle="Speech Synthesis" speechSynthesis={{ enable: true, lang: 'en' }} steps={steps} botAvatar={botAvatarImg} floating recognitionEnable /> 
valdesguefa commented 10 months ago

Thanks it work