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

clean up note types

This commit is contained in:
2022-04-30 18:01:33 -04:00
parent a2921d106e
commit d718555001
10 changed files with 49 additions and 39 deletions

View File

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