nygardk / react-share

Social media share buttons and share counts for React
MIT License
2.65k stars 435 forks source link

Icons image is not appearing #319

Open Q8root opened 4 years ago

Q8root commented 4 years ago

I have installed the package :- yarn add react-share

And then import it

import {
  WhatsappShareButton,
  FacebookShareButton,
  EmailShareButton,
  TwitterShareButton,
} from "react-share";

<WhatsappShareButton title="test text" size={50} url="https://sswewe.com">

This is what i see in Chrome inspector:- <button size="50" aria-label="whatsapp" class="react-share__ShareButton" style="background-color: transparent; border: none; padding: 0px; font: inherit; color: inherit; cursor: pointer;"></button>

lukenorman commented 4 years ago

Try something like

import {
  WhatsappShareButton, WhatsappIcon
} from 'react-share'

<WhatsappShareButton title="test text" url="https://sswewe.com">
     <WhatsappIcon size={50} />
</WhatsappShareButton>
niksmac commented 3 years ago

Because of #365