2019-11-02 23:58:17 +04:00
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
2019-11-03 01:26:06 +04:00
|
|
|
import { faFacebookSquare, faRedditSquare, faTwitterSquare } from '@fortawesome/free-brands-svg-icons'
|
2019-11-02 23:58:17 +04:00
|
|
|
|
|
|
|
import { ShareIcon, ShareIconsList, ShareWrap } from './style';
|
2019-11-02 19:41:40 +04:00
|
|
|
|
|
|
|
const ShareGuide = (props) => (
|
|
|
|
<ShareWrap>
|
|
|
|
<ShareIconsList className="d-sm-none d-md-none d-lg-flex d-xl-flex">
|
2019-11-02 23:58:17 +04:00
|
|
|
<ShareIcon><a href="#"><FontAwesomeIcon icon={ faTwitterSquare } /></a></ShareIcon>
|
|
|
|
<ShareIcon><a href="#"><FontAwesomeIcon icon={ faFacebookSquare } /></a></ShareIcon>
|
2019-11-03 01:26:06 +04:00
|
|
|
<ShareIcon><a href="#"><FontAwesomeIcon icon={ faRedditSquare } /></a></ShareIcon>
|
2019-11-02 19:41:40 +04:00
|
|
|
</ShareIconsList>
|
|
|
|
</ShareWrap>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default ShareGuide;
|