import Link from "../Link"; import { SiGithub } from "react-icons/si"; import type { ComponentPropsWithoutRef } from "react"; import styles from "./OctocatLink.module.css"; import clsx from "clsx"; export type OctocatLinkProps = Omit, "href"> & { repo: string; }; const OctocatLink = ({ repo, className, ...rest }: OctocatLinkProps) => { return ( ); }; export default OctocatLink;