0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-12-12 17:09:50 +01:00
gitea/web_src/js/utils/mappings.ts
2025-12-04 21:47:14 +01:00

10 lines
211 B
TypeScript

export function getRepoIcon(repo: Record<string, any>) {
if (repo.mirror) {
return 'octicon-mirror';
} else if (repo.fork) {
return 'octicon-repo-forked';
} else {
return 'octicon-repo';
}
}