mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 04:16:02 +01:00
18 lines
370 B
Vue
18 lines
370 B
Vue
<script setup lang="ts">
|
|
import { Loader2Icon } from "lucide-vue-next";
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<Loader2Icon
|
|
role="status"
|
|
aria-label="Loading"
|
|
:class="cn('size-4 animate-spin', props.class)"
|
|
/>
|
|
</template>
|