import * as React from 'react'; import classNames from 'classnames'; import GitHubButton from 'react-github-button'; import './Github.less'; export interface GithubProps { responsive: null | 'narrow' | 'crowded'; } export default ({ responsive }: GithubProps) => ( );