Easy social media share buttons and share counts.
New!
Pinterest support added in 1.2.0.
Since 20th of November Twitter no longer supports open count API. The service was shut down and there is currently no way to fetch the share count. Thus, TwitterShareCount was removed in version 1.3.0.
- no external script loading, i.e. no dependencies on SDKs
- opens a popup share-window
- supported services: Facebook, Twitter, Google+, LinkedIn, Pinterest
- share buttons with generated icons or custom icons of your choice
- share counts
- demos/demo0: Facebook, Twitter, Google+, Linkedin
- demos/demo1: Pinterest
To run demos: clone repo and run npm install && npm run run-demos
and open http://localhost:8080
.
npm install react-share --save
ShareButtons work on all browsers.
ShareCounts works on all browsers, with the exception of Goolge Plus share count working only on IE11 and newer (XHR CORS problem).
Compatible with React versions 0.13.x
and 0.14.x
.
import {
ShareButtons,
ShareCounts,
generateShareIcon
} from 'react-share';
const {
FacebookShareButton,
GooglePlusShareButton,
LinkedinShareButton,
TwitterShareButton,
PinterestShareButton
} = ShareButtons;
Required props for all:
children
: A React node (e.g. string or element)url
: URL of the shared page (string)
Required props for LinkedinShareButton
, TwitterShareButton
and FacebookShareButton
:
title
: Title of the shared page (string)
Required prop for PinterestShareButton
:
media
: An absolute link to the image that will be pinned (string)
const {
FacebookShareCount,
GooglePlusShareCount,
LinkedinShareCount,
PinterestShareCount
} = ShareCounts;
All share count components take in only one mandatory prop: url
, which is the
URL you are sharing. className
prop is optional.
Example:
<FacebookShareCount url={shareUrl} />
If you want to render anything else but the count,
you can provide a function as a child element that takes in shareCount
as an
argument and returns an element:
<FacebookShareCount url={shareUrl}>
{shareCount => (
<span className="myShareCountWrapper">{shareCount}</span>
)}
</FacebookShareCount>
const FacebookIcon = generateShareIcon('facebook');
const TwitterIcon = generateShareIcon('twitter');
const GooglePlusIcon = generateShareIcon('google');
const LinkedinIcon = generateShareIcon('linkedin');
const PinterestIcon = generateShareIcon('pinterest');
Props:
size
: Icon size in pixels (number)round
: Whether to show round or rect icons (bool)
Example:
<TwitterIcon size={32} round={true} />
MIT
Icon paths provided by: react-social-icons.