Files
huly-platform/services/github/github-resources/src/components/presenters/RepositoryPresenter.svelte
T
2024-07-28 14:55:43 +07:00

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>