Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/sections/Blog/Blog-single/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ const BlogSingle = ({ data }) => {
<div className="post-share-mobile">
<div className="share-icons-container">
<h4>Share Post:</h4>
<TwitterShareButton $url={location.href} title={shareQuote}>
<TwitterShareButton url={location.href} title={shareQuote}>
<AiOutlineTwitter />
</TwitterShareButton>
<FacebookShareButton $url={location.href} quote={shareQuote}>
<FacebookShareButton url={location.href} quote={shareQuote}>
<FaFacebookF />
</FacebookShareButton>
<LinkedinShareButton $url={location.href}>
<LinkedinShareButton url={location.href} title={shareQuote}>
<FaLinkedin />
</LinkedinShareButton>
<CopyToClipboard text={location.href} title="Copy link" onCopy={() => setCopied(true)}>
Expand Down