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

20 lines
339 B
Svelte
Raw Normal View History

<script lang="ts">
import VacancyIcon from './icons/Vacancy.svelte'
</script>
<div class="root">
<VacancyIcon size="xsmall" />
</div>
<style lang="scss">
.root {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
color: #fff;
background-color: #60B96E;
}
</style>