16 lines
691 B
JavaScript
16 lines
691 B
JavaScript
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
import { faFacebookSquare, faRedditSquare, faTwitterSquare } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
import { ShareIcon, ShareIconsList, ShareWrap } from './style';
|
|
|
|
const ShareGuide = (props) => (
|
|
<ShareWrap>
|
|
<ShareIconsList className="d-sm-none d-md-none d-lg-flex d-xl-flex">
|
|
<ShareIcon><a href="#"><FontAwesomeIcon icon={ faTwitterSquare } /></a></ShareIcon>
|
|
<ShareIcon><a href="#"><FontAwesomeIcon icon={ faFacebookSquare } /></a></ShareIcon>
|
|
<ShareIcon><a href="#"><FontAwesomeIcon icon={ faRedditSquare } /></a></ShareIcon>
|
|
</ShareIconsList>
|
|
</ShareWrap>
|
|
);
|
|
|
|
export default ShareGuide; |