1 2 3 4 5 6 7 8 9 10 11 12 13 14
import Icon from './Common/Icon' export default function GitHubLink(props = {}) { return ( <a target="_blank" rel="noreferrer" href="https://github.com/nickcoutsos/keymap-editor" {...props} > <Icon collection="brands" name="github" />/nickcoutsos/keymap-editor </a> ) }