import React from "react"; import oc from "open-color"; import { EVENT_EXIT, trackEvent } from "../analytics"; // https://github.com/tholman/github-corners export const GitHubCorner = React.memo( ({ appearance }: { appearance: "light" | "dark" }) => ( { trackEvent(EVENT_EXIT, "github"); }} > ), );