import * as React from 'react'; import { Interactive } from 'react-interactive'; import { GitHubLogoIcon } from '@radix-ui/react-icons'; import { Button } from './Button'; interface GitHubIconLinkProps { href?: string; title?: string; newWindow?: boolean; css?: React.ComponentProps['css']; } export const GitHubIconLink: React.VFC = ({ newWindow = true, css, title, ...props }) => ( );