mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 03:20:57 +00:00
17 lines
295 B
Svelte
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>
|