mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-21 03:42:24 +02:00
17 lines
501 B
TypeScript
17 lines
501 B
TypeScript
//
|
|
// Copyright © 2023 Hardcore Engineering Inc.
|
|
//
|
|
|
|
import { loadMetadata } from '@hcengineering/platform'
|
|
import github from '@hcengineering/github'
|
|
|
|
const icons = require('../assets/icons.svg') as string // eslint-disable-line
|
|
loadMetadata(github.icon, {
|
|
Github: `${icons}#github`,
|
|
GithubRepository: `${icons}#repository`,
|
|
PullRequest: `${icons}#pullRequest`,
|
|
PullRequestMerged: `${icons}#pullRequestMerged`,
|
|
PullRequestClosed: `${icons}#pullRequestClosed`,
|
|
Forks: `${icons}#forks`
|
|
})
|