mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-05 09:17:41 +02:00
18 lines
335 B
Svelte
18 lines
335 B
Svelte
<script lang="ts">
|
|
import { Icon } from '@anticrm/ui'
|
|
import board from '@anticrm/board'
|
|
</script>
|
|
|
|
<div class="flex-center template-icon">
|
|
<Icon icon={board.icon.Board} size="small" />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.template-icon {
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #fff;
|
|
background-color: #4474f6;
|
|
}
|
|
</style>
|