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