mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-12-05 14:18:58 -05:00
fix unnoticeable background color bug in dark mode
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import classNames from "classnames";
|
||||
import { OctocatOcticon } from "../Icons";
|
||||
import type { HTMLAttributes } from "react";
|
||||
|
||||
import styles from "./OctocatLink.module.css";
|
||||
|
||||
type Props = {
|
||||
type Props = HTMLAttributes<HTMLAnchorElement> & {
|
||||
repo: string;
|
||||
className?: string;
|
||||
};
|
||||
|
||||
const OctocatLink = ({ repo, className, ...rest }: Props) => (
|
||||
|
||||
Reference in New Issue
Block a user