Wolox / react-chat-widget

Awesome chat widget for your React App
MIT License
1.47k stars 457 forks source link

Emojis option set to false doesn't hide emoji picker icon. #324

Open DMeganoski opened 1 year ago

DMeganoski commented 1 year ago

Setting the emojis={false} only disables the functionality of the picker, the icon remains next to the user input (it does this by default).

sohanshow commented 10 months ago

Just copy paste style.css into a custom .css and use that. Inside it type this:

.rcw-picker-icon {
  display: none;
}

.rcw-picker-btn {
  display: none;
}

This shall hide the emoji picker face.