mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-24 05:12:24 +02:00
18 lines
430 B
Svelte
18 lines
430 B
Svelte
<!--
|
|
//
|
|
// Copyright © 2023 Hardcore Engineering Inc.
|
|
//
|
|
-->
|
|
<script lang="ts">
|
|
import { Icon } from '@hcengineering/ui'
|
|
import { GithubIntegrationRepository } from '@hcengineering/github'
|
|
import github from '../../plugin'
|
|
|
|
export let value: GithubIntegrationRepository
|
|
</script>
|
|
|
|
<div class="flex-row-center">
|
|
<Icon icon={github.icon.GithubRepository} size={'small'} />
|
|
<span class="ml-1">{value.name}</span>
|
|
</div>
|