gatsby-remark-dictionary
Version:
Create a dictionary of word and phrases to be converted to highlighted values and links. define once and all phrases will be converted during build time.
14 lines (11 loc) • 326 B
JavaScript
import React from 'react';
const githubIcon = require('./components/images/github.svg');
const GithubLink = ({ link, text }) => {
return (
<a href={link} className="githubSection">
<img className="githubIcon" src={githubIcon} alt="github" />
{text}
</a>
);
};
export default GithubLink;