1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-21 05:41:17 -04:00

add @octokit/graphql-schema types

This commit is contained in:
2022-06-26 18:12:13 -04:00
parent ffe856012f
commit 7f485959df
6 changed files with 98 additions and 72 deletions

View File

@@ -3,7 +3,7 @@ import Link from "../Link";
import RelativeTime from "../RelativeTime";
import { StarOcticon, ForkOcticon } from "../Icons";
import { styled } from "../../lib/styles/stitches.config";
import type { Repository } from "../../types";
import type { Project } from "../../types";
const Wrapper = styled("div", {
width: "100%",
@@ -68,7 +68,7 @@ const LanguageCircle = styled("span", {
verticalAlign: "text-top",
});
export type RepositoryCardProps = Repository & {
export type RepositoryCardProps = Project & {
className?: string;
};