import { Star, GitFork, Circle } from "lucide-react" interface RepoCardProps { name: string description: string language?: string languageColor?: string stars?: number forks?: number url: string starUrl?: string isPublic?: boolean } export function RepoCard({ name, description, language, languageColor = "#3572A5", stars = 0, forks = 0, url, starUrl, isPublic = true, }: RepoCardProps) { return (
{name}
{isPublic ? "Public" : "Private"}

{description}

{language && ( {language} )} {stars > 0 && ( {stars} )} {forks > 0 && ( {forks} )}
) }