import React from 'react' interface GitHubCornersProps { href: string } export const GitHubCorner: React.SFC = ({ href }) => { const githubCornerHTML = `` return
}