platform/plugins/recruit-resources/src/components/TemplatesIcon.svelte
2022-04-29 12:27:17 +07:00

17 lines
295 B
Svelte

<script lang="ts">
import VacancyIcon from './icons/Vacancy.svelte'
</script>
<div class="flex-center template-icon">
<VacancyIcon size="small" />
</div>
<style lang="scss">
.template-icon {
width: 100%;
height: 100%;
color: #fff;
background-color: #60b96e;
}
</style>