mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
13 lines
274 B
Vue
13 lines
274 B
Vue
<template>
|
|
<Card class="flex items-center justify-center">
|
|
<Loader class="size-6 animate-spin" />
|
|
</Card>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Loader } from "lucide-vue-next";
|
|
import { Card } from "~/components/ui/card";
|
|
</script>
|
|
|
|
<style></style>
|