import classNames from "classnames"; import { intlFormat, formatDistanceToNowStrict } from "date-fns"; import { StarOcticon, ForkOcticon } from "../Icons"; import type { RepoType } from "../../types"; import styles from "./RepositoryCard.module.css"; type Props = RepoType & { className?: string; }; const RepositoryCard = ({ name, url, description, language, stars, forks, updatedAt, className }: Props) => (
{description}
}