1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 07:17:28 +00:00
steffoweb/components/ProjectsList.tsx

28 lines
856 B
TypeScript
Raw Permalink Normal View History

2023-05-29 01:24:24 +00:00
import {default as style} from "./ProjectsList.module.css"
import {LinkPanel} from "./LinkPanel"
import {faBook, faCodeFork} from "@fortawesome/free-solid-svg-icons"
export type ProjectsListProps = {
repos: any[]
}
2023-05-29 01:24:24 +00:00
export function ProjectsList({repos}: ProjectsListProps) {
return (
<div className={style.projectsList}>
{repos.map((repo) => <LinkPanel
icon={repo.fork ? faCodeFork : faBook}
text={repo.name}
description={repo.description}
href={repo.html_url}
fade={repo.archived}
extraBtm={repo.stargazers_count == 0 ? null : `${repo.stargazers_count}`}/>
)}
<noscript>
The list of projects cannot be loaded, as JavaScript is disabled.
</noscript>
</div>
)
2023-05-29 01:24:24 +00:00
}