seeden / react-facebook

Facebook components like a Login button, Like, Share, Chat, Comments, Page or Embedded Post
MIT License
790 stars 144 forks source link

How to add icon 'x' or turn off icon facebook message #226

Open nqam1904 opened 1 year ago

nqam1904 commented 1 year ago

Hi everybody! I had an issue with message facebook SDK, i want to add icon 'x' css style message facebook to delete element facebook message.

const closeFacebook = () => {
        const box: any = document.getElementById('fb-root');
        box.style.display = 'none';
    };
<span className="close-icon" onClick={closeFacebook}> &#10005 </span>
<div id="fb-root" />
<div id="fb-customer-chat" className="fb-customerchat" />

I wonder if anyone has ever had a similar issue and managed to solve it like I did. I need some guidance for the solution. Thank you very much.

image