platform/plugins/task-resources/src/components/TemplatesIcon.svelte
Alexander Platov 3be74a1751
Update Kanban and Setting layouts (#651)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2021-12-16 10:08:09 +01:00

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>