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 }) => (
Go to source
) PostLinkActions.propTypes = { slug: PropTypes.string.isRequired, linkurl: PropTypes.string } export default PostLinkActions