mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-09-01 07:05:32 -04:00
16 lines
363 B
TypeScript
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;
|