type Props = { link: string; size?: number; fill?: string; color?: string; }; // http://tholman.com/github-corners/ const GitHubCorner = ({ link, size, fill, color }: Props) => ( ); export default GitHubCorner;