aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/src/GitHubLink.js
blob: c5b2974b5247b6f5bcaa5b21dbe7f310ab21967f (plain)
1
2
3
4
5
6
7
8
9
import Icon from './Common/Icon'

export default function GitHubLink(props = {}) {
  return (
    <a {...props} href="https://github.com/nickcoutsos/keymap-editor">
      <Icon collection="brands" name="github" />/nickcoutsos/keymap-editor
    </a>
  )
}