import classNames from "classnames"; import { OctocatOcticon } from "../Icons"; import styles from "./OctocatLink.module.css"; type Props = { repo: string; className?: string; }; const OctocatLink = ({ repo, className }: Props) => ( ); export default OctocatLink;