mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
26 lines
751 B
JavaScript
26 lines
751 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { Link } from 'gatsby'
|
|
import { ReactComponent as Forward } from '../../images/forward.svg'
|
|
import { ReactComponent as Infinity } from '../../images/infinity.svg'
|
|
import styles from './PostLinkActions.module.scss'
|
|
import stylesPostMore from './PostMore.module.scss'
|
|
|
|
const PostLinkActions = ({ linkurl, slug }) => (
|
|
<div className={styles.postLinkActions}>
|
|
<a className={stylesPostMore.postMore} href={linkurl}>
|
|
Go to source <Forward />
|
|
</a>
|
|
<Link to={slug} rel="tooltip" title="Permalink">
|
|
<Infinity />
|
|
</Link>
|
|
</div>
|
|
)
|
|
|
|
PostLinkActions.propTypes = {
|
|
slug: PropTypes.string.isRequired,
|
|
linkurl: PropTypes.string
|
|
}
|
|
|
|
export default PostLinkActions
|