mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-11 04:07:43 +02:00
17 lines
348 B
Svelte
17 lines
348 B
Svelte
<script lang="ts">
|
|
import lead from '@hcengineering/lead'
|
|
import { Icon, IconSize } from '@hcengineering/ui'
|
|
export let size: IconSize = 'small'
|
|
</script>
|
|
|
|
<div class="flex-center template-icon">
|
|
<Icon icon={lead.icon.LeadApplication} {size} />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.template-icon {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|