mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-08 00:52:30 +00:00
17 lines
340 B
Svelte
17 lines
340 B
Svelte
<script lang="ts">
|
|
import { Icon } from '@anticrm/ui'
|
|
import IconFolder from './icons/Folder.svelte'
|
|
</script>
|
|
|
|
<div class="flex-center template-icon">
|
|
<Icon icon={IconFolder} size="small" />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.template-icon {
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #fff;
|
|
background-color: #7C6FCD;
|
|
}
|
|
</style> |