platform/plugins/recruit-resources/src/components/TemplatesIcon.svelte

17 lines
295 B
Svelte
Raw Normal View History

<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;
2022-04-29 05:27:17 +00:00
background-color: #60b96e;
}
2022-04-29 05:27:17 +00:00
</style>