Files
jarv.is/components/OctocatLink/OctocatLink.tsx
T
2022-01-18 13:54:12 -05:00

16 lines
363 B
TypeScript

import { OctocatOcticon } from "../Icons";
import styles from "./OctocatLink.module.css";
type Props = {
repo: string;
};
const OctocatLink = (props: Props) => (
<a className={styles.link} href={`https://github.com/${props.repo}`} target="_blank" rel="noopener noreferrer">
<OctocatOcticon fill="currentColor" />
</a>
);
export default OctocatLink;