You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
340 B

<template>
<div class="Throbber">
<img src="../assets/throbber.svg" alt="throbber" />
<div class="info"><slot>loading</slot></div>
</div>
</template>
<style scoped lang="scss">
.Throbber {
padding: 0.5rem;
display: flex;
flex-flow: column;
align-items: center;
img {
height: 3rem;
width: 3rem;
}
}
</style>