frontend/components/ui/UiLoadingIcon.vue
2025-06-05 21:51:14 +02:00

16 lines
279 B
Vue

<template>
<UiIcon class="rotate">progress_activity</UiIcon>
</template>
<script setup lang="ts">
import UiIcon from './UiIcon.vue';
</script>
<style scoped>
.rotate{
animation: rotate 1s linear infinite;
}
@keyframes rotate{
to{ transform: rotate(360deg); }
}
</style>