import React, { ReactElement } from 'react' import { Link } from 'gatsby' import Icon from '../../atoms/Icon' import * as styles from './LinkActions.module.css' import * as stylesMore from './More.module.css' const PostLinkActions = ({ linkurl, slug }: { linkurl?: string slug: string }): ReactElement => (
Go to source
) export default PostLinkActions