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