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