mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 23:40:07 +00:00
14 lines
313 B
JavaScript
14 lines
313 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;
|